1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(eshell-command-aliased-p): assoc' was required where member' was

being used.
This commit is contained in:
John Wiegley 2001-04-11 15:49:13 +00:00
parent 30cb0001ff
commit 00fbbecd96

View file

@ -156,7 +156,7 @@ command, which will automatically write them to the file named by
(add-to-list 'eshell-complex-commands 'eshell-command-aliased-p))
(defun eshell-command-aliased-p (name)
(member name eshell-command-aliases-list))
(assoc name eshell-command-aliases-list))
(defun eshell/alias (&optional alias &rest definition)
"Define an ALIAS in the user's alias list using DEFINITION."