aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-10-01 20:46:42 +0000
committerKarl Heuer1998-10-01 20:46:42 +0000
commita5f06018e145bba96209d6779854d218b2c38c75 (patch)
tree646e0f17b16baef5ab5e2f3dacfd325c975fa051
parent4bb6a3a63c89677a1fe1610c542e65a9031c2e8a (diff)
downloademacs-a5f06018e145bba96209d6779854d218b2c38c75.tar.gz
emacs-a5f06018e145bba96209d6779854d218b2c38c75.zip
(gnus-orphan-score, gnus-score-default-header, gnus-score-default-type):
Fix type.
-rw-r--r--lisp/gnus/gnus-score.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el
index 7d223d11c25..19c9c3ae51e 100644
--- a/lisp/gnus/gnus-score.el
+++ b/lisp/gnus/gnus-score.el
@@ -136,7 +136,8 @@ will be expired along with non-matching score entries."
136(defcustom gnus-orphan-score nil 136(defcustom gnus-orphan-score nil
137 "*All orphans get this score added. Set in the score file." 137 "*All orphans get this score added. Set in the score file."
138 :group 'gnus-score-default 138 :group 'gnus-score-default
139 :type 'integer) 139 :type '(choice (const nil)
140 integer))
140 141
141(defcustom gnus-decay-scores nil 142(defcustom gnus-decay-scores nil
142 "*If non-nil, decay non-permanent scores." 143 "*If non-nil, decay non-permanent scores."
@@ -307,7 +308,8 @@ If nil, the user will be asked for a header."
307 (const :tag "xref" x) 308 (const :tag "xref" x)
308 (const :tag "lines" l) 309 (const :tag "lines" l)
309 (const :tag "date" d) 310 (const :tag "date" d)
310 (const :tag "followup" f))) 311 (const :tag "followup" f)
312 (const :tag "ask" nil)))
311 313
312(defcustom gnus-score-default-type nil 314(defcustom gnus-score-default-type nil
313 "Default match type when entering new scores. 315 "Default match type when entering new scores.
@@ -336,7 +338,8 @@ If nil, the user will be asked for a match type."
336 (const :tag "this date" n) 338 (const :tag "this date" n)
337 (const :tag "less than number" <) 339 (const :tag "less than number" <)
338 (const :tag "greater than number" >) 340 (const :tag "greater than number" >)
339 (const :tag "equal than number" =))) 341 (const :tag "equal than number" =)
342 (const :tag "ask" nil)))
340 343
341(defcustom gnus-score-default-fold nil 344(defcustom gnus-score-default-fold nil
342 "Use case folding for new score file entries iff not nil." 345 "Use case folding for new score file entries iff not nil."