diff options
| -rw-r--r-- | lisp/vc/vc-bzr.el | 4 | ||||
| -rw-r--r-- | lisp/vc/vc-git.el | 2 | ||||
| -rw-r--r-- | lisp/vc/vc-hg.el | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el index 279d5ac9236..085c05bcc05 100644 --- a/lisp/vc/vc-bzr.el +++ b/lisp/vc/vc-bzr.el | |||
| @@ -715,11 +715,11 @@ or a superior directory.") | |||
| 715 | ;; value of log-view-message-re only since Emacs-23. | 715 | ;; value of log-view-message-re only since Emacs-23. |
| 716 | (if (eq vc-log-view-type 'short) | 716 | (if (eq vc-log-view-type 'short) |
| 717 | (append `((,log-view-message-re | 717 | (append `((,log-view-message-re |
| 718 | (1 'log-view-message-face) | 718 | (1 'log-view-message) |
| 719 | (2 'change-log-name) | 719 | (2 'change-log-name) |
| 720 | (3 'change-log-date) | 720 | (3 'change-log-date) |
| 721 | (4 'change-log-list nil lax)))) | 721 | (4 'change-log-list nil lax)))) |
| 722 | (append `((,log-view-message-re . 'log-view-message-face)) | 722 | (append `((,log-view-message-re . 'log-view-message)) |
| 723 | ;; log-view-font-lock-keywords | 723 | ;; log-view-font-lock-keywords |
| 724 | '(("^ *\\(?:committer\\|author\\): \ | 724 | '(("^ *\\(?:committer\\|author\\): \ |
| 725 | \\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]" | 725 | \\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]" |
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index c6702800161..24dabb6f9f3 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -152,7 +152,7 @@ the staging area." | |||
| 152 | ;; revision number to be group 1. | 152 | ;; revision number to be group 1. |
| 153 | "^\\(?:[*/\\| ]+ \\)?\\(?2: ([^)]+)\\)?\\(?1:[0-9a-z]+\\)..: \ | 153 | "^\\(?:[*/\\| ]+ \\)?\\(?2: ([^)]+)\\)?\\(?1:[0-9a-z]+\\)..: \ |
| 154 | \\(?3:.*?\\)[ \t]+\\(?4:[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\)" | 154 | \\(?3:.*?\\)[ \t]+\\(?4:[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\)" |
| 155 | ((1 'log-view-message-face) | 155 | ((1 'log-view-message) |
| 156 | (2 'change-log-list nil lax) | 156 | (2 'change-log-list nil lax) |
| 157 | (3 'change-log-name) | 157 | (3 'change-log-name) |
| 158 | (4 'change-log-date))) | 158 | (4 'change-log-date))) |
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index fc072516924..2f9487ca2e7 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el | |||
| @@ -157,7 +157,7 @@ switches." | |||
| 157 | "\\([0-9]+\\):\\([^:]*\\)" | 157 | "\\([0-9]+\\):\\([^:]*\\)" |
| 158 | ":\\([^:]*\\):\\([^:]*\\):\\(.*?\\)" | 158 | ":\\([^:]*\\):\\([^:]*\\):\\(.*?\\)" |
| 159 | "[ \t]+\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\)") | 159 | "[ \t]+\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\)") |
| 160 | ((1 'log-view-message-face) | 160 | ((1 'log-view-message) |
| 161 | (2 'change-log-file) | 161 | (2 'change-log-file) |
| 162 | (3 'change-log-list) | 162 | (3 'change-log-list) |
| 163 | (4 'change-log-conditionals) | 163 | (4 'change-log-conditionals) |