aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Naggum1997-05-22 19:10:29 +0000
committerErik Naggum1997-05-22 19:10:29 +0000
commit6f6a26416e90e422c8702673e278da929e39aa4e (patch)
tree538f47334fdb22891b0315cd787c2061fead52df
parent97fd9abf62f9ae381fa22c26c888aa5d8f835a7b (diff)
downloademacs-6f6a26416e90e422c8702673e278da929e39aa4e.tar.gz
emacs-6f6a26416e90e422c8702673e278da929e39aa4e.zip
(change-log-font-lock-keywords): Tweak font-lock-keywords.
-rw-r--r--lisp/add-log.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 27ace80f219..3b963bd3bbe 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -68,9 +68,11 @@ This defaults to the value of `user-mail-address'."
68(defvar change-log-font-lock-keywords 68(defvar change-log-font-lock-keywords
69 '(;; 69 '(;;
70 ;; Date lines, new and old styles. 70 ;; Date lines, new and old styles.
71 ("^\\sw........." 71 ("^\\sw.........[0-9: ]*"
72 (0 font-lock-string-face) 72 (0 font-lock-string-face)
73 ("[A-Z][^\n<]+" nil nil (0 font-lock-reference-face))) 73 ("\\([^<]+\\)<\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)>" nil nil
74 (1 font-lock-reference-face)
75 (2 font-lock-variable-name-face)))
74 ;; 76 ;;
75 ;; File names. 77 ;; File names.
76 ("^\t\\* \\([^ ,:([\n]+\\)" 78 ("^\t\\* \\([^ ,:([\n]+\\)"