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
3151c2ff
Commit
3151c2ff
authored
Jan 15, 2009
by
Dan Nicolaescu
Browse files
(vc-hg-diff): Pass relative file names. (Bug#1903)
parent
98722073
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/vc-hg.el
lisp/vc-hg.el
+8
-7
No files found.
lisp/ChangeLog
View file @
3151c2ff
2009-01-15 Dan Nicolaescu <dann@ics.uci.edu>
* vc-hg.el (vc-hg-diff): Pass relative file names. (Bug#1903)
2009-01-15 Martin Rudalics <rudalics@gmx.at>
* window.el (special-display-p): Revert 2009-01-14 change.
...
...
lisp/vc-hg.el
View file @
3151c2ff
...
...
@@ -259,15 +259,16 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
(
defun
vc-hg-diff
(
files
&optional
oldvers
newvers
buffer
)
"Get a difference report using hg between two revisions of FILES."
(
let*
((
firstfile
(
car
files
))
(
cwd
(
if
firstfile
(
file-name-directory
firstfile
)
(
expand-file-name
default-directory
)))
(
working
(
and
firstfile
(
vc-working-revision
firstfile
))))
(
when
(
and
(
equal
oldvers
working
)
(
not
newvers
))
(
setq
oldvers
nil
))
(
when
(
and
(
not
oldvers
)
newvers
)
(
setq
oldvers
working
))
(
apply
#'
vc-hg-command
(
or
buffer
"*vc-diff*"
)
nil
(
mapcar
(
lambda
(
file
)
(
file-name-nondirectory
file
))
files
)
"--cwd"
(
or
(
when
firstfile
(
file-name-directory
firstfile
))
(
expand-file-name
default-directory
))
(
mapcar
(
lambda
(
file
)
(
file-relative-name
file
cwd
))
files
)
"--cwd"
cwd
"diff"
(
append
(
vc-switches
'hg
'diff
)
...
...
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