Variable: lisp-font-lock-keywords-1
lisp-font-lock-keywords-1 is an alias for
lisp-el-font-lock-keywords-1, defined in lisp-mode.el.gz.
This variable is obsolete since 24.4; use
lisp-el-font-lock-keywords-1 instead.
Value
(("(\\(cl-def\\(?:generic\\|m\\(?:acro\\|ethod\\)\\|s\\(?:\\(?:truc\\|ubs\\)t\\)\\|type\\|un\\)\\|def\\(?:a\\(?:dvice\\|lias\\)\\|c\\(?:lass\\|onst\\|ustom\\)\\|face\\|g\\(?:eneric\\|roup\\)\\|ine-\\(?:advice\\|derived-mode\\|error\\|g\\(?:\\(?:eneric\\|lobal\\(?:\\(?:ized\\)?-minor\\)\\)-mode\\)\\|inline\\|minor-mode\\|skeleton\\|widget\\)\\|m\\(?:acro\\|ethod\\)\\|subst\\|theme\\|un\\|var\\(?:-local\\|alias\\)?\\)\\|ert-deftest\\)\\_>[ ']*\\(([ ']*\\)?\\(\\(setf\\)[ ]+\\(?:\\w\\|\\s_\\|\\\\.\\)+\\|\\(?:\\w\\|\\s_\\|\\\\.\\)+\\)?"
(1 font-lock-keyword-face)
(3
(let
((type (get (intern-soft (match-string 1)) 'lisp-define-type)))
(cond ((eq type 'var) font-lock-variable-name-face)
((eq type 'type) font-lock-type-face)
((or (not (match-string 2))
(and (match-string 2) (match-string 4)))
font-lock-function-name-face)))
nil t))
("^;;;###\\(\\([-[:alnum:]]+?\\)-\\)?\\(autoload\\)"
(3 font-lock-warning-face prepend)
(2 font-lock-function-name-face prepend t)))
Documentation
Subdued level highlighting for Emacs Lisp mode.
Aliases
lisp-font-lock-keywords-1 (obsolete since 24.4)