diff options
Diffstat (limited to 'lisp/textmodes')
| -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 | ||