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/796qy5jz9b0ygikp41xidcplg2vxxpi4-emacs-29-4/share/emacs/29.4/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'.")