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/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.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'.")