From: Richard M. Stallman Date: Tue, 22 Aug 1995 19:06:19 +0000 (+0000) Subject: (basic-save-buffer): Call vc-after-save. X-Git-Tag: emacs-19.34~2930 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4953086242ad1877d757b2131776345cca9359e3;p=emacs.git (basic-save-buffer): Call vc-after-save. --- diff --git a/lisp/files.el b/lisp/files.el index f852f21640c..8cb1a66183a 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1758,6 +1758,8 @@ 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) + ;; Support VC `implicit' locking. + (vc-after-save) (run-hooks 'after-save-hook)) (message "(No changes need to be saved)"))))