[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el |
Date: |
Wed, 18 Dec 2002 05:42:21 -0500 |
Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.269
emacs/lisp/progmodes/compile.el:1.270
*** emacs/lisp/progmodes/compile.el:1.269 Fri Dec 13 17:37:37 2002
--- emacs/lisp/progmodes/compile.el Sat Dec 14 18:30:36 2002
***************
*** 1564,1569 ****
--- 1564,1570 ----
(let ((inhibit-read-only t)
(buffer-undo-list t)
deactivate-mark
+ (buffer-was-modified (buffer-modified-p))
(error-list compilation-error-list))
(while error-list
(save-excursion
***************
*** 1571,1577 ****
(progn (end-of-line) (point))
'(mouse-face highlight help-echo "\
mouse-2: visit this file and line")))
! (setq error-list (cdr error-list))))
)))))
(defun compile-mouse-goto-error (event)
--- 1572,1579 ----
(progn (end-of-line) (point))
'(mouse-face highlight help-echo "\
mouse-2: visit this file and line")))
! (setq error-list (cdr error-list)))
! (set-buffer-modified-p buffer-was-modified))
)))))
(defun compile-mouse-goto-error (event)