From: Stefan Monnier Date: Thu, 27 Mar 2008 15:00:32 +0000 (+0000) Subject: (vc-before-save): Be careful not to prevent saving the file. X-Git-Tag: emacs-pretest-23.0.90~6859 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f42af25505dd568279f117fce47ea1b3db2277c9;p=emacs.git (vc-before-save): Be careful not to prevent saving the file. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 13c5932abb6..97db7c25091 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2008-03-27 Stefan Monnier + * vc-hooks.el (vc-before-save): Don't prevent saving the file. + * image-mode.el (image-mode-reapply-winprops): Fix last change. 2008-03-27 Kenichi Handa diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 06cdbef34e8..c033b6e8fbc 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -750,11 +750,12 @@ Before doing that, check if there are any old backups and get rid of them." ;; and version backups should be made, copy the file to ;; another name. This enables local diffs and local reverting. (let ((file buffer-file-name)) - (and (vc-backend file) - (vc-up-to-date-p file) - (eq (vc-checkout-model file) 'implicit) - (vc-call make-version-backups-p file) - (vc-make-version-backup file)))) + (ignore-errors ;Be careful not to prevent saving the file. + (and (vc-backend file) + (vc-up-to-date-p file) + (eq (vc-checkout-model file) 'implicit) + (vc-call make-version-backups-p file) + (vc-make-version-backup file))))) (declare-function vc-dired-resynch-file "vc" (file))