Variable: hfy-exclude-file-rules

hfy-exclude-file-rules is a customizable variable defined in htmlfontify.el.gz.

Value

("\\.flc\\'" "/CVS/" "~\\'" "/\\.git\\(?:/\\|\\'\\)")

Documentation

Regular expressions matching files to exclude.

This variable was added, or its default value changed, in Emacs 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defcustom hfy-exclude-file-rules
  '("\\.flc\\'"
    "/CVS/"
    "~\\'"
    "/\\.git\\(?:/\\|\\'\\)")
  "Regular expressions matching files to exclude."
  :tag "exclude-rules"
  :type '(repeat regexp)
  :version "29.1")