Variable: tramp-debug-font-lock-keywords

tramp-debug-font-lock-keywords is a variable defined in tramp.el.gz.

Value

(list
 (concat "^\\(?:" tramp-debug-outline-regexp "\\).+")
 '(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.el.gz
(defconst tramp-debug-font-lock-keywords
  ;; FIXME: Make it a function instead of an ELisp 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
    (concat "^\\(?:" tramp-debug-outline-regexp "\\).+")
    '(1 font-lock-warning-face t t)
    '(0 (outline-font-lock-face) keep t))
  "Used for highlighting Tramp debug buffers in `outline-mode'.")