1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

(compilation-revert-buffer): If buffer has a file, revert it in the normal way.

This commit is contained in:
Richard M. Stallman 2003-01-13 08:02:47 +00:00
parent be28f1a745
commit 9ed2ab9fca

View File

@ -1245,8 +1245,11 @@ Runs `compilation-mode-hook' with `run-hooks' (which see)."
(run-hooks 'compilation-mode-hook))
(defun compilation-revert-buffer (ignore-auto noconfirm)
(if (or noconfirm (yes-or-no-p (format "Restart compilation? ")))
(apply 'compile-internal compilation-arguments)))
(if buffer-file-name
(let (revert-buffer-function)
(revert-buffer ignore-auto noconfirm preserve-modes))
(if (or noconfirm (yes-or-no-p (format "Restart compilation? ")))
(apply 'compile-internal compilation-arguments))))
(defun compilation-setup ()
"Prepare the buffer for the compilation parsing commands to work."