diff options
| author | Stefan Monnier | 2000-06-12 05:28:02 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-06-12 05:28:02 +0000 |
| commit | b94deab8d575232b6658650b7bed0ba62c569494 (patch) | |
| tree | b5923e3883be6c447d7a1c8110a83fa999354141 /lisp | |
| parent | ffaf8bbb770d10d3197da6cd40fd11a14dd8ccbc (diff) | |
| download | emacs-b94deab8d575232b6658650b7bed0ba62c569494.tar.gz emacs-b94deab8d575232b6658650b7bed0ba62c569494.zip | |
(makeinfo-compile): Don't quote lambda.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/textmodes/makeinfo.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/makeinfo.el b/lisp/textmodes/makeinfo.el index 0f95d299291..0beccbc5fc7 100644 --- a/lisp/textmodes/makeinfo.el +++ b/lisp/textmodes/makeinfo.el | |||
| @@ -178,8 +178,8 @@ command to gain use of `next-error'." | |||
| 178 | ;; If we do want to parse errors, pass nil. | 178 | ;; If we do want to parse errors, pass nil. |
| 179 | ;; Otherwise, use this function, which won't | 179 | ;; Otherwise, use this function, which won't |
| 180 | ;; ever find any errors. | 180 | ;; ever find any errors. |
| 181 | '(lambda (&rest ignore) | 181 | (lambda (&rest ignore) |
| 182 | (setq compilation-error-list nil)))))) | 182 | (setq compilation-error-list nil)))))) |
| 183 | (set-process-sentinel (get-buffer-process buffer) | 183 | (set-process-sentinel (get-buffer-process buffer) |
| 184 | 'makeinfo-compilation-sentinel))) | 184 | 'makeinfo-compilation-sentinel))) |
| 185 | 185 | ||