1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(help-font-lock-keywords): Undo July 26 change.

This commit is contained in:
Richard M. Stallman 1996-07-31 18:17:16 +00:00
parent 1e60bcf825
commit 8743d4cb20

View File

@ -97,7 +97,10 @@
;;
;; The symbol itself.
(list (concat "\\`\\(" name-char "+\\)\\(\\(:\\)\\|\\('\\)\\)")
'(1 font-lock-function-name-face))
'(1 (if (match-beginning 3)
font-lock-function-name-face
font-lock-variable-name-face)
nil t))
;;
;; Words inside `' which tend to be symbol names.
(list (concat "`\\(" sym-char sym-char "+\\)'")