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:
parent
28633019fc
commit
c58bb024cb
1 changed files with 4 additions and 4 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue