From: Gerd Moellmann Date: Sat, 23 Dec 2000 15:42:36 +0000 (+0000) Subject: (compilation-forget-errors): Fix indentation. X-Git-Tag: emacs-pretest-21.0.95~298 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e751216899474a0c4540aacbf137afed3ed68e56;p=emacs.git (compilation-forget-errors): Fix indentation. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index cf46b2d661c..2f33166e1f4 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -1706,7 +1706,7 @@ Pop up the buffer containing MARKER and scroll to MARKER if we ask the user." ;; error messages and their text, so that they no longer slow down gap motion. ;; This would happen anyway at the next garbage collection, but it is better to ;; do it right away. - (defun compilation-forget-errors () +(defun compilation-forget-errors () (while compilation-old-error-list (let ((next-error (car compilation-old-error-list))) (set-marker (car next-error) nil) @@ -1720,8 +1720,7 @@ Pop up the buffer containing MARKER and scroll to MARKER if we ask the user." (let ((inhibit-read-only t) (buffer-undo-list t) deactivate-mark) - (remove-text-properties (point-min) (point-max) '(mouse-face highlight))) - ) + (remove-text-properties (point-min) (point-max) '(mouse-face highlight)))) ;; This function is not needed any more by compilation mode.