aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-bzr.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2827ff8d9d5..a5569604bd8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
4
12010-01-05 Tom Tromey <tromey@redhat.com> 52010-01-05 Tom Tromey <tromey@redhat.com>
2 6
3 * progmodes/python.el (python-font-lock-keywords): Handle 7 * progmodes/python.el (python-font-lock-keywords): Handle
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el
index d0b8ec8ff6a..f140671be12 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
@@ -671,7 +671,6 @@ stream. Standard error output is discarded."
671 ;; For conflicts, should we list the .THIS/.BASE/.OTHER? 671 ;; For conflicts, should we list the .THIS/.BASE/.OTHER?
672 ("C " . conflict) 672 ("C " . conflict)
673 ("? " . unregistered) 673 ("? " . unregistered)
674 ("? " . unregistered)
675 ;; No such state, but we need to distinguish this case. 674 ;; No such state, but we need to distinguish this case.
676 ("R " . renamed) 675 ("R " . renamed)
677 ;; For a non existent file FOO, the output is: 676 ;; For a non existent file FOO, the output is:
@@ -683,6 +682,8 @@ stream. Standard error output is discarded."
683 ;; FIXME: maybe this warning can be put in the vc-dir header... 682 ;; FIXME: maybe this warning can be put in the vc-dir header...
684 ("wor" . not-found) 683 ("wor" . not-found)
685 ;; Ignore "P " and "P." for pending patches. 684 ;; Ignore "P " and "P." for pending patches.
685 ("P " . not-found)
686 ("P. " . not-found)
686 )) 687 ))
687 (translated nil) 688 (translated nil)
688 (result nil)) 689 (result nil))