1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(compilation-forget-errors): Fix indentation.

This commit is contained in:
Gerd Moellmann 2000-12-23 15:42:36 +00:00
parent 504454e824
commit e751216899

View file

@ -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.