summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/vc/add-log.el2
-rw-r--r--lisp/vc/vc-bzr.el2
-rw-r--r--lisp/vc/vc-mtn.el2
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el
index ceef5724dce..91c69202dd5 100644
--- a/lisp/vc/add-log.el
+++ b/lisp/vc/add-log.el
@@ -240,7 +240,7 @@ a case simply use the directory containing the changed file."
;; addition, using any kind of fixed setting like this doesn't
;; work if a user customizes add-log-time-format.
("^[0-9-]+ +\\|^ \\{11,\\}\\|^\t \\{3,\\}\\|^\\(Sun\\|Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\) [A-z][a-z][a-z] [0-9:+ ]+"
- (0 'change-log-date-face)
+ (0 'change-log-date)
;; Name and e-mail; some people put e-mail in parens, not angles.
("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil
(1 'change-log-name)
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el
index 085c05bcc05..73d05c7bfce 100644
--- a/lisp/vc/vc-bzr.el
+++ b/lisp/vc/vc-bzr.el
@@ -725,7 +725,7 @@ or a superior directory.")
\\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]"
(1 'change-log-name)
(2 'change-log-email))
- ("^ *timestamp: \\(.*\\)" (1 'change-log-date-face)))))))
+ ("^ *timestamp: \\(.*\\)" (1 'change-log-date)))))))
(autoload 'vc-setup-buffer "vc-dispatcher")
diff --git a/lisp/vc/vc-mtn.el b/lisp/vc/vc-mtn.el
index 0b832aaf390..ac95da08f1f 100644
--- a/lisp/vc/vc-mtn.el
+++ b/lisp/vc/vc-mtn.el
@@ -250,7 +250,7 @@ If LIMIT is non-nil, show no more than this many entries."
(set (make-local-variable 'log-view-font-lock-keywords)
(append log-view-font-lock-keywords
'(("^[ |]+Author: \\(.*\\)" (1 'change-log-email))
- ("^[ |]+Date: \\(.*\\)" (1 'change-log-date-face))))))
+ ("^[ |]+Date: \\(.*\\)" (1 'change-log-date))))))
;; (defun vc-mtn-show-log-entry (revision)
;; )