summaryrefslogtreecommitdiff
path: root/lisp/vc-bzr.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2008-06-20 18:12:01 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2008-06-20 18:12:01 +0000
commit96be1503689cf25bc9d99ae231a00c72f15a1088 (patch)
tree7d0dd7a3e0b48f5c497a60dbc3d13e37e403de1b /lisp/vc-bzr.el
parent0667a132686f83c1708f66c872f62fe56d6d37a0 (diff)
downloademacs-96be1503689cf25bc9d99ae231a00c72f15a1088.tar.gz
(vc-bzr-annotate-extract-revision-at-line):
Allow more than one space before the |.
Diffstat (limited to 'lisp/vc-bzr.el')
-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 bcf86a4b169..70704dc4d5e 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
@@ -552,7 +552,7 @@ property containing author and date information."
Return nil if current line isn't annotated."
(save-excursion
(beginning-of-line)
- (if (looking-at " *\\([0-9.]+\\) | ")
+ (if (looking-at " *\\([0-9.]+\\) *| ")
(match-string-no-properties 1))))
(defun vc-bzr-command-discarding-stderr (command &rest args)