diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-09-17 19:13:19 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-09-17 19:13:19 +0000 |
commit | 576c7f5e194536575bf144f08803fd76f3d6995a (patch) | |
tree | b62e8b60a85783167ee315f56dbeb756ff864071 /lisp/vc-git.el | |
parent | f61ac501ef4dca8f5c3f4fce694ba31f4d2d04b2 (diff) | |
download | emacs-576c7f5e194536575bf144f08803fd76f3d6995a.tar.gz emacs-576c7f5e194536575bf144f08803fd76f3d6995a.tar.bz2 emacs-576c7f5e194536575bf144f08803fd76f3d6995a.zip |
(vc-git-log-view-mode): Add font-lock patterns for
Signed-off-by, Acked-by and Merge.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r-- | lisp/vc-git.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index ed4b1270972..88946f160ff 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -290,6 +290,14 @@ ("^Author:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" (1 'change-log-name) (2 'change-log-email)) + ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)" + (1 'change-log-name)) + ("^ +\\(?:\\(?:[Aa]cked\\|[Ss]igned-[Oo]ff\\)-[Bb]y:\\)[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" + (1 'change-log-name) + (2 'change-log-email)) + ("^Merge: \\([0-9a-z]+\\) \\([0-9a-z]+\\)" + (1 'change-log-acknowledgement) + (2 'change-log-acknowledgement)) ("^Date: \\(.+\\)" (1 'change-log-date)) ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message)))))) |