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
36bed8bc
Commit
36bed8bc
authored
May 13, 1993
by
Richard M. Stallman
Browse files
(vc-version-diff): Don't move point in current buffer.
parent
41e7816a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
lisp/vc.el
lisp/vc.el
+3
-9
No files found.
lisp/vc.el
View file @
36bed8bc
...
...
@@ -775,15 +775,9 @@ files in or below it."
(
goto-char
(
point-min
))
(
set-buffer-modified-p
nil
)
)
(
progn
(
vc-backend-diff
file
rel1
rel2
)
(
goto-char
(
point-min
))
(
if
(
equal
(
point-min
)
(
point-max
))
(
message
"No changes to %s between %s and %s."
file
rel1
rel2
)
(
pop-to-buffer
"*vc*"
)
(
goto-char
(
point-min
))
)
)
(
if
(
zerop
(
vc-backend-diff
file
rel1
rel2
))
(
message
"No changes to %s between %s and %s."
file
rel1
rel2
)
(
pop-to-buffer
"*vc*"
)
)
)
...
...
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