1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(basic-save-buffer): Doc fix.

(after-save-hook): Add defvar.
This commit is contained in:
Richard M. Stallman 1995-08-28 15:15:28 +00:00
parent fa75f22d59
commit 1cc852cc96

View File

@ -1691,8 +1691,12 @@ the last real save, but optional arg FORCE non-nil means delete anyway."
(file-error nil))
(set-buffer-auto-saved))))
(defvar after-save-hook nil
"Normal hook that is run after a buffer is saved to its file.")
(defun basic-save-buffer ()
"Save the current buffer in its visited file, if it has been modified."
"Save the current buffer in its visited file, if it has been modified.
After saving the buffer, run `after-save-hook'."
(interactive)
(save-excursion
;; In an indirect buffer, save its base buffer instead.