From 9ed2ab9fcaade605b6377f955c98ad13e607d642 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 13 Jan 2003 08:02:47 +0000 Subject: [PATCH] (compilation-revert-buffer): If buffer has a file, revert it in the normal way. --- lisp/progmodes/compile.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index f202663a0e4..a51ceff74d3 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -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." -- 2.39.2