1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(change-log-font-lock-keywords): Remove `:' from

regexps for function and variable names.
This commit is contained in:
Juri Linkov 2004-05-23 20:57:50 +00:00
parent 28633019fc
commit c58bb024cb

View file

@ -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))