1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

(vc-fetch-properties): Add save-excursion.

This commit is contained in:
Richard M. Stallman 1995-06-20 02:56:43 +00:00
parent 6fbcbee7e5
commit ee526b5552

View File

@ -572,6 +572,7 @@ value of this flag.")
;; if that wasn't already done.
(cond
((eq (vc-backend file) 'RCS)
(save-excursion
(set-buffer (get-buffer-create "*vc-info*"))
(vc-insert-file (vc-name file) "^desc")
(vc-parse-buffer
@ -581,7 +582,7 @@ value of this flag.")
"author[ \t]+"
(regexp-quote (user-login-name)) ";") 1 2))
file
'(vc-latest-version vc-your-latest-version)))
'(vc-latest-version vc-your-latest-version))))
(t (vc-fetch-master-properties file))
))