Function: denote--file-excluded-p

denote--file-excluded-p is a byte-compiled function defined in denote.el.

Signature

(denote--file-excluded-p FILE)

Documentation

Return non-file if FILE matches denote-excluded-files-regexp.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote--file-excluded-p (file)
  "Return non-file if FILE matches `denote-excluded-files-regexp'."
  (and denote-excluded-files-regexp
       (string-match-p denote-excluded-files-regexp file)))