1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(change-log-font-lock-keywords): Don't consider

a closeparen as part of a function or variable name.
This commit is contained in:
Richard M. Stallman 1997-08-12 23:08:13 +00:00
parent 0488694c33
commit 6f187d8d8a

View File

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