aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/alias.txt
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-12-06 10:08:10 +1000
committerGravatar axel <axel@liljencrantz.se>2006-12-06 10:08:10 +1000
commitd9ec65da4ddfdedbe4f70e29d37e8fb97ba62cd1 (patch)
tree40ae9fb4eac04250b0988b038eb28dc88bb300f1 /doc_src/alias.txt
parent4b9dcf1cf239e5f757c61acf43183d95b27ed8e2 (diff)
Update user documentation - add section on internal completion functions, update todo list, minor documentation tweaks
darcs-hash:20061206000810-ac50b-08f12efdb74224abe46301d3722cd8180d8ba37d.gz
Diffstat (limited to 'doc_src/alias.txt')
-rw-r--r--doc_src/alias.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc_src/alias.txt b/doc_src/alias.txt
index ca34ab4b..523e4777 100644
--- a/doc_src/alias.txt
+++ b/doc_src/alias.txt
@@ -1,8 +1,8 @@
\section alias alias - create a function
\subsection alias-synopsis Synopsis
-<tt>alias NAME DEFINITION</tt><br/>
-<tt>alias NAME=DEFINITION</tt>
+<pre>alias NAME DEFINITION
+alias NAME=DEFINITION</pre>
\subsection alias-description Description
@@ -11,5 +11,8 @@ It exists for backwards compatibility with Posix
shells. For other uses, it is recommended to define a <a
href='#function'>function</a>.
+Alias does not keep track of which functions have been defined using
+alias, nor does it allow erasing of aliases.
+
- NAME is the name of the function to define
- DEFINITION is the body of the function. The string " $argv" will be appended to the body.