GNU bug report logs -
#7792
24.0.50; vc-annotate doesn't understand all commiters IDs
Previous Next
Reported by: mah <at> everybody.org (Mark A. Hershberger)
Date: Wed, 5 Jan 2011 19:09:02 UTC
Severity: minor
Found in version 24.0.50
Fixed in version 24.1
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #16 received at 7792 <at> debbugs.gnu.org (full text, mbox):
close 7792
thanks
> While trying to find a large file to try vc-annotate on for the BZR
> backend, I first tried lisp/gnus/gnus-art.el from the Emacs repository
> but I noticed that commits (such as r102020
> <http://bazaar.launchpad.net/~vcs-imports/emacs/trunk/revision/102020>)
> that were made by a committer with a space in zes[1] commit id were not
> found.
Indeed. I've committed the patch below to the emacs-23 branch (for
Emacs-23.3) which should fix it.
Note that the author name used in those commits (i.e. "Gnus
developpers") is not a good choice since it doesn't follow the "name
<email>" format. So it should have been something like "Gnus
developpers <gnus <at> gnus.org>" which would not have triggered this bug.
Stefan
=== modified file 'lisp/ChangeLog'
--- lisp/ChangeLog 2011-01-04 07:09:46 +0000
+++ lisp/ChangeLog 2011-01-06 16:00:20 +0000
@@ -1,3 +1,8 @@
+2011-01-06 Stefan Monnier <monnier <at> iro.umontreal.ca>
+
+ * vc-bzr.el (vc-bzr-annotate-command, vc-bzr-annotate-time):
+ Author names can have space (bug#7792).
+
2011-01-04 Kenichi Handa <handa <at> m17n.org>
* mail/rmailmm.el (rmail-mime-insert-bulk): Display an unknown
=== modified file 'lisp/vc-bzr.el'
--- lisp/vc-bzr.el 2011-01-02 23:50:46 +0000
+++ lisp/vc-bzr.el 2011-01-06 15:33:56 +0000
@@ -605,7 +605,7 @@
(when (process-buffer proc)
(with-current-buffer (process-buffer proc)
(setq string (concat (process-get proc :vc-left-over) string))
- (while (string-match "^\\( *[0-9.]+ *\\) \\([^\n ]+\\) +\\([0-9]\\{8\\}\\)\\( |.*\n\\)" string)
+ (while (string-match "^\\( *[0-9.]+ *\\) \\(.+?\\) +\\([0-9]\\{8\\}\\)\\( |.*\n\\)" string)
(let* ((rev (match-string 1 string))
(author (match-string 2 string))
(date (match-string 3 string))
@@ -632,7 +632,7 @@
(declare-function vc-annotate-convert-time "vc-annotate" (time))
(defun vc-bzr-annotate-time ()
- (when (re-search-forward "^ *[0-9.]+ +[^\n ]* +|" nil t)
+ (when (re-search-forward "^ *[0-9.]+ +.+? +|" nil t)
(let ((prop (get-text-property (line-beginning-position) 'help-echo)))
(string-match "[0-9]+\\'" prop)
(let ((str (match-string-no-properties 0 prop)))
This bug report was last modified 14 years and 197 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.