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

lisp-el-font-lock-keywords-for-backtraces 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\\|error\\|g\\(?:\\(?:eneric\\|lobalized-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

Default highlighting from Emacs Lisp mode used in Backtrace mode.

Source Code

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