aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-06-12 05:23:37 +0000
committerStefan Monnier2000-06-12 05:23:37 +0000
commit363c962e614a04dbb644a8cf735c698e411623cd (patch)
treec1213ad9b2145e14c26974472795c21dcff2f304
parent16fdbdceda55de2c293b31701dad6e7860f7e99f (diff)
downloademacs-363c962e614a04dbb644a8cf735c698e411623cd.tar.gz
emacs-363c962e614a04dbb644a8cf735c698e411623cd.zip
(makefile-pickup-filenames-as-targets): Don't quote lambda.
-rw-r--r--lisp/progmodes/make-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 7235ec3d6ef..4a9e15aa293 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -837,7 +837,7 @@ and adds all qualifying names to the list of known targets."
837 (raw-filename-list (if dir 837 (raw-filename-list (if dir
838 (file-name-all-completions "" dir) 838 (file-name-all-completions "" dir)
839 (file-name-all-completions "" "")))) 839 (file-name-all-completions "" ""))))
840 (mapcar '(lambda (name) 840 (mapcar (lambda (name)
841 (if (and (not (file-directory-p name)) 841 (if (and (not (file-directory-p name))
842 (not (string-match makefile-ignored-files-in-pickup-regex 842 (not (string-match makefile-ignored-files-in-pickup-regex
843 name))) 843 name)))