From: Juri Linkov Date: Sun, 23 May 2004 20:57:50 +0000 (+0000) Subject: (change-log-font-lock-keywords): Remove `:' from X-Git-Tag: ttn-vms-21-2-B4~6081 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c58bb024cbbfe40750305b46b82e869fb18aa710;p=emacs.git (change-log-font-lock-keywords): Remove `:' from regexps for function and variable names. --- 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." ;; Possibly further names in a list: ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face)) ;; Possibly a parenthesized list of names: - ("\\= (\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face)) - ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) + ("\\= (\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)) + ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face))) ;; ;; Function or variable names. - ("^\t(\\([^) ,:\n]+\\)" + ("^\t(\\([^) ,\n]+\\)" (1 'change-log-list-face) - ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) + ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face))) ;; ;; Conditionals. ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face))