Variable: lisp-el-font-lock-keywords-for-backtraces-1

lisp-el-font-lock-keywords-for-backtraces-1 is a variable defined in lisp-mode.el.gz.

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\\|g\\(?:\\(?:eneric\\|lobal\\(?:\\(?:ized\\)?-minor\\)\\)-mode\\)\\|inline\\|minor-mode\\|skeleton\\|widget\\)\\|m\\(?:acro\\|ethod\\)\\|subst\\|theme\\|un\\|var\\(?:-local\\|alias\\)?\\)\\|ert-deftest\\)\\_>[    ']*\\(([        ']*\\)?\\(\\(setf\\)[   ]+\\(?:\\sw\\|\\s_\\|\\\\.\\)+\\|\\(?:\\sw\\|\\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))
 ("^;;;###\\([-a-z]*autoload\\)" 1 font-lock-warning-face prepend))

Documentation

Subdued highlighting from Emacs Lisp mode used in Backtrace mode.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp-mode.el.gz
(defconst lisp-el-font-lock-keywords-for-backtraces-1 lisp-el-font-lock-keywords-1
  "Subdued highlighting from Emacs Lisp mode used in Backtrace mode.")