summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Spiegel <spiegel@gnu.org>1998-05-17 15:33:39 +0000
committerAndré Spiegel <spiegel@gnu.org>1998-05-17 15:33:39 +0000
commit6505ccc696bf2007dee70e22e2bdd61cd3f73740 (patch)
treee95c2a1d2f3d31cd7e01cf5250e22ca9d7d899ad
parentab68b6141ea569b1a5819f52d4a0ee95e50deb6b (diff)
downloademacs-6505ccc696bf2007dee70e22e2bdd61cd3f73740.tar.gz
(vc-parse-cvs-status): Grok new form of conflict message.
-rw-r--r--lisp/vc-hooks.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el
index 709e7014262..b829b44361a 100644
--- a/lisp/vc-hooks.el
+++ b/lisp/vc-hooks.el
@@ -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.108 1998/05/06 13:36:45 spiegel Exp rms $
+;; $Id: vc-hooks.el,v 1.109 1998/05/07 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))))))))))