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/sszxjnwzazz01486dqxi6cpi1wxyg88v-emacs-28-2/share/emacs/28.2/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'.")