]> git.eshelyaron.com Git - emacs.git/commitdiff
Corrected some typos
authorJohn Wiegley <johnw@newartisans.com>
Sun, 29 Oct 2000 05:46:42 +0000 (05:46 +0000)
committerJohn Wiegley <johnw@newartisans.com>
Sun, 29 Oct 2000 05:46:42 +0000 (05:46 +0000)
man/eshell.texi

index c690909a94c718d288c2f413b6cb4ec61d7f3c2c..db922ff6a10db42048b72bdec516a99117c2ac48 100644 (file)
@@ -1,6 +1,6 @@
 \input texinfo  @c -*-texinfo-*-
 
-@c "@(#)$Name:  $:$Id: eshell.texi,v 1.3 2000/10/16 18:24:30 eliz Exp $"
+@c "@(#)$Name:  $:$Id: eshell.texi,v 1.4 2000/10/29 05:13:09 johnw Exp $"
 
 @c Documentation for Eshell: The Emacs Shell.
 @c Copyright (C) 1999-2000  Free Software Foundation, Inc.
@@ -521,7 +521,7 @@ Allow for a bash-compatible syntax, such as:
 
 @example
 alias arg=blah
-function arg () { blah $* }
+function arg () @{ blah $* @}
 @end example
 
 @item @samp{for i in 1 2 3 @{ grep -q a b && *echo has it @} | wc -l} outputs result after prompt
@@ -651,12 +651,12 @@ Invalid regexp: "Unmatched ( or \\("
 With @command{zsh}, the glob above expands to all files named
 @file{Root} in directories named @file{CVS}.
 
-@item Typing @samp{echo ${locate locate}/bin<TAB>} results in a Lisp error
+@item Typing @samp{echo $@{locate locate@}/bin<TAB>} results in a Lisp error
 
 Perhaps it should interpolate all permutations, and make that the
 globbing result, since otherwise hitting return here will result in
 ``(list of filenames)/bin'', which is never valuable.  Thus, one could
-@command{cat} only C backup files by using @samp{ls ${identity *.c}~}.
+@command{cat} only C backup files by using @samp{ls $@{identity *.c@}~}.
 In that case, having an alias command name @command{glob} for
 @command{identity} would be useful.