1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 06:20:43 -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: ;; Possibly further names in a list:
("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face)) ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face))
;; Possibly a parenthesized list of names: ;; 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. ;; Function or variable names.
("^\t(\\([^) ,:\n]+\\)" ("^\t(\\([^) ,\n]+\\)"
(1 'change-log-list-face) (1 'change-log-list-face)
("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))
;; ;;
;; Conditionals. ;; Conditionals.
("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face)) ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face))