[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master e4fff0f: Replace change-log-date-face -> change-log
From: |
Sam Steingold |
Subject: |
[Emacs-diffs] master e4fff0f: Replace change-log-date-face -> change-log-date |
Date: |
Wed, 8 Mar 2017 13:32:36 -0500 (EST) |
branch: master
commit e4fff0ff2a2f3526c7b2f82100b5ad56b7b481a1
Author: Sam Steingold <address@hidden>
Commit: Sam Steingold <address@hidden>
Replace change-log-date-face -> change-log-date
This fixes c430f7e23fc2c22f251ace4254e37dea1452dfc3.
---
lisp/vc/add-log.el | 2 +-
lisp/vc/vc-bzr.el | 2 +-
lisp/vc/vc-mtn.el | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el
index ceef572..91c6920 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]*[(<]\\(address@hidden)[>)]" nil nil
(1 'change-log-name)
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el
index 085c05b..73d05c7 100644
--- a/lisp/vc/vc-bzr.el
+++ b/lisp/vc/vc-bzr.el
@@ -725,7 +725,7 @@ or a superior directory.")
\\([^<(]+?\\)[ ]*[(<]\\([[:alnum:address@hidden: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 0b832aa..ac95da0 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)
;; )
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master e4fff0f: Replace change-log-date-face -> change-log-date,
Sam Steingold <=