Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ee526b55
Commit
ee526b55
authored
Jun 20, 1995
by
Richard M. Stallman
Browse files
(vc-fetch-properties): Add save-excursion.
parent
6fbcbee7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
lisp/vc-hooks.el
lisp/vc-hooks.el
+11
-10
No files found.
lisp/vc-hooks.el
View file @
ee526b55
...
...
@@ -572,16 +572,17 @@ value of this flag.")
;; if that wasn't already done.
(
cond
((
eq
(
vc-backend
file
)
'RCS
)
(
set-buffer
(
get-buffer-create
"*vc-info*"
))
(
vc-insert-file
(
vc-name
file
)
"^desc"
)
(
vc-parse-buffer
(
list
'
(
"^\\([0-9]+\\.[0-9.]+\\)\ndate[ \t]+\\([0-9.]+\\);"
1
2
)
(
list
(
concat
"^\\([0-9]+\\.[0-9.]+\\)\n"
"date[ \t]+\\([0-9.]+\\);[ \t]+"
"author[ \t]+"
(
regexp-quote
(
user-login-name
))
";"
)
1
2
))
file
'
(
vc-latest-version
vc-your-latest-version
)))
(
save-excursion
(
set-buffer
(
get-buffer-create
"*vc-info*"
))
(
vc-insert-file
(
vc-name
file
)
"^desc"
)
(
vc-parse-buffer
(
list
'
(
"^\\([0-9]+\\.[0-9.]+\\)\ndate[ \t]+\\([0-9.]+\\);"
1
2
)
(
list
(
concat
"^\\([0-9]+\\.[0-9.]+\\)\n"
"date[ \t]+\\([0-9.]+\\);[ \t]+"
"author[ \t]+"
(
regexp-quote
(
user-login-name
))
";"
)
1
2
))
file
'
(
vc-latest-version
vc-your-latest-version
))))
(
t
(
vc-fetch-master-properties
file
))
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment