From: Stefan Monnier Date: Mon, 12 Jun 2000 05:28:02 +0000 (+0000) Subject: (makeinfo-compile): Don't quote lambda. X-Git-Tag: emacs-pretest-21.0.90~3373 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b94deab8d575232b6658650b7bed0ba62c569494;p=emacs.git (makeinfo-compile): Don't quote lambda. --- 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'." ;; If we do want to parse errors, pass nil. ;; Otherwise, use this function, which won't ;; ever find any errors. - '(lambda (&rest ignore) - (setq compilation-error-list nil)))))) + (lambda (&rest ignore) + (setq compilation-error-list nil)))))) (set-process-sentinel (get-buffer-process buffer) 'makeinfo-compilation-sentinel)))