aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorSam Steingold2017-03-08 13:32:21 -0500
committerSam Steingold2017-03-08 13:32:21 -0500
commite4fff0ff2a2f3526c7b2f82100b5ad56b7b481a1 (patch)
tree342d03917ff38ce0376e512f1bd184f8ebc6e3c0 /lisp
parenta158b351e754329c92f87178090df49824fdcb00 (diff)
downloademacs-e4fff0ff2a2f3526c7b2f82100b5ad56b7b481a1.tar.gz
emacs-e4fff0ff2a2f3526c7b2f82100b5ad56b7b481a1.zip
Replace change-log-date-face -> change-log-date
This fixes c430f7e23fc2c22f251ace4254e37dea1452dfc3.
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."
240 ;; addition, using any kind of fixed setting like this doesn't 240 ;; addition, using any kind of fixed setting like this doesn't
241 ;; work if a user customizes add-log-time-format. 241 ;; work if a user customizes add-log-time-format.
242 ("^[0-9-]+ +\\|^ \\{11,\\}\\|^\t \\{3,\\}\\|^\\(Sun\\|Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\) [A-z][a-z][a-z] [0-9:+ ]+" 242 ("^[0-9-]+ +\\|^ \\{11,\\}\\|^\t \\{3,\\}\\|^\\(Sun\\|Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\) [A-z][a-z][a-z] [0-9:+ ]+"
243 (0 'change-log-date-face) 243 (0 'change-log-date)
244 ;; Name and e-mail; some people put e-mail in parens, not angles. 244 ;; Name and e-mail; some people put e-mail in parens, not angles.
245 ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil 245 ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil
246 (1 'change-log-name) 246 (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.")
725\\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]" 725\\([^<(]+?\\)[ ]*[(<]\\([[:alnum:]_.+-]+@[[:alnum:]_.-]+\\)[>)]"
726 (1 'change-log-name) 726 (1 'change-log-name)
727 (2 'change-log-email)) 727 (2 'change-log-email))
728 ("^ *timestamp: \\(.*\\)" (1 'change-log-date-face))))))) 728 ("^ *timestamp: \\(.*\\)" (1 'change-log-date)))))))
729 729
730(autoload 'vc-setup-buffer "vc-dispatcher") 730(autoload 'vc-setup-buffer "vc-dispatcher")
731 731
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."
250 (set (make-local-variable 'log-view-font-lock-keywords) 250 (set (make-local-variable 'log-view-font-lock-keywords)
251 (append log-view-font-lock-keywords 251 (append log-view-font-lock-keywords
252 '(("^[ |]+Author: \\(.*\\)" (1 'change-log-email)) 252 '(("^[ |]+Author: \\(.*\\)" (1 'change-log-email))
253 ("^[ |]+Date: \\(.*\\)" (1 'change-log-date-face)))))) 253 ("^[ |]+Date: \\(.*\\)" (1 'change-log-date))))))
254 254
255;; (defun vc-mtn-show-log-entry (revision) 255;; (defun vc-mtn-show-log-entry (revision)
256;; ) 256;; )