From 363c962e614a04dbb644a8cf735c698e411623cd Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 12 Jun 2000 05:23:37 +0000 Subject: [PATCH] (makefile-pickup-filenames-as-targets): Don't quote lambda. --- lisp/progmodes/make-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 7235ec3d6e..4a9e15aa29 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." (raw-filename-list (if dir (file-name-all-completions "" dir) (file-name-all-completions "" "")))) - (mapcar '(lambda (name) + (mapcar (lambda (name) (if (and (not (file-directory-p name)) (not (string-match makefile-ignored-files-in-pickup-regex name))) -- 2.20.1