(change-log-font-lock-keywords): Don't consider
a closeparen as part of a function or variable name.
This commit is contained in:
parent
0488694c33
commit
6f187d8d8a
1 changed files with 2 additions and 2 deletions
|
@ -91,9 +91,9 @@ and `current-time-string' are two valid values."
|
|||
("\\=, \\([^ ,:([\n]+\\)" nil nil (1 font-lock-function-name-face)))
|
||||
;;
|
||||
;; Function or variable names.
|
||||
("(\\([^ ,:\n]+\\)"
|
||||
("(\\([^) ,:\n]+\\)"
|
||||
(1 font-lock-keyword-face)
|
||||
("\\=, \\([^ ,:\n]+\\)" nil nil (1 font-lock-keyword-face)))
|
||||
("\\=, *\\([^) ,:\n]+\\)" nil nil (1 font-lock-keyword-face)))
|
||||
;;
|
||||
;; Conditionals.
|
||||
("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 font-lock-variable-name-face))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue