Variable: load-path-shadows-font-lock-keywords
load-path-shadows-font-lock-keywords is a variable defined in
shadow.el.gz.
Value
(("hides \\(/nix/store/g9awsiwsy0cqwj6a6hb6x6423d8fdbf1-emacs-snapshot/share/emacs/32.0.50/lisp/.*\\)"
1 font-lock-warning-face))
Documentation
Keywords to highlight in load-path-shadows-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/shadow.el.gz
(defvar load-path-shadows-font-lock-keywords
;; The idea is that shadows of files supplied with Emacs are more
;; serious than various versions of external packages shadowing each
;; other.
`((,(format "hides \\(%s.*\\)"
(file-name-directory
(or (locate-library "simple")
(file-name-as-directory
(expand-file-name "../lisp" data-directory)))))
. (1 font-lock-warning-face)))
"Keywords to highlight in `load-path-shadows-mode'.")