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
d24182bb
Commit
d24182bb
authored
Nov 23, 2007
by
Dan Nicolaescu
Browse files
(vc-deduce-fileset): Also look for a fileset in the parent
buffer if the parent buffer is in vc-dired-mode.
parent
4d77fc8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/vc.el
lisp/vc.el
+3
-1
No files found.
lisp/ChangeLog
View file @
d24182bb
2007-11-23 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-deduce-fileset): Also look for a fileset in the parent
buffer if the parent buffer is in vc-dired-mode.
2007-11-23 Mark A. Hershberger <mah@everybody.org>
* nxml: Initial merge of nxml. Kept nxml/char-name subdir for
...
...
lisp/vc.el
View file @
d24182bb
...
...
@@ -1267,7 +1267,9 @@ Otherwise, throw an error."
marked
))
((
vc-backend
buffer-file-name
)
(
list
buffer-file-name
))
((
and
vc-parent-buffer
(
buffer-file-name
vc-parent-buffer
))
((
and
vc-parent-buffer
(
or
(
buffer-file-name
vc-parent-buffer
)
(
with-current-buffer
vc-parent-buffer
vc-dired-mode
)))
(
progn
(
set-buffer
vc-parent-buffer
)
(
vc-deduce-fileset
)))
...
...
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