Variable: gnus-uu-ignore-files-by-name

gnus-uu-ignore-files-by-name is a customizable variable defined in gnus-uu.el.gz.

Value

nil

Documentation

A regular expression saying what files should not be viewed based on name.

If, for instance, you want gnus-uu to ignore all .au and .wav files, you could say something like

  (setq gnus-uu-ignore-files-by-name "\\\\.au$\\\\|\\\\.wav$")

Note that this variable can be used in conjunction with the gnus-uu-ignore-files-by-type variable.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defcustom gnus-uu-ignore-files-by-name nil
  "A regular expression saying what files should not be viewed based on name.
If, for instance, you want gnus-uu to ignore all .au and .wav files,
you could say something like

  (setq gnus-uu-ignore-files-by-name \"\\\\.au$\\\\|\\\\.wav$\")

Note that this variable can be used in conjunction with the
`gnus-uu-ignore-files-by-type' variable."
  :group 'gnus-extract
  :type '(choice (const :tag "off" nil)
		 (regexp :format "%v")))