aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-01-19 23:17:22 -0800
committerGlenn Morris2011-01-19 23:17:22 -0800
commitdbfb414e49a879b5d9086f54b67d02e11e445ec2 (patch)
tree09498003ec2c19b18c81583e81d816092f102e16
parente885315dd05a005596d4f0585748d25dadff8901 (diff)
downloademacs-dbfb414e49a879b5d9086f54b67d02e11e445ec2.tar.gz
emacs-dbfb414e49a879b5d9086f54b67d02e11e445ec2.zip
* lisp/vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/vc/vc-svn.el5
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index aff58b8da21..c27b123d767 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12011-01-20 Glenn Morris <rgm@gnu.org> 12011-01-20 Glenn Morris <rgm@gnu.org>
2 2
3 * vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
4
3 * simple.el (read-expression-history): Remove, it's in minibuf.c. 5 * simple.el (read-expression-history): Remove, it's in minibuf.c.
4 6
52011-01-20 Chong Yidong <cyd@stupidchicken.com> 72011-01-20 Chong Yidong <cyd@stupidchicken.com>
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el
index d0b6e3841fa..aef7bd23f68 100644
--- a/lisp/vc/vc-svn.el
+++ b/lisp/vc/vc-svn.el
@@ -180,8 +180,9 @@ want to force an empty list of arguments, use t."
180 (let ((state (cdr (assq (aref (match-string 1) 0) state-map))) 180 (let ((state (cdr (assq (aref (match-string 1) 0) state-map)))
181 (propstat (cdr (assq (aref (match-string 2) 0) state-map))) 181 (propstat (cdr (assq (aref (match-string 2) 0) state-map)))
182 (filename (match-string 4))) 182 (filename (match-string 4)))
183 (if (memq propstat '(conflict edited)) 183 (and (memq propstat '(conflict edited))
184 (setq state propstat)) 184 (not (eq state 'conflict)) ; conflict always wins
185 (setq state propstat))
185 (and remote (string-equal (match-string 3) "*") 186 (and remote (string-equal (match-string 3) "*")
186 ;; FIXME are there other possible combinations? 187 ;; FIXME are there other possible combinations?
187 (cond ((eq state 'edited) (setq state 'needs-merge)) 188 (cond ((eq state 'edited) (setq state 'needs-merge))