diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-05-23 03:01:10 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-05-23 03:01:10 +0000 |
commit | 8100b5a869261fd8ee60dea5e5fa45f83ca41316 (patch) | |
tree | 5e54e51415df0cc3cf7962ef44a854788cdcf0de /lisp/vc-bzr.el | |
parent | dbf46ba612e54e24f0b619013b3a40b3d2ba9d84 (diff) | |
download | emacs-8100b5a869261fd8ee60dea5e5fa45f83ca41316.tar.gz |
(vc-bzr-revision-completion-table): Choose the right `:'.
Diffstat (limited to 'lisp/vc-bzr.el')
-rw-r--r-- | lisp/vc-bzr.el | 2 |
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." ) ((eq (car-safe action) 'boundaries) (list* 'boundaries - (if (string-match ":" string) (1+ (match-beginning 0))) + (string-match "[^:]*\\'" string) (string-match ":" (cdr action)))) (t ;; Could use completion-table-with-terminator, except that it |