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
edad8a09
Commit
edad8a09
authored
May 17, 1998
by
André Spiegel
Browse files
(vc-parse-cvs-status): Grok new form of conflict message.
parent
a4370a77
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
lisp/vc-hooks.el
lisp/vc-hooks.el
+5
-2
No files found.
lisp/vc-hooks.el
View file @
edad8a09
...
...
@@ -5,7 +5,7 @@
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
;; $Id: vc-hooks.el,v 1.10
8
1998/05/0
6 13:36:45 spiegel Exp rms
$
;; $Id: vc-hooks.el,v 1.10
9
1998/05/0
7 21:34:54 rms Exp spiegel
$
;; This file is part of GNU Emacs.
...
...
@@ -338,7 +338,10 @@ similarly for other version control systems."
((
string-match
"Needs Merge"
status
)
'needs-merge
)
((
string-match
"Needs \\(Checkout\\|Patch\\)"
status
)
'needs-checkout
)
((
string-match
"Unresolved Conflict"
status
)
'unresolved-conflict
)
((
string-match
"Unresolved Conflict"
status
)
'unresolved-conflict
)
((
string-match
"File had conflicts on merge"
status
)
'unresolved-conflict
)
((
string-match
"Locally Added"
status
)
'locally-added
)
((
string-match
"New file!"
status
)
'locally-added
)
(
t
'unknown
))))))))))
...
...
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