]> git.eshelyaron.com Git - emacs.git/commitdiff
Unbreak no-op buffer save message
authorDaniel Colascione <dancol@dancol.org>
Tue, 21 Apr 2015 19:26:44 +0000 (12:26 -0700)
committerDaniel Colascione <dancol@dancol.org>
Tue, 21 Apr 2015 19:26:44 +0000 (12:26 -0700)
* lisp/files.el (save-buffer): Pass interactive flag to `basic-save-buffer`
(basic-save-buffer): Accept called-interactively as an argument instead of
directly invoking called-interactively-p, which will always yield nil
in that context.

lisp/files.el

index 152f15542799cadb155586a9147e1e3eb9ecbe63..fd7293bf8a0671ae9372e9e85c0cb4da97e0f2e6 100644 (file)
@@ -4659,7 +4659,7 @@ See the subroutine `basic-save-buffer' for more information."
              (not noninteractive)
              (not save-silently))
        (message "Saving file %s..." (buffer-file-name)))
-    (basic-save-buffer)
+    (basic-save-buffer (called-interactively-p 'any))
     (and modp (memq arg '(4 64)) (setq buffer-backed-up nil))))
 
 (defun delete-auto-save-file-if-necessary (&optional force)
@@ -4701,7 +4701,7 @@ in such cases.")
 (make-variable-buffer-local 'save-buffer-coding-system)
 (put 'save-buffer-coding-system 'permanent-local t)
 
-(defun basic-save-buffer ()
+(defun basic-save-buffer (&optional called-interactively)
   "Save the current buffer in its visited file, if it has been modified.
 The hooks `write-contents-functions' and `write-file-functions' get a chance
 to do the job of saving; if they do not, then the buffer is saved in
@@ -4800,7 +4800,7 @@ Before and after saving the buffer, this function runs
          (vc-after-save)
          (run-hooks 'after-save-hook))
       (or noninteractive
-          (not (called-interactively-p 'any))
+          (not called-interactively)
           (files--message "(No changes need to be saved)")))))
 
 ;; This does the "real job" of writing a buffer into its visited file