diff options
| author | Stefan Monnier | 2000-06-12 05:23:37 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-06-12 05:23:37 +0000 |
| commit | 363c962e614a04dbb644a8cf735c698e411623cd (patch) | |
| tree | c1213ad9b2145e14c26974472795c21dcff2f304 | |
| parent | 16fdbdceda55de2c293b31701dad6e7860f7e99f (diff) | |
| download | emacs-363c962e614a04dbb644a8cf735c698e411623cd.tar.gz emacs-363c962e614a04dbb644a8cf735c698e411623cd.zip | |
(makefile-pickup-filenames-as-targets): Don't quote lambda.
| -rw-r--r-- | lisp/progmodes/make-mode.el | 2 |
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))) |