]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-bzr-after-dir-status): Ignore pending merges.
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 6 Jan 2010 15:11:52 +0000 (07:11 -0800)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 6 Jan 2010 15:11:52 +0000 (07:11 -0800)
lisp/ChangeLog
lisp/vc-bzr.el

index 2827ff8d9d51f90004b9cd85c256a4c6b9597039..a5569604bd8f6eddb14e2d19dd76bf806fdd455e 100644 (file)
@@ -1,3 +1,7 @@
+2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
+
 2010-01-05  Tom Tromey  <tromey@redhat.com>
 
        * progmodes/python.el (python-font-lock-keywords): Handle
index d0b8ec8ff6ae52d8febb432cdaa187fcd186ff15..f140671be1227f2d6fadd677b548803284e323c9 100644 (file)
@@ -671,7 +671,6 @@ stream.  Standard error output is discarded."
                        ;; For conflicts, should we list the .THIS/.BASE/.OTHER?
                       ("C  " . conflict)
                       ("?  " . unregistered)
-                      ("?  " . unregistered)
                       ;; No such state, but we need to distinguish this case.
                       ("R  " . renamed)
                       ;; For a non existent file FOO, the output is:
@@ -683,6 +682,8 @@ stream.  Standard error output is discarded."
                       ;; FIXME: maybe this warning can be put in the vc-dir header...
                       ("wor" . not-found)
                        ;; Ignore "P " and "P." for pending patches.
+                      ("P  " . not-found)
+                      ("P. " . not-found)
                        ))
        (translated nil)
        (result nil))