From: Juri Linkov Date: Sun, 5 Feb 2023 18:23:57 +0000 (+0200) Subject: * lisp/vc/vc.el (vc-find-revision-no-save): Fix parens (bug#61256). X-Git-Tag: emacs-29.0.90~492 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=26e947ccb1453defcfce080cdc5ea7ca2cb8917e;p=emacs.git * lisp/vc/vc.el (vc-find-revision-no-save): Fix parens (bug#61256). Move '(setq failed nil)' from UNWINDFORMS of 'unwind-protect' to BODYFORM. --- diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index a181765eac3..4ba62c0b3c7 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -2342,8 +2342,8 @@ Unlike `vc-find-revision-save', doesn't save the buffer to the file." (ignore-errors (delay-mode-hooks (set-auto-mode)))) (normal-mode)) (set-buffer-modified-p nil) - (setq buffer-read-only t)) - (setq failed nil) + (setq buffer-read-only t) + (setq failed nil)) (when (and failed (unless buffer (get-file-buffer filename))) (with-current-buffer (get-file-buffer filename) (set-buffer-modified-p nil))