1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +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. ;; The symbol itself.
(list (concat "\\`\\(" name-char "+\\)\\(\\(:\\)\\|\\('\\)\\)") (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. ;; Words inside `' which tend to be symbol names.
(list (concat "`\\(" sym-char sym-char "+\\)'") (list (concat "`\\(" sym-char sym-char "+\\)'")