Function: gnus-use-long-file-name

gnus-use-long-file-name is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-use-long-file-name SYMBOL)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
	 (eq (gnus-request-type group article) 'news)))) ;use it.

;; Check whether to use long file names.
(defun gnus-use-long-file-name (symbol)
  ;; The variable has to be set...
  (and gnus-use-long-file-name
       ;; If it isn't a list, then we return t.
       (or (not (listp gnus-use-long-file-name))
	   ;; If it is a list, and the list contains `symbol', we
	   ;; return nil.
	   (not (memq symbol gnus-use-long-file-name)))))