aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2004-05-23 20:57:50 +0000
committerJuri Linkov2004-05-23 20:57:50 +0000
commitc58bb024cbbfe40750305b46b82e869fb18aa710 (patch)
tree7821c25654c70e3be36d5a8683323c79644bb704
parent28633019fcb9b74377528acf9af6bcf4f7fbd443 (diff)
downloademacs-c58bb024cbbfe40750305b46b82e869fb18aa710.tar.gz
emacs-c58bb024cbbfe40750305b46b82e869fb18aa710.zip
(change-log-font-lock-keywords): Remove `:' from
regexps for function and variable names.
-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))