From 4f91a8160fe71295b7ad4d6e3f90f004caa3546c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 23 May 2011 14:57:17 -0300 Subject: Don't quote lambda expressions with `quote'. --- lisp/eshell/em-glob.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lisp/eshell/em-glob.el') diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index 732c6c05bfe..db9b003895f 100644 --- a/lisp/eshell/em-glob.el +++ b/lisp/eshell/em-glob.el @@ -148,10 +148,10 @@ This option slows down recursive glob processing by quite a bit." ;; if this is a glob pattern than needs to be expanded, then it ;; will need to expand each member of the resulting glob list (add-to-list 'eshell-current-modifiers - '(lambda (list) - (if (listp list) - (mapcar 'expand-file-name list) - (expand-file-name list))))) + (lambda (list) + (if (listp list) + (mapcar 'expand-file-name list) + (expand-file-name list))))) (add-to-list 'eshell-current-modifiers 'eshell-extended-glob)) (defun eshell-parse-glob-chars () -- cgit v1.2.3