Variable: gnus-score-default-duration

gnus-score-default-duration is a customizable variable defined in gnus-score.el.gz.

Value

nil

Documentation

Default duration of effect when entering new scores.

Should be one of the following symbols.

 t: temporary
 p: permanent
 i: immediate

If nil, the user will be asked for a duration.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defcustom gnus-score-default-duration nil
  "Default duration of effect when entering new scores.

Should be one of the following symbols.

 t: temporary
 p: permanent
 i: immediate

If nil, the user will be asked for a duration."
  :group 'gnus-score-default
  :type '(choice (const :tag "temporary" t)
		 (const :tag "permanent" p)
		 (const :tag "immediate" i)
		 (const :tag "ask" nil)))