changeset 34845:98dd828601f2

(compilation-forget-errors): Fix indentation.
author Gerd Moellmann <gerd@gnu.org>
date Sat, 23 Dec 2000 15:42:36 +0000
parents 4756a759c825
children 221af923240f
files lisp/progmodes/compile.el
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Sat Dec 23 15:32:07 2000 +0000
+++ b/lisp/progmodes/compile.el	Sat Dec 23 15:42:36 2000 +0000
@@ -1706,7 +1706,7 @@
 ;; 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 @@
   (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.