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
49546869
Commit
49546869
authored
Mar 24, 2008
by
Dan Nicolaescu
Browse files
* vc-hg.el (vc-hg-after-dir-status):
* vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
parent
874f31a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/vc-bzr.el
lisp/vc-bzr.el
+1
-1
lisp/vc-hg.el
lisp/vc-hg.el
+1
-1
No files found.
lisp/ChangeLog
View file @
49546869
2008-03-24 Dan Nicolaescu <dann@ics.uci.edu>
* vc-hg.el (vc-hg-after-dir-status):
* vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
* vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status): Detect
removed files.
...
...
lisp/vc-bzr.el
View file @
49546869
...
...
@@ -617,7 +617,7 @@ Optional argument LOCALP is always ignored."
("
-D
" . removed)
("
M
" . edited)
;; XXX: what about ignored files?
("
D
" .
deleted
)
("
D
" .
missing
)
("
?
" . unregistered)))
(translated nil)
(result nil))
...
...
lisp/vc-hg.el
View file @
49546869
...
...
@@ -482,7 +482,7 @@ REV is the revision to check out into WORKFILE."
(
?R
.
removed
)
(
?M
.
edited
)
(
?I
.
ignored
)
(
?!
.
deleted
)
(
?!
.
missing
)
(
??
.
unregistered
)))
(
translated
nil
)
(
result
nil
))
...
...
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