summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1993-07-07 20:25:48 +0000
committerRoland McGrath <roland@gnu.org>1993-07-07 20:25:48 +0000
commit1e377362bec4b8dd4005044af1bc7506669c49a5 (patch)
tree04a3ebc125b25043eb6700d583913af701fd5365 /lisp/files.el
parent88e37e7b3199ef8c0402157db557028ab3fac2a4 (diff)
downloademacs-1e377362bec4b8dd4005044af1bc7506669c49a5.tar.gz
emacs-1e377362bec4b8dd4005044af1bc7506669c49a5.tar.bz2
emacs-1e377362bec4b8dd4005044af1bc7506669c49a5.zip
(basic-save-buffer): Invoke after-save-buffer-hook, not after-save-hook.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 9aa7cfef23b..62210737189 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1483,7 +1483,7 @@ the last real save, but optional arg FORCE non-nil means delete anyway."
;; If the auto-save file was recent before this command,
;; delete it now.
(delete-auto-save-file-if-necessary recent-save)
- (run-hooks 'after-save-hook))
+ (run-hooks 'after-save-buffer-hook))
(message "(No changes need to be saved)")))
(defun save-some-buffers (&optional arg exiting)