diff options
author | Tom Gillespie <tgbugs@gmail.com> | 2022-12-03 22:41:15 -0800 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-12-04 19:50:45 +0200 |
commit | 432b9655ae0f5426760cf99929384c689d7dfb82 (patch) | |
tree | 1c8125ae8ea6f080a28a8082d32f074e3ec7f9c3 /lisp/emacs-lisp/lisp-mode.el | |
parent | 029988d4a518b9b255a15e2aae3a2ad6565db47d (diff) | |
download | emacs-432b9655ae0f5426760cf99929384c689d7dfb82.tar.gz |
Restore font-lock-type-face for lisp mode &symbols
* lisp/emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2)
(lisp-el-font-lock-keywords-2): Restore use of type face instead of
builtin face for &symbol keywords. This fixes what appears to be
a copy paste error that changed the face for common lisp and emacs
lisp &symbol style keywords that was introduced in commit
a498e5f83 by restoring the type face to font-lock-type-face as
consistent with the comments.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 7e39a77aed5..bf879158188 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -514,7 +514,7 @@ This will generate compile-time constants from BINDINGS." (0 font-lock-builtin-face)) ;; ELisp and CLisp `&' keywords as types. (,(lambda (bound) (lisp-mode--search-key "&" bound)) - (0 font-lock-builtin-face)) + (0 font-lock-type-face)) ;; ELisp regexp grouping constructs (,(lambda (bound) (catch 'found @@ -567,7 +567,7 @@ This will generate compile-time constants from BINDINGS." (0 font-lock-builtin-face)) ;; ELisp and CLisp `&' keywords as types. (,(lambda (bound) (lisp-mode--search-key "&" bound)) - (0 font-lock-builtin-face)) + (0 font-lock-type-face)) ;; ELisp regexp grouping constructs ;; This is too general -- rms. ;; A user complained that he has functions whose names start with `do' |