aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Wiegley2000-10-29 05:46:42 +0000
committerJohn Wiegley2000-10-29 05:46:42 +0000
commitdbdc47a33b82bbd1ba0fa0fc680ffee95bcb0731 (patch)
tree589af222b808694d5c004ea6c6414b56ead433c1
parentd63f8c1a2c808f19798953eb3d9872add5159385 (diff)
downloademacs-dbdc47a33b82bbd1ba0fa0fc680ffee95bcb0731.tar.gz
emacs-dbdc47a33b82bbd1ba0fa0fc680ffee95bcb0731.zip
Corrected some typos
-rw-r--r--man/eshell.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/man/eshell.texi b/man/eshell.texi
index c690909a94c..db922ff6a10 100644
--- a/man/eshell.texi
+++ b/man/eshell.texi
@@ -1,6 +1,6 @@
1\input texinfo @c -*-texinfo-*- 1\input texinfo @c -*-texinfo-*-
2 2
3@c "@(#)$Name: $:$Id: eshell.texi,v 1.3 2000/10/16 18:24:30 eliz Exp $" 3@c "@(#)$Name: $:$Id: eshell.texi,v 1.4 2000/10/29 05:13:09 johnw Exp $"
4 4
5@c Documentation for Eshell: The Emacs Shell. 5@c Documentation for Eshell: The Emacs Shell.
6@c Copyright (C) 1999-2000 Free Software Foundation, Inc. 6@c Copyright (C) 1999-2000 Free Software Foundation, Inc.
@@ -521,7 +521,7 @@ Allow for a bash-compatible syntax, such as:
521 521
522@example 522@example
523alias arg=blah 523alias arg=blah
524function arg () { blah $* } 524function arg () @{ blah $* @}
525@end example 525@end example
526 526
527@item @samp{for i in 1 2 3 @{ grep -q a b && *echo has it @} | wc -l} outputs result after prompt 527@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 \\("
651With @command{zsh}, the glob above expands to all files named 651With @command{zsh}, the glob above expands to all files named
652@file{Root} in directories named @file{CVS}. 652@file{Root} in directories named @file{CVS}.
653 653
654@item Typing @samp{echo ${locate locate}/bin<TAB>} results in a Lisp error 654@item Typing @samp{echo $@{locate locate@}/bin<TAB>} results in a Lisp error
655 655
656Perhaps it should interpolate all permutations, and make that the 656Perhaps it should interpolate all permutations, and make that the
657globbing result, since otherwise hitting return here will result in 657globbing result, since otherwise hitting return here will result in
658``(list of filenames)/bin'', which is never valuable. Thus, one could 658``(list of filenames)/bin'', which is never valuable. Thus, one could
659@command{cat} only C backup files by using @samp{ls ${identity *.c}~}. 659@command{cat} only C backup files by using @samp{ls $@{identity *.c@}~}.
660In that case, having an alias command name @command{glob} for 660In that case, having an alias command name @command{glob} for
661@command{identity} would be useful. 661@command{identity} would be useful.
662 662