aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2010-01-03 20:43:23 -0800
committerDan Nicolaescu2010-01-03 20:43:23 -0800
commit3d5d0aa92fcc051e46badde9742870a0aa3f66b6 (patch)
tree0273694c6256a622b53c5eba3409d09aa8cca4e8
parent137d88ca4b508421c511875801dcbff81588979c (diff)
downloademacs-3d5d0aa92fcc051e46badde9742870a0aa3f66b6.tar.gz
emacs-3d5d0aa92fcc051e46badde9742870a0aa3f66b6.zip
(vc-bzr-log-view-mode): Also highlight the author.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/vc-bzr.el2
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 82061b6bb65..7a56bd064c2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight 3 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
4 checkouts. (Bug#618) 4 checkouts. (Bug#618)
5 (vc-bzr-log-view-mode): Also highlight the author.
5 6
62010-01-02 Chong Yidong <cyd@stupidchicken.com> 72010-01-02 Chong Yidong <cyd@stupidchicken.com>
7 8
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el
index 80aa420aa9e..c5b82e38a78 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
@@ -484,7 +484,7 @@ REV non-nil gets an error."
484 (4 'change-log-list nil lax)))) 484 (4 'change-log-list nil lax))))
485 (append `((,log-view-message-re . 'log-view-message-face)) 485 (append `((,log-view-message-re . 'log-view-message-face))
486 ;; log-view-font-lock-keywords 486 ;; log-view-font-lock-keywords
487 '(("^ *committer: \ 487 '(("^ *\\(?:committer\\|author\\): \
488\\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]" 488\\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]"
489 (1 'change-log-name) 489 (1 'change-log-name)
490 (2 'change-log-email)) 490 (2 'change-log-email))