comparison lisp/eshell/em-pred.el @ 54095:de50e15a5b8d

(eshell-modifier-alist): Changed the "eval again" modifier from 'e' to 'E', since 'e' is also used by the "file extension" modifier.
author John Wiegley <johnw@newartisans.com>
date Fri, 20 Feb 2004 12:32:19 +0000
parents 695cf19ef79e
children a9d4a0bceffe
comparison
equal deleted inserted replaced
54094:49c7852c866f 54095:de50e15a5b8d
111 :group 'eshell-pred) 111 :group 'eshell-pred)
112 112
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)
120 (eshell-stringify 120 (eshell-stringify
121 (car (eshell-parse-argument str))))) lst))) 121 (car (eshell-parse-argument str))))) lst)))
205 205
206 (defvar eshell-modifier-help-string 206 (defvar eshell-modifier-help-string
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
214 h dirname 214 h dirname
215 t basename 215 t basename