Variable: tramp-debug-font-lock-keywords
tramp-debug-font-lock-keywords is a variable defined in
tramp-message.el.gz.
Value
(list (rx bol (regexp tramp-debug-outline-regexp) (+ nonl))
'(1 font-lock-warning-face t t)
'(0 (outline-font-lock-face) keep t))
Documentation
Used for highlighting Tramp debug buffers in outline-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-message.el.gz
(defconst tramp-debug-font-lock-keywords
;; FIXME: Make it a function instead of a Lisp expression, so you
;; can evaluate it with `funcall' rather than `eval'!
;; Also, in `font-lock-defaults' you can specify a function name for
;; the "KEYWORDS" part, so font-lock calls it to get the actual keywords!
'(list
(rx bol (regexp tramp-debug-outline-regexp) (+ nonl))
'(1 font-lock-warning-face t t)
'(0 (outline-font-lock-face) keep t))
"Used for highlighting Tramp debug buffers in `outline-mode'.")