comparison lisp/gnus/gnus-score.el @ 66808:a93385a3e7a2

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-646 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 152-156) - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS 2005-11-09 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/message.el (message-generate-headers): Downcase the argument given to message-check-element. 2005-11-01 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/gnus.el (gnus-parameters-case-fold-search): New variable. (gnus-parameters-get-parameter): Use it. * lisp/gnus/gnus-score.el (gnus-home-score-file): Doc fix. 2005-11-01 Xavier Maillard <zedek@gnu-rox.org> (tiny change) * lisp/gnus/gnus-score.el (gnus-update-score-entry-dates): Doc fix. 2005-10-31 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/mml.el (mml-preview): Doc fix. 2005-11-10 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (XVarious): Fix description of gnus-use-toolbar; add new variable gnus-toolbar-thickness. 2005-11-08 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (XVarious): Revert description of gnus-use-toolbar. 2005-11-07 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (X-Face): Fix description. (XVarious): Remove gnus-xmas-logo-color-alist and gnus-xmas-logo-color-style; fix description of gnus-use-toolbar. 2005-11-01 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (Group Parameters): Mention new varable gnus-parameters-case-fold-search. (Home Score File): Addition.
author Miles Bader <miles@gnu.org>
date Fri, 11 Nov 2005 05:14:27 +0000
parents 9082bf778ad8
children 1077b8039c32 7beb78bc1f8e
comparison
equal deleted inserted replaced
66807:2fc24a2b40a5 66808:a93385a3e7a2
140 :group 'gnus-score-expire 140 :group 'gnus-score-expire
141 :type '(choice (const :tag "never" nil) 141 :type '(choice (const :tag "never" nil)
142 number)) 142 number))
143 143
144 (defcustom gnus-update-score-entry-dates t 144 (defcustom gnus-update-score-entry-dates t
145 "*In non-nil, update matching score entry dates. 145 "*If non-nil, update matching score entry dates.
146 If this variable is nil, then score entries that provide matches 146 If this variable is nil, then score entries that provide matches
147 will be expired along with non-matching score entries." 147 will be expired along with non-matching score entries."
148 :group 'gnus-score-expire 148 :group 'gnus-score-expire
149 :type 'boolean) 149 :type 'boolean)
150 150
173 (defcustom gnus-home-score-file nil 173 (defcustom gnus-home-score-file nil
174 "Variable to control where interactive score entries are to go. 174 "Variable to control where interactive score entries are to go.
175 It can be: 175 It can be:
176 176
177 * A string 177 * A string
178 This file file will be used as the home score file. 178 This file will be used as the home score file.
179 179
180 * A function 180 * A function
181 The result of this function will be used as the home score file. 181 The result of this function will be used as the home score file.
182 The function will be passed the name of the group as its 182 The function will be passed the name of the group as its
183 parameter. 183 parameter.
184 184
185 * A list 185 * A list
186 The elements in this list can be: 186 The elements in this list can be:
187 187
188 * `(regexp file-name ...)' 188 * `(regexp file-name ...)'
189 If the `regexp' matches the group name, the first `file-name' will 189 If the `regexp' matches the group name, the first `file-name'
190 will be used as the home score file. (Multiple filenames are 190 will be used as the home score file. (Multiple filenames are
191 allowed so that one may use gnus-score-file-single-match-alist to 191 allowed so that one may use gnus-score-file-single-match-alist to
192 set this variable.) 192 set this variable.)
193 193
194 * A function. 194 * A function.