aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-05-23 03:01:10 +0000
committerStefan Monnier2008-05-23 03:01:10 +0000
commit8100b5a869261fd8ee60dea5e5fa45f83ca41316 (patch)
tree5e54e51415df0cc3cf7962ef44a854788cdcf0de
parentdbf46ba612e54e24f0b619013b3a40b3d2ba9d84 (diff)
downloademacs-8100b5a869261fd8ee60dea5e5fa45f83ca41316.tar.gz
emacs-8100b5a869261fd8ee60dea5e5fa45f83ca41316.zip
(vc-bzr-revision-completion-table): Choose the right `:'.
-rw-r--r--lisp/vc-bzr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el
index a54cd7319f4..8e2ae86b471 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
@@ -662,7 +662,7 @@ stream. Standard error output is discarded."
662 ) 662 )
663 ((eq (car-safe action) 'boundaries) 663 ((eq (car-safe action) 'boundaries)
664 (list* 'boundaries 664 (list* 'boundaries
665 (if (string-match ":" string) (1+ (match-beginning 0))) 665 (string-match "[^:]*\\'" string)
666 (string-match ":" (cdr action)))) 666 (string-match ":" (cdr action))))
667 (t 667 (t
668 ;; Could use completion-table-with-terminator, except that it 668 ;; Could use completion-table-with-terminator, except that it