aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/add-log.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index ead1fe679d6..3c29e8a465e 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -230,13 +230,13 @@ Note: The search is conducted only within 10%, at the beginning of the file."
230 ;; Possibly further names in a list: 230 ;; Possibly further names in a list:
231 ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face)) 231 ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face))
232 ;; Possibly a parenthesized list of names: 232 ;; Possibly a parenthesized list of names:
233 ("\\= (\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face)) 233 ("\\= (\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face))
234 ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) 234 ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))
235 ;; 235 ;;
236 ;; Function or variable names. 236 ;; Function or variable names.
237 ("^\t(\\([^) ,:\n]+\\)" 237 ("^\t(\\([^) ,\n]+\\)"
238 (1 'change-log-list-face) 238 (1 'change-log-list-face)
239 ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) 239 ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))
240 ;; 240 ;;
241 ;; Conditionals. 241 ;; Conditionals.
242 ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face)) 242 ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face))