diff options
| author | John Wiegley | 2004-02-20 12:32:19 +0000 |
|---|---|---|
| committer | John Wiegley | 2004-02-20 12:32:19 +0000 |
| commit | 8bc5e4c131dba618a458f481a5fcbff60f252228 (patch) | |
| tree | 63f858c2e31c51bd5e8384e377323fa5d25f019b | |
| parent | 36b0f52b3520a20ea91ce7b5f2cb469adbebeec4 (diff) | |
| download | emacs-8bc5e4c131dba618a458f481a5fcbff60f252228.tar.gz emacs-8bc5e4c131dba618a458f481a5fcbff60f252228.zip | |
(eshell-modifier-alist): Changed the "eval again" modifier from 'e' to
'E', since 'e' is also used by the "file extension" modifier.
| -rw-r--r-- | lisp/eshell/em-pred.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-pred.el b/lisp/eshell/em-pred.el index 3be32fde10d..26349b4e94b 100644 --- a/lisp/eshell/em-pred.el +++ b/lisp/eshell/em-pred.el | |||
| @@ -113,7 +113,7 @@ The format of each entry is | |||
| 113 | (put 'eshell-predicate-alist 'risky-local-variable t) | 113 | (put 'eshell-predicate-alist 'risky-local-variable t) |
| 114 | 114 | ||
| 115 | (defcustom eshell-modifier-alist | 115 | (defcustom eshell-modifier-alist |
| 116 | '((?e . '(lambda (lst) | 116 | '((?E . '(lambda (lst) |
| 117 | (mapcar | 117 | (mapcar |
| 118 | (function | 118 | (function |
| 119 | (lambda (str) | 119 | (lambda (str) |
| @@ -207,7 +207,7 @@ EXAMPLES: | |||
| 207 | "Eshell modifier quick reference: | 207 | "Eshell modifier quick reference: |
| 208 | 208 | ||
| 209 | FOR SINGLE ARGUMENTS, or each argument of a list of strings: | 209 | FOR SINGLE ARGUMENTS, or each argument of a list of strings: |
| 210 | e evaluate again | 210 | E evaluate again |
| 211 | L lowercase | 211 | L lowercase |
| 212 | U uppercase | 212 | U uppercase |
| 213 | C capitalize | 213 | C capitalize |