diff options
| author | Glenn Morris | 2011-01-19 23:17:22 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-01-19 23:17:22 -0800 |
| commit | dbfb414e49a879b5d9086f54b67d02e11e445ec2 (patch) | |
| tree | 09498003ec2c19b18c81583e81d816092f102e16 | |
| parent | e885315dd05a005596d4f0585748d25dadff8901 (diff) | |
| download | emacs-dbfb414e49a879b5d9086f54b67d02e11e445ec2.tar.gz emacs-dbfb414e49a879b5d9086f54b67d02e11e445ec2.zip | |
* lisp/vc/vc-svn.el (vc-svn-after-dir-status): Tweak previous change.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/vc/vc-svn.el | 5 |
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 @@ | |||
| 1 | 2011-01-20 Glenn Morris <rgm@gnu.org> | 1 | 2011-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 | ||
| 5 | 2011-01-20 Chong Yidong <cyd@stupidchicken.com> | 7 | 2011-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)) |