3bcd5e5392ab8050d15db261f55544bea9d9bc16
[elisp/gnus.git-] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Semi-gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;;         MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;;         Katsumi Yamaoka  <yamaoka@jpl.org>
8 ;; Keywords: mail, news, MIME
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 (eval-when-compile (require 'cl))
32
33 (require 'gnus)
34 (require 'gnus-group)
35 (require 'gnus-spec)
36 (require 'gnus-range)
37 (require 'gnus-int)
38 (require 'gnus-undo)
39 (require 'gnus-util)
40 ;; Recursive :-(.
41 ;; (require 'gnus-art)
42 (require 'nnoo)
43 (require 'mime-view)
44
45 (eval-when-compile
46   (require 'mime-play)
47   (require 'static))
48
49 (eval-and-compile
50   (autoload 'gnus-cache-articles-in-group "gnus-cache")
51   (autoload 'pgg-decrypt-region "pgg" nil t)
52   (autoload 'pgg-verify-region "pgg" nil t))
53
54 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
55 (autoload 'gnus-cache-write-active "gnus-cache")
56 (autoload 'gnus-set-summary-default-charset "gnus-i18n" nil t)
57 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
58 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
59 (autoload 'mm-uu-dissect "mm-uu")
60
61 (defcustom gnus-kill-summary-on-exit t
62   "*If non-nil, kill the summary buffer when you exit from it.
63 If nil, the summary will become a \"*Dead Summary*\" buffer, and
64 it will be killed sometime later."
65   :group 'gnus-summary-exit
66   :type 'boolean)
67
68 (defcustom gnus-fetch-old-headers nil
69   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
70 If an unread article in the group refers to an older, already read (or
71 just marked as read) article, the old article will not normally be
72 displayed in the Summary buffer.  If this variable is non-nil, Gnus
73 will attempt to grab the headers to the old articles, and thereby
74 build complete threads.  If it has the value `some', only enough
75 headers to connect otherwise loose threads will be displayed.  This
76 variable can also be a number.  In that case, no more than that number
77 of old headers will be fetched.  If it has the value `invisible', all
78 old headers will be fetched, but none will be displayed.
79
80 The server has to support NOV for any of this to work."
81   :group 'gnus-thread
82   :type '(choice (const :tag "off" nil)
83                  (const some)
84                  number
85                  (sexp :menu-tag "other" t)))
86
87 (defcustom gnus-refer-thread-limit 200
88   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
89 If t, fetch all the available old headers."
90   :group 'gnus-thread
91   :type '(choice number
92                  (sexp :menu-tag "other" t)))
93
94 (defcustom gnus-summary-make-false-root 'adopt
95   "*nil means that Gnus won't gather loose threads.
96 If the root of a thread has expired or been read in a previous
97 session, the information necessary to build a complete thread has been
98 lost.  Instead of having many small sub-threads from this original thread
99 scattered all over the summary buffer, Gnus can gather them.
100
101 If non-nil, Gnus will try to gather all loose sub-threads from an
102 original thread into one large thread.
103
104 If this variable is non-nil, it should be one of `none', `adopt',
105 `dummy' or `empty'.
106
107 If this variable is `none', Gnus will not make a false root, but just
108 present the sub-threads after another.
109 If this variable is `dummy', Gnus will create a dummy root that will
110 have all the sub-threads as children.
111 If this variable is `adopt', Gnus will make one of the \"children\"
112 the parent and mark all the step-children as such.
113 If this variable is `empty', the \"children\" are printed with empty
114 subject fields.  (Or rather, they will be printed with a string
115 given by the `gnus-summary-same-subject' variable.)"
116   :group 'gnus-thread
117   :type '(choice (const :tag "off" nil)
118                  (const none)
119                  (const dummy)
120                  (const adopt)
121                  (const empty)))
122
123 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
124   "*A regexp to match subjects to be excluded from loose thread gathering.
125 As loose thread gathering is done on subjects only, that means that
126 there can be many false gatherings performed.  By rooting out certain
127 common subjects, gathering might become saner."
128   :group 'gnus-thread
129   :type 'regexp)
130
131 (defcustom gnus-summary-gather-subject-limit nil
132   "*Maximum length of subject comparisons when gathering loose threads.
133 Use nil to compare full subjects.  Setting this variable to a low
134 number will help gather threads that have been corrupted by
135 newsreaders chopping off subject lines, but it might also mean that
136 unrelated articles that have subject that happen to begin with the
137 same few characters will be incorrectly gathered.
138
139 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
140 comparing subjects."
141   :group 'gnus-thread
142   :type '(choice (const :tag "off" nil)
143                  (const fuzzy)
144                  (sexp :menu-tag "on" t)))
145
146 (defcustom gnus-simplify-subject-functions nil
147   "List of functions taking a string argument that simplify subjects.
148 The functions are applied recursively.
149
150 Useful functions to put in this list include: `gnus-simplify-subject-re',
151 `gnus-simplify-subject-fuzzy' and `gnus-simplify-whitespace'."
152   :group 'gnus-thread
153   :type '(repeat function))
154
155 (defcustom gnus-simplify-ignored-prefixes nil
156   "*Regexp, matches for which are removed from subject lines when simplifying fuzzily."
157   :group 'gnus-thread
158   :type '(choice (const :tag "off" nil)
159                  regexp))
160
161 (defcustom gnus-build-sparse-threads nil
162   "*If non-nil, fill in the gaps in threads.
163 If `some', only fill in the gaps that are needed to tie loose threads
164 together.  If `more', fill in all leaf nodes that Gnus can find.  If
165 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
166   :group 'gnus-thread
167   :type '(choice (const :tag "off" nil)
168                  (const some)
169                  (const more)
170                  (sexp :menu-tag "all" t)))
171
172 (defcustom gnus-summary-thread-gathering-function
173   'gnus-gather-threads-by-subject
174   "*Function used for gathering loose threads.
175 There are two pre-defined functions: `gnus-gather-threads-by-subject',
176 which only takes Subjects into consideration; and
177 `gnus-gather-threads-by-references', which compared the References
178 headers of the articles to find matches."
179   :group 'gnus-thread
180   :type '(radio (function-item gnus-gather-threads-by-subject)
181                 (function-item gnus-gather-threads-by-references)
182                 (function :tag "other")))
183
184 (defcustom gnus-summary-same-subject ""
185   "*String indicating that the current article has the same subject as the previous.
186 This variable will only be used if the value of
187 `gnus-summary-make-false-root' is `empty'."
188   :group 'gnus-summary-format
189   :type 'string)
190
191 (defcustom gnus-summary-goto-unread t
192   "*If t, many commands will go to the next unread article.
193 This applies to marking commands as well as other commands that
194 \"naturally\" select the next article, like, for instance, `SPC' at
195 the end of an article.
196
197 If nil, the marking commands do NOT go to the next unread article
198 (they go to the next article instead).  If `never', commands that
199 usually go to the next unread article, will go to the next article,
200 whether it is read or not."
201   :group 'gnus-summary-marks
202   :link '(custom-manual "(gnus)Setting Marks")
203   :type '(choice (const :tag "off" nil)
204                  (const never)
205                  (sexp :menu-tag "on" t)))
206
207 (defcustom gnus-summary-default-score 0
208   "*Default article score level.
209 All scores generated by the score files will be added to this score.
210 If this variable is nil, scoring will be disabled."
211   :group 'gnus-score-default
212   :type '(choice (const :tag "disable")
213                  integer))
214
215 (defcustom gnus-summary-zcore-fuzz 0
216   "*Fuzziness factor for the zcore in the summary buffer.
217 Articles with scores closer than this to `gnus-summary-default-score'
218 will not be marked."
219   :group 'gnus-summary-format
220   :type 'integer)
221
222 (defcustom gnus-simplify-subject-fuzzy-regexp nil
223   "*Strings to be removed when doing fuzzy matches.
224 This can either be a regular expression or list of regular expressions
225 that will be removed from subject strings if fuzzy subject
226 simplification is selected."
227   :group 'gnus-thread
228   :type '(repeat regexp))
229
230 (defcustom gnus-show-threads t
231   "*If non-nil, display threads in summary mode."
232   :group 'gnus-thread
233   :type 'boolean)
234
235 (defcustom gnus-thread-hide-subtree nil
236   "*If non-nil, hide all threads initially.
237 If threads are hidden, you have to run the command
238 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
239 to expose hidden threads."
240   :group 'gnus-thread
241   :type 'boolean)
242
243 (defcustom gnus-thread-hide-killed t
244   "*If non-nil, hide killed threads automatically."
245   :group 'gnus-thread
246   :type 'boolean)
247
248 (defcustom gnus-thread-ignore-subject t
249   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
250 If nil, articles that have different subjects from their parents will
251 start separate threads."
252   :group 'gnus-thread
253   :type 'boolean)
254
255 (defcustom gnus-thread-operation-ignore-subject t
256   "*If non-nil, subjects will be ignored when doing thread commands.
257 This affects commands like `gnus-summary-kill-thread' and
258 `gnus-summary-lower-thread'.
259
260 If this variable is nil, articles in the same thread with different
261 subjects will not be included in the operation in question.  If this
262 variable is `fuzzy', only articles that have subjects that are fuzzily
263 equal will be included."
264   :group 'gnus-thread
265   :type '(choice (const :tag "off" nil)
266                  (const fuzzy)
267                  (sexp :tag "on" t)))
268
269 (defcustom gnus-thread-indent-level 4
270   "*Number that says how much each sub-thread should be indented."
271   :group 'gnus-thread
272   :type 'integer)
273
274 (defcustom gnus-auto-extend-newsgroup t
275   "*If non-nil, extend newsgroup forward and backward when requested."
276   :group 'gnus-summary-choose
277   :type 'boolean)
278
279 (defcustom gnus-auto-select-first t
280   "*If nil, don't select the first unread article when entering a group.
281 If this variable is `best', select the highest-scored unread article
282 in the group.  If t, select the first unread article.
283
284 This variable can also be a function to place point on a likely
285 subject line.  Useful values include `gnus-summary-first-unread-subject',
286 `gnus-summary-first-unread-article' and
287 `gnus-summary-best-unread-article'.
288
289 If you want to prevent automatic selection of the first unread article
290 in some newsgroups, set the variable to nil in
291 `gnus-select-group-hook'."
292   :group 'gnus-group-select
293   :type '(choice (const :tag "none" nil)
294                  (const best)
295                  (sexp :menu-tag "first" t)
296                  (function-item gnus-summary-first-unread-subject)
297                  (function-item gnus-summary-first-unread-article)
298                  (function-item gnus-summary-best-unread-article)))
299
300 (defcustom gnus-dont-select-after-jump-to-other-group nil
301   "If non-nil, don't select the first unread article after entering the
302 other group by the command `gnus-summary-jump-to-other-group'.  If nil,
303 it is depend on the value of `gnus-auto-select-first' whether to select
304 or not."
305   :group 'gnus-group-select
306   :type 'boolean)
307
308 (defcustom gnus-auto-select-next t
309   "*If non-nil, offer to go to the next group from the end of the previous.
310 If the value is t and the next newsgroup is empty, Gnus will exit
311 summary mode and go back to group mode.  If the value is neither nil
312 nor t, Gnus will select the following unread newsgroup.  In
313 particular, if the value is the symbol `quietly', the next unread
314 newsgroup will be selected without any confirmation, and if it is
315 `almost-quietly', the next group will be selected without any
316 confirmation if you are located on the last article in the group.
317 Finally, if this variable is `slightly-quietly', the `Z n' command
318 will go to the next group without confirmation."
319   :group 'gnus-summary-maneuvering
320   :type '(choice (const :tag "off" nil)
321                  (const quietly)
322                  (const almost-quietly)
323                  (const slightly-quietly)
324                  (sexp :menu-tag "on" t)))
325
326 (defcustom gnus-auto-select-same nil
327   "*If non-nil, select the next article with the same subject.
328 If there are no more articles with the same subject, go to
329 the first unread article."
330   :group 'gnus-summary-maneuvering
331   :type 'boolean)
332
333 (defcustom gnus-summary-check-current nil
334   "*If non-nil, consider the current article when moving.
335 The \"unread\" movement commands will stay on the same line if the
336 current article is unread."
337   :group 'gnus-summary-maneuvering
338   :type 'boolean)
339
340 (defcustom gnus-auto-center-summary t
341   "*If non-nil, always center the current summary buffer.
342 In particular, if `vertical' do only vertical recentering.  If non-nil
343 and non-`vertical', do both horizontal and vertical recentering."
344   :group 'gnus-summary-maneuvering
345   :type '(choice (const :tag "none" nil)
346                  (const vertical)
347                  (integer :tag "height")
348                  (sexp :menu-tag "both" t)))
349
350 (defcustom gnus-show-all-headers nil
351   "*If non-nil, don't hide any headers."
352   :group 'gnus-article-hiding
353   :group 'gnus-article-headers
354   :type 'boolean)
355
356 (defcustom gnus-summary-ignore-duplicates nil
357   "*If non-nil, ignore articles with identical Message-ID headers."
358   :group 'gnus-summary
359   :type 'boolean)
360
361 (defcustom gnus-single-article-buffer t
362   "*If non-nil, display all articles in the same buffer.
363 If nil, each group will get its own article buffer."
364   :group 'gnus-article-various
365   :type 'boolean)
366
367 (defcustom gnus-break-pages t
368   "*If non-nil, do page breaking on articles.
369 The page delimiter is specified by the `gnus-page-delimiter'
370 variable."
371   :group 'gnus-article-various
372   :type 'boolean)
373
374 (defcustom gnus-show-mime t
375   "*If non-nil, do mime processing of articles.
376 The articles will simply be fed to the function given by
377 `gnus-article-display-method-for-mime'."
378   :group 'gnus-article-mime
379   :type 'boolean)
380
381 (defcustom gnus-move-split-methods nil
382   "*Variable used to suggest where articles are to be moved to.
383 It uses the same syntax as the `gnus-split-methods' variable.
384 However, whereas `gnus-split-methods' specifies file names as targets,
385 this variable specifies group names."
386   :group 'gnus-summary-mail
387   :type '(repeat (choice (list :value (fun) function)
388                          (cons :value ("" "") regexp (repeat string))
389                          (sexp :value nil))))
390
391 (defcustom gnus-unread-mark ?  ;Whitespace
392   "*Mark used for unread articles."
393   :group 'gnus-summary-marks
394   :type 'character)
395
396 (defcustom gnus-ticked-mark ?!
397   "*Mark used for ticked articles."
398   :group 'gnus-summary-marks
399   :type 'character)
400
401 (defcustom gnus-dormant-mark ??
402   "*Mark used for dormant articles."
403   :group 'gnus-summary-marks
404   :type 'character)
405
406 (defcustom gnus-del-mark ?r
407   "*Mark used for del'd articles."
408   :group 'gnus-summary-marks
409   :type 'character)
410
411 (defcustom gnus-read-mark ?R
412   "*Mark used for read articles."
413   :group 'gnus-summary-marks
414   :type 'character)
415
416 (defcustom gnus-expirable-mark ?E
417   "*Mark used for expirable articles."
418   :group 'gnus-summary-marks
419   :type 'character)
420
421 (defcustom gnus-killed-mark ?K
422   "*Mark used for killed articles."
423   :group 'gnus-summary-marks
424   :type 'character)
425
426 (defcustom gnus-souped-mark ?F
427   "*Mark used for killed articles."
428   :group 'gnus-summary-marks
429   :type 'character)
430
431 (defcustom gnus-kill-file-mark ?X
432   "*Mark used for articles killed by kill files."
433   :group 'gnus-summary-marks
434   :type 'character)
435
436 (defcustom gnus-low-score-mark ?Y
437   "*Mark used for articles with a low score."
438   :group 'gnus-summary-marks
439   :type 'character)
440
441 (defcustom gnus-catchup-mark ?C
442   "*Mark used for articles that are caught up."
443   :group 'gnus-summary-marks
444   :type 'character)
445
446 (defcustom gnus-replied-mark ?A
447   "*Mark used for articles that have been replied to."
448   :group 'gnus-summary-marks
449   :type 'character)
450
451 (defcustom gnus-cached-mark ?*
452   "*Mark used for articles that are in the cache."
453   :group 'gnus-summary-marks
454   :type 'character)
455
456 (defcustom gnus-saved-mark ?S
457   "*Mark used for articles that have been saved to."
458   :group 'gnus-summary-marks
459   :type 'character)
460
461 (defcustom gnus-no-mark ?  ;Whitespace
462   "*Mark used for articles that have no other secondary mark."
463   :group 'gnus-summary-marks
464   :type 'character)
465
466 (defcustom gnus-ancient-mark ?O
467   "*Mark used for ancient articles."
468   :group 'gnus-summary-marks
469   :type 'character)
470
471 (defcustom gnus-sparse-mark ?Q
472   "*Mark used for sparsely reffed articles."
473   :group 'gnus-summary-marks
474   :type 'character)
475
476 (defcustom gnus-canceled-mark ?G
477   "*Mark used for canceled articles."
478   :group 'gnus-summary-marks
479   :type 'character)
480
481 (defcustom gnus-duplicate-mark ?M
482   "*Mark used for duplicate articles."
483   :group 'gnus-summary-marks
484   :type 'character)
485
486 (defcustom gnus-undownloaded-mark ?@
487   "*Mark used for articles that weren't downloaded."
488   :group 'gnus-summary-marks
489   :type 'character)
490
491 (defcustom gnus-downloadable-mark ?%
492   "*Mark used for articles that are to be downloaded."
493   :group 'gnus-summary-marks
494   :type 'character)
495
496 (defcustom gnus-unsendable-mark ?=
497   "*Mark used for articles that won't be sent."
498   :group 'gnus-summary-marks
499   :type 'character)
500
501 (defcustom gnus-score-over-mark ?+
502   "*Score mark used for articles with high scores."
503   :group 'gnus-summary-marks
504   :type 'character)
505
506 (defcustom gnus-score-below-mark ?-
507   "*Score mark used for articles with low scores."
508   :group 'gnus-summary-marks
509   :type 'character)
510
511 (defcustom gnus-empty-thread-mark ?  ;Whitespace
512   "*There is no thread under the article."
513   :group 'gnus-summary-marks
514   :type 'character)
515
516 (defcustom gnus-not-empty-thread-mark ?=
517   "*There is a thread under the article."
518   :group 'gnus-summary-marks
519   :type 'character)
520
521 (defcustom gnus-view-pseudo-asynchronously nil
522   "*If non-nil, Gnus will view pseudo-articles asynchronously."
523   :group 'gnus-extract-view
524   :type 'boolean)
525
526 (defcustom gnus-auto-expirable-marks
527   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
528         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
529         gnus-souped-mark gnus-duplicate-mark)
530   "*The list of marks converted into expiration if a group is auto-expirable."
531   :version "21.1"
532   :group 'gnus-summary
533   :type '(repeat character))
534
535 (defcustom gnus-inhibit-user-auto-expire t
536   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
537   :version "21.1"
538   :group 'gnus-summary
539   :type 'boolean)
540
541 (defcustom gnus-view-pseudos nil
542   "*If `automatic', pseudo-articles will be viewed automatically.
543 If `not-confirm', pseudos will be viewed automatically, and the user
544 will not be asked to confirm the command."
545   :group 'gnus-extract-view
546   :type '(choice (const :tag "off" nil)
547                  (const automatic)
548                  (const not-confirm)))
549
550 (defcustom gnus-view-pseudos-separately t
551   "*If non-nil, one pseudo-article will be created for each file to be viewed.
552 If nil, all files that use the same viewing command will be given as a
553 list of parameters to that command."
554   :group 'gnus-extract-view
555   :type 'boolean)
556
557 (defcustom gnus-insert-pseudo-articles t
558   "*If non-nil, insert pseudo-articles when decoding articles."
559   :group 'gnus-extract-view
560   :type 'boolean)
561
562 (defcustom gnus-summary-dummy-line-format
563   "  %(:                          :%) %S\n"
564   "*The format specification for the dummy roots in the summary buffer.
565 It works along the same lines as a normal formatting string,
566 with some simple extensions.
567
568 %S  The subject"
569   :group 'gnus-threading
570   :type 'string)
571
572 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
573   "*The format specification for the summary mode line.
574 It works along the same lines as a normal formatting string,
575 with some simple extensions:
576
577 %G  Group name
578 %p  Unprefixed group name
579 %A  Current article number
580 %z  Current article score
581 %V  Gnus version
582 %U  Number of unread articles in the group
583 %e  Number of unselected articles in the group
584 %Z  A string with unread/unselected article counts
585 %g  Shortish group name
586 %S  Subject of the current article
587 %u  User-defined spec
588 %s  Current score file name
589 %d  Number of dormant articles
590 %r  Number of articles that have been marked as read in this session
591 %E  Number of articles expunged by the score files"
592   :group 'gnus-summary-format
593   :type 'string)
594
595 (defcustom gnus-list-identifiers nil
596   "Regexp that matches list identifiers to be removed from subject.
597 This can also be a list of regexps."
598   :version "21.1"
599   :group 'gnus-summary-format
600   :group 'gnus-article-hiding
601   :type '(choice (const :tag "none" nil)
602                  (regexp :value ".*")
603                  (repeat :value (".*") regexp)))
604
605 (defcustom gnus-summary-mark-below 0
606   "*Mark all articles with a score below this variable as read.
607 This variable is local to each summary buffer and usually set by the
608 score file."
609   :group 'gnus-score-default
610   :type 'integer)
611
612 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
613   "*List of functions used for sorting articles in the summary buffer.
614 This variable is only used when not using a threaded display."
615   :group 'gnus-summary-sort
616   :type '(repeat (choice (function-item gnus-article-sort-by-number)
617                          (function-item gnus-article-sort-by-author)
618                          (function-item gnus-article-sort-by-subject)
619                          (function-item gnus-article-sort-by-date)
620                          (function-item gnus-article-sort-by-score)
621                          (function :tag "other"))))
622
623 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
624   "*List of functions used for sorting threads in the summary buffer.
625 By default, threads are sorted by article number.
626
627 Each function takes two threads and return non-nil if the first thread
628 should be sorted before the other.  If you use more than one function,
629 the primary sort function should be the last.  You should probably
630 always include `gnus-thread-sort-by-number' in the list of sorting
631 functions -- preferably first.
632
633 Ready-made functions include `gnus-thread-sort-by-number',
634 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
635 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score' and
636 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function')."
637   :group 'gnus-summary-sort
638   :type '(repeat (choice (function-item gnus-thread-sort-by-number)
639                          (function-item gnus-thread-sort-by-author)
640                          (function-item gnus-thread-sort-by-subject)
641                          (function-item gnus-thread-sort-by-date)
642                          (function-item gnus-thread-sort-by-score)
643                          (function-item gnus-thread-sort-by-total-score)
644                          (function :tag "other"))))
645
646 (defcustom gnus-thread-score-function '+
647   "*Function used for calculating the total score of a thread.
648
649 The function is called with the scores of the article and each
650 subthread and should then return the score of the thread.
651
652 Some functions you can use are `+', `max', or `min'."
653   :group 'gnus-summary-sort
654   :type 'function)
655
656 (defcustom gnus-summary-expunge-below nil
657   "All articles that have a score less than this variable will be expunged.
658 This variable is local to the summary buffers."
659   :group 'gnus-score-default
660   :type '(choice (const :tag "off" nil)
661                  integer))
662
663 (defcustom gnus-thread-expunge-below nil
664   "All threads that have a total score less than this variable will be expunged.
665 See `gnus-thread-score-function' for en explanation of what a
666 \"thread score\" is.
667
668 This variable is local to the summary buffers."
669   :group 'gnus-threading
670   :group 'gnus-score-default
671   :type '(choice (const :tag "off" nil)
672                  integer))
673
674 (defcustom gnus-summary-mode-hook nil
675   "*A hook for Gnus summary mode.
676 This hook is run before any variables are set in the summary buffer."
677   :options '(turn-on-gnus-mailing-list-mode)
678   :group 'gnus-summary-various
679   :type 'hook)
680
681 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
682 (when (featurep 'xemacs)
683   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
684   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
685   (add-hook 'gnus-summary-mode-hook
686             'gnus-xmas-switch-horizontal-scrollbar-off))
687
688 (defcustom gnus-summary-menu-hook nil
689   "*Hook run after the creation of the summary mode menu."
690   :group 'gnus-summary-visual
691   :type 'hook)
692
693 (defcustom gnus-summary-exit-hook nil
694   "*A hook called on exit from the summary buffer.
695 It will be called with point in the group buffer."
696   :group 'gnus-summary-exit
697   :type 'hook)
698
699 (defcustom gnus-summary-prepare-hook nil
700   "*A hook called after the summary buffer has been generated.
701 If you want to modify the summary buffer, you can use this hook."
702   :group 'gnus-summary-various
703   :type 'hook)
704
705 (defcustom gnus-summary-prepared-hook nil
706   "*A hook called as the last thing after the summary buffer has been generated."
707   :group 'gnus-summary-various
708   :type 'hook)
709
710 (defcustom gnus-summary-generate-hook nil
711   "*A hook run just before generating the summary buffer.
712 This hook is commonly used to customize threading variables and the
713 like."
714   :group 'gnus-summary-various
715   :type 'hook)
716
717 (defcustom gnus-select-group-hook nil
718   "*A hook called when a newsgroup is selected.
719
720 If you'd like to simplify subjects like the
721 `gnus-summary-next-same-subject' command does, you can use the
722 following hook:
723
724  (setq gnus-select-group-hook
725       (list
726         (lambda ()
727           (mapcar (lambda (header)
728                      (mail-header-set-subject
729                       header
730                       (gnus-simplify-subject
731                        (mail-header-subject header) 're-only)))
732                   gnus-newsgroup-headers))))"
733   :group 'gnus-group-select
734   :type 'hook)
735
736 (defcustom gnus-select-article-hook nil
737   "*A hook called when an article is selected."
738   :group 'gnus-summary-choose
739   :type 'hook)
740
741 (defcustom gnus-visual-mark-article-hook
742   (list 'gnus-highlight-selected-summary)
743   "*Hook run after selecting an article in the summary buffer.
744 It is meant to be used for highlighting the article in some way.  It
745 is not run if `gnus-visual' is nil."
746   :group 'gnus-summary-visual
747   :type 'hook)
748
749 (defcustom gnus-parse-headers-hook '(gnus-set-summary-default-charset)
750   "*A hook called before parsing the headers."
751   :group 'gnus-various
752   :type 'hook)
753
754 (defcustom gnus-exit-group-hook nil
755   "*A hook called when exiting summary mode.
756 This hook is not called from the non-updating exit commands like `Q'."
757   :group 'gnus-various
758   :type 'hook)
759
760 (defcustom gnus-summary-update-hook
761   (list 'gnus-summary-highlight-line)
762   "*A hook called when a summary line is changed.
763 The hook will not be called if `gnus-visual' is nil.
764
765 The default function `gnus-summary-highlight-line' will
766 highlight the line according to the `gnus-summary-highlight'
767 variable."
768   :group 'gnus-summary-visual
769   :type 'hook)
770
771 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
772   "*A hook called when an article is selected for the first time.
773 The hook is intended to mark an article as read (or unread)
774 automatically when it is selected."
775   :group 'gnus-summary-choose
776   :type 'hook)
777
778 (defcustom gnus-group-no-more-groups-hook nil
779   "*A hook run when returning to group mode having no more (unread) groups."
780   :group 'gnus-group-select
781   :type 'hook)
782
783 (defcustom gnus-ps-print-hook nil
784   "*A hook run before ps-printing something from Gnus."
785   :group 'gnus-summary
786   :type 'hook)
787
788 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
789   "Face used for highlighting the current article in the summary buffer."
790   :group 'gnus-summary-visual
791   :type 'face)
792
793 (defcustom gnus-summary-highlight
794   '(((= mark gnus-canceled-mark)
795      . gnus-summary-cancelled-face)
796     ((and (> score default)
797           (or (= mark gnus-dormant-mark)
798               (= mark gnus-ticked-mark)))
799      . gnus-summary-high-ticked-face)
800     ((and (< score default)
801           (or (= mark gnus-dormant-mark)
802               (= mark gnus-ticked-mark)))
803      . gnus-summary-low-ticked-face)
804     ((or (= mark gnus-dormant-mark)
805          (= mark gnus-ticked-mark))
806      . gnus-summary-normal-ticked-face)
807     ((and (> score default) (= mark gnus-ancient-mark))
808      . gnus-summary-high-ancient-face)
809     ((and (< score default) (= mark gnus-ancient-mark))
810      . gnus-summary-low-ancient-face)
811     ((= mark gnus-ancient-mark)
812      . gnus-summary-normal-ancient-face)
813     ((and (> score default) (= mark gnus-unread-mark))
814      . gnus-summary-high-unread-face)
815     ((and (< score default) (= mark gnus-unread-mark))
816      . gnus-summary-low-unread-face)
817     ((and (memq article gnus-newsgroup-incorporated)
818           (= mark gnus-unread-mark))
819      . gnus-summary-incorporated-face)
820     ((= mark gnus-unread-mark)
821      . gnus-summary-normal-unread-face)
822     ((and (> score default) (memq mark (list gnus-downloadable-mark
823                                              gnus-undownloaded-mark)))
824      . gnus-summary-high-unread-face)
825     ((and (< score default) (memq mark (list gnus-downloadable-mark
826                                              gnus-undownloaded-mark)))
827      . gnus-summary-low-unread-face)
828     ((memq mark (list gnus-downloadable-mark gnus-undownloaded-mark))
829      . gnus-summary-normal-unread-face)
830     ((> score default)
831      . gnus-summary-high-read-face)
832     ((< score default)
833      . gnus-summary-low-read-face)
834     (t
835      . gnus-summary-normal-read-face))
836   "*Controls the highlighting of summary buffer lines.
837
838 A list of (FORM . FACE) pairs.  When deciding how a a particular
839 summary line should be displayed, each form is evaluated.  The content
840 of the face field after the first true form is used.  You can change
841 how those summary lines are displayed, by editing the face field.
842
843 You can use the following variables in the FORM field.
844
845 score:   The articles score
846 default: The default article score.
847 below:   The score below which articles are automatically marked as read.
848 mark:    The articles mark."
849   :group 'gnus-summary-visual
850   :type '(repeat (cons (sexp :tag "Form" nil)
851                        face)))
852
853 (defcustom gnus-alter-header-function nil
854   "Function called to allow alteration of article header structures.
855 The function is called with one parameter, the article header vector,
856 which it may alter in any way.")
857
858 (defvar gnus-decode-encoded-word-function
859   (mime-find-field-decoder 'From 'nov)
860   "Variable that says which function should be used to decode a string with encoded words.")
861
862 (defcustom gnus-extra-headers nil
863   "*Extra headers to parse."
864   :version "21.1"
865   :group 'gnus-summary
866   :type '(repeat symbol))
867
868 (defcustom gnus-ignored-from-addresses
869   (and user-mail-address (regexp-quote user-mail-address))
870   "*Regexp of From headers that may be suppressed in favor of To headers."
871   :version "21.1"
872   :group 'gnus-summary
873   :type 'regexp)
874
875 (defcustom gnus-group-charset-alist
876   '(("^hk\\>\\|^tw\\>\\|\\<big5\\>" cn-big5)
877     ("^cn\\>\\|\\<chinese\\>" cn-gb-2312)
878     ("^fj\\>\\|^japan\\>" iso-2022-jp-2)
879     ("^tnn\\>\\|^pin\\>\\|^sci.lang.japan" iso-2022-7bit)
880     ("^relcom\\>" koi8-r)
881     ("^fido7\\>" koi8-r)
882     ("^\\(cz\\|hun\\|pl\\|sk\\|hr\\)\\>" iso-8859-2)
883     ("^israel\\>" iso-8859-1)
884     ("^han\\>" euc-kr)
885     ("^alt.chinese.text.big5\\>" chinese-big5)
886     ("^soc.culture.vietnamese\\>" vietnamese-viqr)
887     ("^\\(comp\\|rec\\|alt\\|sci\\|soc\\|news\\|gnu\\|bofh\\)\\>" iso-8859-1)
888     (".*" iso-8859-1))
889   "Alist of regexps (to match group names) and default charsets to be used when reading."
890   :type '(repeat (list (regexp :tag "Group")
891                        (symbol :tag "Charset")))
892   :group 'gnus-charset)
893
894 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
895   "List of charsets that should be ignored.
896 When these charsets are used in the \"charset\" parameter, the
897 default charset will be used instead."
898   :version "21.1"
899   :type '(repeat symbol)
900   :group 'gnus-charset)
901
902 (defcustom gnus-group-ignored-charsets-alist
903   '(("alt\\.chinese\\.text" iso-8859-1))
904   "Alist of regexps (to match group names) and charsets that should be ignored.
905 When these charsets are used in the \"charset\" parameter, the
906 default charset will be used instead."
907   :type '(repeat (cons (regexp :tag "Group")
908                        (repeat symbol)))
909   :group 'gnus-charset)
910
911 (defcustom gnus-group-highlight-words-alist nil
912   "Alist of group regexps and highlight regexps.
913 This variable uses the same syntax as `gnus-emphasis-alist'."
914   :version "21.1"
915   :type '(repeat (cons (regexp :tag "Group")
916                        (repeat (list (regexp :tag "Highlight regexp")
917                                      (number :tag "Group for entire word" 0)
918                                      (number :tag "Group for displayed part" 0)
919                                      (symbol :tag "Face"
920                                              gnus-emphasis-highlight-words)))))
921   :group 'gnus-summary-visual)
922
923 (defcustom gnus-use-wheel nil
924   "Use Intelli-mouse on summary movement"
925   :type 'boolean
926   :group 'gnus-summary-maneuvering)
927
928 (defcustom gnus-wheel-scroll-amount '(5 . 1)
929   "Amount to scroll messages by spinning the mouse wheel.
930 This is actually a cons cell, where the first item is the amount to scroll
931 on a normal wheel event, and the second is the amount to scroll when the
932 wheel is moved with the shift key depressed."
933   :type '(cons (integer :tag "Shift") integer)
934   :group 'gnus-summary-maneuvering)
935
936 (defcustom gnus-wheel-edge-resistance 2
937   "How hard it should be to change the current article
938 by moving the mouse over the edge of the article window."
939   :type 'integer
940   :group 'gnus-summary-maneuvering)
941
942 (defcustom gnus-summary-show-article-charset-alist
943   nil
944   "Alist of number and charset.
945 The article will be shown with the charset corresponding to the
946 numbered argument.
947 For example: ((1 . cn-gb-2312) (2 . big5))."
948   :version "21.1"
949   :type '(repeat (cons (number :tag "Argument" 1)
950                        (symbol :tag "Charset")))
951   :group 'gnus-charset)
952
953 (defcustom gnus-preserve-marks t
954   "Whether marks are preserved when moving, copying and respooling messages."
955   :version "21.1"
956   :type 'boolean
957   :group 'gnus-summary-marks)
958
959 (defcustom gnus-alter-articles-to-read-function nil
960   "Function to be called to alter the list of articles to be selected."
961   :type 'function
962   :group 'gnus-summary)
963
964 (defcustom gnus-orphan-score nil
965   "*All orphans get this score added.  Set in the score file."
966   :group 'gnus-score-default
967   :type '(choice (const nil)
968                  integer))
969
970 (defcustom gnus-summary-save-parts-default-mime "image/.*"
971   "*A regexp to match MIME parts when saving multiple parts of a message
972 with gnus-summary-save-parts (X m). This regexp will be used by default
973 when prompting the user for which type of files to save."
974   :group 'gnus-summary
975   :type 'regexp)
976
977
978 (defcustom gnus-summary-save-parts-default-mime "image/.*"
979   "*A regexp to match MIME parts when saving multiple parts of a message
980 with gnus-summary-save-parts (X m). This regexp will be used by default
981 when prompting the user for which type of files to save."
982   :group 'gnus-summary
983   :type 'regexp)
984
985
986 ;;; Internal variables
987
988 (defvar gnus-article-mime-handles nil)
989 (defvar gnus-article-decoded-p nil)
990 (defvar gnus-article-charset nil)
991 (defvar gnus-article-ignored-charsets nil)
992 (defvar gnus-scores-exclude-files nil)
993 (defvar gnus-page-broken nil)
994 (defvar gnus-inhibit-mime-unbuttonizing nil)
995
996 (defvar gnus-original-article nil)
997 (defvar gnus-article-internal-prepare-hook nil)
998 (defvar gnus-newsgroup-process-stack nil)
999
1000 (defvar gnus-thread-indent-array nil)
1001 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1002 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1003   "Function called to sort the articles within a thread after it has been gathered together.")
1004
1005 (defvar gnus-summary-save-parts-type-history nil)
1006 (defvar gnus-summary-save-parts-last-directory nil)
1007
1008 (defvar gnus-summary-save-parts-type-history nil)
1009 (defvar gnus-summary-save-parts-last-directory nil)
1010
1011 ;; Avoid highlighting in kill files.
1012 (defvar gnus-summary-inhibit-highlight nil)
1013 (defvar gnus-newsgroup-selected-overlay nil)
1014 (defvar gnus-inhibit-limiting nil)
1015 (defvar gnus-newsgroup-adaptive-score-file nil)
1016 (defvar gnus-current-score-file nil)
1017 (defvar gnus-current-move-group nil)
1018 (defvar gnus-current-copy-group nil)
1019 (defvar gnus-current-crosspost-group nil)
1020
1021 (defvar gnus-newsgroup-dependencies nil)
1022 (defvar gnus-newsgroup-adaptive nil)
1023 (defvar gnus-summary-display-article-function nil)
1024 (defvar gnus-summary-highlight-line-function nil
1025   "Function called after highlighting a summary line.")
1026
1027 (defvar gnus-summary-line-format-alist
1028   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1029     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1030     (?s gnus-tmp-subject-or-nil ?s)
1031     (?n gnus-tmp-name ?s)
1032     (?A (std11-address-string
1033          (car (mime-entity-read-field gnus-tmp-header 'From))) ?s)
1034     (?a (or (std11-full-name-string
1035              (car (mime-entity-read-field gnus-tmp-header 'From)))
1036             gnus-tmp-from) ?s)
1037     (?F gnus-tmp-from ?s)
1038     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1039     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1040     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1041     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1042     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1043     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1044     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1045     (?L gnus-tmp-lines ?d)
1046     (?I gnus-tmp-indentation ?s)
1047     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1048     (?R gnus-tmp-replied ?c)
1049     (?\[ gnus-tmp-opening-bracket ?c)
1050     (?\] gnus-tmp-closing-bracket ?c)
1051     (?\> (make-string gnus-tmp-level ? ) ?s)
1052     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1053     (?i gnus-tmp-score ?d)
1054     (?z gnus-tmp-score-char ?c)
1055     (?l (bbb-grouplens-score gnus-tmp-header) ?s)
1056     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1057     (?U gnus-tmp-unread ?c)
1058     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header) ?s)
1059     (?t (gnus-summary-number-of-articles-in-thread
1060          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1061         ?d)
1062     (?e (gnus-summary-number-of-articles-in-thread
1063          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1064         ?c)
1065     (?u gnus-tmp-user-defined ?s)
1066     (?P (gnus-pick-line-number) ?d))
1067   "An alist of format specifications that can appear in summary lines.
1068 These are paired with what variables they correspond with, along with
1069 the type of the variable (string, integer, character, etc).")
1070
1071 (defvar gnus-summary-dummy-line-format-alist
1072   `((?S gnus-tmp-subject ?s)
1073     (?N gnus-tmp-number ?d)
1074     (?u gnus-tmp-user-defined ?s)))
1075
1076 (defvar gnus-summary-mode-line-format-alist
1077   `((?G gnus-tmp-group-name ?s)
1078     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1079     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1080     (?A gnus-tmp-article-number ?d)
1081     (?Z gnus-tmp-unread-and-unselected ?s)
1082     (?V gnus-version ?s)
1083     (?U gnus-tmp-unread-and-unticked ?d)
1084     (?S gnus-tmp-subject ?s)
1085     (?e gnus-tmp-unselected ?d)
1086     (?u gnus-tmp-user-defined ?s)
1087     (?d (length gnus-newsgroup-dormant) ?d)
1088     (?t (length gnus-newsgroup-marked) ?d)
1089     (?r (length gnus-newsgroup-reads) ?d)
1090     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1091     (?E gnus-newsgroup-expunged-tally ?d)
1092     (?s (gnus-current-score-file-nondirectory) ?s)))
1093
1094 (defvar gnus-last-search-regexp nil
1095   "Default regexp for article search command.")
1096
1097 (defvar gnus-summary-search-article-matched-data nil
1098   "Last matched data of article search command.  It is the local variable
1099 in `gnus-article-buffer' which consists of the list of start position,
1100 end position and text.")
1101
1102 (defvar gnus-last-shell-command nil
1103   "Default shell command on article.")
1104
1105 (defvar gnus-newsgroup-begin nil)
1106 (defvar gnus-newsgroup-end nil)
1107 (defvar gnus-newsgroup-last-rmail nil)
1108 (defvar gnus-newsgroup-last-mail nil)
1109 (defvar gnus-newsgroup-last-folder nil)
1110 (defvar gnus-newsgroup-last-file nil)
1111 (defvar gnus-newsgroup-auto-expire nil)
1112 (defvar gnus-newsgroup-active nil)
1113
1114 (defvar gnus-newsgroup-data nil)
1115 (defvar gnus-newsgroup-data-reverse nil)
1116 (defvar gnus-newsgroup-limit nil)
1117 (defvar gnus-newsgroup-limits nil)
1118
1119 (defvar gnus-newsgroup-unreads nil
1120   "List of unread articles in the current newsgroup.")
1121
1122 (defvar gnus-newsgroup-unselected nil
1123   "List of unselected unread articles in the current newsgroup.")
1124
1125 (defvar gnus-newsgroup-reads nil
1126   "Alist of read articles and article marks in the current newsgroup.")
1127
1128 (defvar gnus-newsgroup-expunged-tally nil)
1129
1130 (defvar gnus-newsgroup-marked nil
1131   "List of ticked articles in the current newsgroup (a subset of unread art).")
1132
1133 (defvar gnus-newsgroup-killed nil
1134   "List of ranges of articles that have been through the scoring process.")
1135
1136 (defvar gnus-newsgroup-cached nil
1137   "List of articles that come from the article cache.")
1138
1139 (defvar gnus-newsgroup-saved nil
1140   "List of articles that have been saved.")
1141
1142 (defvar gnus-newsgroup-kill-headers nil)
1143
1144 (defvar gnus-newsgroup-replied nil
1145   "List of articles that have been replied to in the current newsgroup.")
1146
1147 (defvar gnus-newsgroup-expirable nil
1148   "List of articles in the current newsgroup that can be expired.")
1149
1150 (defvar gnus-newsgroup-processable nil
1151   "List of articles in the current newsgroup that can be processed.")
1152
1153 (defvar gnus-newsgroup-downloadable nil
1154   "List of articles in the current newsgroup that can be processed.")
1155
1156 (defvar gnus-newsgroup-undownloaded nil
1157   "List of articles in the current newsgroup that haven't been downloaded..")
1158
1159 (defvar gnus-newsgroup-unsendable nil
1160   "List of articles in the current newsgroup that won't be sent.")
1161
1162 (defvar gnus-newsgroup-bookmarks nil
1163   "List of articles in the current newsgroup that have bookmarks.")
1164
1165 (defvar gnus-newsgroup-dormant nil
1166   "List of dormant articles in the current newsgroup.")
1167
1168 (defvar gnus-newsgroup-scored nil
1169   "List of scored articles in the current newsgroup.")
1170
1171 (defvar gnus-newsgroup-incorporated nil
1172   "List of incorporated articles in the current newsgroup.")
1173
1174 (defvar gnus-newsgroup-headers nil
1175   "List of article headers in the current newsgroup.")
1176
1177 (defvar gnus-newsgroup-threads nil)
1178
1179 (defvar gnus-newsgroup-prepared nil
1180   "Whether the current group has been prepared properly.")
1181
1182 (defvar gnus-newsgroup-ancient nil
1183   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1184
1185 (defvar gnus-newsgroup-sparse nil)
1186
1187 (defvar gnus-current-article nil)
1188 (defvar gnus-article-current nil)
1189 (defvar gnus-current-headers nil)
1190 (defvar gnus-have-all-headers nil)
1191 (defvar gnus-last-article nil)
1192 (defvar gnus-newsgroup-history nil)
1193 (defvar gnus-newsgroup-charset nil)
1194 (defvar gnus-newsgroup-ephemeral-charset nil)
1195 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1196
1197 (defvar gnus-article-before-search nil)
1198
1199 (defconst gnus-summary-local-variables
1200   '(gnus-newsgroup-name
1201     gnus-newsgroup-begin gnus-newsgroup-end
1202     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1203     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1204     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1205     gnus-newsgroup-unselected gnus-newsgroup-marked
1206     gnus-newsgroup-reads gnus-newsgroup-saved
1207     gnus-newsgroup-replied gnus-newsgroup-expirable
1208     gnus-newsgroup-processable gnus-newsgroup-killed
1209     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1210     gnus-newsgroup-unsendable
1211     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1212     gnus-newsgroup-headers gnus-newsgroup-threads
1213     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1214     gnus-current-article gnus-current-headers gnus-have-all-headers
1215     gnus-last-article gnus-article-internal-prepare-hook
1216     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1217     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1218     gnus-thread-expunge-below
1219     gnus-score-alist gnus-current-score-file
1220     (gnus-summary-expunge-below . global)
1221     (gnus-summary-mark-below . global)
1222     (gnus-orphan-score . global)
1223     gnus-newsgroup-active gnus-scores-exclude-files
1224     gnus-newsgroup-history gnus-newsgroup-ancient
1225     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1226     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1227     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1228     (gnus-newsgroup-expunged-tally . 0)
1229     gnus-cache-removable-articles gnus-newsgroup-cached
1230     gnus-newsgroup-data gnus-newsgroup-data-reverse
1231     gnus-newsgroup-limit gnus-newsgroup-limits
1232     gnus-newsgroup-charset
1233     gnus-newsgroup-incorporated)
1234   "Variables that are buffer-local to the summary buffers.")
1235
1236 (defvar gnus-newsgroup-variables nil
1237   "Variables that have separate values in the newsgroups.")
1238
1239 ;; Byte-compiler warning.
1240 (eval-when-compile (defvar gnus-article-mode-map))
1241
1242 ;; Subject simplification.
1243
1244 (defun gnus-simplify-whitespace (str)
1245   "Remove excessive whitespace from STR."
1246   (let ((mystr str))
1247     ;; Multiple spaces.
1248     (while (string-match "[ \t][ \t]+" mystr)
1249       (setq mystr (concat (substring mystr 0 (match-beginning 0))
1250                           " "
1251                           (substring mystr (match-end 0)))))
1252     ;; Leading spaces.
1253     (when (string-match "^[ \t]+" mystr)
1254       (setq mystr (substring mystr (match-end 0))))
1255     ;; Trailing spaces.
1256     (when (string-match "[ \t]+$" mystr)
1257       (setq mystr (substring mystr 0 (match-beginning 0))))
1258     mystr))
1259
1260 (defsubst gnus-simplify-subject-re (subject)
1261   "Remove \"Re:\" from subject lines."
1262   (if (string-match "^[Rr][Ee]: *" subject)
1263       (substring subject (match-end 0))
1264     subject))
1265
1266 (defun gnus-simplify-subject (subject &optional re-only)
1267   "Remove `Re:' and words in parentheses.
1268 If RE-ONLY is non-nil, strip leading `Re:'s only."
1269   (let ((case-fold-search t))           ;Ignore case.
1270     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1271     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1272       (setq subject (substring subject (match-end 0))))
1273     ;; Remove uninteresting prefixes.
1274     (when (and (not re-only)
1275                gnus-simplify-ignored-prefixes
1276                (string-match gnus-simplify-ignored-prefixes subject))
1277       (setq subject (substring subject (match-end 0))))
1278     ;; Remove words in parentheses from end.
1279     (unless re-only
1280       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1281         (setq subject (substring subject 0 (match-beginning 0)))))
1282     ;; Return subject string.
1283     subject))
1284
1285 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1286 ;; all whitespace.
1287 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1288   (goto-char (point-min))
1289   (while (re-search-forward regexp nil t)
1290     (replace-match (or newtext ""))))
1291
1292 (defun gnus-simplify-buffer-fuzzy ()
1293   "Simplify string in the buffer fuzzily.
1294 The string in the accessible portion of the current buffer is simplified.
1295 It is assumed to be a single-line subject.
1296 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1297 matter is removed.  Additional things can be deleted by setting
1298 `gnus-simplify-subject-fuzzy-regexp'."
1299   (let ((case-fold-search t)
1300         (modified-tick))
1301     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1302
1303     (while (not (eq modified-tick (buffer-modified-tick)))
1304       (setq modified-tick (buffer-modified-tick))
1305       (cond
1306        ((listp gnus-simplify-subject-fuzzy-regexp)
1307         (mapcar 'gnus-simplify-buffer-fuzzy-step
1308                 gnus-simplify-subject-fuzzy-regexp))
1309        (gnus-simplify-subject-fuzzy-regexp
1310         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1311       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1312       (gnus-simplify-buffer-fuzzy-step
1313        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1314       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1315
1316     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1317     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1318     (gnus-simplify-buffer-fuzzy-step " $")
1319     (gnus-simplify-buffer-fuzzy-step "^ +")))
1320
1321 (defun gnus-simplify-subject-fuzzy (subject)
1322   "Simplify a subject string fuzzily.
1323 See `gnus-simplify-buffer-fuzzy' for details."
1324   (save-excursion
1325     (gnus-set-work-buffer)
1326     (let ((case-fold-search t))
1327       ;; Remove uninteresting prefixes.
1328       (when (and gnus-simplify-ignored-prefixes
1329                  (string-match gnus-simplify-ignored-prefixes subject))
1330         (setq subject (substring subject (match-end 0))))
1331       (insert subject)
1332       (inline (gnus-simplify-buffer-fuzzy))
1333       (buffer-string))))
1334
1335 (defsubst gnus-simplify-subject-fully (subject)
1336   "Simplify a subject string according to gnus-summary-gather-subject-limit."
1337   (cond
1338    (gnus-simplify-subject-functions
1339     (gnus-map-function gnus-simplify-subject-functions subject))
1340    ((null gnus-summary-gather-subject-limit)
1341     (gnus-simplify-subject-re subject))
1342    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1343     (gnus-simplify-subject-fuzzy subject))
1344    ((numberp gnus-summary-gather-subject-limit)
1345     (gnus-limit-string (gnus-simplify-subject-re subject)
1346                        gnus-summary-gather-subject-limit))
1347    (t
1348     subject)))
1349
1350 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1351   "Check whether two subjects are equal.
1352 If optional argument simple-first is t, first argument is already
1353 simplified."
1354   (cond
1355    ((null simple-first)
1356     (equal (gnus-simplify-subject-fully s1)
1357            (gnus-simplify-subject-fully s2)))
1358    (t
1359     (equal s1
1360            (gnus-simplify-subject-fully s2)))))
1361
1362 (defun gnus-summary-bubble-group ()
1363   "Increase the score of the current group.
1364 This is a handy function to add to `gnus-summary-exit-hook' to
1365 increase the score of each group you read."
1366   (gnus-group-add-score gnus-newsgroup-name))
1367
1368 \f
1369 ;;;
1370 ;;; Gnus summary mode
1371 ;;;
1372
1373 (put 'gnus-summary-mode 'mode-class 'special)
1374
1375 (when t
1376   ;; Non-orthogonal keys
1377
1378   (gnus-define-keys gnus-summary-mode-map
1379     " " gnus-summary-next-page
1380     "\177" gnus-summary-prev-page
1381     [delete] gnus-summary-prev-page
1382     [backspace] gnus-summary-prev-page
1383     "\r" gnus-summary-scroll-up
1384     "\M-\r" gnus-summary-scroll-down
1385     "n" gnus-summary-next-unread-article
1386     "p" gnus-summary-prev-unread-article
1387     "N" gnus-summary-next-article
1388     "P" gnus-summary-prev-article
1389     "\M-\C-n" gnus-summary-next-same-subject
1390     "\M-\C-p" gnus-summary-prev-same-subject
1391     "\M-n" gnus-summary-next-unread-subject
1392     "\M-p" gnus-summary-prev-unread-subject
1393     "." gnus-summary-first-unread-article
1394     "," gnus-summary-best-unread-article
1395     "\M-s" gnus-summary-search-article-forward
1396     "\M-r" gnus-summary-search-article-backward
1397     "<" gnus-summary-beginning-of-article
1398     ">" gnus-summary-end-of-article
1399     "j" gnus-summary-goto-article
1400     "^" gnus-summary-refer-parent-article
1401     "\M-^" gnus-summary-refer-article
1402     "u" gnus-summary-tick-article-forward
1403     "!" gnus-summary-tick-article-forward
1404     "U" gnus-summary-tick-article-backward
1405     "d" gnus-summary-mark-as-read-forward
1406     "D" gnus-summary-mark-as-read-backward
1407     "E" gnus-summary-mark-as-expirable
1408     "\M-u" gnus-summary-clear-mark-forward
1409     "\M-U" gnus-summary-clear-mark-backward
1410     "k" gnus-summary-kill-same-subject-and-select
1411     "\C-k" gnus-summary-kill-same-subject
1412     "\M-\C-k" gnus-summary-kill-thread
1413     "\M-\C-l" gnus-summary-lower-thread
1414     "e" gnus-summary-edit-article
1415     "#" gnus-summary-mark-as-processable
1416     "\M-#" gnus-summary-unmark-as-processable
1417     "\M-\C-t" gnus-summary-toggle-threads
1418     "\M-\C-s" gnus-summary-show-thread
1419     "\M-\C-h" gnus-summary-hide-thread
1420     "\M-\C-f" gnus-summary-next-thread
1421     "\M-\C-b" gnus-summary-prev-thread
1422     [(meta down)] gnus-summary-next-thread
1423     [(meta up)] gnus-summary-prev-thread
1424     "\M-\C-u" gnus-summary-up-thread
1425     "\M-\C-d" gnus-summary-down-thread
1426     "&" gnus-summary-execute-command
1427     "c" gnus-summary-catchup-and-exit
1428     "\C-w" gnus-summary-mark-region-as-read
1429     "\C-t" gnus-summary-toggle-truncation
1430     "?" gnus-summary-mark-as-dormant
1431     "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1432     "\C-c\C-s\C-n" gnus-summary-sort-by-number
1433     "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1434     "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1435     "\C-c\C-s\C-a" gnus-summary-sort-by-author
1436     "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1437     "\C-c\C-s\C-d" gnus-summary-sort-by-date
1438     "\C-c\C-s\C-i" gnus-summary-sort-by-score
1439     "=" gnus-summary-expand-window
1440     "\C-x\C-s" gnus-summary-reselect-current-group
1441     "\M-g" gnus-summary-rescan-group
1442     "w" gnus-summary-stop-page-breaking
1443     "\C-c\C-r" gnus-summary-caesar-message
1444     "\M-t" gnus-summary-toggle-mime
1445     "f" gnus-summary-followup
1446     "F" gnus-summary-followup-with-original
1447     "C" gnus-summary-cancel-article
1448     "r" gnus-summary-reply
1449     "R" gnus-summary-reply-with-original
1450     "\C-c\C-f" gnus-summary-mail-forward
1451     "o" gnus-summary-save-article
1452     "\C-o" gnus-summary-save-article-mail
1453     "|" gnus-summary-pipe-output
1454     "\M-k" gnus-summary-edit-local-kill
1455     "\M-K" gnus-summary-edit-global-kill
1456     ;; "V" gnus-version
1457     "\C-c\C-d" gnus-summary-describe-group
1458     "q" gnus-summary-exit
1459     "Q" gnus-summary-exit-no-update
1460     "\C-c\C-i" gnus-info-find-node
1461     gnus-mouse-2 gnus-mouse-pick-article
1462     "m" gnus-summary-mail-other-window
1463     "a" gnus-summary-post-news
1464     "x" gnus-summary-limit-to-unread
1465     "s" gnus-summary-isearch-article
1466     "t" gnus-article-toggle-headers
1467     "g" gnus-summary-show-article
1468     "l" gnus-summary-goto-last-article
1469     "v" gnus-summary-preview-mime-message
1470     "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1471     "\C-d" gnus-summary-enter-digest-group
1472     "\M-\C-d" gnus-summary-read-document
1473     "\M-\C-e" gnus-summary-edit-parameters
1474     "\M-\C-a" gnus-summary-customize-parameters
1475     "\C-c\C-b" gnus-bug
1476     "*" gnus-cache-enter-article
1477     "\M-*" gnus-cache-remove-article
1478     "\M-&" gnus-summary-universal-argument
1479     "\C-l" gnus-recenter
1480     "I" gnus-summary-increase-score
1481     "L" gnus-summary-lower-score
1482     "\M-i" gnus-symbolic-argument
1483     "h" gnus-summary-select-article-buffer
1484
1485     "V" gnus-summary-score-map
1486     "X" gnus-uu-extract-map
1487     "S" gnus-summary-send-map)
1488
1489   ;; Sort of orthogonal keymap
1490   (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1491     "t" gnus-summary-tick-article-forward
1492     "!" gnus-summary-tick-article-forward
1493     "d" gnus-summary-mark-as-read-forward
1494     "r" gnus-summary-mark-as-read-forward
1495     "c" gnus-summary-clear-mark-forward
1496     " " gnus-summary-clear-mark-forward
1497     "e" gnus-summary-mark-as-expirable
1498     "x" gnus-summary-mark-as-expirable
1499     "?" gnus-summary-mark-as-dormant
1500     "b" gnus-summary-set-bookmark
1501     "B" gnus-summary-remove-bookmark
1502     "#" gnus-summary-mark-as-processable
1503     "\M-#" gnus-summary-unmark-as-processable
1504     "S" gnus-summary-limit-include-expunged
1505     "C" gnus-summary-catchup
1506     "H" gnus-summary-catchup-to-here
1507     "\C-c" gnus-summary-catchup-all
1508     "k" gnus-summary-kill-same-subject-and-select
1509     "K" gnus-summary-kill-same-subject
1510     "P" gnus-uu-mark-map)
1511
1512   (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1513     "c" gnus-summary-clear-above
1514     "u" gnus-summary-tick-above
1515     "m" gnus-summary-mark-above
1516     "k" gnus-summary-kill-below)
1517
1518   (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1519     "/" gnus-summary-limit-to-subject
1520     "n" gnus-summary-limit-to-articles
1521     "w" gnus-summary-pop-limit
1522     "s" gnus-summary-limit-to-subject
1523     "a" gnus-summary-limit-to-author
1524     "u" gnus-summary-limit-to-unread
1525     "m" gnus-summary-limit-to-marks
1526     "M" gnus-summary-limit-exclude-marks
1527     "v" gnus-summary-limit-to-score
1528     "*" gnus-summary-limit-include-cached
1529     "D" gnus-summary-limit-include-dormant
1530     "T" gnus-summary-limit-include-thread
1531     "d" gnus-summary-limit-exclude-dormant
1532     "t" gnus-summary-limit-to-age
1533     "x" gnus-summary-limit-to-extra
1534     "E" gnus-summary-limit-include-expunged
1535     "c" gnus-summary-limit-exclude-childless-dormant
1536     "C" gnus-summary-limit-mark-excluded-as-read)
1537
1538   (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1539     "n" gnus-summary-next-unread-article
1540     "p" gnus-summary-prev-unread-article
1541     "N" gnus-summary-next-article
1542     "P" gnus-summary-prev-article
1543     "\C-n" gnus-summary-next-same-subject
1544     "\C-p" gnus-summary-prev-same-subject
1545     "\M-n" gnus-summary-next-unread-subject
1546     "\M-p" gnus-summary-prev-unread-subject
1547     "f" gnus-summary-first-unread-article
1548     "b" gnus-summary-best-unread-article
1549     "j" gnus-summary-goto-article
1550     "g" gnus-summary-goto-subject
1551     "l" gnus-summary-goto-last-article
1552     "o" gnus-summary-pop-article)
1553
1554   (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1555     "k" gnus-summary-kill-thread
1556     "l" gnus-summary-lower-thread
1557     "i" gnus-summary-raise-thread
1558     "T" gnus-summary-toggle-threads
1559     "t" gnus-summary-rethread-current
1560     "^" gnus-summary-reparent-thread
1561     "s" gnus-summary-show-thread
1562     "S" gnus-summary-show-all-threads
1563     "h" gnus-summary-hide-thread
1564     "H" gnus-summary-hide-all-threads
1565     "n" gnus-summary-next-thread
1566     "p" gnus-summary-prev-thread
1567     "u" gnus-summary-up-thread
1568     "o" gnus-summary-top-thread
1569     "d" gnus-summary-down-thread
1570     "#" gnus-uu-mark-thread
1571     "\M-#" gnus-uu-unmark-thread)
1572
1573   (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1574     "g" gnus-summary-prepare
1575     "c" gnus-summary-insert-cached-articles)
1576
1577   (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1578     "c" gnus-summary-catchup-and-exit
1579     "C" gnus-summary-catchup-all-and-exit
1580     "E" gnus-summary-exit-no-update
1581     "J" gnus-summary-jump-to-other-group
1582     "Q" gnus-summary-exit
1583     "Z" gnus-summary-exit
1584     "n" gnus-summary-catchup-and-goto-next-group
1585     "R" gnus-summary-reselect-current-group
1586     "G" gnus-summary-rescan-group
1587     "N" gnus-summary-next-group
1588     "s" gnus-summary-save-newsrc
1589     "P" gnus-summary-prev-group)
1590
1591   (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1592     " " gnus-summary-next-page
1593     "n" gnus-summary-next-page
1594     "\177" gnus-summary-prev-page
1595     [delete] gnus-summary-prev-page
1596     "p" gnus-summary-prev-page
1597     "\r" gnus-summary-scroll-up
1598     "\M-\r" gnus-summary-scroll-down
1599     "<" gnus-summary-beginning-of-article
1600     ">" gnus-summary-end-of-article
1601     "b" gnus-summary-beginning-of-article
1602     "e" gnus-summary-end-of-article
1603     "^" gnus-summary-refer-parent-article
1604     "r" gnus-summary-refer-parent-article
1605     "D" gnus-summary-enter-digest-group
1606     "R" gnus-summary-refer-references
1607     "T" gnus-summary-refer-thread
1608     "g" gnus-summary-show-article
1609     "s" gnus-summary-isearch-article
1610     "P" gnus-summary-print-article
1611     "M" gnus-mailing-list-insinuate
1612     "t" gnus-article-babel)
1613
1614   (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1615     "b" gnus-article-add-buttons
1616     "B" gnus-article-add-buttons-to-head
1617     "o" gnus-article-treat-overstrike
1618     "e" gnus-article-emphasize
1619     "w" gnus-article-fill-cited-article
1620     "Q" gnus-article-fill-long-lines
1621     "C" gnus-article-capitalize-sentences
1622     "c" gnus-article-remove-cr
1623     "Z" gnus-article-decode-HZ
1624     "f" gnus-article-display-x-face
1625     "l" gnus-summary-stop-page-breaking
1626     "r" gnus-summary-caesar-message
1627     "t" gnus-article-toggle-headers
1628     "v" gnus-summary-verbose-headers
1629     "m" gnus-summary-toggle-mime
1630     "H" gnus-article-strip-headers-in-body
1631     "p" gnus-article-verify-x-pgp-sig
1632     "d" gnus-article-treat-dumbquotes
1633     "s" gnus-smiley-display)
1634
1635   (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1636     "a" gnus-article-hide
1637     "h" gnus-article-toggle-headers
1638     "b" gnus-article-hide-boring-headers
1639     "s" gnus-article-hide-signature
1640     "c" gnus-article-hide-citation
1641     "C" gnus-article-hide-citation-in-followups
1642     "l" gnus-article-hide-list-identifiers
1643     "p" gnus-article-hide-pgp
1644     "B" gnus-article-strip-banner
1645     "P" gnus-article-hide-pem
1646     "\C-c" gnus-article-hide-citation-maybe)
1647
1648   (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1649     "a" gnus-article-highlight
1650     "h" gnus-article-highlight-headers
1651     "c" gnus-article-highlight-citation
1652     "s" gnus-article-highlight-signature)
1653
1654   (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1655     "z" gnus-article-date-ut
1656     "u" gnus-article-date-ut
1657     "l" gnus-article-date-local
1658     "p" gnus-article-date-english
1659     "e" gnus-article-date-lapsed
1660     "o" gnus-article-date-original
1661     "i" gnus-article-date-iso8601
1662     "s" gnus-article-date-user)
1663
1664   (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1665     "t" gnus-article-remove-trailing-blank-lines
1666     "l" gnus-article-strip-leading-blank-lines
1667     "m" gnus-article-strip-multiple-blank-lines
1668     "a" gnus-article-strip-blank-lines
1669     "A" gnus-article-strip-all-blank-lines
1670     "s" gnus-article-strip-leading-space
1671     "e" gnus-article-strip-trailing-space)
1672
1673   (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1674     "v" gnus-version
1675     "f" gnus-summary-fetch-faq
1676     "d" gnus-summary-describe-group
1677     "h" gnus-summary-describe-briefly
1678     "i" gnus-info-find-node)
1679
1680   (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
1681     "e" gnus-summary-expire-articles
1682     "\M-\C-e" gnus-summary-expire-articles-now
1683     "\177" gnus-summary-delete-article
1684     [delete] gnus-summary-delete-article
1685     [backspace] gnus-summary-delete-article
1686     "m" gnus-summary-move-article
1687     "r" gnus-summary-respool-article
1688     "w" gnus-summary-edit-article
1689     "c" gnus-summary-copy-article
1690     "B" gnus-summary-crosspost-article
1691     "q" gnus-summary-respool-query
1692     "t" gnus-summary-respool-trace
1693     "i" gnus-summary-import-article
1694     "p" gnus-summary-article-posted-p)
1695
1696   (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
1697     "o" gnus-summary-save-article
1698     "m" gnus-summary-save-article-mail
1699     "F" gnus-summary-write-article-file
1700     "r" gnus-summary-save-article-rmail
1701     "f" gnus-summary-save-article-file
1702     "b" gnus-summary-save-article-body-file
1703     "h" gnus-summary-save-article-folder
1704     "v" gnus-summary-save-article-vm
1705     "p" gnus-summary-pipe-output
1706     "s" gnus-soup-add-article)
1707
1708   (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
1709     "b" gnus-summary-display-buttonized
1710     "m" gnus-summary-repair-multipart
1711     "v" gnus-article-view-part
1712     "o" gnus-article-save-part
1713     "c" gnus-article-copy-part
1714     "C" gnus-article-view-part-as-charset
1715     "e" gnus-article-externalize-part
1716     "E" gnus-article-encrypt-body
1717     "i" gnus-article-inline-part
1718     "|" gnus-article-pipe-part))
1719
1720 (defun gnus-summary-make-menu-bar ()
1721   (gnus-turn-off-edit-menu 'summary)
1722
1723   (unless (boundp 'gnus-summary-misc-menu)
1724
1725     (easy-menu-define
1726      gnus-summary-kill-menu gnus-summary-mode-map ""
1727      (cons
1728       "Score"
1729       (nconc
1730        (list
1731         ["Customize" gnus-score-customize t])
1732        (gnus-make-score-map 'increase)
1733        (gnus-make-score-map 'lower)
1734        '(("Mark"
1735           ["Kill below" gnus-summary-kill-below t]
1736           ["Mark above" gnus-summary-mark-above t]
1737           ["Tick above" gnus-summary-tick-above t]
1738           ["Clear above" gnus-summary-clear-above t])
1739          ["Current score" gnus-summary-current-score t]
1740          ["Set score" gnus-summary-set-score t]
1741          ["Switch current score file..." gnus-score-change-score-file t]
1742          ["Set mark below..." gnus-score-set-mark-below t]
1743          ["Set expunge below..." gnus-score-set-expunge-below t]
1744          ["Edit current score file" gnus-score-edit-current-scores t]
1745          ["Edit score file" gnus-score-edit-file t]
1746          ["Trace score" gnus-score-find-trace t]
1747          ["Find words" gnus-score-find-favourite-words t]
1748          ["Rescore buffer" gnus-summary-rescore t]
1749          ["Increase score..." gnus-summary-increase-score t]
1750          ["Lower score..." gnus-summary-lower-score t]))))
1751
1752     ;; Define both the Article menu in the summary buffer and the equivalent
1753     ;; Commands menu in the article buffer here for consistency.
1754     (let ((innards
1755            `(("Hide"
1756               ["All" gnus-article-hide t]
1757               ["Headers" gnus-article-toggle-headers t]
1758               ["Signature" gnus-article-hide-signature t]
1759               ["Citation" gnus-article-hide-citation t]
1760               ["List identifiers" gnus-article-hide-list-identifiers t]
1761               ["PGP" gnus-article-hide-pgp t]
1762               ["Banner" gnus-article-strip-banner t]
1763               ["Boring headers" gnus-article-hide-boring-headers t])
1764              ("Highlight"
1765               ["All" gnus-article-highlight t]
1766               ["Headers" gnus-article-highlight-headers t]
1767               ["Signature" gnus-article-highlight-signature t]
1768               ["Citation" gnus-article-highlight-citation t])
1769              ("Date"
1770               ["Local" gnus-article-date-local t]
1771               ["ISO8601" gnus-article-date-iso8601 t]
1772               ["UT" gnus-article-date-ut t]
1773               ["Original" gnus-article-date-original t]
1774               ["Lapsed" gnus-article-date-lapsed t]
1775               ["User-defined" gnus-article-date-user t])
1776              ("Washing"
1777               ("Remove Blanks"
1778                ["Leading" gnus-article-strip-leading-blank-lines t]
1779                ["Multiple" gnus-article-strip-multiple-blank-lines t]
1780                ["Trailing" gnus-article-remove-trailing-blank-lines t]
1781                ["All of the above" gnus-article-strip-blank-lines t]
1782                ["All" gnus-article-strip-all-blank-lines t]
1783                ["Leading space" gnus-article-strip-leading-space t]
1784                ["Trailing space" gnus-article-strip-trailing-space t])
1785               ["Overstrike" gnus-article-treat-overstrike t]
1786               ["Dumb quotes" gnus-article-treat-dumbquotes t]
1787               ["Emphasis" gnus-article-emphasize t]
1788               ["Word wrap" gnus-article-fill-cited-article t]
1789               ["Fill long lines" gnus-article-fill-long-lines t]
1790               ["Capitalize sentences" gnus-article-capitalize-sentences t]
1791               ["CR" gnus-article-remove-cr t]
1792               ["Show X-Face" gnus-article-display-x-face t]
1793               ["Rot 13" gnus-summary-caesar-message
1794                ,@(if (featurep 'xemacs) nil
1795                    '(:help "\"Caesar rotate\" article by 13"))]
1796               ["Unix pipe" gnus-summary-pipe-message t]
1797               ["Add buttons" gnus-article-add-buttons t]
1798               ["Add buttons to head" gnus-article-add-buttons-to-head t]
1799               ["Stop page breaking" gnus-summary-stop-page-breaking t]
1800               ["Toggle MIME" gnus-summary-toggle-mime t]
1801               ["Verbose header" gnus-summary-verbose-headers t]
1802               ["Toggle header" gnus-summary-toggle-header t]
1803               ["Toggle smileys" gnus-smiley-display t]
1804               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
1805               ["HZ" gnus-article-decode-HZ t])
1806              ("Output"
1807               ["Save in default format" gnus-summary-save-article
1808                ,@(if (featurep 'xemacs) nil
1809                    '(:help "Save article using default method"))]
1810               ["Save in file" gnus-summary-save-article-file
1811                ,@(if (featurep 'xemacs) nil
1812                    '(:help "Save article in file"))]
1813               ["Save in Unix mail format" gnus-summary-save-article-mail t]
1814               ["Save in MH folder" gnus-summary-save-article-folder t]
1815               ["Save in VM folder" gnus-summary-save-article-vm t]
1816               ["Save in RMAIL mbox" gnus-summary-save-article-rmail t]
1817               ["Save body in file" gnus-summary-save-article-body-file t]
1818               ["Pipe through a filter" gnus-summary-pipe-output t]
1819               ["Add to SOUP packet" gnus-soup-add-article t]
1820               ["Print" gnus-summary-print-article t])
1821              ("Backend"
1822               ["Respool article..." gnus-summary-respool-article t]
1823               ["Move article..." gnus-summary-move-article
1824                (gnus-check-backend-function
1825                 'request-move-article gnus-newsgroup-name)]
1826               ["Copy article..." gnus-summary-copy-article t]
1827               ["Crosspost article..." gnus-summary-crosspost-article
1828                (gnus-check-backend-function
1829                 'request-replace-article gnus-newsgroup-name)]
1830               ["Import file..." gnus-summary-import-article t]
1831               ["Check if posted" gnus-summary-article-posted-p t]
1832               ["Edit article" gnus-summary-edit-article
1833                (not (gnus-group-read-only-p))]
1834               ["Delete article" gnus-summary-delete-article
1835                (gnus-check-backend-function
1836                 'request-expire-articles gnus-newsgroup-name)]
1837               ["Query respool" gnus-summary-respool-query t]
1838               ["Trace respool" gnus-summary-respool-trace t]
1839               ["Delete expirable articles" gnus-summary-expire-articles-now
1840                (gnus-check-backend-function
1841                 'request-expire-articles gnus-newsgroup-name)])
1842              ("Extract"
1843               ["Uudecode" gnus-uu-decode-uu
1844                ,@(if (featurep 'xemacs) nil
1845                    '(:help "Decode uuencoded article(s)"))]
1846               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
1847               ["Unshar" gnus-uu-decode-unshar t]
1848               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
1849               ["Save" gnus-uu-decode-save t]
1850               ["Binhex" gnus-uu-decode-binhex t]
1851               ["Postscript" gnus-uu-decode-postscript t])
1852              ("Cache"
1853               ["Enter article" gnus-cache-enter-article t]
1854               ["Remove article" gnus-cache-remove-article t])
1855              ["Translate" gnus-article-babel t]
1856              ["Select article buffer" gnus-summary-select-article-buffer t]
1857              ["Enter digest buffer" gnus-summary-enter-digest-group t]
1858              ["Isearch article..." gnus-summary-isearch-article t]
1859              ["Beginning of the article" gnus-summary-beginning-of-article t]
1860              ["End of the article" gnus-summary-end-of-article t]
1861              ["Fetch parent of article" gnus-summary-refer-parent-article t]
1862              ["Fetch referenced articles" gnus-summary-refer-references t]
1863              ["Fetch current thread" gnus-summary-refer-thread t]
1864              ["Fetch article with id..." gnus-summary-refer-article t]
1865              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
1866              ["Redisplay" gnus-summary-show-article t])))
1867       (easy-menu-define
1868        gnus-summary-article-menu gnus-summary-mode-map ""
1869        (cons "Article" innards))
1870
1871       (easy-menu-define
1872        gnus-article-commands-menu gnus-article-mode-map ""
1873        (cons "Commands" innards)))
1874
1875     (easy-menu-define
1876      gnus-summary-thread-menu gnus-summary-mode-map ""
1877      '("Threads"
1878        ["Toggle threading" gnus-summary-toggle-threads t]
1879        ["Hide threads" gnus-summary-hide-all-threads t]
1880        ["Show threads" gnus-summary-show-all-threads t]
1881        ["Hide thread" gnus-summary-hide-thread t]
1882        ["Show thread" gnus-summary-show-thread t]
1883        ["Go to next thread" gnus-summary-next-thread t]
1884        ["Go to previous thread" gnus-summary-prev-thread t]
1885        ["Go down thread" gnus-summary-down-thread t]
1886        ["Go up thread" gnus-summary-up-thread t]
1887        ["Top of thread" gnus-summary-top-thread t]
1888        ["Mark thread as read" gnus-summary-kill-thread t]
1889        ["Lower thread score" gnus-summary-lower-thread t]
1890        ["Raise thread score" gnus-summary-raise-thread t]
1891        ["Rethread current" gnus-summary-rethread-current t]))
1892
1893     (easy-menu-define
1894      gnus-summary-post-menu gnus-summary-mode-map ""
1895      `("Post"
1896        ["Post an article" gnus-summary-post-news
1897         ,@(if (featurep 'xemacs) nil
1898             '(:help "Post an article"))]
1899        ["Followup" gnus-summary-followup
1900         ,@(if (featurep 'xemacs) nil
1901             '(:help "Post followup to this article"))]
1902        ["Followup and yank" gnus-summary-followup-with-original
1903         ,@(if (featurep 'xemacs) nil
1904             '(:help "Post followup to this article, quoting its contents"))]
1905        ["Supersede article" gnus-summary-supersede-article t]
1906        ["Cancel article" gnus-summary-cancel-article
1907         ,@(if (featurep 'xemacs) nil
1908             '(:help "Cancel an article you posted"))]
1909        ["Reply" gnus-summary-reply t]
1910        ["Reply and yank" gnus-summary-reply-with-original t]
1911        ["Wide reply" gnus-summary-wide-reply t]
1912        ["Wide reply and yank" gnus-summary-wide-reply-with-original
1913         ,@(if (featurep 'xemacs) nil
1914             '(:help "Mail a reply, quoting this article"))]
1915        ["Mail forward" gnus-summary-mail-forward t]
1916        ["Post forward" gnus-summary-post-forward t]
1917        ["Digest and mail" gnus-uu-digest-mail-forward t]
1918        ["Digest and post" gnus-uu-digest-post-forward t]
1919        ["Resend message" gnus-summary-resend-message t]
1920        ["Send bounced mail" gnus-summary-resend-bounced-mail t]
1921        ["Send a mail" gnus-summary-mail-other-window t]
1922        ["Uuencode and post" gnus-uu-post-news
1923         ,@(if (featurep 'xemacs) nil
1924             '(:help "Post a uuencoded article"))]
1925        ["Followup via news" gnus-summary-followup-to-mail t]
1926        ["Followup via news and yank"
1927         gnus-summary-followup-to-mail-with-original t]
1928        ;;("Draft"
1929        ;;["Send" gnus-summary-send-draft t]
1930        ;;["Send bounced" gnus-resend-bounced-mail t])
1931        ))
1932
1933     (easy-menu-define
1934      gnus-summary-misc-menu gnus-summary-mode-map ""
1935      `("Misc"
1936        ("Mark Read"
1937         ["Mark as read" gnus-summary-mark-as-read-forward t]
1938         ["Mark same subject and select"
1939          gnus-summary-kill-same-subject-and-select t]
1940         ["Mark same subject" gnus-summary-kill-same-subject t]
1941         ["Catchup" gnus-summary-catchup
1942          ,@(if (featurep 'xemacs) nil
1943              '(:help "Mark unread articles in this group as read"))]
1944         ["Catchup all" gnus-summary-catchup-all t]
1945         ["Catchup to here" gnus-summary-catchup-to-here t]
1946         ["Catchup region" gnus-summary-mark-region-as-read t]
1947         ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
1948        ("Mark Various"
1949         ["Tick" gnus-summary-tick-article-forward t]
1950         ["Mark as dormant" gnus-summary-mark-as-dormant t]
1951         ["Remove marks" gnus-summary-clear-mark-forward t]
1952         ["Set expirable mark" gnus-summary-mark-as-expirable t]
1953         ["Set bookmark" gnus-summary-set-bookmark t]
1954         ["Remove bookmark" gnus-summary-remove-bookmark t])
1955        ("Mark Limit"
1956         ["Marks..." gnus-summary-limit-to-marks t]
1957         ["Subject..." gnus-summary-limit-to-subject t]
1958         ["Author..." gnus-summary-limit-to-author t]
1959         ["Age..." gnus-summary-limit-to-age t]
1960         ["Extra..." gnus-summary-limit-to-extra t]
1961         ["Score" gnus-summary-limit-to-score t]
1962         ["Unread" gnus-summary-limit-to-unread t]
1963         ["Non-dormant" gnus-summary-limit-exclude-dormant t]
1964         ["Articles" gnus-summary-limit-to-articles t]
1965         ["Pop limit" gnus-summary-pop-limit t]
1966         ["Show dormant" gnus-summary-limit-include-dormant t]
1967         ["Hide childless dormant"
1968          gnus-summary-limit-exclude-childless-dormant t]
1969         ;;["Hide thread" gnus-summary-limit-exclude-thread t]
1970         ["Hide marked" gnus-summary-limit-exclude-marks t]
1971         ["Show expunged" gnus-summary-show-all-expunged t])
1972        ("Process Mark"
1973         ["Set mark" gnus-summary-mark-as-processable t]
1974         ["Remove mark" gnus-summary-unmark-as-processable t]
1975         ["Remove all marks" gnus-summary-unmark-all-processable t]
1976         ["Mark above" gnus-uu-mark-over t]
1977         ["Mark series" gnus-uu-mark-series t]
1978         ["Mark region" gnus-uu-mark-region t]
1979         ["Unmark region" gnus-uu-unmark-region t]
1980         ["Mark by regexp..." gnus-uu-mark-by-regexp t]
1981         ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
1982         ["Mark all" gnus-uu-mark-all t]
1983         ["Mark buffer" gnus-uu-mark-buffer t]
1984         ["Mark sparse" gnus-uu-mark-sparse t]
1985         ["Mark thread" gnus-uu-mark-thread t]
1986         ["Unmark thread" gnus-uu-unmark-thread t]
1987         ("Process Mark Sets"
1988          ["Kill" gnus-summary-kill-process-mark t]
1989          ["Yank" gnus-summary-yank-process-mark
1990           gnus-newsgroup-process-stack]
1991          ["Save" gnus-summary-save-process-mark t]))
1992        ("Scroll article"
1993         ["Page forward" gnus-summary-next-page
1994          ,@(if (featurep 'xemacs) nil
1995              '(:help "Show next page of article"))]
1996         ["Page backward" gnus-summary-prev-page
1997          ,@(if (featurep 'xemacs) nil
1998              '(:help "Show previous page of article"))]
1999         ["Line forward" gnus-summary-scroll-up t])
2000        ("Move"
2001         ["Next unread article" gnus-summary-next-unread-article t]
2002         ["Previous unread article" gnus-summary-prev-unread-article t]
2003         ["Next article" gnus-summary-next-article t]
2004         ["Previous article" gnus-summary-prev-article t]
2005         ["Next unread subject" gnus-summary-next-unread-subject t]
2006         ["Previous unread subject" gnus-summary-prev-unread-subject t]
2007         ["Next article same subject" gnus-summary-next-same-subject t]
2008         ["Previous article same subject" gnus-summary-prev-same-subject t]
2009         ["First unread article" gnus-summary-first-unread-article t]
2010         ["Best unread article" gnus-summary-best-unread-article t]
2011         ["Go to subject number..." gnus-summary-goto-subject t]
2012         ["Go to article number..." gnus-summary-goto-article t]
2013         ["Go to the last article" gnus-summary-goto-last-article t]
2014         ["Pop article off history" gnus-summary-pop-article t])
2015        ("Sort"
2016         ["Sort by number" gnus-summary-sort-by-number t]
2017         ["Sort by author" gnus-summary-sort-by-author t]
2018         ["Sort by subject" gnus-summary-sort-by-subject t]
2019         ["Sort by date" gnus-summary-sort-by-date t]
2020         ["Sort by score" gnus-summary-sort-by-score t]
2021         ["Sort by lines" gnus-summary-sort-by-lines t]
2022         ["Sort by characters" gnus-summary-sort-by-chars t])
2023        ("Help"
2024         ["Fetch group FAQ" gnus-summary-fetch-faq t]
2025         ["Describe group" gnus-summary-describe-group t]
2026         ["Read manual" gnus-info-find-node t])
2027        ("Modes"
2028         ["Pick and read" gnus-pick-mode t]
2029         ["Binary" gnus-binary-mode t])
2030        ("Regeneration"
2031         ["Regenerate" gnus-summary-prepare t]
2032         ["Insert cached articles" gnus-summary-insert-cached-articles t]
2033         ["Toggle threading" gnus-summary-toggle-threads t])
2034        ["Filter articles..." gnus-summary-execute-command t]
2035        ["Run command on subjects..." gnus-summary-universal-argument t]
2036        ["Search articles forward..." gnus-summary-search-article-forward t]
2037        ["Search articles backward..." gnus-summary-search-article-backward t]
2038        ["Toggle line truncation" gnus-summary-toggle-truncation t]
2039        ["Expand window" gnus-summary-expand-window t]
2040        ["Expire expirable articles" gnus-summary-expire-articles
2041         (gnus-check-backend-function
2042          'request-expire-articles gnus-newsgroup-name)]
2043        ["Edit local kill file" gnus-summary-edit-local-kill t]
2044        ["Edit main kill file" gnus-summary-edit-global-kill t]
2045        ["Edit group parameters" gnus-summary-edit-parameters t]
2046        ["Customize group parameters" gnus-summary-customize-parameters t]
2047        ["Send a bug report" gnus-bug t]
2048        ("Exit"
2049         ["Catchup and exit" gnus-summary-catchup-and-exit
2050          ,@(if (featurep 'xemacs) nil
2051              '(:help "Mark unread articles in this group as read, then exit"))]
2052         ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2053         ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2054         ["Exit group" gnus-summary-exit
2055          ,@(if (featurep 'xemacs) nil
2056              '(:help "Exit current group, return to group selection mode"))]
2057         ["Exit group without updating" gnus-summary-exit-no-update t]
2058         ["Exit and goto next group" gnus-summary-next-group t]
2059         ["Exit and goto prev group" gnus-summary-prev-group t]
2060         ["Reselect group" gnus-summary-reselect-current-group t]
2061         ["Rescan group" gnus-summary-rescan-group t]
2062         ["Update dribble" gnus-summary-save-newsrc t])))
2063
2064     (gnus-run-hooks 'gnus-summary-menu-hook)))
2065
2066 (defvar gnus-summary-tool-bar-map nil)
2067
2068 ;; Emacs 21 tool bar.  Should be no-op otherwise.
2069 (defun gnus-summary-make-tool-bar ()
2070   (if (and (fboundp 'tool-bar-add-item-from-menu)
2071            (default-value 'tool-bar-mode)
2072            (not gnus-summary-tool-bar-map))
2073       (setq gnus-summary-tool-bar-map
2074             (let ((tool-bar-map (make-sparse-keymap))
2075                   (load-path (mm-image-load-path)))
2076               (tool-bar-add-item-from-menu
2077                'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map)
2078               (tool-bar-add-item-from-menu
2079                'gnus-summary-next-unread "next-ur" gnus-summary-mode-map)
2080               (tool-bar-add-item-from-menu
2081                'gnus-summary-post-news "post" gnus-summary-mode-map)
2082               (tool-bar-add-item-from-menu
2083                'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map)
2084               (tool-bar-add-item-from-menu
2085                'gnus-summary-followup "followup" gnus-summary-mode-map)
2086               (tool-bar-add-item-from-menu
2087                'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map)
2088               (tool-bar-add-item-from-menu
2089                'gnus-summary-reply "reply" gnus-summary-mode-map)
2090               (tool-bar-add-item-from-menu
2091                'gnus-summary-caesar-message "rot13" gnus-summary-mode-map)
2092               (tool-bar-add-item-from-menu
2093                'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map)
2094               (tool-bar-add-item-from-menu
2095                'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map)
2096               (tool-bar-add-item-from-menu
2097                'gnus-summary-save-article "save-art" gnus-summary-mode-map)
2098               (tool-bar-add-item-from-menu
2099                'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2100               (tool-bar-add-item-from-menu
2101                'gnus-summary-catchup "catchup" gnus-summary-mode-map)
2102               (tool-bar-add-item-from-menu
2103                'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map)
2104               (tool-bar-add-item-from-menu
2105                'gnus-summary-exit "exit-summ" gnus-summary-mode-map)
2106               tool-bar-map)))
2107   (if gnus-summary-tool-bar-map
2108       (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
2109
2110 (defun gnus-score-set-default (var value)
2111   "A version of set that updates the GNU Emacs menu-bar."
2112   (set var value)
2113   ;; It is the message that forces the active status to be updated.
2114   (message ""))
2115
2116 (defun gnus-make-score-map (type)
2117   "Make a summary score map of type TYPE."
2118   (if t
2119       nil
2120     (let ((headers '(("author" "from" string)
2121                      ("subject" "subject" string)
2122                      ("article body" "body" string)
2123                      ("article head" "head" string)
2124                      ("xref" "xref" string)
2125                      ("extra header" "extra" string)
2126                      ("lines" "lines" number)
2127                      ("followups to author" "followup" string)))
2128           (types '((number ("less than" <)
2129                            ("greater than" >)
2130                            ("equal" =))
2131                    (string ("substring" s)
2132                            ("exact string" e)
2133                            ("fuzzy string" f)
2134                            ("regexp" r))))
2135           (perms '(("temporary" (current-time-string))
2136                    ("permanent" nil)
2137                    ("immediate" now)))
2138           header)
2139       (list
2140        (apply
2141         'nconc
2142         (list
2143          (if (eq type 'lower)
2144              "Lower score"
2145            "Increase score"))
2146         (let (outh)
2147           (while headers
2148             (setq header (car headers))
2149             (setq outh
2150                   (cons
2151                    (apply
2152                     'nconc
2153                     (list (car header))
2154                     (let ((ts (cdr (assoc (nth 2 header) types)))
2155                           outt)
2156                       (while ts
2157                         (setq outt
2158                               (cons
2159                                (apply
2160                                 'nconc
2161                                 (list (caar ts))
2162                                 (let ((ps perms)
2163                                       outp)
2164                                   (while ps
2165                                     (setq outp
2166                                           (cons
2167                                            (vector
2168                                             (caar ps)
2169                                             (list
2170                                              'gnus-summary-score-entry
2171                                              (nth 1 header)
2172                                              (if (or (string= (nth 1 header)
2173                                                               "head")
2174                                                      (string= (nth 1 header)
2175                                                               "body"))
2176                                                  ""
2177                                                (list 'gnus-summary-header
2178                                                      (nth 1 header)))
2179                                              (list 'quote (nth 1 (car ts)))
2180                                              (list 'gnus-score-delta-default
2181                                                    nil)
2182                                              (nth 1 (car ps))
2183                                              t)
2184                                             t)
2185                                            outp))
2186                                     (setq ps (cdr ps)))
2187                                   (list (nreverse outp))))
2188                                outt))
2189                         (setq ts (cdr ts)))
2190                       (list (nreverse outt))))
2191                    outh))
2192             (setq headers (cdr headers)))
2193           (list (nreverse outh))))))))
2194
2195 \f
2196
2197 (defun gnus-summary-mode (&optional group)
2198   "Major mode for reading articles.
2199
2200 All normal editing commands are switched off.
2201 \\<gnus-summary-mode-map>
2202 Each line in this buffer represents one article.  To read an
2203 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
2204 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2205 respectively.
2206
2207 You can also post articles and send mail from this buffer.  To
2208 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
2209 of an article, type `\\[gnus-summary-reply]'.
2210
2211 There are approx. one gazillion commands you can execute in this
2212 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2213
2214 The following commands are available:
2215
2216 \\{gnus-summary-mode-map}"
2217   (interactive)
2218   (kill-all-local-variables)
2219   (when (gnus-visual-p 'summary-menu 'menu)
2220     (gnus-summary-make-menu-bar)
2221     (gnus-summary-make-tool-bar))
2222   (gnus-summary-make-local-variables)
2223   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
2224     (gnus-summary-make-local-variables))
2225   (gnus-make-thread-indent-array)
2226   (gnus-simplify-mode-line)
2227   (setq major-mode 'gnus-summary-mode)
2228   (setq mode-name "Summary")
2229   (make-local-variable 'minor-mode-alist)
2230   (use-local-map gnus-summary-mode-map)
2231   (buffer-disable-undo)
2232   (setq buffer-read-only t)             ;Disable modification
2233   (setq truncate-lines t)
2234   (setq selective-display t)
2235   (setq selective-display-ellipses t)   ;Display `...'
2236   (gnus-summary-set-display-table)
2237   (gnus-set-default-directory)
2238   (setq gnus-newsgroup-name group)
2239   (unless (gnus-news-group-p group)
2240     (setq gnus-newsgroup-incorporated
2241           (nnmail-new-mail-numbers (gnus-group-real-name group))))
2242   (make-local-variable 'gnus-summary-line-format)
2243   (make-local-variable 'gnus-summary-line-format-spec)
2244   (make-local-variable 'gnus-summary-dummy-line-format)
2245   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2246   (make-local-variable 'gnus-summary-mark-positions)
2247   (make-local-hook 'pre-command-hook)
2248   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2249   (gnus-run-hooks 'gnus-summary-mode-hook)
2250   (turn-on-gnus-mailing-list-mode)
2251   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2252   (gnus-update-summary-mark-positions))
2253
2254 (defun gnus-summary-make-local-variables ()
2255   "Make all the local summary buffer variables."
2256   (let (global)
2257     (dolist (local gnus-summary-local-variables)
2258       (if (consp local)
2259           (progn
2260             (if (eq (cdr local) 'global)
2261                 ;; Copy the global value of the variable.
2262                 (setq global (symbol-value (car local)))
2263               ;; Use the value from the list.
2264               (setq global (eval (cdr local))))
2265             (set (make-local-variable (car local)) global))
2266         ;; Simple nil-valued local variable.
2267         (set (make-local-variable local) nil)))))
2268
2269 (defun gnus-summary-clear-local-variables ()
2270   (let ((locals gnus-summary-local-variables))
2271     (while locals
2272       (if (consp (car locals))
2273           (and (vectorp (caar locals))
2274                (set (caar locals) nil))
2275         (and (vectorp (car locals))
2276              (set (car locals) nil)))
2277       (setq locals (cdr locals)))))
2278
2279 ;; Summary data functions.
2280
2281 (defmacro gnus-data-number (data)
2282   `(car ,data))
2283
2284 (defmacro gnus-data-set-number (data number)
2285   `(setcar ,data ,number))
2286
2287 (defmacro gnus-data-mark (data)
2288   `(nth 1 ,data))
2289
2290 (defmacro gnus-data-set-mark (data mark)
2291   `(setcar (nthcdr 1 ,data) ,mark))
2292
2293 (defmacro gnus-data-pos (data)
2294   `(nth 2 ,data))
2295
2296 (defmacro gnus-data-set-pos (data pos)
2297   `(setcar (nthcdr 2 ,data) ,pos))
2298
2299 (defmacro gnus-data-header (data)
2300   `(nth 3 ,data))
2301
2302 (defmacro gnus-data-set-header (data header)
2303   `(setcar (nthcdr 3 ,data) ,header))
2304
2305 (defmacro gnus-data-level (data)
2306   `(nth 4 ,data))
2307
2308 (defmacro gnus-data-unread-p (data)
2309   `(= (nth 1 ,data) gnus-unread-mark))
2310
2311 (defmacro gnus-data-read-p (data)
2312   `(/= (nth 1 ,data) gnus-unread-mark))
2313
2314 (defmacro gnus-data-pseudo-p (data)
2315   `(consp (nth 3 ,data)))
2316
2317 (defmacro gnus-data-find (number)
2318   `(assq ,number gnus-newsgroup-data))
2319
2320 (defmacro gnus-data-find-list (number &optional data)
2321   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2322      (memq (assq ,number bdata)
2323            bdata)))
2324
2325 (defmacro gnus-data-make (number mark pos header level)
2326   `(list ,number ,mark ,pos ,header ,level))
2327
2328 (defun gnus-data-enter (after-article number mark pos header level offset)
2329   (let ((data (gnus-data-find-list after-article)))
2330     (unless data
2331       (error "No such article: %d" after-article))
2332     (setcdr data (cons (gnus-data-make number mark pos header level)
2333                        (cdr data)))
2334     (setq gnus-newsgroup-data-reverse nil)
2335     (gnus-data-update-list (cddr data) offset)))
2336
2337 (defun gnus-data-enter-list (after-article list &optional offset)
2338   (when list
2339     (let ((data (and after-article (gnus-data-find-list after-article)))
2340           (ilist list))
2341       (if (not (or data
2342                    after-article))
2343           (let ((odata gnus-newsgroup-data))
2344             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2345             (when offset
2346               (gnus-data-update-list odata offset)))
2347         ;; Find the last element in the list to be spliced into the main
2348         ;; list.
2349         (while (cdr list)
2350           (setq list (cdr list)))
2351         (if (not data)
2352             (progn
2353               (setcdr list gnus-newsgroup-data)
2354               (setq gnus-newsgroup-data ilist)
2355               (when offset
2356                 (gnus-data-update-list (cdr list) offset)))
2357           (setcdr list (cdr data))
2358           (setcdr data ilist)
2359           (when offset
2360             (gnus-data-update-list (cdr list) offset))))
2361       (setq gnus-newsgroup-data-reverse nil))))
2362
2363 (defun gnus-data-remove (article &optional offset)
2364   (let ((data gnus-newsgroup-data))
2365     (if (= (gnus-data-number (car data)) article)
2366         (progn
2367           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2368                 gnus-newsgroup-data-reverse nil)
2369           (when offset
2370             (gnus-data-update-list gnus-newsgroup-data offset)))
2371       (while (cdr data)
2372         (when (= (gnus-data-number (cadr data)) article)
2373           (setcdr data (cddr data))
2374           (when offset
2375             (gnus-data-update-list (cdr data) offset))
2376           (setq data nil
2377                 gnus-newsgroup-data-reverse nil))
2378         (setq data (cdr data))))))
2379
2380 (defmacro gnus-data-list (backward)
2381   `(if ,backward
2382        (or gnus-newsgroup-data-reverse
2383            (setq gnus-newsgroup-data-reverse
2384                  (reverse gnus-newsgroup-data)))
2385      gnus-newsgroup-data))
2386
2387 (defun gnus-data-update-list (data offset)
2388   "Add OFFSET to the POS of all data entries in DATA."
2389   (setq gnus-newsgroup-data-reverse nil)
2390   (while data
2391     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2392     (setq data (cdr data))))
2393
2394 (defun gnus-summary-article-pseudo-p (article)
2395   "Say whether this article is a pseudo article or not."
2396   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2397
2398 (defmacro gnus-summary-article-sparse-p (article)
2399   "Say whether this article is a sparse article or not."
2400   `(memq ,article gnus-newsgroup-sparse))
2401
2402 (defmacro gnus-summary-article-ancient-p (article)
2403   "Say whether this article is a sparse article or not."
2404   `(memq ,article gnus-newsgroup-ancient))
2405
2406 (defun gnus-article-parent-p (number)
2407   "Say whether this article is a parent or not."
2408   (let ((data (gnus-data-find-list number)))
2409     (and (cdr data)                     ; There has to be an article after...
2410          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2411             (gnus-data-level (nth 1 data))))))
2412
2413 (defun gnus-article-children (number)
2414   "Return a list of all children to NUMBER."
2415   (let* ((data (gnus-data-find-list number))
2416          (level (gnus-data-level (car data)))
2417          children)
2418     (setq data (cdr data))
2419     (while (and data
2420                 (= (gnus-data-level (car data)) (1+ level)))
2421       (push (gnus-data-number (car data)) children)
2422       (setq data (cdr data)))
2423     children))
2424
2425 (defmacro gnus-summary-skip-intangible ()
2426   "If the current article is intangible, then jump to a different article."
2427   '(let ((to (get-text-property (point) 'gnus-intangible)))
2428      (and to (gnus-summary-goto-subject to))))
2429
2430 (defmacro gnus-summary-article-intangible-p ()
2431   "Say whether this article is intangible or not."
2432   '(get-text-property (point) 'gnus-intangible))
2433
2434 (defun gnus-article-read-p (article)
2435   "Say whether ARTICLE is read or not."
2436   (not (or (memq article gnus-newsgroup-marked)
2437            (memq article gnus-newsgroup-unreads)
2438            (memq article gnus-newsgroup-unselected)
2439            (memq article gnus-newsgroup-dormant))))
2440
2441 ;; Some summary mode macros.
2442
2443 (defmacro gnus-summary-article-number ()
2444   "The article number of the article on the current line.
2445 If there isn's an article number here, then we return the current
2446 article number."
2447   '(progn
2448      (gnus-summary-skip-intangible)
2449      (or (get-text-property (point) 'gnus-number)
2450          (gnus-summary-last-subject))))
2451
2452 (defmacro gnus-summary-article-header (&optional number)
2453   "Return the header of article NUMBER."
2454   `(gnus-data-header (gnus-data-find
2455                       ,(or number '(gnus-summary-article-number)))))
2456
2457 (defmacro gnus-summary-thread-level (&optional number)
2458   "Return the level of thread that starts with article NUMBER."
2459   `(if (and (eq gnus-summary-make-false-root 'dummy)
2460             (get-text-property (point) 'gnus-intangible))
2461        0
2462      (gnus-data-level (gnus-data-find
2463                        ,(or number '(gnus-summary-article-number))))))
2464
2465 (defmacro gnus-summary-article-mark (&optional number)
2466   "Return the mark of article NUMBER."
2467   `(gnus-data-mark (gnus-data-find
2468                     ,(or number '(gnus-summary-article-number)))))
2469
2470 (defmacro gnus-summary-article-pos (&optional number)
2471   "Return the position of the line of article NUMBER."
2472   `(gnus-data-pos (gnus-data-find
2473                    ,(or number '(gnus-summary-article-number)))))
2474
2475 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2476 (defmacro gnus-summary-article-subject (&optional number)
2477   "Return current subject string or nil if nothing."
2478   `(let ((headers
2479           ,(if number
2480                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2481              '(gnus-data-header (assq (gnus-summary-article-number)
2482                                       gnus-newsgroup-data)))))
2483      (and headers
2484           (vectorp headers)
2485           (mail-header-subject headers))))
2486
2487 (defmacro gnus-summary-article-score (&optional number)
2488   "Return current article score."
2489   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2490                   gnus-newsgroup-scored))
2491        gnus-summary-default-score 0))
2492
2493 (defun gnus-summary-article-children (&optional number)
2494   "Return a list of article numbers that are children of article NUMBER."
2495   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2496          (level (gnus-data-level (car data)))
2497          l children)
2498     (while (and (setq data (cdr data))
2499                 (> (setq l (gnus-data-level (car data))) level))
2500       (and (= (1+ level) l)
2501            (push (gnus-data-number (car data))
2502                  children)))
2503     (nreverse children)))
2504
2505 (defun gnus-summary-article-parent (&optional number)
2506   "Return the article number of the parent of article NUMBER."
2507   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2508                                     (gnus-data-list t)))
2509          (level (gnus-data-level (car data))))
2510     (if (zerop level)
2511         ()                              ; This is a root.
2512       ;; We search until we find an article with a level less than
2513       ;; this one.  That function has to be the parent.
2514       (while (and (setq data (cdr data))
2515                   (not (< (gnus-data-level (car data)) level))))
2516       (and data (gnus-data-number (car data))))))
2517
2518 (defun gnus-unread-mark-p (mark)
2519   "Say whether MARK is the unread mark."
2520   (= mark gnus-unread-mark))
2521
2522 (defun gnus-read-mark-p (mark)
2523   "Say whether MARK is one of the marks that mark as read.
2524 This is all marks except unread, ticked, dormant, and expirable."
2525   (not (or (= mark gnus-unread-mark)
2526            (= mark gnus-ticked-mark)
2527            (= mark gnus-dormant-mark)
2528            (= mark gnus-expirable-mark))))
2529
2530 (defmacro gnus-article-mark (number)
2531   "Return the MARK of article NUMBER.
2532 This macro should only be used when computing the mark the \"first\"
2533 time; i.e., when generating the summary lines.  After that,
2534 `gnus-summary-article-mark' should be used to examine the
2535 marks of articles."
2536   `(cond
2537     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
2538     ((memq ,number gnus-newsgroup-undownloaded) gnus-undownloaded-mark)
2539     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
2540     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
2541     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
2542     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
2543     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
2544     (t (or (cdr (assq ,number gnus-newsgroup-reads))
2545            gnus-ancient-mark))))
2546
2547 ;; Saving hidden threads.
2548
2549 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
2550 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
2551
2552 (defmacro gnus-save-hidden-threads (&rest forms)
2553   "Save hidden threads, eval FORMS, and restore the hidden threads."
2554   (let ((config (make-symbol "config")))
2555     `(let ((,config (gnus-hidden-threads-configuration)))
2556        (unwind-protect
2557            (save-excursion
2558              ,@forms)
2559          (gnus-restore-hidden-threads-configuration ,config)))))
2560
2561 (defun gnus-data-compute-positions ()
2562   "Compute the positions of all articles."
2563   (setq gnus-newsgroup-data-reverse nil)
2564   (let ((data gnus-newsgroup-data))
2565     (save-excursion
2566       (gnus-save-hidden-threads
2567         (gnus-summary-show-all-threads)
2568         (goto-char (point-min))
2569         (while data
2570           (while (get-text-property (point) 'gnus-intangible)
2571             (forward-line 1))
2572           (gnus-data-set-pos (car data) (+ (point) 3))
2573           (setq data (cdr data))
2574           (forward-line 1))))))
2575
2576 (defun gnus-hidden-threads-configuration ()
2577   "Return the current hidden threads configuration."
2578   (save-excursion
2579     (let (config)
2580       (goto-char (point-min))
2581       (while (search-forward "\r" nil t)
2582         (push (1- (point)) config))
2583       config)))
2584
2585 (defun gnus-restore-hidden-threads-configuration (config)
2586   "Restore hidden threads configuration from CONFIG."
2587   (save-excursion
2588     (let (point buffer-read-only)
2589       (while (setq point (pop config))
2590         (when (and (< point (point-max))
2591                    (goto-char point)
2592                    (eq (char-after) ?\n))
2593           (subst-char-in-region point (1+ point) ?\n ?\r))))))
2594
2595 ;; Various summary mode internalish functions.
2596
2597 (defun gnus-mouse-pick-article (e)
2598   (interactive "e")
2599   (mouse-set-point e)
2600   (gnus-summary-next-page nil t))
2601
2602 (defun gnus-summary-set-display-table ()
2603   "Change the display table.
2604 Odd characters have a tendency to mess
2605 up nicely formatted displays - we make all possible glyphs
2606 display only a single character."
2607
2608   ;; We start from the standard display table, if any.
2609   (let ((table (or (copy-sequence standard-display-table)
2610                    (make-display-table)))
2611         (i 32))
2612     ;; Nix out all the control chars...
2613     (while (>= (setq i (1- i)) 0)
2614       (aset table i [??]))
2615     ;; ... but not newline and cr, of course.  (cr is necessary for the
2616     ;; selective display).
2617     (aset table ?\n nil)
2618     (aset table ?\r nil)
2619     ;; We keep TAB as well.
2620     (aset table ?\t nil)
2621     ;; We nix out any glyphs over 126 that are not set already.
2622     (let ((i 256))
2623       (while (>= (setq i (1- i)) 127)
2624         ;; Only modify if the entry is nil.
2625         (unless (aref table i)
2626           (aset table i [??]))))
2627     (setq buffer-display-table table)))
2628
2629 (defun gnus-summary-buffer-name (group)
2630   "Return the summary buffer name of GROUP."
2631   (concat "*Summary " group "*"))
2632
2633 (defun gnus-summary-setup-buffer (group)
2634   "Initialize summary buffer."
2635   (let ((buffer (gnus-summary-buffer-name group)))
2636     (if (get-buffer buffer)
2637         (progn
2638           (set-buffer buffer)
2639           (setq gnus-summary-buffer (current-buffer))
2640           (not gnus-newsgroup-prepared))
2641       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
2642       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
2643       (gnus-summary-mode group)
2644       (when gnus-carpal
2645         (gnus-carpal-setup-buffer 'summary))
2646       (unless gnus-single-article-buffer
2647         (make-local-variable 'gnus-article-buffer)
2648         (make-local-variable 'gnus-article-current)
2649         (make-local-variable 'gnus-original-article-buffer))
2650       (setq gnus-newsgroup-name group)
2651       t)))
2652
2653 (defun gnus-set-global-variables ()
2654   "Set the global equivalents of the buffer-local variables.
2655 They are set to the latest values they had.  These reflect the summary
2656 buffer that was in action when the last article was fetched."
2657   (when (eq major-mode 'gnus-summary-mode)
2658     (setq gnus-summary-buffer (current-buffer))
2659     (let ((name gnus-newsgroup-name)
2660           (marked gnus-newsgroup-marked)
2661           (unread gnus-newsgroup-unreads)
2662           (headers gnus-current-headers)
2663           (data gnus-newsgroup-data)
2664           (summary gnus-summary-buffer)
2665           (article-buffer gnus-article-buffer)
2666           (original gnus-original-article-buffer)
2667           (gac gnus-article-current)
2668           (reffed gnus-reffed-article-number)
2669           (score-file gnus-current-score-file)
2670           (default-charset gnus-newsgroup-charset)
2671           vlist)
2672       (let ((locals gnus-newsgroup-variables))
2673         (while locals
2674           (if (consp (car locals))
2675               (push (eval (caar locals)) vlist)
2676             (push (eval (car locals)) vlist))
2677           (setq locals (cdr locals)))
2678         (setq vlist (nreverse vlist)))
2679       (save-excursion
2680         (set-buffer gnus-group-buffer)
2681         (setq gnus-newsgroup-name name
2682               gnus-newsgroup-marked marked
2683               gnus-newsgroup-unreads unread
2684               gnus-current-headers headers
2685               gnus-newsgroup-data data
2686               gnus-article-current gac
2687               gnus-summary-buffer summary
2688               gnus-article-buffer article-buffer
2689               gnus-original-article-buffer original
2690               gnus-reffed-article-number reffed
2691               gnus-current-score-file score-file
2692               gnus-newsgroup-charset default-charset)
2693         (let ((locals gnus-newsgroup-variables))
2694           (while locals
2695             (if (consp (car locals))
2696                 (set (caar locals) (pop vlist))
2697               (set (car locals) (pop vlist)))
2698             (setq locals (cdr locals))))
2699         ;; The article buffer also has local variables.
2700         (when (gnus-buffer-live-p gnus-article-buffer)
2701           (set-buffer gnus-article-buffer)
2702           (setq gnus-summary-buffer summary))))))
2703
2704 (defun gnus-summary-article-unread-p (article)
2705   "Say whether ARTICLE is unread or not."
2706   (memq article gnus-newsgroup-unreads))
2707
2708 (defun gnus-summary-first-article-p (&optional article)
2709   "Return whether ARTICLE is the first article in the buffer."
2710   (if (not (setq article (or article (gnus-summary-article-number))))
2711       nil
2712     (eq article (caar gnus-newsgroup-data))))
2713
2714 (defun gnus-summary-last-article-p (&optional article)
2715   "Return whether ARTICLE is the last article in the buffer."
2716   (if (not (setq article (or article (gnus-summary-article-number))))
2717       ;; All non-existent numbers are the last article.  :-)
2718       t
2719     (not (cdr (gnus-data-find-list article)))))
2720
2721 (defun gnus-make-thread-indent-array ()
2722   (let ((n 200))
2723     (unless (and gnus-thread-indent-array
2724                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
2725       (setq gnus-thread-indent-array (make-vector 201 "")
2726             gnus-thread-indent-array-level gnus-thread-indent-level)
2727       (while (>= n 0)
2728         (aset gnus-thread-indent-array n
2729               (make-string (* n gnus-thread-indent-level) ? ))
2730         (setq n (1- n))))))
2731
2732 (defun gnus-update-summary-mark-positions ()
2733   "Compute where the summary marks are to go."
2734   (save-excursion
2735     (when (gnus-buffer-exists-p gnus-summary-buffer)
2736       (set-buffer gnus-summary-buffer))
2737     (let ((gnus-replied-mark 129)
2738           (gnus-score-below-mark 130)
2739           (gnus-score-over-mark 130)
2740           (gnus-download-mark 131)
2741           (spec gnus-summary-line-format-spec)
2742           gnus-visual pos)
2743       (save-excursion
2744         (gnus-set-work-buffer)
2745         (let ((gnus-summary-line-format-spec spec)
2746               (gnus-newsgroup-downloadable '((0 . t))))
2747           (gnus-summary-insert-line
2748            (make-full-mail-header 0 "" "nobody" "" "" "" 0 0 "" nil)
2749            0 nil 128 t nil "" nil 1)
2750           (goto-char (point-min))
2751           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
2752                                              (- (point) 2)))))
2753           (goto-char (point-min))
2754           (push (cons 'replied (and (search-forward "\201" nil t)
2755                                     (- (point) 2)))
2756                 pos)
2757           (goto-char (point-min))
2758           (push (cons 'score (and (search-forward "\202" nil t) (- (point) 2)))
2759                 pos)
2760           (goto-char (point-min))
2761           (push (cons 'download
2762                       (and (search-forward "\203" nil t) (- (point) 2)))
2763                 pos)))
2764       (setq gnus-summary-mark-positions pos))))
2765
2766 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
2767   "Insert a dummy root in the summary buffer."
2768   (beginning-of-line)
2769   (gnus-add-text-properties
2770    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
2771    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
2772
2773 (defun gnus-summary-from-or-to-or-newsgroups (header)
2774   (let ((to (cdr (assq 'To (mail-header-extra header))))
2775         (newsgroups (cdr (assq 'Newsgroups (mail-header-extra header))))
2776         (default-mime-charset (with-current-buffer gnus-summary-buffer
2777                                 default-mime-charset)))
2778     (cond
2779      ((and to
2780            gnus-ignored-from-addresses
2781            (string-match gnus-ignored-from-addresses
2782                          (mail-header-from header)))
2783       (concat "-> "
2784               (or (car (funcall gnus-extract-address-components
2785                                 (funcall
2786                                  gnus-decode-encoded-word-function to)))
2787                   (funcall gnus-decode-encoded-word-function to))))
2788      ((and newsgroups
2789            gnus-ignored-from-addresses
2790            (string-match gnus-ignored-from-addresses
2791                          (mail-header-from header)))
2792       (concat "=> " newsgroups))
2793      (t
2794       (or (car (funcall gnus-extract-address-components
2795                         (mail-header-from header)))
2796           (mail-header-from header))))))
2797
2798 (defun gnus-summary-insert-line (gnus-tmp-header
2799                                  gnus-tmp-level gnus-tmp-current
2800                                  gnus-tmp-unread gnus-tmp-replied
2801                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
2802                                  &optional gnus-tmp-dummy gnus-tmp-score
2803                                  gnus-tmp-process)
2804   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
2805          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
2806          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
2807          (gnus-tmp-score-char
2808           (if (or (null gnus-summary-default-score)
2809                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
2810                       gnus-summary-zcore-fuzz))
2811               ?  ;Whitespace
2812             (if (< gnus-tmp-score gnus-summary-default-score)
2813                 gnus-score-below-mark gnus-score-over-mark)))
2814          (gnus-tmp-replied
2815           (cond (gnus-tmp-process gnus-process-mark)
2816                 ((memq gnus-tmp-current gnus-newsgroup-cached)
2817                  gnus-cached-mark)
2818                 (gnus-tmp-replied gnus-replied-mark)
2819                 ((memq gnus-tmp-current gnus-newsgroup-saved)
2820                  gnus-saved-mark)
2821                 (t gnus-no-mark)))
2822          (gnus-tmp-from (mail-header-from gnus-tmp-header))
2823          (gnus-tmp-name
2824           (cond
2825            ((string-match "<[^>]+> *$" gnus-tmp-from)
2826             (let ((beg (match-beginning 0)))
2827               (or (and (string-match "^\".+\"" gnus-tmp-from)
2828                        (substring gnus-tmp-from 1 (1- (match-end 0))))
2829                   (substring gnus-tmp-from 0 beg))))
2830            ((string-match "(.+)" gnus-tmp-from)
2831             (substring gnus-tmp-from
2832                        (1+ (match-beginning 0)) (1- (match-end 0))))
2833            (t gnus-tmp-from)))
2834          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
2835          (gnus-tmp-number (mail-header-number gnus-tmp-header))
2836          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
2837          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
2838          (buffer-read-only nil))
2839     (when (string= gnus-tmp-name "")
2840       (setq gnus-tmp-name gnus-tmp-from))
2841     (unless (numberp gnus-tmp-lines)
2842       (setq gnus-tmp-lines 0))
2843     (gnus-put-text-property-excluding-characters-with-faces
2844      (point)
2845      (progn (eval gnus-summary-line-format-spec) (point))
2846      'gnus-number gnus-tmp-number)
2847     (when (gnus-visual-p 'summary-highlight 'highlight)
2848       (forward-line -1)
2849       (gnus-run-hooks 'gnus-summary-update-hook)
2850       (forward-line 1))))
2851
2852 (defun gnus-summary-update-line (&optional dont-update)
2853   "Update summary line after change."
2854   (when (and gnus-summary-default-score
2855              (not gnus-summary-inhibit-highlight))
2856     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
2857            (article (gnus-summary-article-number))
2858            (score (gnus-summary-article-score article)))
2859       (unless dont-update
2860         (if (and gnus-summary-mark-below
2861                  (< (gnus-summary-article-score)
2862                     gnus-summary-mark-below))
2863             ;; This article has a low score, so we mark it as read.
2864             (when (memq article gnus-newsgroup-unreads)
2865               (gnus-summary-mark-article-as-read gnus-low-score-mark))
2866           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
2867             ;; This article was previously marked as read on account
2868             ;; of a low score, but now it has risen, so we mark it as
2869             ;; unread.
2870             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
2871         (gnus-summary-update-mark
2872          (if (or (null gnus-summary-default-score)
2873                  (<= (abs (- score gnus-summary-default-score))
2874                      gnus-summary-zcore-fuzz))
2875              ?  ;Whitespace
2876            (if (< score gnus-summary-default-score)
2877                gnus-score-below-mark gnus-score-over-mark))
2878          'score))
2879       ;; Do visual highlighting.
2880       (when (gnus-visual-p 'summary-highlight 'highlight)
2881         (gnus-run-hooks 'gnus-summary-update-hook)))))
2882
2883 (defvar gnus-tmp-new-adopts nil)
2884
2885 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
2886   "Return the number of articles in THREAD.
2887 This may be 0 in some cases -- if none of the articles in
2888 the thread are to be displayed."
2889   (let* ((number
2890           ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
2891           (cond
2892            ((not (listp thread))
2893             1)
2894            ((and (consp thread) (cdr thread))
2895             (apply
2896              '+ 1 (mapcar
2897                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
2898            ((null thread)
2899             1)
2900            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
2901             1)
2902            (t 0))))
2903     (when (and level (zerop level) gnus-tmp-new-adopts)
2904       (incf number
2905             (apply '+ (mapcar
2906                        'gnus-summary-number-of-articles-in-thread
2907                        gnus-tmp-new-adopts))))
2908     (if char
2909         (if (> number 1) gnus-not-empty-thread-mark
2910           gnus-empty-thread-mark)
2911       number)))
2912
2913 (defun gnus-summary-set-local-parameters (group)
2914   "Go through the local params of GROUP and set all variable specs in that list."
2915   (let ((params (gnus-group-find-parameter group))
2916         elem)
2917     (while params
2918       (setq elem (car params)
2919             params (cdr params))
2920       (and (consp elem)                 ; Has to be a cons.
2921            (consp (cdr elem))           ; The cdr has to be a list.
2922            (symbolp (car elem))         ; Has to be a symbol in there.
2923            (not (memq (car elem) '(quit-config))) ; Ignore quit-config.
2924            (ignore-errors               ; So we set it.
2925              (make-local-variable (car elem))
2926              (set (car elem) (eval (nth 1 elem))))))))
2927
2928 (defun gnus-summary-read-group (group &optional show-all no-article
2929                                       kill-buffer no-display backward
2930                                       select-articles)
2931   "Start reading news in newsgroup GROUP.
2932 If SHOW-ALL is non-nil, already read articles are also listed.
2933 If NO-ARTICLE is non-nil, no article is selected initially.
2934 If NO-DISPLAY, don't generate a summary buffer."
2935   (let (result)
2936     (while (and group
2937                 (null (setq result
2938                             (let ((gnus-auto-select-next nil))
2939                               (or (gnus-summary-read-group-1
2940                                    group show-all no-article
2941                                    kill-buffer no-display
2942                                    select-articles)
2943                                   (setq show-all nil
2944                                         select-articles nil)))))
2945                 (eq gnus-auto-select-next 'quietly))
2946       (set-buffer gnus-group-buffer)
2947       ;; The entry function called above goes to the next
2948       ;; group automatically, so we go two groups back
2949       ;; if we are searching for the previous group.
2950       (when backward
2951         (gnus-group-prev-unread-group 2))
2952       (if (not (equal group (gnus-group-group-name)))
2953           (setq group (gnus-group-group-name))
2954         (setq group nil)))
2955     result))
2956
2957 (defun gnus-summary-jump-to-other-group (group &optional show-all)
2958   "Directly jump to the other GROUP from summary buffer.
2959 If SHOW-ALL is non-nil, already read articles are also listed."
2960   (interactive
2961    (if (eq gnus-summary-buffer (current-buffer))
2962        (list (completing-read
2963               "Group: " gnus-active-hashtb nil t
2964               (when (and gnus-newsgroup-name
2965                          (string-match "[.:][^.:]+$" gnus-newsgroup-name))
2966                 (substring gnus-newsgroup-name 0 (1+ (match-beginning 0))))
2967               'gnus-group-history)
2968              current-prefix-arg)
2969      (error "%s must be invoked from a gnus summary buffer." this-command)))
2970   (unless (or (zerop (length group))
2971               (and gnus-newsgroup-name
2972                    (string-equal gnus-newsgroup-name group)))
2973     (gnus-summary-exit)
2974     (gnus-summary-read-group group show-all
2975                              gnus-dont-select-after-jump-to-other-group)))
2976
2977 (defun gnus-summary-read-group-1 (group show-all no-article
2978                                         kill-buffer no-display
2979                                         &optional select-articles)
2980   ;; Killed foreign groups can't be entered.
2981   ;;  (when (and (not (gnus-group-native-p group))
2982   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
2983   ;;    (error "Dead non-native groups can't be entered"))
2984   (gnus-message 5 "Retrieving newsgroup: %s..." group)
2985   (let* ((new-group (gnus-summary-setup-buffer group))
2986          (quit-config (gnus-group-quit-config group))
2987          (did-select (and new-group (gnus-select-newsgroup
2988                                      group show-all select-articles))))
2989     (cond
2990      ;; This summary buffer exists already, so we just select it.
2991      ((not new-group)
2992       (gnus-set-global-variables)
2993       (when kill-buffer
2994         (gnus-kill-or-deaden-summary kill-buffer))
2995       (gnus-configure-windows 'summary 'force)
2996       (gnus-set-mode-line 'summary)
2997       (gnus-summary-position-point)
2998       (message "")
2999       t)
3000      ;; We couldn't select this group.
3001      ((null did-select)
3002       (when (and (eq major-mode 'gnus-summary-mode)
3003                  (not (equal (current-buffer) kill-buffer)))
3004         (kill-buffer (current-buffer))
3005         (if (not quit-config)
3006             (progn
3007               ;; Update the info -- marks might need to be removed,
3008               ;; for instance.
3009               (gnus-summary-update-info)
3010               (set-buffer gnus-group-buffer)
3011               (gnus-group-jump-to-group group)
3012               (gnus-group-next-unread-group 1))
3013           (gnus-handle-ephemeral-exit quit-config)))
3014       (let ((grpinfo (gnus-get-info group)))
3015         (if (null (gnus-info-read grpinfo))
3016             (gnus-message 3 "Group %s contains no messages" group)
3017           (gnus-message 3 "Can't select group")))
3018       nil)
3019      ;; The user did a `C-g' while prompting for number of articles,
3020      ;; so we exit this group.
3021      ((eq did-select 'quit)
3022       (and (eq major-mode 'gnus-summary-mode)
3023            (not (equal (current-buffer) kill-buffer))
3024            (kill-buffer (current-buffer)))
3025       (when kill-buffer
3026         (gnus-kill-or-deaden-summary kill-buffer))
3027       (if (not quit-config)
3028           (progn
3029             (set-buffer gnus-group-buffer)
3030             (gnus-group-jump-to-group group)
3031             (gnus-group-next-unread-group 1)
3032             (gnus-configure-windows 'group 'force))
3033         (gnus-handle-ephemeral-exit quit-config))
3034       ;; Finally signal the quit.
3035       (signal 'quit nil))
3036      ;; The group was successfully selected.
3037      (t
3038       (gnus-set-global-variables)
3039       ;; Save the active value in effect when the group was entered.
3040       (setq gnus-newsgroup-active
3041             (gnus-copy-sequence
3042              (gnus-active gnus-newsgroup-name)))
3043       ;; You can change the summary buffer in some way with this hook.
3044       (gnus-run-hooks 'gnus-select-group-hook)
3045       ;; Set any local variables in the group parameters.
3046       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3047       (gnus-update-format-specifications
3048        nil 'summary 'summary-mode 'summary-dummy)
3049       (gnus-update-summary-mark-positions)
3050       ;; Do score processing.
3051       (when gnus-use-scoring
3052         (gnus-possibly-score-headers))
3053       ;; Check whether to fill in the gaps in the threads.
3054       (when gnus-build-sparse-threads
3055         (gnus-build-sparse-threads))
3056       ;; Find the initial limit.
3057       (if gnus-show-threads
3058           (if show-all
3059               (let ((gnus-newsgroup-dormant nil))
3060                 (gnus-summary-initial-limit show-all))
3061             (gnus-summary-initial-limit show-all))
3062         ;; When untreaded, all articles are always shown.
3063         (setq gnus-newsgroup-limit
3064               (mapcar
3065                (lambda (header) (mail-header-number header))
3066                gnus-newsgroup-headers)))
3067       ;; Generate the summary buffer.
3068       (unless no-display
3069         (gnus-summary-prepare))
3070       (when gnus-use-trees
3071         (gnus-tree-open group)
3072         (setq gnus-summary-highlight-line-function
3073               'gnus-tree-highlight-article))
3074       ;; If the summary buffer is empty, but there are some low-scored
3075       ;; articles or some excluded dormants, we include these in the
3076       ;; buffer.
3077       (when (and (zerop (buffer-size))
3078                  (not no-display))
3079         (cond (gnus-newsgroup-dormant
3080                (gnus-summary-limit-include-dormant))
3081               ((and gnus-newsgroup-scored show-all)
3082                (gnus-summary-limit-include-expunged t))))
3083       ;; Function `gnus-apply-kill-file' must be called in this hook.
3084       (gnus-run-hooks 'gnus-apply-kill-hook)
3085       (if (and (zerop (buffer-size))
3086                (not no-display))
3087           (progn
3088             ;; This newsgroup is empty.
3089             (gnus-summary-catchup-and-exit nil t)
3090             (gnus-message 6 "No unread news")
3091             (when kill-buffer
3092               (gnus-kill-or-deaden-summary kill-buffer))
3093             ;; Return nil from this function.
3094             nil)
3095         ;; Hide conversation thread subtrees.  We cannot do this in
3096         ;; gnus-summary-prepare-hook since kill processing may not
3097         ;; work with hidden articles.
3098         (and gnus-show-threads
3099              gnus-thread-hide-subtree
3100              (gnus-summary-hide-all-threads))
3101         (when kill-buffer
3102           (gnus-kill-or-deaden-summary kill-buffer))
3103         ;; Show first unread article if requested.
3104         (if (and (not no-article)
3105                  (not no-display)
3106                  gnus-newsgroup-unreads
3107                  gnus-auto-select-first)
3108             (progn
3109               (gnus-configure-windows 'summary)
3110               (cond
3111                ((eq gnus-auto-select-first 'best)
3112                 (gnus-summary-best-unread-article))
3113                ((eq gnus-auto-select-first t)
3114                 (gnus-summary-first-unread-article))
3115                ((gnus-functionp gnus-auto-select-first)
3116                 (funcall gnus-auto-select-first))))
3117           ;; Don't select any articles, just move point to the first
3118           ;; article in the group.
3119           (goto-char (point-min))
3120           (gnus-summary-position-point)
3121           (gnus-configure-windows 'summary 'force)
3122           (gnus-set-mode-line 'summary))
3123         (when (get-buffer-window gnus-group-buffer t)
3124           ;; Gotta use windows, because recenter does weird stuff if
3125           ;; the current buffer ain't the displayed window.
3126           (let ((owin (selected-window)))
3127             (select-window (get-buffer-window gnus-group-buffer t))
3128             (when (gnus-group-goto-group group)
3129               (recenter))
3130             (select-window owin)))
3131         ;; Mark this buffer as "prepared".
3132         (setq gnus-newsgroup-prepared t)
3133         (gnus-run-hooks 'gnus-summary-prepared-hook)
3134         t)))))
3135
3136 (defun gnus-summary-prepare ()
3137   "Generate the summary buffer."
3138   (interactive)
3139   (let ((buffer-read-only nil))
3140     (erase-buffer)
3141     (setq gnus-newsgroup-data nil
3142           gnus-newsgroup-data-reverse nil)
3143     (gnus-run-hooks 'gnus-summary-generate-hook)
3144     ;; Generate the buffer, either with threads or without.
3145     (when gnus-newsgroup-headers
3146       (gnus-summary-prepare-threads
3147        (if gnus-show-threads
3148            (gnus-sort-gathered-threads
3149             (funcall gnus-summary-thread-gathering-function
3150                      (gnus-sort-threads
3151                       (gnus-cut-threads (gnus-make-threads)))))
3152          ;; Unthreaded display.
3153          (gnus-sort-articles gnus-newsgroup-headers))))
3154     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
3155     ;; Call hooks for modifying summary buffer.
3156     (goto-char (point-min))
3157     (gnus-run-hooks 'gnus-summary-prepare-hook)))
3158
3159 (defsubst gnus-general-simplify-subject (subject)
3160   "Simply subject by the same rules as gnus-gather-threads-by-subject."
3161   (setq subject
3162         (cond
3163          ;; Truncate the subject.
3164          (gnus-simplify-subject-functions
3165           (gnus-map-function gnus-simplify-subject-functions subject))
3166          ((numberp gnus-summary-gather-subject-limit)
3167           (setq subject (gnus-simplify-subject-re subject))
3168           (if (> (length subject) gnus-summary-gather-subject-limit)
3169               (substring subject 0 gnus-summary-gather-subject-limit)
3170             subject))
3171          ;; Fuzzily simplify it.
3172          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3173           (gnus-simplify-subject-fuzzy subject))
3174          ;; Just remove the leading "Re:".
3175          (t
3176           (gnus-simplify-subject-re subject))))
3177
3178   (if (and gnus-summary-gather-exclude-subject
3179            (string-match gnus-summary-gather-exclude-subject subject))
3180       nil                               ; This article shouldn't be gathered
3181     subject))
3182
3183 (defun gnus-summary-simplify-subject-query ()
3184   "Query where the respool algorithm would put this article."
3185   (interactive)
3186   (gnus-summary-select-article)
3187   (message "%s"
3188            (gnus-general-simplify-subject (gnus-summary-article-subject))))
3189
3190 (defun gnus-gather-threads-by-subject (threads)
3191   "Gather threads by looking at Subject headers."
3192   (if (not gnus-summary-make-false-root)
3193       threads
3194     (let ((hashtb (gnus-make-hashtable 1024))
3195           (prev threads)
3196           (result threads)
3197           subject hthread whole-subject)
3198       (while threads
3199         (setq subject (gnus-general-simplify-subject
3200                        (setq whole-subject (mail-header-subject
3201                                             (caar threads)))))
3202         (when subject
3203           (if (setq hthread (gnus-gethash subject hashtb))
3204               (progn
3205                 ;; We enter a dummy root into the thread, if we
3206                 ;; haven't done that already.
3207                 (unless (stringp (caar hthread))
3208                   (setcar hthread (list whole-subject (car hthread))))
3209                 ;; We add this new gathered thread to this gathered
3210                 ;; thread.
3211                 (setcdr (car hthread)
3212                         (nconc (cdar hthread) (list (car threads))))
3213                 ;; Remove it from the list of threads.
3214                 (setcdr prev (cdr threads))
3215                 (setq threads prev))
3216             ;; Enter this thread into the hash table.
3217             (gnus-sethash subject threads hashtb)))
3218         (setq prev threads)
3219         (setq threads (cdr threads)))
3220       result)))
3221
3222 (defun gnus-gather-threads-by-references (threads)
3223   "Gather threads by looking at References headers."
3224   (let ((idhashtb (gnus-make-hashtable 1024))
3225         (thhashtb (gnus-make-hashtable 1024))
3226         (prev threads)
3227         (result threads)
3228         ids references id gthread gid entered ref)
3229     (while threads
3230       (when (setq references (mail-header-references (caar threads)))
3231         (setq id (mail-header-id (caar threads))
3232               ids (gnus-split-references references)
3233               entered nil)
3234         (while (setq ref (pop ids))
3235           (setq ids (delete ref ids))
3236           (if (not (setq gid (gnus-gethash ref idhashtb)))
3237               (progn
3238                 (gnus-sethash ref id idhashtb)
3239                 (gnus-sethash id threads thhashtb))
3240             (setq gthread (gnus-gethash gid thhashtb))
3241             (unless entered
3242               ;; We enter a dummy root into the thread, if we
3243               ;; haven't done that already.
3244               (unless (stringp (caar gthread))
3245                 (setcar gthread (list (mail-header-subject (caar gthread))
3246                                       (car gthread))))
3247               ;; We add this new gathered thread to this gathered
3248               ;; thread.
3249               (setcdr (car gthread)
3250                       (nconc (cdar gthread) (list (car threads)))))
3251             ;; Add it into the thread hash table.
3252             (gnus-sethash id gthread thhashtb)
3253             (setq entered t)
3254             ;; Remove it from the list of threads.
3255             (setcdr prev (cdr threads))
3256             (setq threads prev))))
3257       (setq prev threads)
3258       (setq threads (cdr threads)))
3259     result))
3260
3261 (defun gnus-sort-gathered-threads (threads)
3262   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3263   (let ((result threads))
3264     (while threads
3265       (when (stringp (caar threads))
3266         (setcdr (car threads)
3267                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3268       (setq threads (cdr threads)))
3269     result))
3270
3271 (defun gnus-thread-loop-p (root thread)
3272   "Say whether ROOT is in THREAD."
3273   (let ((stack (list thread))
3274         (infloop 0)
3275         th)
3276     (while (setq thread (pop stack))
3277       (setq th (cdr thread))
3278       (while (and th
3279                   (not (eq (caar th) root)))
3280         (pop th))
3281       (if th
3282           ;; We have found a loop.
3283           (let (ref-dep)
3284             (setcdr thread (delq (car th) (cdr thread)))
3285             (if (boundp (setq ref-dep (intern "none"
3286                                               gnus-newsgroup-dependencies)))
3287                 (setcdr (symbol-value ref-dep)
3288                         (nconc (cdr (symbol-value ref-dep))
3289                                (list (car th))))
3290               (set ref-dep (list nil (car th))))
3291             (setq infloop 1
3292                   stack nil))
3293         ;; Push all the subthreads onto the stack.
3294         (push (cdr thread) stack)))
3295     infloop))
3296
3297 (defun gnus-make-threads ()
3298   "Go through the dependency hashtb and find the roots.  Return all threads."
3299   (let (threads)
3300     (while (catch 'infloop
3301              (mapatoms
3302               (lambda (refs)
3303                 ;; Deal with self-referencing References loops.
3304                 (when (and (car (symbol-value refs))
3305                            (not (zerop
3306                                  (apply
3307                                   '+
3308                                   (mapcar
3309                                    (lambda (thread)
3310                                      (gnus-thread-loop-p
3311                                       (car (symbol-value refs)) thread))
3312                                    (cdr (symbol-value refs)))))))
3313                   (setq threads nil)
3314                   (throw 'infloop t))
3315                 (unless (car (symbol-value refs))
3316                   ;; These threads do not refer back to any other articles,
3317                   ;; so they're roots.
3318                   (setq threads (append (cdr (symbol-value refs)) threads))))
3319               gnus-newsgroup-dependencies)))
3320     threads))
3321
3322 ;; Build the thread tree.
3323 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3324   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3325
3326 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3327 if it was already present.
3328
3329 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3330 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3331 Message-IDs will be renamed be renamed to a unique Message-ID before
3332 being entered.
3333
3334 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3335   (let* ((id (mail-header-id header))
3336          (id-dep (and id (intern id dependencies)))
3337          ref ref-dep ref-header)
3338     ;; Enter this `header' in the `dependencies' table.
3339     (cond
3340      ((not id-dep)
3341       (setq header nil))
3342      ;; The first two cases do the normal part: enter a new `header'
3343      ;; in the `dependencies' table.
3344      ((not (boundp id-dep))
3345       (set id-dep (list header)))
3346      ((null (car (symbol-value id-dep)))
3347       (setcar (symbol-value id-dep) header))
3348
3349      ;; From here the `header' was already present in the
3350      ;; `dependencies' table.
3351      (force-new
3352       ;; Overrides an existing entry;
3353       ;; just set the header part of the entry.
3354       (setcar (symbol-value id-dep) header))
3355
3356      ;; Renames the existing `header' to a unique Message-ID.
3357      ((not gnus-summary-ignore-duplicates)
3358       ;; An article with this Message-ID has already been seen.
3359       ;; We rename the Message-ID.
3360       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3361            (list header))
3362       (mail-header-set-id header id))
3363
3364      ;; The last case ignores an existing entry, except it adds any
3365      ;; additional Xrefs (in case the two articles came from different
3366      ;; servers.
3367      ;; Also sets `header' to `nil' meaning that the `dependencies'
3368      ;; table was *not* modified.
3369      (t
3370       (mail-header-set-xref
3371        (car (symbol-value id-dep))
3372        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3373                    "")
3374                (or (mail-header-xref header) "")))
3375       (setq header nil)))
3376
3377     (when header
3378       ;; First check if that we are not creating a References loop.
3379       (setq ref (gnus-parent-id (mail-header-references header)))
3380       (while (and ref
3381                   (setq ref-dep (intern-soft ref dependencies))
3382                   (boundp ref-dep)
3383                   (setq ref-header (car (symbol-value ref-dep))))
3384         (if (string= id ref)
3385             ;; Yuk!  This is a reference loop.  Make the article be a
3386             ;; root article.
3387             (progn
3388               (mail-header-set-references (car (symbol-value id-dep)) "none")
3389               (setq ref nil))
3390           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3391       (setq ref (gnus-parent-id (mail-header-references header)))
3392       (setq ref-dep (intern (or ref "none") dependencies))
3393       (if (boundp ref-dep)
3394           (setcdr (symbol-value ref-dep)
3395                   (nconc (cdr (symbol-value ref-dep))
3396                          (list (symbol-value id-dep))))
3397         (set ref-dep (list nil (symbol-value id-dep)))))
3398     header))
3399
3400 (defun gnus-build-sparse-threads ()
3401   (let ((headers gnus-newsgroup-headers)
3402         (mail-parse-charset gnus-newsgroup-charset)
3403         (gnus-summary-ignore-duplicates t)
3404         header references generation relations
3405         subject child end new-child date)
3406     ;; First we create an alist of generations/relations, where
3407     ;; generations is how much we trust the relation, and the relation
3408     ;; is parent/child.
3409     (gnus-message 7 "Making sparse threads...")
3410     (save-excursion
3411       (nnheader-set-temp-buffer " *gnus sparse threads*")
3412       (while (setq header (pop headers))
3413         (when (and (setq references (mail-header-references header))
3414                    (not (string= references "")))
3415           (insert references)
3416           (setq child (mail-header-id header)
3417                 subject (mail-header-subject header)
3418                 date (mail-header-date header)
3419                 generation 0)
3420           (while (search-backward ">" nil t)
3421             (setq end (1+ (point)))
3422             (when (search-backward "<" nil t)
3423               (setq new-child (buffer-substring (point) end))
3424               (push (list (incf generation)
3425                           child (setq child new-child)
3426                           subject date)
3427                     relations)))
3428           (when child
3429             (push (list (1+ generation) child nil subject) relations))
3430           (erase-buffer)))
3431       (kill-buffer (current-buffer)))
3432     ;; Sort over trustworthiness.
3433     (mapcar
3434      (lambda (relation)
3435        (when (gnus-dependencies-add-header
3436               (make-full-mail-header-from-decoded-header
3437                gnus-reffed-article-number
3438                (nth 3 relation) "" (or (nth 4 relation) "")
3439                (nth 1 relation)
3440                (or (nth 2 relation) "") 0 0 "")
3441               gnus-newsgroup-dependencies nil)
3442          (push gnus-reffed-article-number gnus-newsgroup-limit)
3443          (push gnus-reffed-article-number gnus-newsgroup-sparse)
3444          (push (cons gnus-reffed-article-number gnus-sparse-mark)
3445                gnus-newsgroup-reads)
3446          (decf gnus-reffed-article-number)))
3447      (sort relations 'car-less-than-car))
3448     (gnus-message 7 "Making sparse threads...done")))
3449
3450 (defun gnus-build-old-threads ()
3451   ;; Look at all the articles that refer back to old articles, and
3452   ;; fetch the headers for the articles that aren't there.  This will
3453   ;; build complete threads - if the roots haven't been expired by the
3454   ;; server, that is.
3455   (let ((mail-parse-charset gnus-newsgroup-charset)
3456         id heads)
3457     (mapatoms
3458      (lambda (refs)
3459        (when (not (car (symbol-value refs)))
3460          (setq heads (cdr (symbol-value refs)))
3461          (while heads
3462            (if (memq (mail-header-number (caar heads))
3463                      gnus-newsgroup-dormant)
3464                (setq heads (cdr heads))
3465              (setq id (symbol-name refs))
3466              (while (and (setq id (gnus-build-get-header id))
3467                          (not (car (gnus-id-to-thread id)))))
3468              (setq heads nil)))))
3469      gnus-newsgroup-dependencies)))
3470
3471 ;; This function has to be called with point after the article number
3472 ;; on the beginning of the line.
3473 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
3474   (let ((eol (gnus-point-at-eol))
3475         (buffer (current-buffer))
3476         header)
3477
3478     ;; overview: [num subject from date id refs chars lines misc]
3479     (unwind-protect
3480         (progn
3481           (narrow-to-region (point) eol)
3482           (unless (eobp)
3483             (forward-char))
3484
3485           (setq header
3486                 (make-full-mail-header
3487                  number                         ; number
3488                  (nnheader-nov-field)           ; subject
3489                  (nnheader-nov-field)           ; from
3490                  (nnheader-nov-field)           ; date
3491                  (nnheader-nov-read-message-id) ; id
3492                  (nnheader-nov-field)           ; refs
3493                  (nnheader-nov-read-integer)    ; chars
3494                  (nnheader-nov-read-integer)    ; lines
3495                  (unless (eobp)
3496                    (if (looking-at "Xref: ")
3497                        (goto-char (match-end 0)))
3498                    (nnheader-nov-field))        ; Xref
3499                  (nnheader-nov-parse-extra))))  ; extra
3500
3501       (widen))
3502
3503     (when gnus-alter-header-function
3504       (funcall gnus-alter-header-function header))
3505     (gnus-dependencies-add-header header dependencies force-new)))
3506
3507 (defun gnus-build-get-header (id)
3508   "Look through the buffer of NOV lines and find the header to ID.
3509 Enter this line into the dependencies hash table, and return
3510 the id of the parent article (if any)."
3511   (let ((deps gnus-newsgroup-dependencies)
3512         found header)
3513     (prog1
3514         (save-excursion
3515           (set-buffer nntp-server-buffer)
3516           (let ((case-fold-search nil))
3517             (goto-char (point-min))
3518             (while (and (not found)
3519                         (search-forward id nil t))
3520               (beginning-of-line)
3521               (setq found (looking-at
3522                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
3523                                    (regexp-quote id))))
3524               (or found (beginning-of-line 2)))
3525             (when found
3526               (beginning-of-line)
3527               (and
3528                (setq header (gnus-nov-parse-line
3529                              (read (current-buffer)) deps))
3530                (gnus-parent-id (mail-header-references header))))))
3531       (when header
3532         (let ((number (mail-header-number header)))
3533           (push number gnus-newsgroup-limit)
3534           (push header gnus-newsgroup-headers)
3535           (if (memq number gnus-newsgroup-unselected)
3536               (progn
3537                 (push number gnus-newsgroup-unreads)
3538                 (setq gnus-newsgroup-unselected
3539                       (delq number gnus-newsgroup-unselected)))
3540             (push number gnus-newsgroup-ancient)))))))
3541
3542 (defun gnus-build-all-threads ()
3543   "Read all the headers."
3544   (let ((gnus-summary-ignore-duplicates t)
3545         (mail-parse-charset gnus-newsgroup-charset)
3546         (dependencies gnus-newsgroup-dependencies)
3547         header article)
3548     (save-excursion
3549       (set-buffer nntp-server-buffer)
3550       (let ((case-fold-search nil))
3551         (goto-char (point-min))
3552         (while (not (eobp))
3553           (ignore-errors
3554             (setq article (read (current-buffer))
3555                   header (gnus-nov-parse-line article dependencies)))
3556           (when header
3557             (save-excursion
3558               (set-buffer gnus-summary-buffer)
3559               (push header gnus-newsgroup-headers)
3560               (if (memq (setq article (mail-header-number header))
3561                         gnus-newsgroup-unselected)
3562                   (progn
3563                     (push article gnus-newsgroup-unreads)
3564                     (setq gnus-newsgroup-unselected
3565                           (delq article gnus-newsgroup-unselected)))
3566                 (push article gnus-newsgroup-ancient)))
3567             (forward-line 1)))))))
3568
3569 (defun gnus-summary-update-article-line (article header)
3570   "Update the line for ARTICLE using HEADERS."
3571   (let* ((id (mail-header-id header))
3572          (thread (gnus-id-to-thread id)))
3573     (unless thread
3574       (error "Article in no thread"))
3575     ;; Update the thread.
3576     (setcar thread header)
3577     (gnus-summary-goto-subject article)
3578     (let* ((datal (gnus-data-find-list article))
3579            (data (car datal))
3580            (length (when (cdr datal)
3581                      (- (gnus-data-pos data)
3582                         (gnus-data-pos (cadr datal)))))
3583            (buffer-read-only nil)
3584            (level (gnus-summary-thread-level)))
3585       (gnus-delete-line)
3586       (gnus-summary-insert-line
3587        header level nil (gnus-article-mark article)
3588        (memq article gnus-newsgroup-replied)
3589        (memq article gnus-newsgroup-expirable)
3590        ;; Only insert the Subject string when it's different
3591        ;; from the previous Subject string.
3592        (if (and
3593             gnus-show-threads
3594             (gnus-subject-equal
3595              (condition-case ()
3596                  (mail-header-subject
3597                   (gnus-data-header
3598                    (cadr
3599                     (gnus-data-find-list
3600                      article
3601                      (gnus-data-list t)))))
3602                ;; Error on the side of excessive subjects.
3603                (error ""))
3604              (mail-header-subject header)))
3605            ""
3606          (mail-header-subject header))
3607        nil (cdr (assq article gnus-newsgroup-scored))
3608        (memq article gnus-newsgroup-processable))
3609       (when length
3610         (gnus-data-update-list
3611          (cdr datal) (- length (- (gnus-data-pos data) (point))))))))
3612
3613 (defun gnus-summary-update-article (article &optional iheader)
3614   "Update ARTICLE in the summary buffer."
3615   (set-buffer gnus-summary-buffer)
3616   (let* ((header (gnus-summary-article-header article))
3617          (id (mail-header-id header))
3618          (data (gnus-data-find article))
3619          (thread (gnus-id-to-thread id))
3620          (references (mail-header-references header))
3621          (parent
3622           (gnus-id-to-thread
3623            (or (gnus-parent-id
3624                 (when (and references
3625                            (not (equal "" references)))
3626                   references))
3627                "none")))
3628          (buffer-read-only nil)
3629          (old (car thread)))
3630     (when thread
3631       (unless iheader
3632         (setcar thread nil)
3633         (when parent
3634           (delq thread parent)))
3635       (if (gnus-summary-insert-subject id header)
3636           ;; Set the (possibly) new article number in the data structure.
3637           (gnus-data-set-number data (gnus-id-to-article id))
3638         (setcar thread old)
3639         nil))))
3640
3641 (defun gnus-rebuild-thread (id &optional line)
3642   "Rebuild the thread containing ID.
3643 If LINE, insert the rebuilt thread starting on line LINE."
3644   (let ((buffer-read-only nil)
3645         old-pos current thread data)
3646     (if (not gnus-show-threads)
3647         (setq thread (list (car (gnus-id-to-thread id))))
3648       ;; Get the thread this article is part of.
3649       (setq thread (gnus-remove-thread id)))
3650     (setq old-pos (gnus-point-at-bol))
3651     (setq current (save-excursion
3652                     (and (zerop (forward-line -1))
3653                          (gnus-summary-article-number))))
3654     ;; If this is a gathered thread, we have to go some re-gathering.
3655     (when (stringp (car thread))
3656       (let ((subject (car thread))
3657             roots thr)
3658         (setq thread (cdr thread))
3659         (while thread
3660           (unless (memq (setq thr (gnus-id-to-thread
3661                                    (gnus-root-id
3662                                     (mail-header-id (caar thread)))))
3663                         roots)
3664             (push thr roots))
3665           (setq thread (cdr thread)))
3666         ;; We now have all (unique) roots.
3667         (if (= (length roots) 1)
3668             ;; All the loose roots are now one solid root.
3669             (setq thread (car roots))
3670           (setq thread (cons subject (gnus-sort-threads roots))))))
3671     (let (threads)
3672       ;; We then insert this thread into the summary buffer.
3673       (when line
3674         (goto-char (point-min))
3675         (forward-line (1- line)))
3676       (let (gnus-newsgroup-data gnus-newsgroup-threads)
3677         (if gnus-show-threads
3678             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
3679           (gnus-summary-prepare-unthreaded thread))
3680         (setq data (nreverse gnus-newsgroup-data))
3681         (setq threads gnus-newsgroup-threads))
3682       ;; We splice the new data into the data structure.
3683       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
3684       ;;!!! then we want to insert at the beginning of the buffer.
3685       ;;!!! That happens to be true with Gnus now, but that may
3686       ;;!!! change in the future.  Perhaps.
3687       (gnus-data-enter-list
3688        (if line nil current) data (- (point) old-pos))
3689       (setq gnus-newsgroup-threads
3690             (nconc threads gnus-newsgroup-threads))
3691       (gnus-data-compute-positions))))
3692
3693 (defun gnus-number-to-header (number)
3694   "Return the header for article NUMBER."
3695   (let ((headers gnus-newsgroup-headers))
3696     (while (and headers
3697                 (not (= number (mail-header-number (car headers)))))
3698       (pop headers))
3699     (when headers
3700       (car headers))))
3701
3702 (defun gnus-parent-headers (in-headers &optional generation)
3703   "Return the headers of the GENERATIONeth parent of HEADERS."
3704   (unless generation
3705     (setq generation 1))
3706   (let ((parent t)
3707         (headers in-headers)
3708         references)
3709     (while (and parent
3710                 (not (zerop generation))
3711                 (setq references (mail-header-references headers)))
3712       (setq headers (if (and references
3713                              (setq parent (gnus-parent-id references)))
3714                         (car (gnus-id-to-thread parent))
3715                       nil))
3716       (decf generation))
3717     (and (not (eq headers in-headers))
3718          headers)))
3719
3720 (defun gnus-id-to-thread (id)
3721   "Return the (sub-)thread where ID appears."
3722   (gnus-gethash id gnus-newsgroup-dependencies))
3723
3724 (defun gnus-id-to-article (id)
3725   "Return the article number of ID."
3726   (let ((thread (gnus-id-to-thread id)))
3727     (when (and thread
3728                (car thread))
3729       (mail-header-number (car thread)))))
3730
3731 (defun gnus-id-to-header (id)
3732   "Return the article headers of ID."
3733   (car (gnus-id-to-thread id)))
3734
3735 (defun gnus-article-displayed-root-p (article)
3736   "Say whether ARTICLE is a root(ish) article."
3737   (let ((level (gnus-summary-thread-level article))
3738         (refs (mail-header-references  (gnus-summary-article-header article)))
3739         particle)
3740     (cond
3741      ((null level) nil)
3742      ((zerop level) t)
3743      ((null refs) t)
3744      ((null (gnus-parent-id refs)) t)
3745      ((and (= 1 level)
3746            (null (setq particle (gnus-id-to-article
3747                                  (gnus-parent-id refs))))
3748            (null (gnus-summary-thread-level particle)))))))
3749
3750 (defun gnus-root-id (id)
3751   "Return the id of the root of the thread where ID appears."
3752   (let (last-id prev)
3753     (while (and id (setq prev (car (gnus-id-to-thread id))))
3754       (setq last-id id
3755             id (gnus-parent-id (mail-header-references prev))))
3756     last-id))
3757
3758 (defun gnus-articles-in-thread (thread)
3759   "Return the list of articles in THREAD."
3760   (cons (mail-header-number (car thread))
3761         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
3762
3763 (defun gnus-remove-thread (id &optional dont-remove)
3764   "Remove the thread that has ID in it."
3765   (let (headers thread last-id)
3766     ;; First go up in this thread until we find the root.
3767     (setq last-id (gnus-root-id id)
3768           headers (message-flatten-list (gnus-id-to-thread last-id)))
3769     ;; We have now found the real root of this thread.  It might have
3770     ;; been gathered into some loose thread, so we have to search
3771     ;; through the threads to find the thread we wanted.
3772     (let ((threads gnus-newsgroup-threads)
3773           sub)
3774       (while threads
3775         (setq sub (car threads))
3776         (if (stringp (car sub))
3777             ;; This is a gathered thread, so we look at the roots
3778             ;; below it to find whether this article is in this
3779             ;; gathered root.
3780             (progn
3781               (setq sub (cdr sub))
3782               (while sub
3783                 (when (member (caar sub) headers)
3784                   (setq thread (car threads)
3785                         threads nil
3786                         sub nil))
3787                 (setq sub (cdr sub))))
3788           ;; It's an ordinary thread, so we check it.
3789           (when (eq (car sub) (car headers))
3790             (setq thread sub
3791                   threads nil)))
3792         (setq threads (cdr threads)))
3793       ;; If this article is in no thread, then it's a root.
3794       (if thread
3795           (unless dont-remove
3796             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
3797         (setq thread (gnus-id-to-thread last-id)))
3798       (when thread
3799         (prog1
3800             thread                      ; We return this thread.
3801           (unless dont-remove
3802             (if (stringp (car thread))
3803                 (progn
3804                   ;; If we use dummy roots, then we have to remove the
3805                   ;; dummy root as well.
3806                   (when (eq gnus-summary-make-false-root 'dummy)
3807                     ;; We go to the dummy root by going to
3808                     ;; the first sub-"thread", and then one line up.
3809                     (gnus-summary-goto-article
3810                      (mail-header-number (caadr thread)))
3811                     (forward-line -1)
3812                     (gnus-delete-line)
3813                     (gnus-data-compute-positions))
3814                   (setq thread (cdr thread))
3815                   (while thread
3816                     (gnus-remove-thread-1 (car thread))
3817                     (setq thread (cdr thread))))
3818               (gnus-remove-thread-1 thread))))))))
3819
3820 (defun gnus-remove-thread-1 (thread)
3821   "Remove the thread THREAD recursively."
3822   (let ((number (mail-header-number (pop thread)))
3823         d)
3824     (setq thread (reverse thread))
3825     (while thread
3826       (gnus-remove-thread-1 (pop thread)))
3827     (when (setq d (gnus-data-find number))
3828       (goto-char (gnus-data-pos d))
3829       (gnus-summary-show-thread)
3830       (gnus-data-remove
3831        number
3832        (- (gnus-point-at-bol)
3833           (prog1
3834               (1+ (gnus-point-at-eol))
3835             (gnus-delete-line)))))))
3836
3837 (defun gnus-sort-threads-1 (threads func)
3838   (sort (mapcar (lambda (thread)
3839                   (cons (car thread)
3840                         (and (cdr thread)
3841                              (gnus-sort-threads-1 (cdr thread) func))))
3842                 threads) func))
3843
3844 (defun gnus-sort-threads (threads)
3845   "Sort THREADS."
3846   (if (not gnus-thread-sort-functions)
3847       threads
3848     (gnus-message 8 "Sorting threads...")
3849     (prog1
3850         (gnus-sort-threads-1
3851          threads
3852          (gnus-make-sort-function gnus-thread-sort-functions))
3853       (gnus-message 8 "Sorting threads...done"))))
3854
3855 (defun gnus-sort-articles (articles)
3856   "Sort ARTICLES."
3857   (when gnus-article-sort-functions
3858     (gnus-message 7 "Sorting articles...")
3859     (prog1
3860         (setq gnus-newsgroup-headers
3861               (sort articles (gnus-make-sort-function
3862                               gnus-article-sort-functions)))
3863       (gnus-message 7 "Sorting articles...done"))))
3864
3865 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
3866 (defmacro gnus-thread-header (thread)
3867   "Return header of first article in THREAD.
3868 Note that THREAD must never, ever be anything else than a variable -
3869 using some other form will lead to serious barfage."
3870   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
3871   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
3872   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
3873         (vector thread) 2))
3874
3875 (defsubst gnus-article-sort-by-number (h1 h2)
3876   "Sort articles by article number."
3877   (< (mail-header-number h1)
3878      (mail-header-number h2)))
3879
3880 (defun gnus-thread-sort-by-number (h1 h2)
3881   "Sort threads by root article number."
3882   (gnus-article-sort-by-number
3883    (gnus-thread-header h1) (gnus-thread-header h2)))
3884
3885 (defsubst gnus-article-sort-by-lines (h1 h2)
3886   "Sort articles by article Lines header."
3887   (< (mail-header-lines h1)
3888      (mail-header-lines h2)))
3889
3890 (defun gnus-thread-sort-by-lines (h1 h2)
3891   "Sort threads by root article Lines header."
3892   (gnus-article-sort-by-lines
3893    (gnus-thread-header h1) (gnus-thread-header h2)))
3894
3895 (defsubst gnus-article-sort-by-chars (h1 h2)
3896   "Sort articles by octet length."
3897   (< (mail-header-chars h1)
3898      (mail-header-chars h2)))
3899
3900 (defun gnus-thread-sort-by-chars (h1 h2)
3901   "Sort threads by root article octet length."
3902   (gnus-article-sort-by-chars
3903    (gnus-thread-header h1) (gnus-thread-header h2)))
3904
3905 (defsubst gnus-article-sort-by-author (h1 h2)
3906   "Sort articles by root author."
3907   (string-lessp
3908    (let ((addr (car (mime-entity-read-field h1 'From))))
3909      (or (std11-full-name-string addr)
3910          (std11-address-string addr)
3911          ""))
3912    (let ((addr (car (mime-entity-read-field h2 'From))))
3913      (or (std11-full-name-string addr)
3914          (std11-address-string addr)
3915          ""))
3916    ))
3917
3918 (defun gnus-thread-sort-by-author (h1 h2)
3919   "Sort threads by root author."
3920   (gnus-article-sort-by-author
3921    (gnus-thread-header h1)  (gnus-thread-header h2)))
3922
3923 (defsubst gnus-article-sort-by-subject (h1 h2)
3924   "Sort articles by root subject."
3925   (string-lessp
3926    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
3927    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
3928
3929 (defun gnus-thread-sort-by-subject (h1 h2)
3930   "Sort threads by root subject."
3931   (gnus-article-sort-by-subject
3932    (gnus-thread-header h1) (gnus-thread-header h2)))
3933
3934 (defsubst gnus-article-sort-by-date (h1 h2)
3935   "Sort articles by root article date."
3936   (time-less-p
3937    (gnus-date-get-time (mail-header-date h1))
3938    (gnus-date-get-time (mail-header-date h2))))
3939
3940 (defun gnus-thread-sort-by-date (h1 h2)
3941   "Sort threads by root article date."
3942   (gnus-article-sort-by-date
3943    (gnus-thread-header h1) (gnus-thread-header h2)))
3944
3945 (defsubst gnus-article-sort-by-score (h1 h2)
3946   "Sort articles by root article score.
3947 Unscored articles will be counted as having a score of zero."
3948   (> (or (cdr (assq (mail-header-number h1)
3949                     gnus-newsgroup-scored))
3950          gnus-summary-default-score 0)
3951      (or (cdr (assq (mail-header-number h2)
3952                     gnus-newsgroup-scored))
3953          gnus-summary-default-score 0)))
3954
3955 (defun gnus-thread-sort-by-score (h1 h2)
3956   "Sort threads by root article score."
3957   (gnus-article-sort-by-score
3958    (gnus-thread-header h1) (gnus-thread-header h2)))
3959
3960 (defun gnus-thread-sort-by-total-score (h1 h2)
3961   "Sort threads by the sum of all scores in the thread.
3962 Unscored articles will be counted as having a score of zero."
3963   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
3964
3965 (defun gnus-thread-total-score (thread)
3966   ;; This function find the total score of THREAD.
3967   (cond ((null thread)
3968          0)
3969         ((consp thread)
3970          (if (stringp (car thread))
3971              (apply gnus-thread-score-function 0
3972                     (mapcar 'gnus-thread-total-score-1 (cdr thread)))
3973            (gnus-thread-total-score-1 thread)))
3974         (t
3975          (gnus-thread-total-score-1 (list thread)))))
3976
3977 (defun gnus-thread-total-score-1 (root)
3978   ;; This function find the total score of the thread below ROOT.
3979   (setq root (car root))
3980   (apply gnus-thread-score-function
3981          (or (append
3982               (mapcar 'gnus-thread-total-score
3983                       (cdr (gnus-id-to-thread (mail-header-id root))))
3984               (when (> (mail-header-number root) 0)
3985                 (list (or (cdr (assq (mail-header-number root)
3986                                      gnus-newsgroup-scored))
3987                           gnus-summary-default-score 0))))
3988              (list gnus-summary-default-score)
3989              '(0))))
3990
3991 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
3992 (defvar gnus-tmp-prev-subject nil)
3993 (defvar gnus-tmp-false-parent nil)
3994 (defvar gnus-tmp-root-expunged nil)
3995 (defvar gnus-tmp-dummy-line nil)
3996
3997 (eval-when-compile (defvar gnus-tmp-header))
3998 (defun gnus-extra-header (type &optional header)
3999   "Return the extra header of TYPE."
4000   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
4001       ""))
4002
4003 (defun gnus-summary-prepare-threads (threads)
4004   "Prepare summary buffer from THREADS and indentation LEVEL.
4005 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
4006 or a straight list of headers."
4007   (gnus-message 7 "Generating summary...")
4008
4009   (setq gnus-newsgroup-threads threads)
4010   (beginning-of-line)
4011
4012   (let ((gnus-tmp-level 0)
4013         (default-score (or gnus-summary-default-score 0))
4014         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
4015         thread number subject stack state gnus-tmp-gathered beg-match
4016         new-roots gnus-tmp-new-adopts thread-end
4017         gnus-tmp-header gnus-tmp-unread
4018         gnus-tmp-replied gnus-tmp-subject-or-nil
4019         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
4020         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
4021         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket)
4022
4023     (setq gnus-tmp-prev-subject nil)
4024
4025     (if (vectorp (car threads))
4026         ;; If this is a straight (sic) list of headers, then a
4027         ;; threaded summary display isn't required, so we just create
4028         ;; an unthreaded one.
4029         (gnus-summary-prepare-unthreaded threads)
4030
4031       ;; Do the threaded display.
4032
4033       (while (or threads stack gnus-tmp-new-adopts new-roots)
4034
4035         (if (and (= gnus-tmp-level 0)
4036                  (or (not stack)
4037                      (= (caar stack) 0))
4038                  (not gnus-tmp-false-parent)
4039                  (or gnus-tmp-new-adopts new-roots))
4040             (if gnus-tmp-new-adopts
4041                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
4042                       thread (list (car gnus-tmp-new-adopts))
4043                       gnus-tmp-header (caar thread)
4044                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
4045               (when new-roots
4046                 (setq thread (list (car new-roots))
4047                       gnus-tmp-header (caar thread)
4048                       new-roots (cdr new-roots))))
4049
4050           (if threads
4051               ;; If there are some threads, we do them before the
4052               ;; threads on the stack.
4053               (setq thread threads
4054                     gnus-tmp-header (caar thread))
4055             ;; There were no current threads, so we pop something off
4056             ;; the stack.
4057             (setq state (car stack)
4058                   gnus-tmp-level (car state)
4059                   thread (cdr state)
4060                   stack (cdr stack)
4061                   gnus-tmp-header (caar thread))))
4062
4063         (setq gnus-tmp-false-parent nil)
4064         (setq gnus-tmp-root-expunged nil)
4065         (setq thread-end nil)
4066
4067         (if (stringp gnus-tmp-header)
4068             ;; The header is a dummy root.
4069             (cond
4070              ((eq gnus-summary-make-false-root 'adopt)
4071               ;; We let the first article adopt the rest.
4072               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
4073                                                (cddar thread)))
4074               (setq gnus-tmp-gathered
4075                     (nconc (mapcar
4076                             (lambda (h) (mail-header-number (car h)))
4077                             (cddar thread))
4078                            gnus-tmp-gathered))
4079               (setq thread (cons (list (caar thread)
4080                                        (cadar thread))
4081                                  (cdr thread)))
4082               (setq gnus-tmp-level -1
4083                     gnus-tmp-false-parent t))
4084              ((eq gnus-summary-make-false-root 'empty)
4085               ;; We print adopted articles with empty subject fields.
4086               (setq gnus-tmp-gathered
4087                     (nconc (mapcar
4088                             (lambda (h) (mail-header-number (car h)))
4089                             (cddar thread))
4090                            gnus-tmp-gathered))
4091               (setq gnus-tmp-level -1))
4092              ((eq gnus-summary-make-false-root 'dummy)
4093               ;; We remember that we probably want to output a dummy
4094               ;; root.
4095               (setq gnus-tmp-dummy-line gnus-tmp-header)
4096               (setq gnus-tmp-prev-subject gnus-tmp-header))
4097              (t
4098               ;; We do not make a root for the gathered
4099               ;; sub-threads at all.
4100               (setq gnus-tmp-level -1)))
4101
4102           (setq number (mail-header-number gnus-tmp-header)
4103                 subject (mail-header-subject gnus-tmp-header))
4104
4105           (cond
4106            ;; If the thread has changed subject, we might want to make
4107            ;; this subthread into a root.
4108            ((and (null gnus-thread-ignore-subject)
4109                  (not (zerop gnus-tmp-level))
4110                  gnus-tmp-prev-subject
4111                  (not (inline
4112                         (gnus-subject-equal gnus-tmp-prev-subject subject))))
4113             (setq new-roots (nconc new-roots (list (car thread)))
4114                   thread-end t
4115                   gnus-tmp-header nil))
4116            ;; If the article lies outside the current limit,
4117            ;; then we do not display it.
4118            ((not (memq number gnus-newsgroup-limit))
4119             (setq gnus-tmp-gathered
4120                   (nconc (mapcar
4121                           (lambda (h) (mail-header-number (car h)))
4122                           (cdar thread))
4123                          gnus-tmp-gathered))
4124             (setq gnus-tmp-new-adopts (if (cdar thread)
4125                                           (append gnus-tmp-new-adopts
4126                                                   (cdar thread))
4127                                         gnus-tmp-new-adopts)
4128                   thread-end t
4129                   gnus-tmp-header nil)
4130             (when (zerop gnus-tmp-level)
4131               (setq gnus-tmp-root-expunged t)))
4132            ;; Perhaps this article is to be marked as read?
4133            ((and gnus-summary-mark-below
4134                  (< (or (cdr (assq number gnus-newsgroup-scored))
4135                         default-score)
4136                     gnus-summary-mark-below)
4137                  ;; Don't touch sparse articles.
4138                  (not (gnus-summary-article-sparse-p number))
4139                  (not (gnus-summary-article-ancient-p number)))
4140             (setq gnus-newsgroup-unreads
4141                   (delq number gnus-newsgroup-unreads))
4142             (if gnus-newsgroup-auto-expire
4143                 (push number gnus-newsgroup-expirable)
4144               (push (cons number gnus-low-score-mark)
4145                     gnus-newsgroup-reads))))
4146
4147           (when gnus-tmp-header
4148             ;; We may have an old dummy line to output before this
4149             ;; article.
4150             (when (and gnus-tmp-dummy-line
4151                        (gnus-subject-equal
4152                         gnus-tmp-dummy-line
4153                         (mail-header-subject gnus-tmp-header)))
4154               (gnus-summary-insert-dummy-line
4155                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
4156               (setq gnus-tmp-dummy-line nil))
4157
4158             ;; Compute the mark.
4159             (setq gnus-tmp-unread (gnus-article-mark number))
4160
4161             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
4162                                   gnus-tmp-header gnus-tmp-level)
4163                   gnus-newsgroup-data)
4164
4165             ;; Actually insert the line.
4166             (setq
4167              gnus-tmp-subject-or-nil
4168              (cond
4169               ((and gnus-thread-ignore-subject
4170                     gnus-tmp-prev-subject
4171                     (not (inline (gnus-subject-equal
4172                                   gnus-tmp-prev-subject subject))))
4173                subject)
4174               ((zerop gnus-tmp-level)
4175                (if (and (eq gnus-summary-make-false-root 'empty)
4176                         (memq number gnus-tmp-gathered)
4177                         gnus-tmp-prev-subject
4178                         (inline (gnus-subject-equal
4179                                  gnus-tmp-prev-subject subject)))
4180                    gnus-summary-same-subject
4181                  subject))
4182               (t gnus-summary-same-subject)))
4183             (if (and (eq gnus-summary-make-false-root 'adopt)
4184                      (= gnus-tmp-level 1)
4185                      (memq number gnus-tmp-gathered))
4186                 (setq gnus-tmp-opening-bracket ?\<
4187                       gnus-tmp-closing-bracket ?\>)
4188               (setq gnus-tmp-opening-bracket ?\[
4189                     gnus-tmp-closing-bracket ?\]))
4190             (setq
4191              gnus-tmp-indentation
4192              (aref gnus-thread-indent-array gnus-tmp-level)
4193              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4194              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4195                                 gnus-summary-default-score 0)
4196              gnus-tmp-score-char
4197              (if (or (null gnus-summary-default-score)
4198                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4199                          gnus-summary-zcore-fuzz))
4200                  ?  ;Whitespace
4201                (if (< gnus-tmp-score gnus-summary-default-score)
4202                    gnus-score-below-mark gnus-score-over-mark))
4203              gnus-tmp-replied
4204              (cond ((memq number gnus-newsgroup-processable)
4205                     gnus-process-mark)
4206                    ((memq number gnus-newsgroup-cached)
4207                     gnus-cached-mark)
4208                    ((memq number gnus-newsgroup-replied)
4209                     gnus-replied-mark)
4210                    ((memq number gnus-newsgroup-saved)
4211                     gnus-saved-mark)
4212                    (t gnus-no-mark))
4213              gnus-tmp-from (mail-header-from gnus-tmp-header)
4214              gnus-tmp-name
4215              (cond
4216               ((string-match "<[^>]+> *$" gnus-tmp-from)
4217                (setq beg-match (match-beginning 0))
4218                (or (and (string-match "^\".+\"" gnus-tmp-from)
4219                         (substring gnus-tmp-from 1 (1- (match-end 0))))
4220                    (substring gnus-tmp-from 0 beg-match)))
4221               ((string-match "(.+)" gnus-tmp-from)
4222                (substring gnus-tmp-from
4223                           (1+ (match-beginning 0)) (1- (match-end 0))))
4224               (t gnus-tmp-from)))
4225             (when (string= gnus-tmp-name "")
4226               (setq gnus-tmp-name gnus-tmp-from))
4227             (unless (numberp gnus-tmp-lines)
4228               (setq gnus-tmp-lines 0))
4229             (gnus-put-text-property
4230              (point)
4231              (progn (eval gnus-summary-line-format-spec) (point))
4232              'gnus-number number)
4233             (when gnus-visual-p
4234               (forward-line -1)
4235               (gnus-run-hooks 'gnus-summary-update-hook)
4236               (forward-line 1))
4237
4238             (setq gnus-tmp-prev-subject subject)))
4239
4240         (when (nth 1 thread)
4241           (push (cons (max 0 gnus-tmp-level) (nthcdr 1 thread)) stack))
4242         (incf gnus-tmp-level)
4243         (setq threads (if thread-end nil (cdar thread)))
4244         (unless threads
4245           (setq gnus-tmp-level 0)))))
4246   (gnus-message 7 "Generating summary...done"))
4247
4248 (defun gnus-summary-prepare-unthreaded (headers)
4249   "Generate an unthreaded summary buffer based on HEADERS."
4250   (let (header number mark)
4251
4252     (beginning-of-line)
4253
4254     (while headers
4255       ;; We may have to root out some bad articles...
4256       (when (memq (setq number (mail-header-number
4257                                 (setq header (pop headers))))
4258                   gnus-newsgroup-limit)
4259         ;; Mark article as read when it has a low score.
4260         (when (and gnus-summary-mark-below
4261                    (< (or (cdr (assq number gnus-newsgroup-scored))
4262                           gnus-summary-default-score 0)
4263                       gnus-summary-mark-below)
4264                    (not (gnus-summary-article-ancient-p number)))
4265           (setq gnus-newsgroup-unreads
4266                 (delq number gnus-newsgroup-unreads))
4267           (if gnus-newsgroup-auto-expire
4268               (push number gnus-newsgroup-expirable)
4269             (push (cons number gnus-low-score-mark)
4270                   gnus-newsgroup-reads)))
4271
4272         (setq mark (gnus-article-mark number))
4273         (push (gnus-data-make number mark (1+ (point)) header 0)
4274               gnus-newsgroup-data)
4275         (gnus-summary-insert-line
4276          header 0 number
4277          mark (memq number gnus-newsgroup-replied)
4278          (memq number gnus-newsgroup-expirable)
4279          (mail-header-subject header) nil
4280          (cdr (assq number gnus-newsgroup-scored))
4281          (memq number gnus-newsgroup-processable))))))
4282
4283 (defun gnus-summary-remove-list-identifiers ()
4284   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
4285   (let ((regexp (if (consp gnus-list-identifiers)
4286                     (mapconcat 'identity gnus-list-identifiers " *\\|")
4287                   gnus-list-identifiers))
4288         changed subject)
4289     (when regexp
4290       (dolist (header gnus-newsgroup-headers)
4291         (setq subject (mail-header-subject header)
4292               changed nil)
4293         (while (string-match
4294                 (concat "^\\(R[Ee]: +\\)*\\(" regexp " *\\)")
4295                 subject)
4296           (setq subject
4297                 (concat (substring subject 0 (match-beginning 2))
4298                         (substring subject (match-end 0)))
4299                 changed t))
4300         (when (and changed
4301                    (string-match
4302                     "^\\(\\(R[Ee]: +\\)+\\)R[Ee]: +" subject))
4303           (setq subject
4304                 (concat (substring subject 0 (match-beginning 1))
4305                         (substring subject (match-end 1)))))
4306         (when changed
4307           (mail-header-set-subject header subject))))))
4308
4309 (defun gnus-select-newsgroup (group &optional read-all select-articles)
4310   "Select newsgroup GROUP.
4311 If READ-ALL is non-nil, all articles in the group are selected.
4312 If SELECT-ARTICLES, only select those articles from GROUP."
4313   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4314          ;;!!! Dirty hack; should be removed.
4315          (gnus-summary-ignore-duplicates
4316           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
4317               t
4318             gnus-summary-ignore-duplicates))
4319          (info (nth 2 entry))
4320          articles fetched-articles cached)
4321
4322     (unless (gnus-check-server
4323              (setq gnus-current-select-method
4324                    (gnus-find-method-for-group group)))
4325       (error "Couldn't open server"))
4326
4327     (or (and entry (not (eq (car entry) t))) ; Either it's active...
4328         (gnus-activate-group group)     ; Or we can activate it...
4329         (progn                          ; Or we bug out.
4330           (when (equal major-mode 'gnus-summary-mode)
4331             (kill-buffer (current-buffer)))
4332           (error "Couldn't activate group %s: %s"
4333                  group (gnus-status-message group))))
4334
4335     (unless (gnus-request-group group t)
4336       (when (equal major-mode 'gnus-summary-mode)
4337         (kill-buffer (current-buffer)))
4338       (error "Couldn't request group %s: %s"
4339              group (gnus-status-message group)))
4340
4341     (setq gnus-newsgroup-name group)
4342     (setq gnus-newsgroup-unselected nil)
4343     (setq gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
4344     (gnus-summary-setup-default-charset)
4345
4346     ;; Adjust and set lists of article marks.
4347     (when info
4348       (gnus-adjust-marked-articles info))
4349
4350     ;; Kludge to avoid having cached articles nixed out in virtual groups.
4351     (setq cached
4352           (if (gnus-virtual-group-p group)
4353               gnus-newsgroup-cached
4354             (gnus-cache-articles-in-group group)))
4355
4356     (setq gnus-newsgroup-unreads
4357           (gnus-set-difference
4358            (gnus-set-difference gnus-newsgroup-unreads gnus-newsgroup-marked)
4359            gnus-newsgroup-dormant))
4360
4361     (setq gnus-newsgroup-processable nil)
4362
4363     (gnus-update-read-articles group gnus-newsgroup-unreads)
4364
4365     (if (setq articles select-articles)
4366         (setq gnus-newsgroup-unselected
4367               (gnus-sorted-intersection
4368                gnus-newsgroup-unreads
4369                (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4370       (setq articles (gnus-articles-to-read group read-all)))
4371
4372     (cond
4373      ((null articles)
4374       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
4375       'quit)
4376      ((eq articles 0) nil)
4377      (t
4378       ;; Init the dependencies hash table.
4379       (setq gnus-newsgroup-dependencies
4380             (gnus-make-hashtable (length articles)))
4381       (gnus-set-global-variables)
4382       ;; Retrieve the headers and read them in.
4383       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
4384       (setq gnus-newsgroup-headers
4385             (gnus-retrieve-parsed-headers
4386              articles gnus-newsgroup-name
4387              ;; We might want to fetch old headers, but
4388              ;; not if there is only 1 article.
4389              (and (or (and (not (eq gnus-fetch-old-headers 'some))
4390                            (not (numberp gnus-fetch-old-headers)))
4391                       (> (length articles) 1))
4392                   gnus-fetch-old-headers)))
4393       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name)
4394
4395       ;; Suppress duplicates?
4396       (when gnus-suppress-duplicates
4397         (gnus-dup-suppress-articles))
4398
4399       ;; Set the initial limit.
4400       (setq gnus-newsgroup-limit (copy-sequence articles))
4401       ;; Remove canceled articles from the list of unread articles.
4402       (setq gnus-newsgroup-unreads
4403             (gnus-set-sorted-intersection
4404              gnus-newsgroup-unreads
4405              (setq fetched-articles
4406                    (mapcar (lambda (headers) (mail-header-number headers))
4407                            gnus-newsgroup-headers))))
4408       ;; Removed marked articles that do not exist.
4409       (gnus-update-missing-marks
4410        (gnus-sorted-complement fetched-articles articles))
4411
4412       ;; Kludge to avoid having cached articles nixed out in virtual groups.
4413       (when cached
4414         (setq gnus-newsgroup-cached cached))
4415
4416       ;; We might want to build some more threads first.
4417       (when (and gnus-fetch-old-headers
4418                  (eq gnus-headers-retrieved-by 'nov))
4419         (if (eq gnus-fetch-old-headers 'invisible)
4420             (gnus-build-all-threads)
4421           (gnus-build-old-threads)))
4422       ;; Let the Gnus agent mark articles as read.
4423       (when gnus-agent
4424         (gnus-agent-get-undownloaded-list))
4425       ;; Remove list identifiers from subject
4426       (when gnus-list-identifiers
4427         (gnus-summary-remove-list-identifiers))
4428       ;; Check whether auto-expire is to be done in this group.
4429       (setq gnus-newsgroup-auto-expire
4430             (gnus-group-auto-expirable-p group))
4431       ;; Set up the article buffer now, if necessary.
4432       (unless gnus-single-article-buffer
4433         (gnus-article-setup-buffer))
4434       ;; First and last article in this newsgroup.
4435       (when gnus-newsgroup-headers
4436         (setq gnus-newsgroup-begin
4437               (mail-header-number (car gnus-newsgroup-headers))
4438               gnus-newsgroup-end
4439               (mail-header-number
4440                (gnus-last-element gnus-newsgroup-headers))))
4441       ;; GROUP is successfully selected.
4442       (or gnus-newsgroup-headers t)))))
4443
4444 (defun gnus-articles-to-read (group &optional read-all)
4445   "Find out what articles the user wants to read."
4446   (let* ((articles
4447           ;; Select all articles if `read-all' is non-nil, or if there
4448           ;; are no unread articles.
4449           (if (or read-all
4450                   (and (zerop (length gnus-newsgroup-marked))
4451                        (zerop (length gnus-newsgroup-unreads)))
4452                   (eq (gnus-group-find-parameter group 'display)
4453                       'all))
4454               (or
4455                (gnus-uncompress-range (gnus-active group))
4456                (gnus-cache-articles-in-group group))
4457             (sort (append gnus-newsgroup-dormant gnus-newsgroup-marked
4458                           (copy-sequence gnus-newsgroup-unreads))
4459                   '<)))
4460          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
4461          (scored (length scored-list))
4462          (number (length articles))
4463          (marked (+ (length gnus-newsgroup-marked)
4464                     (length gnus-newsgroup-dormant)))
4465          (select
4466           (cond
4467            ((numberp read-all)
4468             read-all)
4469            (t
4470             (condition-case ()
4471                 (cond
4472                  ((and (or (<= scored marked) (= scored number))
4473                        (natnump gnus-large-newsgroup)
4474                        (> number gnus-large-newsgroup))
4475                   (let* ((cursor-in-echo-area nil)
4476                          (input (read-from-minibuffer
4477                                  (format
4478                                   "How many articles from %s (max %d): "
4479                                   (gnus-limit-string gnus-newsgroup-name 35)
4480                                   number)
4481                                  (cons (number-to-string gnus-large-newsgroup)
4482                                        0))))
4483                     (if (string-match "^[ \t]*$" input)
4484                         number
4485                       input)))
4486                  ((and (> scored marked) (< scored number)
4487                        (> (- scored number) 20))
4488                   (let ((input
4489                          (read-string
4490                           (format "%s %s (%d scored, %d total): "
4491                                   "How many articles from"
4492                                   group scored number))))
4493                     (if (string-match "^[ \t]*$" input)
4494                         number input)))
4495                  (t number))
4496               (quit
4497                (message "Quit getting the articles to read")
4498                nil))))))
4499     (setq select (if (stringp select) (string-to-number select) select))
4500     (if (or (null select) (zerop select))
4501         select
4502       (if (and (not (zerop scored)) (<= (abs select) scored))
4503           (progn
4504             (setq articles (sort scored-list '<))
4505             (setq number (length articles)))
4506         (setq articles (copy-sequence articles)))
4507
4508       (when (< (abs select) number)
4509         (if (< select 0)
4510             ;; Select the N oldest articles.
4511             (setcdr (nthcdr (1- (abs select)) articles) nil)
4512           ;; Select the N most recent articles.
4513           (setq articles (nthcdr (- number select) articles))))
4514       (setq gnus-newsgroup-unselected
4515             (gnus-sorted-intersection
4516              gnus-newsgroup-unreads
4517              (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4518       (when gnus-alter-articles-to-read-function
4519         (setq gnus-newsgroup-unreads
4520               (sort
4521                (funcall gnus-alter-articles-to-read-function
4522                         gnus-newsgroup-name gnus-newsgroup-unreads)
4523                '<)))
4524       articles)))
4525
4526 (defun gnus-killed-articles (killed articles)
4527   (let (out)
4528     (while articles
4529       (when (inline (gnus-member-of-range (car articles) killed))
4530         (push (car articles) out))
4531       (setq articles (cdr articles)))
4532     out))
4533
4534 (defun gnus-uncompress-marks (marks)
4535   "Uncompress the mark ranges in MARKS."
4536   (let ((uncompressed '(score bookmark))
4537         out)
4538     (while marks
4539       (if (memq (caar marks) uncompressed)
4540           (push (car marks) out)
4541         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
4542       (setq marks (cdr marks)))
4543     out))
4544
4545 (defun gnus-adjust-marked-articles (info)
4546   "Set all article lists and remove all marks that are no longer valid."
4547   (let* ((marked-lists (gnus-info-marks info))
4548          (active (gnus-active (gnus-info-group info)))
4549          (min (car active))
4550          (max (cdr active))
4551          (types gnus-article-mark-lists)
4552          (uncompressed '(score bookmark killed))
4553          marks var articles article mark)
4554
4555     (while marked-lists
4556       (setq marks (pop marked-lists))
4557       (set (setq var (intern (format "gnus-newsgroup-%s"
4558                                      (car (rassq (setq mark (car marks))
4559                                                  types)))))
4560            (if (memq (car marks) uncompressed) (cdr marks)
4561              (gnus-uncompress-range (cdr marks))))
4562
4563       (setq articles (symbol-value var))
4564
4565       ;; All articles have to be subsets of the active articles.
4566       (cond
4567        ;; Adjust "simple" lists.
4568        ((memq mark '(tick dormant expire reply save))
4569         (while articles
4570           (when (or (< (setq article (pop articles)) min) (> article max))
4571             (set var (delq article (symbol-value var))))))
4572        ;; Adjust assocs.
4573        ((memq mark uncompressed)
4574         (when (not (listp (cdr (symbol-value var))))
4575           (set var (list (symbol-value var))))
4576         (when (not (listp (cdr articles)))
4577           (setq articles (list articles)))
4578         (while articles
4579           (when (or (not (consp (setq article (pop articles))))
4580                     (< (car article) min)
4581                     (> (car article) max))
4582             (set var (delq article (symbol-value var))))))))))
4583
4584 (defun gnus-update-missing-marks (missing)
4585   "Go through the list of MISSING articles and remove them from the mark lists."
4586   (when missing
4587     (let ((types gnus-article-mark-lists)
4588           var m)
4589       ;; Go through all types.
4590       (while types
4591         (setq var (intern (format "gnus-newsgroup-%s" (car (pop types)))))
4592         (when (symbol-value var)
4593           ;; This list has articles.  So we delete all missing articles
4594           ;; from it.
4595           (setq m missing)
4596           (while m
4597             (set var (delq (pop m) (symbol-value var)))))))))
4598
4599 (defun gnus-update-marks ()
4600   "Enter the various lists of marked articles into the newsgroup info list."
4601   (let ((types gnus-article-mark-lists)
4602         (info (gnus-get-info gnus-newsgroup-name))
4603         (uncompressed '(score bookmark killed))
4604         type list newmarked symbol delta-marks)
4605     (when info
4606       ;; Add all marks lists to the list of marks lists.
4607       (while (setq type (pop types))
4608         (setq list (symbol-value
4609                     (setq symbol
4610                           (intern (format "gnus-newsgroup-%s"
4611                                           (car type))))))
4612
4613         (when list
4614           ;; Get rid of the entries of the articles that have the
4615           ;; default score.
4616           (when (and (eq (cdr type) 'score)
4617                      gnus-save-score
4618                      list)
4619             (let* ((arts list)
4620                    (prev (cons nil list))
4621                    (all prev))
4622               (while arts
4623                 (if (or (not (consp (car arts)))
4624                         (= (cdar arts) gnus-summary-default-score))
4625                     (setcdr prev (cdr arts))
4626                   (setq prev arts))
4627                 (setq arts (cdr arts)))
4628               (setq list (cdr all)))))
4629
4630         (unless (memq (cdr type) uncompressed)
4631           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
4632
4633         (when (gnus-check-backend-function
4634                'request-set-mark gnus-newsgroup-name)
4635           ;; propagate flags to server, with the following exceptions:
4636           ;; uncompressed:s are not proper flags (they are cons cells)
4637           ;; cache is a internal gnus flag
4638           ;; download are local to one gnus installation (well)
4639           ;; unsend are for nndraft groups only
4640           ;; xxx: generality of this?  this suits nnimap anyway
4641           (unless (memq (cdr type) (append '(cache download unsend)
4642                                            uncompressed))
4643             (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
4644                    (del (gnus-remove-from-range (gnus-copy-sequence old) list))
4645                    (add (gnus-remove-from-range
4646                          (gnus-copy-sequence list) old)))
4647               (when add
4648                 (push (list add 'add (list (cdr type))) delta-marks))
4649               (when del
4650                 (push (list del 'del (list (cdr type))) delta-marks)))))
4651
4652         (when list
4653           (push (cons (cdr type) list) newmarked)))
4654
4655       (when delta-marks
4656         (unless (gnus-check-group gnus-newsgroup-name)
4657           (error "Can't open server for %s" gnus-newsgroup-name))
4658         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
4659
4660       ;; Enter these new marks into the info of the group.
4661       (if (nthcdr 3 info)
4662           (setcar (nthcdr 3 info) newmarked)
4663         ;; Add the marks lists to the end of the info.
4664         (when newmarked
4665           (setcdr (nthcdr 2 info) (list newmarked))))
4666
4667       ;; Cut off the end of the info if there's nothing else there.
4668       (let ((i 5))
4669         (while (and (> i 2)
4670                     (not (nth i info)))
4671           (when (nthcdr (decf i) info)
4672             (setcdr (nthcdr i info) nil)))))))
4673
4674 (defun gnus-set-mode-line (where)
4675   "Set the mode line of the article or summary buffers.
4676 If WHERE is `summary', the summary mode line format will be used."
4677   ;; Is this mode line one we keep updated?
4678   (when (and (memq where gnus-updated-mode-lines)
4679              (symbol-value
4680               (intern (format "gnus-%s-mode-line-format-spec" where))))
4681     (let (mode-string)
4682       (save-excursion
4683         ;; We evaluate this in the summary buffer since these
4684         ;; variables are buffer-local to that buffer.
4685         (set-buffer gnus-summary-buffer)
4686         ;; We bind all these variables that are used in the `eval' form
4687         ;; below.
4688         (let* ((mformat (symbol-value
4689                          (intern
4690                           (format "gnus-%s-mode-line-format-spec" where))))
4691                (gnus-tmp-group-name (gnus-group-name-decode
4692                                      gnus-newsgroup-name
4693                                      (gnus-group-name-charset
4694                                       nil
4695                                       gnus-newsgroup-name)))
4696                (gnus-tmp-article-number (or gnus-current-article 0))
4697                (gnus-tmp-unread gnus-newsgroup-unreads)
4698                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
4699                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
4700                (gnus-tmp-unread-and-unselected
4701                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
4702                             (zerop gnus-tmp-unselected))
4703                        "")
4704                       ((zerop gnus-tmp-unselected)
4705                        (format "{%d more}" gnus-tmp-unread-and-unticked))
4706                       (t (format "{%d(+%d) more}"
4707                                  gnus-tmp-unread-and-unticked
4708                                  gnus-tmp-unselected))))
4709                (gnus-tmp-subject
4710                 (if (and gnus-current-headers
4711                          (vectorp gnus-current-headers))
4712                     (gnus-mode-string-quote
4713                      (mail-header-subject gnus-current-headers))
4714                   ""))
4715                bufname-length max-len
4716                gnus-tmp-header);; passed as argument to any user-format-funcs
4717           (setq mode-string (eval mformat))
4718           (setq bufname-length (if (string-match "%b" mode-string)
4719                                    (- (length
4720                                        (buffer-name
4721                                         (if (eq where 'summary)
4722                                             nil
4723                                           (get-buffer gnus-article-buffer))))
4724                                       2)
4725                                  0))
4726           (setq max-len (max 4 (if gnus-mode-non-string-length
4727                                    (- (window-width)
4728                                       gnus-mode-non-string-length
4729                                       bufname-length)
4730                                  (length mode-string))))
4731           ;; We might have to chop a bit of the string off...
4732           (when (> (length mode-string) max-len)
4733             (setq mode-string
4734                   (concat (gnus-truncate-string mode-string (- max-len 3))
4735                           "...")))
4736           ;; Pad the mode string a bit.
4737           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
4738       ;; Update the mode line.
4739       (setq mode-line-buffer-identification
4740             (gnus-mode-line-buffer-identification (list mode-string)))
4741       (set-buffer-modified-p t))))
4742
4743 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
4744   "Go through the HEADERS list and add all Xrefs to a hash table.
4745 The resulting hash table is returned, or nil if no Xrefs were found."
4746   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
4747          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
4748          (xref-hashtb (gnus-make-hashtable))
4749          start group entry number xrefs header)
4750     (while headers
4751       (setq header (pop headers))
4752       (when (and (setq xrefs (mail-header-xref header))
4753                  (not (memq (setq number (mail-header-number header))
4754                             unreads)))
4755         (setq start 0)
4756         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
4757           (setq start (match-end 0))
4758           (setq group (if prefix
4759                           (concat prefix (substring xrefs (match-beginning 1)
4760                                                     (match-end 1)))
4761                         (substring xrefs (match-beginning 1) (match-end 1))))
4762           (setq number
4763                 (string-to-int (substring xrefs (match-beginning 2)
4764                                           (match-end 2))))
4765           (if (setq entry (gnus-gethash group xref-hashtb))
4766               (setcdr entry (cons number (cdr entry)))
4767             (gnus-sethash group (cons number nil) xref-hashtb)))))
4768     (and start xref-hashtb)))
4769
4770 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
4771   "Look through all the headers and mark the Xrefs as read."
4772   (let ((virtual (gnus-virtual-group-p from-newsgroup))
4773         name entry info xref-hashtb idlist method nth4)
4774     (save-excursion
4775       (set-buffer gnus-group-buffer)
4776       (when (setq xref-hashtb
4777                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
4778         (mapatoms
4779          (lambda (group)
4780            (unless (string= from-newsgroup (setq name (symbol-name group)))
4781              (setq idlist (symbol-value group))
4782              ;; Dead groups are not updated.
4783              (and (prog1
4784                       (setq entry (gnus-gethash name gnus-newsrc-hashtb)
4785                             info (nth 2 entry))
4786                     (when (stringp (setq nth4 (gnus-info-method info)))
4787                       (setq nth4 (gnus-server-to-method nth4))))
4788                   ;; Only do the xrefs if the group has the same
4789                   ;; select method as the group we have just read.
4790                   (or (gnus-methods-equal-p
4791                        nth4 (gnus-find-method-for-group from-newsgroup))
4792                       virtual
4793                       (equal nth4 (setq method (gnus-find-method-for-group
4794                                                 from-newsgroup)))
4795                       (and (equal (car nth4) (car method))
4796                            (equal (nth 1 nth4) (nth 1 method))))
4797                   gnus-use-cross-reference
4798                   (or (not (eq gnus-use-cross-reference t))
4799                       virtual
4800                       ;; Only do cross-references on subscribed
4801                       ;; groups, if that is what is wanted.
4802                       (<= (gnus-info-level info) gnus-level-subscribed))
4803                   (gnus-group-make-articles-read name idlist))))
4804          xref-hashtb)))))
4805
4806 (defun gnus-compute-read-articles (group articles)
4807   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4808          (info (nth 2 entry))
4809          (active (gnus-active group))
4810          ninfo)
4811     (when entry
4812       ;; First peel off all invalid article numbers.
4813       (when active
4814         (let ((ids articles)
4815               id first)
4816           (while (setq id (pop ids))
4817             (when (and first (> id (cdr active)))
4818               ;; We'll end up in this situation in one particular
4819               ;; obscure situation.  If you re-scan a group and get
4820               ;; a new article that is cross-posted to a different
4821               ;; group that has not been re-scanned, you might get
4822               ;; crossposted article that has a higher number than
4823               ;; Gnus believes possible.  So we re-activate this
4824               ;; group as well.  This might mean doing the
4825               ;; crossposting thingy will *increase* the number
4826               ;; of articles in some groups.  Tsk, tsk.
4827               (setq active (or (gnus-activate-group group) active)))
4828             (when (or (> id (cdr active))
4829                       (< id (car active)))
4830               (setq articles (delq id articles))))))
4831       ;; If the read list is nil, we init it.
4832       (if (and active
4833                (null (gnus-info-read info))
4834                (> (car active) 1))
4835           (setq ninfo (cons 1 (1- (car active))))
4836         (setq ninfo (gnus-info-read info)))
4837       ;; Then we add the read articles to the range.
4838       (gnus-add-to-range
4839        ninfo (setq articles (sort articles '<))))))
4840
4841 (defun gnus-group-make-articles-read (group articles)
4842   "Update the info of GROUP to say that ARTICLES are read."
4843   (let* ((num 0)
4844          (entry (gnus-gethash group gnus-newsrc-hashtb))
4845          (info (nth 2 entry))
4846          (active (gnus-active group))
4847          range)
4848     (when entry
4849       (setq range (gnus-compute-read-articles group articles))
4850       (save-excursion
4851         (set-buffer gnus-group-buffer)
4852         (gnus-undo-register
4853           `(progn
4854              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
4855              (gnus-info-set-read ',info ',(gnus-info-read info))
4856              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
4857              (gnus-group-update-group ,group t))))
4858       ;; Add the read articles to the range.
4859       (gnus-info-set-read info range)
4860       ;; Then we have to re-compute how many unread
4861       ;; articles there are in this group.
4862       (when active
4863         (cond
4864          ((not range)
4865           (setq num (- (1+ (cdr active)) (car active))))
4866          ((not (listp (cdr range)))
4867           (setq num (- (cdr active) (- (1+ (cdr range))
4868                                        (car range)))))
4869          (t
4870           (while range
4871             (if (numberp (car range))
4872                 (setq num (1+ num))
4873               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
4874             (setq range (cdr range)))
4875           (setq num (- (cdr active) num))))
4876         ;; Update the number of unread articles.
4877         (setcar entry num)
4878         ;; Update the group buffer.
4879         (gnus-group-update-group group t)))))
4880
4881 (defvar gnus-newsgroup-none-id 0)
4882
4883 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
4884   (let ((cur nntp-server-buffer)
4885         (dependencies
4886          (or dependencies
4887              (save-excursion (set-buffer gnus-summary-buffer)
4888                              gnus-newsgroup-dependencies)))
4889         headers id end ref
4890         (mail-parse-charset gnus-newsgroup-charset)
4891         (mail-parse-ignored-charsets
4892          (save-excursion (condition-case nil
4893                              (set-buffer gnus-summary-buffer)
4894                            (error))
4895                          gnus-newsgroup-ignored-charsets)))
4896     (save-excursion
4897       (set-buffer nntp-server-buffer)
4898       ;; Translate all TAB characters into SPACE characters.
4899       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
4900       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4901       (gnus-run-hooks 'gnus-parse-headers-hook)
4902       (let ((case-fold-search t)
4903             in-reply-to header p lines chars ctype)
4904         (goto-char (point-min))
4905         ;; Search to the beginning of the next header.  Error messages
4906         ;; do not begin with 2 or 3.
4907         (while (re-search-forward "^[23][0-9]+ " nil t)
4908           (setq id nil
4909                 ref nil)
4910           ;; This implementation of this function, with nine
4911           ;; search-forwards instead of the one re-search-forward and
4912           ;; a case (which basically was the old function) is actually
4913           ;; about twice as fast, even though it looks messier.  You
4914           ;; can't have everything, I guess.  Speed and elegance
4915           ;; doesn't always go hand in hand.
4916           (setq
4917            header
4918            (make-full-mail-header
4919             ;; Number.
4920             (prog1
4921                 (read cur)
4922               (end-of-line)
4923               (setq p (point))
4924               (narrow-to-region (point)
4925                                 (or (and (search-forward "\n.\n" nil t)
4926                                          (- (point) 2))
4927                                     (point))))
4928             ;; Subject.
4929             (progn
4930               (goto-char p)
4931               (if (search-forward "\nsubject: " nil t)
4932                   (nnheader-header-value)
4933                 "(none)"))
4934             ;; From.
4935             (progn
4936               (goto-char p)
4937               (if (or (search-forward "\nfrom: " nil t)
4938                       (search-forward "\nfrom:" nil t))
4939                   (nnheader-header-value)
4940                 "(nobody)"))
4941             ;; Date.
4942             (progn
4943               (goto-char p)
4944               (if (search-forward "\ndate: " nil t)
4945                   (nnheader-header-value)
4946                 ""))
4947             ;; Message-ID.
4948             (progn
4949               (goto-char p)
4950               (setq id (if (re-search-forward
4951                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
4952                            ;; We do it this way to make sure the Message-ID
4953                            ;; is (somewhat) syntactically valid.
4954                            (buffer-substring (match-beginning 1)
4955                                              (match-end 1))
4956                          ;; If there was no message-id, we just fake one
4957                          ;; to make subsequent routines simpler.
4958                          (nnheader-generate-fake-message-id))))
4959             ;; References.
4960             (progn
4961               (goto-char p)
4962               (if (search-forward "\nreferences: " nil t)
4963                   (progn
4964                     (setq end (point))
4965                     (prog1
4966                         (nnheader-header-value)
4967                       (setq ref
4968                             (buffer-substring
4969                              (progn
4970                                ;; (end-of-line)
4971                                (search-backward ">" end t)
4972                                (1+ (point)))
4973                              (progn
4974                                (search-backward "<" end t)
4975                                (point))))))
4976                 ;; Get the references from the in-reply-to header if there
4977                 ;; were no references and the in-reply-to header looks
4978                 ;; promising.
4979                 (if (and (search-forward "\nin-reply-to: " nil t)
4980                          (setq in-reply-to (nnheader-header-value))
4981                          (string-match "<[^>]+>" in-reply-to))
4982                     (let (ref2)
4983                       (setq ref (substring in-reply-to (match-beginning 0)
4984                                            (match-end 0)))
4985                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
4986                         (setq ref2 (substring in-reply-to (match-beginning 0)
4987                                               (match-end 0)))
4988                         (when (> (length ref2) (length ref))
4989                           (setq ref ref2)))
4990                       ref)
4991                   (setq ref nil))))
4992             ;; Chars.
4993             (progn
4994               (goto-char p)
4995               (if (search-forward "\nchars: " nil t)
4996                   (if (numberp (setq chars (ignore-errors (read cur))))
4997                       chars 0)
4998                 0))
4999             ;; Lines.
5000             (progn
5001               (goto-char p)
5002               (if (search-forward "\nlines: " nil t)
5003                   (if (numberp (setq lines (ignore-errors (read cur))))
5004                       lines 0)
5005                 0))
5006             ;; Xref.
5007             (progn
5008               (goto-char p)
5009               (and (search-forward "\nxref: " nil t)
5010                    (nnheader-header-value)))
5011             ;; Extra.
5012             (when gnus-extra-headers
5013               (let ((extra gnus-extra-headers)
5014                     out)
5015                 (while extra
5016                   (goto-char p)
5017                   (when (search-forward
5018                          (concat "\n" (symbol-name (car extra)) ": ") nil t)
5019                     (push (cons (car extra) (nnheader-header-value)) out))
5020                   (pop extra))
5021                 out))))
5022           (goto-char p)
5023           (if (and (search-forward "\ncontent-type: " nil t)
5024                    (setq ctype (nnheader-header-value)))
5025               (mime-entity-set-content-type-internal
5026                header (mime-parse-Content-Type ctype)))
5027           (when (equal id ref)
5028             (setq ref nil))
5029
5030           (when gnus-alter-header-function
5031             (funcall gnus-alter-header-function header)
5032             (setq id (mail-header-id header)
5033                   ref (gnus-parent-id (mail-header-references header))))
5034
5035           (when (setq header
5036                       (gnus-dependencies-add-header
5037                        header dependencies force-new))
5038             (push header headers))
5039           (goto-char (point-max))
5040           (widen))
5041         (nreverse headers)))))
5042
5043 ;; Goes through the xover lines and returns a list of vectors
5044 (defun gnus-get-newsgroup-headers-xover (sequence &optional
5045                                                   force-new dependencies
5046                                                   group also-fetch-heads)
5047   "Parse the news overview data in the server buffer.
5048 Return a list of headers that match SEQUENCE (see
5049 `nntp-retrieve-headers')."
5050   ;; Get the Xref when the users reads the articles since most/some
5051   ;; NNTP servers do not include Xrefs when using XOVER.
5052   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
5053   (let ((mail-parse-charset gnus-newsgroup-charset)
5054         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
5055         (cur nntp-server-buffer)
5056         (dependencies (or dependencies gnus-newsgroup-dependencies))
5057         number headers header)
5058     (save-excursion
5059       (set-buffer nntp-server-buffer)
5060       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5061       ;; Allow the user to mangle the headers before parsing them.
5062       (gnus-run-hooks 'gnus-parse-headers-hook)
5063       (goto-char (point-min))
5064       (while (not (eobp))
5065         (condition-case ()
5066             (while (and sequence (not (eobp)))
5067               (setq number (read cur))
5068               (while (and sequence
5069                           (< (car sequence) number))
5070                 (setq sequence (cdr sequence)))
5071               (and sequence
5072                    (eq number (car sequence))
5073                    (progn
5074                      (setq sequence (cdr sequence))
5075                      (setq header (inline
5076                                     (gnus-nov-parse-line
5077                                      number dependencies force-new))))
5078                    (push header headers))
5079               (forward-line 1))
5080           (error
5081            (gnus-error 4 "Strange nov line (%d)"
5082                        (count-lines (point-min) (point)))))
5083         (forward-line 1))
5084       ;; A common bug in inn is that if you have posted an article and
5085       ;; then retrieves the active file, it will answer correctly --
5086       ;; the new article is included.  However, a NOV entry for the
5087       ;; article may not have been generated yet, so this may fail.
5088       ;; We work around this problem by retrieving the last few
5089       ;; headers using HEAD.
5090       (if (or (not also-fetch-heads)
5091               (not sequence))
5092           ;; We (probably) got all the headers.
5093           (nreverse headers)
5094         (let ((gnus-nov-is-evil t))
5095           (nconc
5096            (nreverse headers)
5097            (gnus-retrieve-parsed-headers sequence group)
5098            ))))))
5099
5100 (defun gnus-article-get-xrefs ()
5101   "Fill in the Xref value in `gnus-current-headers', if necessary.
5102 This is meant to be called in `gnus-article-internal-prepare-hook'."
5103   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
5104                                  gnus-current-headers)))
5105     (or (not gnus-use-cross-reference)
5106         (not headers)
5107         (and (mail-header-xref headers)
5108              (not (string= (mail-header-xref headers) "")))
5109         (let ((case-fold-search t)
5110               xref)
5111           (save-restriction
5112             (nnheader-narrow-to-headers)
5113             (goto-char (point-min))
5114             (when (or (and (not (eobp))
5115                            (eq (downcase (char-after)) ?x)
5116                            (looking-at "Xref:"))
5117                       (search-forward "\nXref:" nil t))
5118               (goto-char (1+ (match-end 0)))
5119               (setq xref (buffer-substring (point)
5120                                            (progn (end-of-line) (point))))
5121               (mail-header-set-xref headers xref)))))))
5122
5123 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
5124   "Find article ID and insert the summary line for that article.
5125 OLD-HEADER can either be a header or a line number to insert
5126 the subject line on."
5127   (let* ((line (and (numberp old-header) old-header))
5128          (old-header (and (vectorp old-header) old-header))
5129          (header (cond ((and old-header use-old-header)
5130                         old-header)
5131                        ((and (numberp id)
5132                              (gnus-number-to-header id))
5133                         (gnus-number-to-header id))
5134                        (t
5135                         (gnus-read-header id))))
5136          (number (and (numberp id) id))
5137          d)
5138     (when header
5139       ;; Rebuild the thread that this article is part of and go to the
5140       ;; article we have fetched.
5141       (when (and (not gnus-show-threads)
5142                  old-header)
5143         (when (and number
5144                    (setq d (gnus-data-find (mail-header-number old-header))))
5145           (goto-char (gnus-data-pos d))
5146           (gnus-data-remove
5147            number
5148            (- (gnus-point-at-bol)
5149               (prog1
5150                   (1+ (gnus-point-at-eol))
5151                 (gnus-delete-line))))))
5152       (when old-header
5153         (mail-header-set-number header (mail-header-number old-header)))
5154       (setq gnus-newsgroup-sparse
5155             (delq (setq number (mail-header-number header))
5156                   gnus-newsgroup-sparse))
5157       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
5158       (push number gnus-newsgroup-limit)
5159       (gnus-rebuild-thread (mail-header-id header) line)
5160       (gnus-summary-goto-subject number nil t))
5161     (when (and (numberp number)
5162                (> number 0))
5163       ;; We have to update the boundaries even if we can't fetch the
5164       ;; article if ID is a number -- so that the next `P' or `N'
5165       ;; command will fetch the previous (or next) article even
5166       ;; if the one we tried to fetch this time has been canceled.
5167       (when (> number gnus-newsgroup-end)
5168         (setq gnus-newsgroup-end number))
5169       (when (< number gnus-newsgroup-begin)
5170         (setq gnus-newsgroup-begin number))
5171       (setq gnus-newsgroup-unselected
5172             (delq number gnus-newsgroup-unselected)))
5173     ;; Report back a success?
5174     (and header (mail-header-number header))))
5175
5176 ;;; Process/prefix in the summary buffer
5177
5178 (defun gnus-summary-work-articles (n)
5179   "Return a list of articles to be worked upon.
5180 The prefix argument, the list of process marked articles, and the
5181 current article will be taken into consideration."
5182   (save-excursion
5183     (set-buffer gnus-summary-buffer)
5184     (cond
5185      (n
5186       ;; A numerical prefix has been given.
5187       (setq n (prefix-numeric-value n))
5188       (let ((backward (< n 0))
5189             (n (abs (prefix-numeric-value n)))
5190             articles article)
5191         (save-excursion
5192           (while
5193               (and (> n 0)
5194                    (push (setq article (gnus-summary-article-number))
5195                          articles)
5196                    (if backward
5197                        (gnus-summary-find-prev nil article)
5198                      (gnus-summary-find-next nil article)))
5199             (decf n)))
5200         (nreverse articles)))
5201      ((and (gnus-region-active-p) (mark))
5202       (message "region active")
5203       ;; Work on the region between point and mark.
5204       (let ((max (max (point) (mark)))
5205             articles article)
5206         (save-excursion
5207           (goto-char (min (point) (mark)))
5208           (while
5209               (and
5210                (push (setq article (gnus-summary-article-number)) articles)
5211                (gnus-summary-find-next nil article)
5212                (< (point) max)))
5213           (nreverse articles))))
5214      (gnus-newsgroup-processable
5215       ;; There are process-marked articles present.
5216       ;; Save current state.
5217       (gnus-summary-save-process-mark)
5218       ;; Return the list.
5219       (reverse gnus-newsgroup-processable))
5220      (t
5221       ;; Just return the current article.
5222       (list (gnus-summary-article-number))))))
5223
5224 (defmacro gnus-summary-iterate (arg &rest forms)
5225   "Iterate over the process/prefixed articles and do FORMS.
5226 ARG is the interactive prefix given to the command.  FORMS will be
5227 executed with point over the summary line of the articles."
5228   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
5229     `(let ((,articles (gnus-summary-work-articles ,arg)))
5230        (while ,articles
5231          (gnus-summary-goto-subject (car ,articles))
5232          ,@forms
5233          (pop ,articles)))))
5234
5235 (put 'gnus-summary-iterate 'lisp-indent-function 1)
5236 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
5237
5238 (defun gnus-summary-save-process-mark ()
5239   "Push the current set of process marked articles on the stack."
5240   (interactive)
5241   (push (copy-sequence gnus-newsgroup-processable)
5242         gnus-newsgroup-process-stack))
5243
5244 (defun gnus-summary-kill-process-mark ()
5245   "Push the current set of process marked articles on the stack and unmark."
5246   (interactive)
5247   (gnus-summary-save-process-mark)
5248   (gnus-summary-unmark-all-processable))
5249
5250 (defun gnus-summary-yank-process-mark ()
5251   "Pop the last process mark state off the stack and restore it."
5252   (interactive)
5253   (unless gnus-newsgroup-process-stack
5254     (error "Empty mark stack"))
5255   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
5256
5257 (defun gnus-summary-process-mark-set (set)
5258   "Make SET into the current process marked articles."
5259   (gnus-summary-unmark-all-processable)
5260   (while set
5261     (gnus-summary-set-process-mark (pop set))))
5262
5263 ;;; Searching and stuff
5264
5265 (defun gnus-summary-search-group (&optional backward use-level)
5266   "Search for next unread newsgroup.
5267 If optional argument BACKWARD is non-nil, search backward instead."
5268   (save-excursion
5269     (set-buffer gnus-group-buffer)
5270     (when (gnus-group-search-forward
5271            backward nil (if use-level (gnus-group-group-level) nil))
5272       (gnus-group-group-name))))
5273
5274 (defun gnus-summary-best-group (&optional exclude-group)
5275   "Find the name of the best unread group.
5276 If EXCLUDE-GROUP, do not go to this group."
5277   (save-excursion
5278     (set-buffer gnus-group-buffer)
5279     (save-excursion
5280       (gnus-group-best-unread-group exclude-group))))
5281
5282 (defun gnus-summary-find-next (&optional unread article backward undownloaded)
5283   (if backward (gnus-summary-find-prev)
5284     (let* ((dummy (gnus-summary-article-intangible-p))
5285            (article (or article (gnus-summary-article-number)))
5286            (arts (gnus-data-find-list article))
5287            result)
5288       (when (and (not dummy)
5289                  (or (not gnus-summary-check-current)
5290                      (not unread)
5291                      (not (gnus-data-unread-p (car arts)))))
5292         (setq arts (cdr arts)))
5293       (when (setq result
5294                   (if unread
5295                       (progn
5296                         (while arts
5297                           (when (or (and undownloaded
5298                                          (eq gnus-undownloaded-mark
5299                                              (gnus-data-mark (car arts))))
5300                                     (gnus-data-unread-p (car arts)))
5301                             (setq result (car arts)
5302                                   arts nil))
5303                           (setq arts (cdr arts)))
5304                         result)
5305                     (car arts)))
5306         (goto-char (gnus-data-pos result))
5307         (gnus-data-number result)))))
5308
5309 (defun gnus-summary-find-prev (&optional unread article)
5310   (let* ((eobp (eobp))
5311          (article (or article (gnus-summary-article-number)))
5312          (arts (gnus-data-find-list article (gnus-data-list 'rev)))
5313          result)
5314     (when (and (not eobp)
5315                (or (not gnus-summary-check-current)
5316                    (not unread)
5317                    (not (gnus-data-unread-p (car arts)))))
5318       (setq arts (cdr arts)))
5319     (when (setq result
5320                 (if unread
5321                     (progn
5322                       (while arts
5323                         (when (gnus-data-unread-p (car arts))
5324                           (setq result (car arts)
5325                                 arts nil))
5326                         (setq arts (cdr arts)))
5327                       result)
5328                   (car arts)))
5329       (goto-char (gnus-data-pos result))
5330       (gnus-data-number result))))
5331
5332 (defun gnus-summary-find-subject (subject &optional unread backward article)
5333   (let* ((simp-subject (gnus-simplify-subject-fully subject))
5334          (article (or article (gnus-summary-article-number)))
5335          (articles (gnus-data-list backward))
5336          (arts (gnus-data-find-list article articles))
5337          result)
5338     (when (or (not gnus-summary-check-current)
5339               (not unread)
5340               (not (gnus-data-unread-p (car arts))))
5341       (setq arts (cdr arts)))
5342     (while arts
5343       (and (or (not unread)
5344                (gnus-data-unread-p (car arts)))
5345            (vectorp (gnus-data-header (car arts)))
5346            (gnus-subject-equal
5347             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
5348            (setq result (car arts)
5349                  arts nil))
5350       (setq arts (cdr arts)))
5351     (and result
5352          (goto-char (gnus-data-pos result))
5353          (gnus-data-number result))))
5354
5355 (defun gnus-summary-search-forward (&optional unread subject backward)
5356   "Search forward for an article.
5357 If UNREAD, look for unread articles.  If SUBJECT, look for
5358 articles with that subject.  If BACKWARD, search backward instead."
5359   (cond (subject (gnus-summary-find-subject subject unread backward))
5360         (backward (gnus-summary-find-prev unread))
5361         (t (gnus-summary-find-next unread))))
5362
5363 (defun gnus-recenter (&optional n)
5364   "Center point in window and redisplay frame.
5365 Also do horizontal recentering."
5366   (interactive "P")
5367   (when (and gnus-auto-center-summary
5368              (not (eq gnus-auto-center-summary 'vertical)))
5369     (gnus-horizontal-recenter))
5370   (recenter n))
5371
5372 (defun gnus-summary-recenter ()
5373   "Center point in the summary window.
5374 If `gnus-auto-center-summary' is nil, or the article buffer isn't
5375 displayed, no centering will be performed."
5376   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
5377   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
5378   (interactive)
5379   (let* ((top (cond ((< (window-height) 4) 0)
5380                     ((< (window-height) 7) 1)
5381                     (t (if (numberp gnus-auto-center-summary)
5382                            gnus-auto-center-summary
5383                          2))))
5384          (height (1- (window-height)))
5385          (bottom (save-excursion (goto-char (point-max))
5386                                  (forward-line (- height))
5387                                  (point)))
5388          (window (get-buffer-window (current-buffer))))
5389     ;; The user has to want it.
5390     (when gnus-auto-center-summary
5391       (when (get-buffer-window gnus-article-buffer)
5392         ;; Only do recentering when the article buffer is displayed,
5393         ;; Set the window start to either `bottom', which is the biggest
5394         ;; possible valid number, or the second line from the top,
5395         ;; whichever is the least.
5396         (let ((top-pos (save-excursion (forward-line (- top)) (point))))
5397           (if (> bottom top-pos)
5398               ;; Keep the second line from the top visible
5399               (set-window-start window top-pos t)
5400             ;; Try to keep the bottom line visible; if it's partially
5401             ;; obscured, either scroll one more line to make it fully
5402             ;; visible, or revert to using TOP-POS.
5403             (save-excursion
5404               (goto-char (point-max))
5405               (forward-line -1)
5406               (let ((last-line-start (point)))
5407                 (goto-char bottom)
5408                 (set-window-start window (point) t)
5409                 (when (not (pos-visible-in-window-p last-line-start window))
5410                   (forward-line 1)
5411                   (set-window-start window (min (point) top-pos) t)))))))
5412       ;; Do horizontal recentering while we're at it.
5413       (when (and (get-buffer-window (current-buffer) t)
5414                  (not (eq gnus-auto-center-summary 'vertical)))
5415         (let ((selected (selected-window)))
5416           (select-window (get-buffer-window (current-buffer) t))
5417           (gnus-summary-position-point)
5418           (gnus-horizontal-recenter)
5419           (select-window selected))))))
5420
5421 (defun gnus-summary-jump-to-group (newsgroup)
5422   "Move point to NEWSGROUP in group mode buffer."
5423   ;; Keep update point of group mode buffer if visible.
5424   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
5425       (save-window-excursion
5426         ;; Take care of tree window mode.
5427         (when (get-buffer-window gnus-group-buffer)
5428           (pop-to-buffer gnus-group-buffer))
5429         (gnus-group-jump-to-group newsgroup))
5430     (save-excursion
5431       ;; Take care of tree window mode.
5432       (if (get-buffer-window gnus-group-buffer)
5433           (pop-to-buffer gnus-group-buffer)
5434         (set-buffer gnus-group-buffer))
5435       (gnus-group-jump-to-group newsgroup))))
5436
5437 ;; This function returns a list of article numbers based on the
5438 ;; difference between the ranges of read articles in this group and
5439 ;; the range of active articles.
5440 (defun gnus-list-of-unread-articles (group)
5441   (let* ((read (gnus-info-read (gnus-get-info group)))
5442          (active (or (gnus-active group) (gnus-activate-group group)))
5443          (last (cdr active))
5444          first nlast unread)
5445     ;; If none are read, then all are unread.
5446     (if (not read)
5447         (setq first (car active))
5448       ;; If the range of read articles is a single range, then the
5449       ;; first unread article is the article after the last read
5450       ;; article.  Sounds logical, doesn't it?
5451       (if (and (not (listp (cdr read)))
5452                (or (< (car read) (car active))
5453                    (progn (setq read (list read))
5454                           nil)))
5455           (setq first (max (car active) (1+ (cdr read))))
5456         ;; `read' is a list of ranges.
5457         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
5458                                   (caar read)))
5459                   1)
5460           (setq first (car active)))
5461         (while read
5462           (when first
5463             (while (< first nlast)
5464               (push first unread)
5465               (setq first (1+ first))))
5466           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
5467           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
5468           (setq read (cdr read)))))
5469     ;; And add the last unread articles.
5470     (while (<= first last)
5471       (push first unread)
5472       (setq first (1+ first)))
5473     ;; Return the list of unread articles.
5474     (delq 0 (nreverse unread))))
5475
5476 (defun gnus-list-of-read-articles (group)
5477   "Return a list of unread, unticked and non-dormant articles."
5478   (let* ((info (gnus-get-info group))
5479          (marked (gnus-info-marks info))
5480          (active (gnus-active group)))
5481     (and info active
5482          (gnus-set-difference
5483           (gnus-sorted-complement
5484            (gnus-uncompress-range active)
5485            (gnus-list-of-unread-articles group))
5486           (append
5487            (gnus-uncompress-range (cdr (assq 'dormant marked)))
5488            (gnus-uncompress-range (cdr (assq 'tick marked))))))))
5489
5490 ;; Various summary commands
5491
5492 (defun gnus-summary-select-article-buffer ()
5493   "Reconfigure windows to show article buffer."
5494   (interactive)
5495   (if (not (gnus-buffer-live-p gnus-article-buffer))
5496       (error "There is no article buffer for this summary buffer")
5497     (gnus-configure-windows 'article)
5498     (select-window (get-buffer-window gnus-article-buffer))))
5499
5500 (defun gnus-summary-universal-argument (arg)
5501   "Perform any operation on all articles that are process/prefixed."
5502   (interactive "P")
5503   (let ((articles (gnus-summary-work-articles arg))
5504         func article)
5505     (if (eq
5506          (setq
5507           func
5508           (key-binding
5509            (read-key-sequence
5510             (substitute-command-keys
5511              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
5512          'undefined)
5513         (gnus-error 1 "Undefined key")
5514       (save-excursion
5515         (while articles
5516           (gnus-summary-goto-subject (setq article (pop articles)))
5517           (let (gnus-newsgroup-processable)
5518             (command-execute func))
5519           (gnus-summary-remove-process-mark article)))))
5520   (gnus-summary-position-point))
5521
5522 (defun gnus-summary-toggle-truncation (&optional arg)
5523   "Toggle truncation of summary lines.
5524 With arg, turn line truncation on iff arg is positive."
5525   (interactive "P")
5526   (setq truncate-lines
5527         (if (null arg) (not truncate-lines)
5528           (> (prefix-numeric-value arg) 0)))
5529   (redraw-display))
5530
5531 (defun gnus-summary-reselect-current-group (&optional all rescan)
5532   "Exit and then reselect the current newsgroup.
5533 The prefix argument ALL means to select all articles."
5534   (interactive "P")
5535   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
5536     (error "Ephemeral groups can't be reselected"))
5537   (let ((current-subject (gnus-summary-article-number))
5538         (group gnus-newsgroup-name))
5539     (setq gnus-newsgroup-begin nil)
5540     (gnus-summary-exit)
5541     ;; We have to adjust the point of group mode buffer because
5542     ;; point was moved to the next unread newsgroup by exiting.
5543     (gnus-summary-jump-to-group group)
5544     (when rescan
5545       (save-excursion
5546         (save-window-excursion
5547           ;; Don't show group contents.
5548           (set-window-start (selected-window) (point-max))
5549           (gnus-group-get-new-news-this-group 1))))
5550     (gnus-group-read-group all t)
5551     (gnus-summary-goto-subject current-subject nil t)))
5552
5553 (defun gnus-summary-rescan-group (&optional all)
5554   "Exit the newsgroup, ask for new articles, and select the newsgroup."
5555   (interactive "P")
5556   (gnus-summary-reselect-current-group all t))
5557
5558 (defun gnus-summary-update-info (&optional non-destructive)
5559   (save-excursion
5560     (let ((group gnus-newsgroup-name))
5561       (when group
5562         (when gnus-newsgroup-kill-headers
5563           (setq gnus-newsgroup-killed
5564                 (gnus-compress-sequence
5565                  (nconc
5566                   (gnus-set-sorted-intersection
5567                    (gnus-uncompress-range gnus-newsgroup-killed)
5568                    (setq gnus-newsgroup-unselected
5569                          (sort gnus-newsgroup-unselected '<)))
5570                   (setq gnus-newsgroup-unreads
5571                         (sort gnus-newsgroup-unreads '<)))
5572                  t)))
5573         (unless (listp (cdr gnus-newsgroup-killed))
5574           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
5575         (let ((headers gnus-newsgroup-headers))
5576           ;; Set the new ranges of read articles.
5577           (save-excursion
5578             (set-buffer gnus-group-buffer)
5579             (gnus-undo-force-boundary))
5580           (gnus-update-read-articles
5581            group (append gnus-newsgroup-unreads gnus-newsgroup-unselected))
5582           ;; Set the current article marks.
5583           (let ((gnus-newsgroup-scored
5584                  (if (and (not gnus-save-score)
5585                           (not non-destructive))
5586                      nil
5587                    gnus-newsgroup-scored)))
5588             (save-excursion
5589               (gnus-update-marks)))
5590           ;; Do the cross-ref thing.
5591           (when gnus-use-cross-reference
5592             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
5593           ;; Do not switch windows but change the buffer to work.
5594           (set-buffer gnus-group-buffer)
5595           (unless (gnus-ephemeral-group-p group)
5596             (gnus-group-update-group group)))))))
5597
5598 (defun gnus-summary-save-newsrc (&optional force)
5599   "Save the current number of read/marked articles in the dribble buffer.
5600 The dribble buffer will then be saved.
5601 If FORCE (the prefix), also save the .newsrc file(s)."
5602   (interactive "P")
5603   (gnus-summary-update-info t)
5604   (if force
5605       (gnus-save-newsrc-file)
5606     (gnus-dribble-save)))
5607
5608 (defun gnus-summary-exit (&optional temporary)
5609   "Exit reading current newsgroup, and then return to group selection mode.
5610 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
5611   (interactive)
5612   (gnus-set-global-variables)
5613   (gnus-kill-save-kill-buffer)
5614   (gnus-async-halt-prefetch)
5615   (let* ((group gnus-newsgroup-name)
5616          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
5617          (mode major-mode)
5618          (group-point nil)
5619          (buf (current-buffer)))
5620     (unless quit-config
5621       ;; Do adaptive scoring, and possibly save score files.
5622       (when gnus-newsgroup-adaptive
5623         (gnus-score-adaptive))
5624       (when gnus-use-scoring
5625         (gnus-score-save)))
5626     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
5627     ;; If we have several article buffers, we kill them at exit.
5628     (unless gnus-single-article-buffer
5629       (gnus-kill-buffer gnus-original-article-buffer)
5630       (setq gnus-article-current nil))
5631     (when gnus-use-cache
5632       (gnus-cache-possibly-remove-articles)
5633       (gnus-cache-save-buffers))
5634     (gnus-async-prefetch-remove-group group)
5635     (when gnus-suppress-duplicates
5636       (gnus-dup-enter-articles))
5637     (when gnus-use-trees
5638       (gnus-tree-close group))
5639     (when gnus-use-cache
5640       (gnus-cache-write-active))
5641     ;; Remove entries for this group.
5642     (nnmail-purge-split-history (gnus-group-real-name group))
5643     ;; Make all changes in this group permanent.
5644     (unless quit-config
5645       (gnus-run-hooks 'gnus-exit-group-hook)
5646       (gnus-summary-update-info))
5647     (gnus-close-group group)
5648     ;; Make sure where we were, and go to next newsgroup.
5649     (set-buffer gnus-group-buffer)
5650     (unless quit-config
5651       (gnus-group-jump-to-group group))
5652     (gnus-run-hooks 'gnus-summary-exit-hook)
5653     (unless (or quit-config
5654                 ;; If this group has disappeared from the summary
5655                 ;; buffer, don't skip forwards.
5656                 (not (string= group (gnus-group-group-name))))
5657       (gnus-group-next-unread-group 1))
5658     (setq group-point (point))
5659     (if temporary
5660         nil                             ;Nothing to do.
5661       ;; If we have several article buffers, we kill them at exit.
5662       (unless gnus-single-article-buffer
5663         (gnus-kill-buffer gnus-article-buffer)
5664         (gnus-kill-buffer gnus-original-article-buffer)
5665         (setq gnus-article-current nil))
5666       (set-buffer buf)
5667       (if (not gnus-kill-summary-on-exit)
5668           (gnus-deaden-summary)
5669         ;; We set all buffer-local variables to nil.  It is unclear why
5670         ;; this is needed, but if we don't, buffer-local variables are
5671         ;; not garbage-collected, it seems.  This would the lead to en
5672         ;; ever-growing Emacs.
5673         (gnus-summary-clear-local-variables)
5674         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
5675           (gnus-summary-clear-local-variables))
5676         (when (get-buffer gnus-article-buffer)
5677           (bury-buffer gnus-article-buffer))
5678         ;; We clear the global counterparts of the buffer-local
5679         ;; variables as well, just to be on the safe side.
5680         (set-buffer gnus-group-buffer)
5681         (gnus-summary-clear-local-variables)
5682         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
5683           (gnus-summary-clear-local-variables))
5684         ;; Return to group mode buffer.
5685         (when (eq mode 'gnus-summary-mode)
5686           (gnus-kill-buffer buf)))
5687       (setq gnus-current-select-method gnus-select-method)
5688       (pop-to-buffer gnus-group-buffer)
5689       (if (not quit-config)
5690           (progn
5691             (goto-char group-point)
5692             (gnus-configure-windows 'group 'force)
5693             (unless (pos-visible-in-window-p)
5694               (forward-line (/ (static-if (featurep 'xemacs)
5695                                    (window-displayed-height)
5696                                  (1- (window-height)))
5697                                -2))
5698               (set-window-start (selected-window) (point))
5699               (goto-char group-point)))
5700         (gnus-handle-ephemeral-exit quit-config))
5701       ;; Clear the current group name.
5702       (unless quit-config
5703         (setq gnus-newsgroup-name nil)))))
5704
5705 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
5706 (defun gnus-summary-exit-no-update (&optional no-questions)
5707   "Quit reading current newsgroup without updating read article info."
5708   (interactive)
5709   (let* ((group gnus-newsgroup-name)
5710          (quit-config (gnus-group-quit-config group)))
5711     (when (or no-questions
5712               gnus-expert-user
5713               (gnus-y-or-n-p "Discard changes to this group and exit? "))
5714       (gnus-async-halt-prefetch)
5715       (mapcar 'funcall
5716               (delq 'gnus-summary-expire-articles
5717                     (copy-sequence gnus-summary-prepare-exit-hook)))
5718       ;; If we have several article buffers, we kill them at exit.
5719       (unless gnus-single-article-buffer
5720         (gnus-kill-buffer gnus-article-buffer)
5721         (gnus-kill-buffer gnus-original-article-buffer)
5722         (setq gnus-article-current nil))
5723       (if (not gnus-kill-summary-on-exit)
5724           (gnus-deaden-summary)
5725         (gnus-close-group group)
5726         (gnus-summary-clear-local-variables)
5727         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
5728           (gnus-summary-clear-local-variables))
5729         (set-buffer gnus-group-buffer)
5730         (gnus-summary-clear-local-variables)
5731         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
5732           (gnus-summary-clear-local-variables))
5733         (when (get-buffer gnus-summary-buffer)
5734           (kill-buffer gnus-summary-buffer)))
5735       (unless gnus-single-article-buffer
5736         (setq gnus-article-current nil))
5737       (when gnus-use-trees
5738         (gnus-tree-close group))
5739       (gnus-async-prefetch-remove-group group)
5740       (when (get-buffer gnus-article-buffer)
5741         (bury-buffer gnus-article-buffer))
5742       ;; Return to the group buffer.
5743       (gnus-configure-windows 'group 'force)
5744       ;; Clear the current group name.
5745       (setq gnus-newsgroup-name nil)
5746       (when (equal (gnus-group-group-name) group)
5747         (gnus-group-next-unread-group 1))
5748       (when quit-config
5749         (gnus-handle-ephemeral-exit quit-config)))))
5750
5751 (defun gnus-handle-ephemeral-exit (quit-config)
5752   "Handle movement when leaving an ephemeral group.
5753 The state which existed when entering the ephemeral is reset."
5754   (if (not (buffer-name (car quit-config)))
5755       (gnus-configure-windows 'group 'force)
5756     (set-buffer (car quit-config))
5757     (cond ((eq major-mode 'gnus-summary-mode)
5758            (gnus-set-global-variables))
5759           ((eq major-mode 'gnus-article-mode)
5760            (save-excursion
5761              ;; The `gnus-summary-buffer' variable may point
5762              ;; to the old summary buffer when using a single
5763              ;; article buffer.
5764              (unless (gnus-buffer-live-p gnus-summary-buffer)
5765                (set-buffer gnus-group-buffer))
5766              (set-buffer gnus-summary-buffer)
5767              (gnus-set-global-variables))))
5768     (if (or (eq (cdr quit-config) 'article)
5769             (eq (cdr quit-config) 'pick))
5770         (progn
5771           ;; The current article may be from the ephemeral group
5772           ;; thus it is best that we reload this article
5773           (gnus-summary-show-article)
5774           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
5775               (gnus-configure-windows 'pick 'force)
5776             (gnus-configure-windows (cdr quit-config) 'force)))
5777       (gnus-configure-windows (cdr quit-config) 'force))
5778     (when (eq major-mode 'gnus-summary-mode)
5779       (gnus-summary-next-subject 1 nil t)
5780       (gnus-summary-recenter)
5781       (gnus-summary-position-point))))
5782
5783 (defun gnus-summary-preview-mime-message ()
5784   "MIME decode and play this message."
5785   (interactive)
5786   (let ((gnus-break-pages nil)
5787         (gnus-show-mime t))
5788     (gnus-summary-select-article gnus-show-all-headers t))
5789   (select-window (get-buffer-window gnus-article-buffer)))
5790
5791 ;;; Dead summaries.
5792
5793 (defvar gnus-dead-summary-mode-map nil)
5794
5795 (unless gnus-dead-summary-mode-map
5796   (setq gnus-dead-summary-mode-map (make-keymap))
5797   (suppress-keymap gnus-dead-summary-mode-map)
5798   (substitute-key-definition
5799    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
5800   (let ((keys '("\C-d" "\r" "\177" [delete])))
5801     (while keys
5802       (define-key gnus-dead-summary-mode-map
5803         (pop keys) 'gnus-summary-wake-up-the-dead))))
5804
5805 (defvar gnus-dead-summary-mode nil
5806   "Minor mode for Gnus summary buffers.")
5807
5808 (defun gnus-dead-summary-mode (&optional arg)
5809   "Minor mode for Gnus summary buffers."
5810   (interactive "P")
5811   (when (eq major-mode 'gnus-summary-mode)
5812     (make-local-variable 'gnus-dead-summary-mode)
5813     (setq gnus-dead-summary-mode
5814           (if (null arg) (not gnus-dead-summary-mode)
5815             (> (prefix-numeric-value arg) 0)))
5816     (when gnus-dead-summary-mode
5817       (gnus-add-minor-mode
5818        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
5819
5820 (defun gnus-deaden-summary ()
5821   "Make the current summary buffer into a dead summary buffer."
5822   ;; Kill any previous dead summary buffer.
5823   (when (and gnus-dead-summary
5824              (buffer-name gnus-dead-summary))
5825     (save-excursion
5826       (set-buffer gnus-dead-summary)
5827       (when gnus-dead-summary-mode
5828         (kill-buffer (current-buffer)))))
5829   ;; Make this the current dead summary.
5830   (setq gnus-dead-summary (current-buffer))
5831   (gnus-dead-summary-mode 1)
5832   (let ((name (buffer-name)))
5833     (when (string-match "Summary" name)
5834       (rename-buffer
5835        (concat (substring name 0 (match-beginning 0)) "Dead "
5836                (substring name (match-beginning 0)))
5837        t)
5838       (bury-buffer))))
5839
5840 (defun gnus-kill-or-deaden-summary (buffer)
5841   "Kill or deaden the summary BUFFER."
5842   (save-excursion
5843     (when (and (buffer-name buffer)
5844                (not gnus-single-article-buffer))
5845       (save-excursion
5846         (set-buffer buffer)
5847         (gnus-kill-buffer gnus-article-buffer)
5848         (gnus-kill-buffer gnus-original-article-buffer)))
5849     (cond (gnus-kill-summary-on-exit
5850            (when (and gnus-use-trees
5851                       (gnus-buffer-exists-p buffer))
5852              (save-excursion
5853                (set-buffer buffer)
5854                (gnus-tree-close gnus-newsgroup-name)))
5855            (gnus-kill-buffer buffer))
5856           ((gnus-buffer-exists-p buffer)
5857            (save-excursion
5858              (set-buffer buffer)
5859              (gnus-deaden-summary))))))
5860
5861 (defun gnus-summary-wake-up-the-dead (&rest args)
5862   "Wake up the dead summary buffer."
5863   (interactive)
5864   (gnus-dead-summary-mode -1)
5865   (let ((name (buffer-name)))
5866     (when (string-match "Dead " name)
5867       (rename-buffer
5868        (concat (substring name 0 (match-beginning 0))
5869                (substring name (match-end 0)))
5870        t)))
5871   (gnus-message 3 "This dead summary is now alive again"))
5872
5873 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
5874 (defun gnus-summary-fetch-faq (&optional faq-dir)
5875   "Fetch the FAQ for the current group.
5876 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
5877 in."
5878   (interactive
5879    (list
5880     (when current-prefix-arg
5881       (completing-read
5882        "Faq dir: " (and (listp gnus-group-faq-directory)
5883                         (mapcar (lambda (file) (list file))
5884                                 gnus-group-faq-directory))))))
5885   (let (gnus-faq-buffer)
5886     (when (setq gnus-faq-buffer
5887                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
5888       (gnus-configure-windows 'summary-faq))))
5889
5890 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
5891 (defun gnus-summary-describe-group (&optional force)
5892   "Describe the current newsgroup."
5893   (interactive "P")
5894   (gnus-group-describe-group force gnus-newsgroup-name))
5895
5896 (defun gnus-summary-describe-briefly ()
5897   "Describe summary mode commands briefly."
5898   (interactive)
5899   (gnus-message 6 (substitute-command-keys "\\<gnus-summary-mode-map>\\[gnus-summary-next-page]:Select  \\[gnus-summary-next-unread-article]:Forward  \\[gnus-summary-prev-unread-article]:Backward  \\[gnus-summary-exit]:Exit  \\[gnus-info-find-node]:Run Info        \\[gnus-summary-describe-briefly]:This help")))
5900
5901 ;; Walking around group mode buffer from summary mode.
5902
5903 (defun gnus-summary-next-group (&optional no-article target-group backward)
5904   "Exit current newsgroup and then select next unread newsgroup.
5905 If prefix argument NO-ARTICLE is non-nil, no article is selected
5906 initially.  If NEXT-GROUP, go to this group.  If BACKWARD, go to
5907 previous group instead."
5908   (interactive "P")
5909   ;; Stop pre-fetching.
5910   (gnus-async-halt-prefetch)
5911   (let ((current-group gnus-newsgroup-name)
5912         (current-buffer (current-buffer))
5913         entered)
5914     ;; First we semi-exit this group to update Xrefs and all variables.
5915     ;; We can't do a real exit, because the window conf must remain
5916     ;; the same in case the user is prompted for info, and we don't
5917     ;; want the window conf to change before that...
5918     (gnus-summary-exit t)
5919     (while (not entered)
5920       ;; Then we find what group we are supposed to enter.
5921       (set-buffer gnus-group-buffer)
5922       (gnus-group-jump-to-group current-group)
5923       (setq target-group
5924             (or target-group
5925                 (if (eq gnus-keep-same-level 'best)
5926                     (gnus-summary-best-group gnus-newsgroup-name)
5927                   (gnus-summary-search-group backward gnus-keep-same-level))))
5928       (if (not target-group)
5929           ;; There are no further groups, so we return to the group
5930           ;; buffer.
5931           (progn
5932             (gnus-message 5 "Returning to the group buffer")
5933             (setq entered t)
5934             (when (gnus-buffer-live-p current-buffer)
5935               (set-buffer current-buffer)
5936               (gnus-summary-exit))
5937             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
5938         ;; We try to enter the target group.
5939         (gnus-group-jump-to-group target-group)
5940         (let ((unreads (gnus-group-group-unread)))
5941           (if (and (or (eq t unreads)
5942                        (and unreads (not (zerop unreads))))
5943                    (gnus-summary-read-group
5944                     target-group nil no-article
5945                     (and (buffer-name current-buffer) current-buffer)
5946                     nil backward))
5947               (setq entered t)
5948             (setq current-group target-group
5949                   target-group nil)))))))
5950
5951 (defun gnus-summary-prev-group (&optional no-article)
5952   "Exit current newsgroup and then select previous unread newsgroup.
5953 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
5954   (interactive "P")
5955   (gnus-summary-next-group no-article nil t))
5956
5957 ;; Walking around summary lines.
5958
5959 (defun gnus-summary-first-subject (&optional unread undownloaded)
5960   "Go to the first unread subject.
5961 If UNREAD is non-nil, go to the first unread article.
5962 Returns the article selected or nil if there are no unread articles."
5963   (interactive "P")
5964   (prog1
5965       (cond
5966        ;; Empty summary.
5967        ((null gnus-newsgroup-data)
5968         (gnus-message 3 "No articles in the group")
5969         nil)
5970        ;; Pick the first article.
5971        ((not unread)
5972         (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
5973         (gnus-data-number (car gnus-newsgroup-data)))
5974        ;; No unread articles.
5975        ((null gnus-newsgroup-unreads)
5976         (gnus-message 3 "No more unread articles")
5977         nil)
5978        ;; Find the first unread article.
5979        (t
5980         (let ((data gnus-newsgroup-data))
5981           (while (and data
5982                       (and (not (and undownloaded
5983                                      (eq gnus-undownloaded-mark
5984                                          (gnus-data-mark (car data)))))
5985                            (not (gnus-data-unread-p (car data)))))
5986             (setq data (cdr data)))
5987           (when data
5988             (goto-char (gnus-data-pos (car data)))
5989             (gnus-data-number (car data))))))
5990     (gnus-summary-position-point)))
5991
5992 (defun gnus-summary-next-subject (n &optional unread dont-display)
5993   "Go to next N'th summary line.
5994 If N is negative, go to the previous N'th subject line.
5995 If UNREAD is non-nil, only unread articles are selected.
5996 The difference between N and the actual number of steps taken is
5997 returned."
5998   (interactive "p")
5999   (let ((backward (< n 0))
6000         (n (abs n)))
6001     (while (and (> n 0)
6002                 (if backward
6003                     (gnus-summary-find-prev unread)
6004                   (gnus-summary-find-next unread)))
6005       (unless (zerop (setq n (1- n)))
6006         (gnus-summary-show-thread)))
6007     (when (/= 0 n)
6008       (gnus-message 7 "No more%s articles"
6009                     (if unread " unread" "")))
6010     (unless dont-display
6011       (gnus-summary-recenter)
6012       (gnus-summary-position-point))
6013     n))
6014
6015 (defun gnus-summary-next-unread-subject (n)
6016   "Go to next N'th unread summary line."
6017   (interactive "p")
6018   (gnus-summary-next-subject n t))
6019
6020 (defun gnus-summary-prev-subject (n &optional unread)
6021   "Go to previous N'th summary line.
6022 If optional argument UNREAD is non-nil, only unread article is selected."
6023   (interactive "p")
6024   (gnus-summary-next-subject (- n) unread))
6025
6026 (defun gnus-summary-prev-unread-subject (n)
6027   "Go to previous N'th unread summary line."
6028   (interactive "p")
6029   (gnus-summary-next-subject (- n) t))
6030
6031 (defun gnus-summary-goto-subject (article &optional force silent)
6032   "Go the subject line of ARTICLE.
6033 If FORCE, also allow jumping to articles not currently shown."
6034   (interactive "nArticle number: ")
6035   (let ((b (point))
6036         (data (gnus-data-find article)))
6037     ;; We read in the article if we have to.
6038     (and (not data)
6039          force
6040          (gnus-summary-insert-subject
6041           article
6042           (if (or (numberp force) (vectorp force)) force)
6043           t)
6044          (setq data (gnus-data-find article)))
6045     (goto-char b)
6046     (if (not data)
6047         (progn
6048           (unless silent
6049             (gnus-message 3 "Can't find article %d" article))
6050           nil)
6051       (goto-char (gnus-data-pos data))
6052       (gnus-summary-position-point)
6053       article)))
6054
6055 ;; Walking around summary lines with displaying articles.
6056
6057 (defun gnus-summary-expand-window (&optional arg)
6058   "Make the summary buffer take up the entire Emacs frame.
6059 Given a prefix, will force an `article' buffer configuration."
6060   (interactive "P")
6061   (if arg
6062       (gnus-configure-windows 'article 'force)
6063     (gnus-configure-windows 'summary 'force)))
6064
6065 (defun gnus-summary-display-article (article &optional all-header)
6066   "Display ARTICLE in article buffer."
6067   (when (gnus-buffer-live-p gnus-article-buffer)
6068     (with-current-buffer gnus-article-buffer
6069       (set-buffer-multibyte t)))
6070       (mm-enable-multibyte-mule4)))
6071   (gnus-set-global-variables)
6072   (when (gnus-buffer-live-p gnus-article-buffer)
6073     (with-current-buffer gnus-article-buffer
6074       (setq gnus-article-charset gnus-newsgroup-charset)
6075       (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)))
6076   (if (null article)
6077       nil
6078     (prog1
6079         (if gnus-summary-display-article-function
6080             (funcall gnus-summary-display-article-function article all-header)
6081           (gnus-article-prepare article all-header))
6082       (with-current-buffer gnus-article-buffer
6083         (set (make-local-variable 'gnus-summary-search-article-matched-data)
6084              nil))
6085       (gnus-run-hooks 'gnus-select-article-hook)
6086       (when (and gnus-current-article
6087                  (not (zerop gnus-current-article)))
6088         (gnus-summary-goto-subject gnus-current-article))
6089       (gnus-summary-recenter)
6090       (when (and gnus-use-trees gnus-show-threads)
6091         (gnus-possibly-generate-tree article)
6092         (gnus-highlight-selected-tree article))
6093       ;; Successfully display article.
6094       (gnus-article-set-window-start
6095        (cdr (assq article gnus-newsgroup-bookmarks))))))
6096
6097 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
6098   "Select the current article.
6099 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
6100 non-nil, the article will be re-fetched even if it already present in
6101 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
6102 be displayed."
6103   ;; Make sure we are in the summary buffer to work around bbdb bug.
6104   (unless (eq major-mode 'gnus-summary-mode)
6105     (set-buffer gnus-summary-buffer))
6106   (let ((article (or article (gnus-summary-article-number)))
6107         (all-headers (not (not all-headers))) ;Must be T or NIL.
6108         gnus-summary-display-article-function)
6109     (and (not pseudo)
6110          (gnus-summary-article-pseudo-p article)
6111          (error "This is a pseudo-article"))
6112     (save-excursion
6113       (set-buffer gnus-summary-buffer)
6114       (if (or (and gnus-single-article-buffer
6115                    (or (null gnus-current-article)
6116                        (null gnus-article-current)
6117                        (null (get-buffer gnus-article-buffer))
6118                        (not (eq article (cdr gnus-article-current)))
6119                        (not (equal (car gnus-article-current)
6120                                    gnus-newsgroup-name))))
6121               (and (not gnus-single-article-buffer)
6122                    (or (null gnus-current-article)
6123                        (not (eq gnus-current-article article))))
6124               force)
6125           ;; The requested article is different from the current article.
6126           (progn
6127             (gnus-summary-display-article article all-headers)
6128             (when (or all-headers gnus-show-all-headers)
6129               (gnus-article-show-all-headers))
6130             (gnus-article-set-window-start
6131              (cdr (assq article gnus-newsgroup-bookmarks)))
6132             article)
6133         (when (or all-headers gnus-show-all-headers)
6134           (gnus-article-show-all-headers))
6135         'old))))
6136
6137 (defun gnus-summary-force-verify-and-decrypt ()
6138   (interactive)
6139   (let ((mm-verify-option 'known)
6140         (mm-decrypt-option 'known))
6141     (gnus-summary-select-article nil 'force)))
6142
6143 (defun gnus-summary-set-current-mark (&optional current-mark)
6144   "Obsolete function."
6145   nil)
6146
6147 (defun gnus-summary-next-article (&optional unread subject backward push)
6148   "Select the next article.
6149 If UNREAD, only unread articles are selected.
6150 If SUBJECT, only articles with SUBJECT are selected.
6151 If BACKWARD, the previous article is selected instead of the next."
6152   (interactive "P")
6153   (cond
6154    ;; Is there such an article?
6155    ((and (gnus-summary-search-forward unread subject backward)
6156          (or (gnus-summary-display-article (gnus-summary-article-number))
6157              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
6158     (gnus-summary-position-point))
6159    ;; If not, we try the first unread, if that is wanted.
6160    ((and subject
6161          gnus-auto-select-same
6162          (gnus-summary-first-unread-article))
6163     (gnus-summary-position-point)
6164     (gnus-message 6 "Wrapped"))
6165    ;; Try to get next/previous article not displayed in this group.
6166    ((and gnus-auto-extend-newsgroup
6167          (not unread) (not subject))
6168     (gnus-summary-goto-article
6169      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
6170      nil (count-lines (point-min) (point))))
6171    ;; Go to next/previous group.
6172    (t
6173     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
6174       (gnus-summary-jump-to-group gnus-newsgroup-name))
6175     (let ((cmd last-command-char)
6176           (point
6177            (save-excursion
6178              (set-buffer gnus-group-buffer)
6179              (point)))
6180           (group
6181            (if (eq gnus-keep-same-level 'best)
6182                (gnus-summary-best-group gnus-newsgroup-name)
6183              (gnus-summary-search-group backward gnus-keep-same-level))))
6184       ;; For some reason, the group window gets selected.  We change
6185       ;; it back.
6186       (select-window (get-buffer-window (current-buffer)))
6187       ;; Select next unread newsgroup automagically.
6188       (cond
6189        ((or (not gnus-auto-select-next)
6190             (not cmd))
6191         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
6192        ((or (eq gnus-auto-select-next 'quietly)
6193             (and (eq gnus-auto-select-next 'slightly-quietly)
6194                  push)
6195             (and (eq gnus-auto-select-next 'almost-quietly)
6196                  (gnus-summary-last-article-p)))
6197         ;; Select quietly.
6198         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
6199             (gnus-summary-exit)
6200           (gnus-message 7 "No more%s articles (%s)..."
6201                         (if unread " unread" "")
6202                         (if group (concat "selecting " group)
6203                           "exiting"))
6204           (gnus-summary-next-group nil group backward)))
6205        (t
6206         (when (gnus-key-press-event-p last-input-event)
6207           (gnus-summary-walk-group-buffer
6208            gnus-newsgroup-name cmd unread backward point))))))))
6209
6210 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
6211   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
6212                       (?\C-p (gnus-group-prev-unread-group 1))))
6213         (cursor-in-echo-area t)
6214         keve key group ended)
6215     (save-excursion
6216       (set-buffer gnus-group-buffer)
6217       (goto-char start)
6218       (setq group
6219             (if (eq gnus-keep-same-level 'best)
6220                 (gnus-summary-best-group gnus-newsgroup-name)
6221               (gnus-summary-search-group backward gnus-keep-same-level))))
6222     (while (not ended)
6223       (gnus-message
6224        5 "No more%s articles%s" (if unread " unread" "")
6225        (if (and group
6226                 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
6227            (format " (Type %s for %s [%s])"
6228                    (single-key-description cmd) group
6229                    (car (gnus-gethash group gnus-newsrc-hashtb)))
6230          (format " (Type %s to exit %s)"
6231                  (single-key-description cmd)
6232                  gnus-newsgroup-name)))
6233       ;; Confirm auto selection.
6234       (setq key (car (setq keve (gnus-read-event-char))))
6235       (setq ended t)
6236       (cond
6237        ((assq key keystrokes)
6238         (let ((obuf (current-buffer)))
6239           (switch-to-buffer gnus-group-buffer)
6240           (when group
6241             (gnus-group-jump-to-group group))
6242           (eval (cadr (assq key keystrokes)))
6243           (setq group (gnus-group-group-name))
6244           (switch-to-buffer obuf))
6245         (setq ended nil))
6246        ((equal key cmd)
6247         (if (or (not group)
6248                 (gnus-ephemeral-group-p gnus-newsgroup-name))
6249             (gnus-summary-exit)
6250           (gnus-summary-next-group nil group backward)))
6251        (t
6252         (push (cdr keve) unread-command-events))))))
6253
6254 (defun gnus-summary-next-unread-article ()
6255   "Select unread article after current one."
6256   (interactive)
6257   (gnus-summary-next-article
6258    (or (not (eq gnus-summary-goto-unread 'never))
6259        (gnus-summary-last-article-p (gnus-summary-article-number)))
6260    (and gnus-auto-select-same
6261         (gnus-summary-article-subject))))
6262
6263 (defun gnus-summary-prev-article (&optional unread subject)
6264   "Select the article after the current one.
6265 If UNREAD is non-nil, only unread articles are selected."
6266   (interactive "P")
6267   (gnus-summary-next-article unread subject t))
6268
6269 (defun gnus-summary-prev-unread-article ()
6270   "Select unread article before current one."
6271   (interactive)
6272   (gnus-summary-prev-article
6273    (or (not (eq gnus-summary-goto-unread 'never))
6274        (gnus-summary-first-article-p (gnus-summary-article-number)))
6275    (and gnus-auto-select-same
6276         (gnus-summary-article-subject))))
6277
6278 (defun gnus-summary-next-page (&optional lines circular)
6279   "Show next page of the selected article.
6280 If at the end of the current article, select the next article.
6281 LINES says how many lines should be scrolled up.
6282
6283 If CIRCULAR is non-nil, go to the start of the article instead of
6284 selecting the next article when reaching the end of the current
6285 article."
6286   (interactive "P")
6287   (setq gnus-summary-buffer (current-buffer))
6288   (gnus-set-global-variables)
6289   (let ((article (gnus-summary-article-number))
6290         (article-window (get-buffer-window gnus-article-buffer t))
6291         endp)
6292     ;; If the buffer is empty, we have no article.
6293     (unless article
6294       (error "No article to select"))
6295     (gnus-configure-windows 'article)
6296     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
6297         (if (and (eq gnus-summary-goto-unread 'never)
6298                  (not (gnus-summary-last-article-p article)))
6299             (gnus-summary-next-article)
6300           (gnus-summary-next-unread-article))
6301       (if (or (null gnus-current-article)
6302               (null gnus-article-current)
6303               (/= article (cdr gnus-article-current))
6304               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6305           ;; Selected subject is different from current article's.
6306           (gnus-summary-display-article article)
6307         (when article-window
6308           (gnus-eval-in-buffer-window gnus-article-buffer
6309             (setq endp (gnus-article-next-page lines)))
6310           (when endp
6311             (cond (circular
6312                    (gnus-summary-beginning-of-article))
6313                   (lines
6314                    (gnus-message 3 "End of message"))
6315                   ((null lines)
6316                    (if (and (eq gnus-summary-goto-unread 'never)
6317                             (not (gnus-summary-last-article-p article)))
6318                        (gnus-summary-next-article)
6319                      (gnus-summary-next-unread-article))))))))
6320     (gnus-summary-recenter)
6321     (gnus-summary-position-point)))
6322
6323 (defun gnus-summary-prev-page (&optional lines move)
6324   "Show previous page of selected article.
6325 Argument LINES specifies lines to be scrolled down.
6326 If MOVE, move to the previous unread article if point is at
6327 the beginning of the buffer."
6328   (interactive "P")
6329   (let ((article (gnus-summary-article-number))
6330         (article-window (get-buffer-window gnus-article-buffer t))
6331         endp)
6332     (gnus-configure-windows 'article)
6333     (if (or (null gnus-current-article)
6334             (null gnus-article-current)
6335             (/= article (cdr gnus-article-current))
6336             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6337         ;; Selected subject is different from current article's.
6338         (gnus-summary-display-article article)
6339       (gnus-summary-recenter)
6340       (when article-window
6341         (gnus-eval-in-buffer-window gnus-article-buffer
6342           (setq endp (gnus-article-prev-page lines)))
6343         (when (and move endp)
6344           (cond (lines
6345                  (gnus-message 3 "Beginning of message"))
6346                 ((null lines)
6347                  (if (and (eq gnus-summary-goto-unread 'never)
6348                           (not (gnus-summary-first-article-p article)))
6349                      (gnus-summary-prev-article)
6350                    (gnus-summary-prev-unread-article))))))))
6351   (gnus-summary-position-point))
6352
6353 (defun gnus-summary-prev-page-or-article (&optional lines)
6354   "Show previous page of selected article.
6355 Argument LINES specifies lines to be scrolled down.
6356 If at the beginning of the article, go to the next article."
6357   (interactive "P")
6358   (gnus-summary-prev-page lines t))
6359
6360 (defun gnus-summary-scroll-up (lines)
6361   "Scroll up (or down) one line current article.
6362 Argument LINES specifies lines to be scrolled up (or down if negative)."
6363   (interactive "p")
6364   (gnus-configure-windows 'article)
6365   (gnus-summary-show-thread)
6366   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
6367     (gnus-eval-in-buffer-window gnus-article-buffer
6368       (cond ((> lines 0)
6369              (when (gnus-article-next-page lines)
6370                (gnus-message 3 "End of message")))
6371             ((< lines 0)
6372              (gnus-article-prev-page (- lines))))))
6373   (gnus-summary-recenter)
6374   (gnus-summary-position-point))
6375
6376 (defun gnus-summary-scroll-down (lines)
6377   "Scroll down (or up) one line current article.
6378 Argument LINES specifies lines to be scrolled down (or up if negative)."
6379   (interactive "p")
6380   (gnus-summary-scroll-up (- lines)))
6381
6382 (defun gnus-summary-next-same-subject ()
6383   "Select next article which has the same subject as current one."
6384   (interactive)
6385   (gnus-summary-next-article nil (gnus-summary-article-subject)))
6386
6387 (defun gnus-summary-prev-same-subject ()
6388   "Select previous article which has the same subject as current one."
6389   (interactive)
6390   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
6391
6392 (defun gnus-summary-next-unread-same-subject ()
6393   "Select next unread article which has the same subject as current one."
6394   (interactive)
6395   (gnus-summary-next-article t (gnus-summary-article-subject)))
6396
6397 (defun gnus-summary-prev-unread-same-subject ()
6398   "Select previous unread article which has the same subject as current one."
6399   (interactive)
6400   (gnus-summary-prev-article t (gnus-summary-article-subject)))
6401
6402 (defun gnus-summary-first-unread-article ()
6403   "Select the first unread article.
6404 Return nil if there are no unread articles."
6405   (interactive)
6406   (prog1
6407       (when (gnus-summary-first-subject t)
6408         (gnus-summary-show-thread)
6409         (gnus-summary-first-subject t)
6410         (gnus-summary-display-article (gnus-summary-article-number)))
6411     (gnus-summary-position-point)))
6412
6413 (defun gnus-summary-first-unread-subject ()
6414   "Place the point on the subject line of the first unread article.
6415 Return nil if there are no unread articles."
6416   (interactive)
6417   (prog1
6418       (when (gnus-summary-first-subject t)
6419         (gnus-summary-show-thread)
6420         (gnus-summary-first-subject t))
6421     (gnus-summary-position-point)))
6422
6423 (defun gnus-summary-first-article ()
6424   "Select the first article.
6425 Return nil if there are no articles."
6426   (interactive)
6427   (prog1
6428       (when (gnus-summary-first-subject)
6429         (gnus-summary-show-thread)
6430         (gnus-summary-first-subject)
6431         (gnus-summary-display-article (gnus-summary-article-number)))
6432     (gnus-summary-position-point)))
6433
6434 (defun gnus-summary-best-unread-article ()
6435   "Select the unread article with the highest score."
6436   (interactive)
6437   (let ((best -1000000)
6438         (data gnus-newsgroup-data)
6439         article score)
6440     (while data
6441       (and (gnus-data-unread-p (car data))
6442            (> (setq score
6443                     (gnus-summary-article-score (gnus-data-number (car data))))
6444               best)
6445            (setq best score
6446                  article (gnus-data-number (car data))))
6447       (setq data (cdr data)))
6448     (prog1
6449         (if article
6450             (gnus-summary-goto-article article)
6451           (error "No unread articles"))
6452       (gnus-summary-position-point))))
6453
6454 (defun gnus-summary-last-subject ()
6455   "Go to the last displayed subject line in the group."
6456   (let ((article (gnus-data-number (car (gnus-data-list t)))))
6457     (when article
6458       (gnus-summary-goto-subject article))))
6459
6460 (defun gnus-summary-goto-article (article &optional all-headers force)
6461   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
6462 If ALL-HEADERS is non-nil, no header lines are hidden.
6463 If FORCE, go to the article even if it isn't displayed.  If FORCE
6464 is a number, it is the line the article is to be displayed on."
6465   (interactive
6466    (list
6467     (completing-read
6468      "Article number or Message-ID: "
6469      (mapcar (lambda (number) (list (int-to-string number)))
6470              gnus-newsgroup-limit))
6471     current-prefix-arg
6472     t))
6473   (prog1
6474       (if (and (stringp article)
6475                (string-match "@" article))
6476           (gnus-summary-refer-article article)
6477         (when (stringp article)
6478           (setq article (string-to-number article)))
6479         (if (gnus-summary-goto-subject article force)
6480             (gnus-summary-display-article article all-headers)
6481           (gnus-message 4 "Couldn't go to article %s" article) nil))
6482     (gnus-summary-position-point)))
6483
6484 (defun gnus-summary-goto-last-article ()
6485   "Go to the previously read article."
6486   (interactive)
6487   (prog1
6488       (when gnus-last-article
6489         (gnus-summary-goto-article gnus-last-article nil t))
6490     (gnus-summary-position-point)))
6491
6492 (defun gnus-summary-pop-article (number)
6493   "Pop one article off the history and go to the previous.
6494 NUMBER articles will be popped off."
6495   (interactive "p")
6496   (let (to)
6497     (setq gnus-newsgroup-history
6498           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
6499     (if to
6500         (gnus-summary-goto-article (car to) nil t)
6501       (error "Article history empty")))
6502   (gnus-summary-position-point))
6503
6504 ;; Summary commands and functions for limiting the summary buffer.
6505
6506 (defun gnus-summary-limit-to-articles (n)
6507   "Limit the summary buffer to the next N articles.
6508 If not given a prefix, use the process marked articles instead."
6509   (interactive "P")
6510   (prog1
6511       (let ((articles (gnus-summary-work-articles n)))
6512         (setq gnus-newsgroup-processable nil)
6513         (gnus-summary-limit articles))
6514     (gnus-summary-position-point)))
6515
6516 (defun gnus-summary-pop-limit (&optional total)
6517   "Restore the previous limit.
6518 If given a prefix, remove all limits."
6519   (interactive "P")
6520   (when total
6521     (setq gnus-newsgroup-limits
6522           (list (mapcar (lambda (h) (mail-header-number h))
6523                         gnus-newsgroup-headers))))
6524   (unless gnus-newsgroup-limits
6525     (error "No limit to pop"))
6526   (prog1
6527       (gnus-summary-limit nil 'pop)
6528     (gnus-summary-position-point)))
6529
6530 (defun gnus-summary-limit-to-subject (subject &optional header)
6531   "Limit the summary buffer to articles that have subjects that match a regexp."
6532   (interactive "sLimit to subject (regexp): ")
6533   (unless header
6534     (setq header "subject"))
6535   (when (not (equal "" subject))
6536     (prog1
6537         (let ((articles (gnus-summary-find-matching
6538                          (or header "subject") subject 'all)))
6539           (unless articles
6540             (error "Found no matches for \"%s\"" subject))
6541           (gnus-summary-limit articles))
6542       (gnus-summary-position-point))))
6543
6544 (defun gnus-summary-limit-to-author (from)
6545   "Limit the summary buffer to articles that have authors that match a regexp."
6546   (interactive "sLimit to author (regexp): ")
6547   (gnus-summary-limit-to-subject from "from"))
6548
6549 (defun gnus-summary-limit-to-age (age &optional younger-p)
6550   "Limit the summary buffer to articles that are older than (or equal) AGE days.
6551 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
6552 articles that are younger than AGE days."
6553   (interactive
6554    (let ((younger current-prefix-arg)
6555          (days-got nil)
6556          days)
6557      (while (not days-got)
6558        (setq days (if younger
6559                       (read-string "Limit to articles within (in days): ")
6560                     (read-string "Limit to articles older than (in days): ")))
6561        (when (> (length days) 0)
6562          (setq days (read days)))
6563        (if (numberp days)
6564            (setq days-got t)
6565          (message "Please enter a number.")
6566          (sleep-for 1)))
6567      (list days younger)))
6568   (prog1
6569       (let ((data gnus-newsgroup-data)
6570             (cutoff (days-to-time age))
6571             articles d date is-younger)
6572         (while (setq d (pop data))
6573           (when (and (vectorp (gnus-data-header d))
6574                      (setq date (mail-header-date (gnus-data-header d))))
6575             (setq is-younger (time-less-p
6576                               (time-since (condition-case ()
6577                                               (date-to-time date)
6578                                             (error '(0 0))))
6579                               cutoff))
6580             (when (if younger-p
6581                       is-younger
6582                     (not is-younger))
6583               (push (gnus-data-number d) articles))))
6584         (gnus-summary-limit (nreverse articles)))
6585     (gnus-summary-position-point)))
6586
6587 (defun gnus-summary-limit-to-extra (header regexp)
6588   "Limit the summary buffer to articles that match an 'extra' header."
6589   (interactive
6590    (let ((header
6591           (intern
6592            (gnus-completing-read
6593             (symbol-name (car gnus-extra-headers))
6594             "Limit extra header:"
6595             (mapcar (lambda (x)
6596                       (cons (symbol-name x) x))
6597                     gnus-extra-headers)
6598             nil
6599             t))))
6600      (list header
6601            (read-string (format "Limit to header %s (regexp): " header)))))
6602   (when (not (equal "" regexp))
6603     (prog1
6604         (let ((articles (gnus-summary-find-matching
6605                          (cons 'extra header) regexp 'all)))
6606           (unless articles
6607             (error "Found no matches for \"%s\"" regexp))
6608           (gnus-summary-limit articles))
6609       (gnus-summary-position-point))))
6610
6611 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6612 (make-obsolete
6613  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6614
6615 (defun gnus-summary-limit-to-unread (&optional all)
6616   "Limit the summary buffer to articles that are not marked as read.
6617 If ALL is non-nil, limit strictly to unread articles."
6618   (interactive "P")
6619   (if all
6620       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
6621     (gnus-summary-limit-to-marks
6622      ;; Concat all the marks that say that an article is read and have
6623      ;; those removed.
6624      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
6625            gnus-killed-mark gnus-kill-file-mark
6626            gnus-low-score-mark gnus-expirable-mark
6627            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
6628            gnus-duplicate-mark gnus-souped-mark)
6629      'reverse)))
6630
6631 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
6632 (make-obsolete 'gnus-summary-delete-marked-with
6633                'gnus-summary-limit-exlude-marks)
6634
6635 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
6636   "Exclude articles that are marked with MARKS (e.g. \"DK\").
6637 If REVERSE, limit the summary buffer to articles that are marked
6638 with MARKS.  MARKS can either be a string of marks or a list of marks.
6639 Returns how many articles were removed."
6640   (interactive "sMarks: ")
6641   (gnus-summary-limit-to-marks marks t))
6642
6643 (defun gnus-summary-limit-to-marks (marks &optional reverse)
6644   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
6645 If REVERSE (the prefix), limit the summary buffer to articles that are
6646 not marked with MARKS.  MARKS can either be a string of marks or a
6647 list of marks.
6648 Returns how many articles were removed."
6649   (interactive "sMarks: \nP")
6650   (prog1
6651       (let ((data gnus-newsgroup-data)
6652             (marks (if (listp marks) marks
6653                      (append marks nil))) ; Transform to list.
6654             articles)
6655         (while data
6656           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
6657                   (memq (gnus-data-mark (car data)) marks))
6658             (push (gnus-data-number (car data)) articles))
6659           (setq data (cdr data)))
6660         (gnus-summary-limit articles))
6661     (gnus-summary-position-point)))
6662
6663 (defun gnus-summary-limit-to-score (&optional score)
6664   "Limit to articles with score at or above SCORE."
6665   (interactive "P")
6666   (setq score (if score
6667                   (prefix-numeric-value score)
6668                 (or gnus-summary-default-score 0)))
6669   (let ((data gnus-newsgroup-data)
6670         articles)
6671     (while data
6672       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
6673                 score)
6674         (push (gnus-data-number (car data)) articles))
6675       (setq data (cdr data)))
6676     (prog1
6677         (gnus-summary-limit articles)
6678       (gnus-summary-position-point))))
6679
6680 (defun gnus-summary-limit-include-thread (id)
6681   "Display all the hidden articles that in the current thread."
6682   (interactive (list (mail-header-id (gnus-summary-article-header))))
6683   (let ((articles (gnus-articles-in-thread
6684                    (gnus-id-to-thread (gnus-root-id id)))))
6685     (prog1
6686         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
6687       (gnus-summary-position-point))))
6688
6689 (defun gnus-summary-limit-include-dormant ()
6690   "Display all the hidden articles that are marked as dormant.
6691 Note that this command only works on a subset of the articles currently
6692 fetched for this group."
6693   (interactive)
6694   (unless gnus-newsgroup-dormant
6695     (error "There are no dormant articles in this group"))
6696   (prog1
6697       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
6698     (gnus-summary-position-point)))
6699
6700 (defun gnus-summary-limit-exclude-dormant ()
6701   "Hide all dormant articles."
6702   (interactive)
6703   (prog1
6704       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
6705     (gnus-summary-position-point)))
6706
6707 (defun gnus-summary-limit-exclude-childless-dormant ()
6708   "Hide all dormant articles that have no children."
6709   (interactive)
6710   (let ((data (gnus-data-list t))
6711         articles d children)
6712     ;; Find all articles that are either not dormant or have
6713     ;; children.
6714     (while (setq d (pop data))
6715       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
6716                 (and (setq children
6717                            (gnus-article-children (gnus-data-number d)))
6718                      (let (found)
6719                        (while children
6720                          (when (memq (car children) articles)
6721                            (setq children nil
6722                                  found t))
6723                          (pop children))
6724                        found)))
6725         (push (gnus-data-number d) articles)))
6726     ;; Do the limiting.
6727     (prog1
6728         (gnus-summary-limit articles)
6729       (gnus-summary-position-point))))
6730
6731 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
6732   "Mark all unread excluded articles as read.
6733 If ALL, mark even excluded ticked and dormants as read."
6734   (interactive "P")
6735   (let ((articles (gnus-sorted-complement
6736                    (sort
6737                     (mapcar (lambda (h) (mail-header-number h))
6738                             gnus-newsgroup-headers)
6739                     '<)
6740                    (sort gnus-newsgroup-limit '<)))
6741         article)
6742     (setq gnus-newsgroup-unreads
6743           (gnus-intersection gnus-newsgroup-unreads gnus-newsgroup-limit))
6744     (if all
6745         (setq gnus-newsgroup-dormant nil
6746               gnus-newsgroup-marked nil
6747               gnus-newsgroup-reads
6748               (nconc
6749                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
6750                gnus-newsgroup-reads))
6751       (while (setq article (pop articles))
6752         (unless (or (memq article gnus-newsgroup-dormant)
6753                     (memq article gnus-newsgroup-marked))
6754           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
6755
6756 (defun gnus-summary-limit (articles &optional pop)
6757   (if pop
6758       ;; We pop the previous limit off the stack and use that.
6759       (setq articles (car gnus-newsgroup-limits)
6760             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
6761     ;; We use the new limit, so we push the old limit on the stack.
6762     (push gnus-newsgroup-limit gnus-newsgroup-limits))
6763   ;; Set the limit.
6764   (setq gnus-newsgroup-limit articles)
6765   (let ((total (length gnus-newsgroup-data))
6766         (data (gnus-data-find-list (gnus-summary-article-number)))
6767         (gnus-summary-mark-below nil)   ; Inhibit this.
6768         found)
6769     ;; This will do all the work of generating the new summary buffer
6770     ;; according to the new limit.
6771     (gnus-summary-prepare)
6772     ;; Hide any threads, possibly.
6773     (and gnus-show-threads
6774          gnus-thread-hide-subtree
6775          (gnus-summary-hide-all-threads))
6776     ;; Try to return to the article you were at, or one in the
6777     ;; neighborhood.
6778     (when data
6779       ;; We try to find some article after the current one.
6780       (while data
6781         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
6782           (setq data nil
6783                 found t))
6784         (setq data (cdr data))))
6785     (unless found
6786       ;; If there is no data, that means that we were after the last
6787       ;; article.  The same goes when we can't find any articles
6788       ;; after the current one.
6789       (goto-char (point-max))
6790       (gnus-summary-find-prev))
6791     (gnus-set-mode-line 'summary)
6792     ;; We return how many articles were removed from the summary
6793     ;; buffer as a result of the new limit.
6794     (- total (length gnus-newsgroup-data))))
6795
6796 (defsubst gnus-invisible-cut-children (threads)
6797   (let ((num 0))
6798     (while threads
6799       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
6800         (incf num))
6801       (pop threads))
6802     (< num 2)))
6803
6804 (defsubst gnus-cut-thread (thread)
6805   "Go forwards in the thread until we find an article that we want to display."
6806   (when (or (eq gnus-fetch-old-headers 'some)
6807             (eq gnus-fetch-old-headers 'invisible)
6808             (numberp gnus-fetch-old-headers)
6809             (eq gnus-build-sparse-threads 'some)
6810             (eq gnus-build-sparse-threads 'more))
6811     ;; Deal with old-fetched headers and sparse threads.
6812     (while (and
6813             thread
6814             (or
6815              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
6816              (gnus-summary-article-ancient-p
6817               (mail-header-number (car thread))))
6818             (if (or (<= (length (cdr thread)) 1)
6819                     (eq gnus-fetch-old-headers 'invisible))
6820                 (setq gnus-newsgroup-limit
6821                       (delq (mail-header-number (car thread))
6822                             gnus-newsgroup-limit)
6823                       thread (cadr thread))
6824               (when (gnus-invisible-cut-children (cdr thread))
6825                 (let ((th (cdr thread)))
6826                   (while th
6827                     (if (memq (mail-header-number (caar th))
6828                               gnus-newsgroup-limit)
6829                         (setq thread (car th)
6830                               th nil)
6831                       (setq th (cdr th))))))))))
6832   thread)
6833
6834 (defun gnus-cut-threads (threads)
6835   "Cut off all uninteresting articles from the beginning of threads."
6836   (when (or (eq gnus-fetch-old-headers 'some)
6837             (eq gnus-fetch-old-headers 'invisible)
6838             (numberp gnus-fetch-old-headers)
6839             (eq gnus-build-sparse-threads 'some)
6840             (eq gnus-build-sparse-threads 'more))
6841     (let ((th threads))
6842       (while th
6843         (setcar th (gnus-cut-thread (car th)))
6844         (setq th (cdr th)))))
6845   ;; Remove nixed out threads.
6846   (delq nil threads))
6847
6848 (defun gnus-summary-initial-limit (&optional show-if-empty)
6849   "Figure out what the initial limit is supposed to be on group entry.
6850 This entails weeding out unwanted dormants, low-scored articles,
6851 fetch-old-headers verbiage, and so on."
6852   ;; Most groups have nothing to remove.
6853   (if (or gnus-inhibit-limiting
6854           (and (null gnus-newsgroup-dormant)
6855                (not (eq gnus-fetch-old-headers 'some))
6856                (not (numberp gnus-fetch-old-headers))
6857                (not (eq gnus-fetch-old-headers 'invisible))
6858                (null gnus-summary-expunge-below)
6859                (not (eq gnus-build-sparse-threads 'some))
6860                (not (eq gnus-build-sparse-threads 'more))
6861                (null gnus-thread-expunge-below)
6862                (not gnus-use-nocem)))
6863       ()                                ; Do nothing.
6864     (push gnus-newsgroup-limit gnus-newsgroup-limits)
6865     (setq gnus-newsgroup-limit nil)
6866     (mapatoms
6867      (lambda (node)
6868        (unless (car (symbol-value node))
6869          ;; These threads have no parents -- they are roots.
6870          (let ((nodes (cdr (symbol-value node)))
6871                thread)
6872            (while nodes
6873              (if (and gnus-thread-expunge-below
6874                       (< (gnus-thread-total-score (car nodes))
6875                          gnus-thread-expunge-below))
6876                  (gnus-expunge-thread (pop nodes))
6877                (setq thread (pop nodes))
6878                (gnus-summary-limit-children thread))))))
6879      gnus-newsgroup-dependencies)
6880     ;; If this limitation resulted in an empty group, we might
6881     ;; pop the previous limit and use it instead.
6882     (when (and (not gnus-newsgroup-limit)
6883                show-if-empty)
6884       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
6885     gnus-newsgroup-limit))
6886
6887 (defun gnus-summary-limit-children (thread)
6888   "Return 1 if this subthread is visible and 0 if it is not."
6889   ;; First we get the number of visible children to this thread.  This
6890   ;; is done by recursing down the thread using this function, so this
6891   ;; will really go down to a leaf article first, before slowly
6892   ;; working its way up towards the root.
6893   (when thread
6894     (let ((children
6895            (if (cdr thread)
6896                (apply '+ (mapcar 'gnus-summary-limit-children
6897                                  (cdr thread)))
6898              0))
6899           (number (mail-header-number (car thread)))
6900           score)
6901       (if (and
6902            (not (memq number gnus-newsgroup-marked))
6903            (or
6904             ;; If this article is dormant and has absolutely no visible
6905             ;; children, then this article isn't visible.
6906             (and (memq number gnus-newsgroup-dormant)
6907                  (zerop children))
6908             ;; If this is "fetch-old-headered" and there is no
6909             ;; visible children, then we don't want this article.
6910             (and (or (eq gnus-fetch-old-headers 'some)
6911                      (numberp gnus-fetch-old-headers))
6912                  (gnus-summary-article-ancient-p number)
6913                  (zerop children))
6914             ;; If this is "fetch-old-headered" and `invisible', then
6915             ;; we don't want this article.
6916             (and (eq gnus-fetch-old-headers 'invisible)
6917                  (gnus-summary-article-ancient-p number))
6918             ;; If this is a sparsely inserted article with no children,
6919             ;; we don't want it.
6920             (and (eq gnus-build-sparse-threads 'some)
6921                  (gnus-summary-article-sparse-p number)
6922                  (zerop children))
6923             ;; If we use expunging, and this article is really
6924             ;; low-scored, then we don't want this article.
6925             (when (and gnus-summary-expunge-below
6926                        (< (setq score
6927                                 (or (cdr (assq number gnus-newsgroup-scored))
6928                                     gnus-summary-default-score))
6929                           gnus-summary-expunge-below))
6930               ;; We increase the expunge-tally here, but that has
6931               ;; nothing to do with the limits, really.
6932               (incf gnus-newsgroup-expunged-tally)
6933               ;; We also mark as read here, if that's wanted.
6934               (when (and gnus-summary-mark-below
6935                          (< score gnus-summary-mark-below))
6936                 (setq gnus-newsgroup-unreads
6937                       (delq number gnus-newsgroup-unreads))
6938                 (if gnus-newsgroup-auto-expire
6939                     (push number gnus-newsgroup-expirable)
6940                   (push (cons number gnus-low-score-mark)
6941                         gnus-newsgroup-reads)))
6942               t)
6943             ;; Check NoCeM things.
6944             (if (and gnus-use-nocem
6945                      (gnus-nocem-unwanted-article-p
6946                       (mail-header-id (car thread))))
6947                 (progn
6948                   (setq gnus-newsgroup-unreads
6949                         (delq number gnus-newsgroup-unreads))
6950                   t))))
6951           ;; Nope, invisible article.
6952           0
6953         ;; Ok, this article is to be visible, so we add it to the limit
6954         ;; and return 1.
6955         (push number gnus-newsgroup-limit)
6956         1))))
6957
6958 (defun gnus-expunge-thread (thread)
6959   "Mark all articles in THREAD as read."
6960   (let* ((number (mail-header-number (car thread))))
6961     (incf gnus-newsgroup-expunged-tally)
6962     ;; We also mark as read here, if that's wanted.
6963     (setq gnus-newsgroup-unreads
6964           (delq number gnus-newsgroup-unreads))
6965     (if gnus-newsgroup-auto-expire
6966         (push number gnus-newsgroup-expirable)
6967       (push (cons number gnus-low-score-mark)
6968             gnus-newsgroup-reads)))
6969   ;; Go recursively through all subthreads.
6970   (mapcar 'gnus-expunge-thread (cdr thread)))
6971
6972 ;; Summary article oriented commands
6973
6974 (defun gnus-summary-refer-parent-article (n)
6975   "Refer parent article N times.
6976 If N is negative, go to ancestor -N instead.
6977 The difference between N and the number of articles fetched is returned."
6978   (interactive "p")
6979   (let ((skip 1)
6980         error header ref)
6981     (when (not (natnump n))
6982       (setq skip (abs n)
6983             n 1))
6984     (while (and (> n 0)
6985                 (not error))
6986       (setq header (gnus-summary-article-header))
6987       (if (and (eq (mail-header-number header)
6988                    (cdr gnus-article-current))
6989                (equal gnus-newsgroup-name
6990                       (car gnus-article-current)))
6991           ;; If we try to find the parent of the currently
6992           ;; displayed article, then we take a look at the actual
6993           ;; References header, since this is slightly more
6994           ;; reliable than the References field we got from the
6995           ;; server.
6996           (save-excursion
6997             (set-buffer gnus-original-article-buffer)
6998             (nnheader-narrow-to-headers)
6999             (unless (setq ref (message-fetch-field "references"))
7000               (setq ref (message-fetch-field "in-reply-to")))
7001             (widen))
7002         (setq ref
7003               ;; It's not the current article, so we take a bet on
7004               ;; the value we got from the server.
7005               (mail-header-references header)))
7006       (if (and ref
7007                (not (equal ref "")))
7008           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
7009             (gnus-message 1 "Couldn't find parent"))
7010         (gnus-message 1 "No references in article %d"
7011                       (gnus-summary-article-number))
7012         (setq error t))
7013       (decf n))
7014     (gnus-summary-position-point)
7015     n))
7016
7017 (defun gnus-summary-refer-references ()
7018   "Fetch all articles mentioned in the References header.
7019 Return the number of articles fetched."
7020   (interactive)
7021   (let ((ref (mail-header-references (gnus-summary-article-header)))
7022         (current (gnus-summary-article-number))
7023         (n 0))
7024     (if (or (not ref)
7025             (equal ref ""))
7026         (error "No References in the current article")
7027       ;; For each Message-ID in the References header...
7028       (while (string-match "<[^>]*>" ref)
7029         (incf n)
7030         ;; ... fetch that article.
7031         (gnus-summary-refer-article
7032          (prog1 (match-string 0 ref)
7033            (setq ref (substring ref (match-end 0))))))
7034       (gnus-summary-goto-subject current)
7035       (gnus-summary-position-point)
7036       n)))
7037
7038 (defun gnus-summary-refer-thread (&optional limit)
7039   "Fetch all articles in the current thread.
7040 If LIMIT (the numerical prefix), fetch that many old headers instead
7041 of what's specified by the `gnus-refer-thread-limit' variable."
7042   (interactive "P")
7043   (let ((id (mail-header-id (gnus-summary-article-header)))
7044         (limit (if limit (prefix-numeric-value limit)
7045                  gnus-refer-thread-limit)))
7046     ;; We want to fetch LIMIT *old* headers, but we also have to
7047     ;; re-fetch all the headers in the current buffer, because many of
7048     ;; them may be undisplayed.  So we adjust LIMIT.
7049     (when (numberp limit)
7050       (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin)))
7051     (unless (eq gnus-fetch-old-headers 'invisible)
7052       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
7053       ;; Retrieve the headers and read them in.
7054       (if (eq (gnus-retrieve-headers
7055                (list gnus-newsgroup-end) gnus-newsgroup-name limit)
7056               'nov)
7057           (gnus-build-all-threads)
7058         (error "Can't fetch thread from backends that don't support NOV"))
7059       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
7060     (gnus-summary-limit-include-thread id)))
7061
7062 (defun gnus-summary-refer-article (message-id)
7063   "Fetch an article specified by MESSAGE-ID."
7064   (interactive "sMessage-ID: ")
7065   (when (and (stringp message-id)
7066              (not (zerop (length message-id))))
7067     ;; Construct the correct Message-ID if necessary.
7068     ;; Suggested by tale@pawl.rpi.edu.
7069     (unless (string-match "^<" message-id)
7070       (setq message-id (concat "<" message-id)))
7071     (unless (string-match ">$" message-id)
7072       (setq message-id (concat message-id ">")))
7073     (let* ((header (gnus-id-to-header message-id))
7074            (sparse (and header
7075                         (gnus-summary-article-sparse-p
7076                          (mail-header-number header))
7077                         (memq (mail-header-number header)
7078                               gnus-newsgroup-limit)))
7079            number)
7080       (cond
7081        ;; If the article is present in the buffer we just go to it.
7082        ((and header
7083              (or (not (gnus-summary-article-sparse-p
7084                        (mail-header-number header)))
7085                  sparse))
7086         (prog1
7087             (gnus-summary-goto-article
7088              (mail-header-number header) nil t)
7089           (when sparse
7090             (gnus-summary-update-article (mail-header-number header)))))
7091        (t
7092         ;; We fetch the article.
7093         (catch 'found
7094           (dolist (gnus-override-method (gnus-refer-article-methods))
7095             (gnus-check-server gnus-override-method)
7096             ;; Fetch the header, and display the article.
7097             (when (setq number (gnus-summary-insert-subject message-id))
7098               (gnus-summary-select-article nil nil nil number)
7099               (throw 'found t)))
7100           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
7101
7102 (defun gnus-refer-article-methods ()
7103   "Return a list of referrable methods."
7104   (cond
7105    ;; No method, so we default to current and native.
7106    ((null gnus-refer-article-method)
7107     (list gnus-current-select-method gnus-select-method))
7108    ;; Current.
7109    ((eq 'current gnus-refer-article-method)
7110     (list gnus-current-select-method))
7111    ;; List of select methods.
7112    ((not (and (symbolp (car gnus-refer-article-method))
7113               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
7114     (let (out)
7115       (dolist (method gnus-refer-article-method)
7116         (push (if (eq 'current method)
7117                   gnus-current-select-method
7118                 method)
7119               out))
7120       (nreverse out)))
7121    ;; One single select method.
7122    (t
7123     (list gnus-refer-article-method))))
7124
7125 (defun gnus-summary-edit-parameters ()
7126   "Edit the group parameters of the current group."
7127   (interactive)
7128   (gnus-group-edit-group gnus-newsgroup-name 'params))
7129
7130 (defun gnus-summary-customize-parameters ()
7131   "Customize the group parameters of the current group."
7132   (interactive)
7133   (gnus-group-customize gnus-newsgroup-name))
7134
7135 (defun gnus-summary-enter-digest-group (&optional force)
7136   "Enter an nndoc group based on the current article.
7137 If FORCE, force a digest interpretation.  If not, try
7138 to guess what the document format is."
7139   (interactive "P")
7140   (let ((conf gnus-current-window-configuration))
7141     (save-excursion
7142       (gnus-summary-select-article))
7143     (setq gnus-current-window-configuration conf)
7144     (let* ((name (format "%s-%d"
7145                          (gnus-group-prefixed-name
7146                           gnus-newsgroup-name (list 'nndoc ""))
7147                          (save-excursion
7148                            (set-buffer gnus-summary-buffer)
7149                            gnus-current-article)))
7150            (ogroup gnus-newsgroup-name)
7151            (params (append (gnus-info-params (gnus-get-info ogroup))
7152                            (list (cons 'to-group ogroup))
7153                            (list (cons 'save-article-group ogroup))))
7154            (case-fold-search t)
7155            (buf (current-buffer))
7156            dig to-address)
7157       (save-excursion
7158         (set-buffer gnus-original-article-buffer)
7159         ;; Have the digest group inherit the main mail address of
7160         ;; the parent article.
7161         (when (setq to-address (or (message-fetch-field "reply-to")
7162                                    (message-fetch-field "from")))
7163           (setq params (append
7164                         (list (cons 'to-address
7165                                     (funcall gnus-decode-encoded-word-function
7166                                              to-address))))))
7167         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
7168         (insert-buffer-substring gnus-original-article-buffer)
7169         ;; Remove lines that may lead nndoc to misinterpret the
7170         ;; document type.
7171         (narrow-to-region
7172          (goto-char (point-min))
7173          (or (search-forward "\n\n" nil t) (point)))
7174         (goto-char (point-min))
7175         (delete-matching-lines "^Path:\\|^From ")
7176         (widen))
7177       (unwind-protect
7178           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
7179                     (gnus-newsgroup-ephemeral-ignored-charsets
7180                      gnus-newsgroup-ignored-charsets))
7181                 (gnus-group-read-ephemeral-group
7182                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
7183                               (nndoc-article-type
7184                                ,(if force 'mbox 'guess))) t))
7185               ;; Make all postings to this group go to the parent group.
7186               (nconc (gnus-info-params (gnus-get-info name))
7187                      params)
7188             ;; Couldn't select this doc group.
7189             (switch-to-buffer buf)
7190             (gnus-set-global-variables)
7191             (gnus-configure-windows 'summary)
7192             (gnus-message 3 "Article couldn't be entered?"))
7193         (kill-buffer dig)))))
7194
7195 (defun gnus-summary-read-document (n)
7196   "Open a new group based on the current article(s).
7197 This will allow you to read digests and other similar
7198 documents as newsgroups.
7199 Obeys the standard process/prefix convention."
7200   (interactive "P")
7201   (let* ((articles (gnus-summary-work-articles n))
7202          (ogroup gnus-newsgroup-name)
7203          (params (append (gnus-info-params (gnus-get-info ogroup))
7204                          (list (cons 'to-group ogroup))))
7205          article group egroup groups vgroup)
7206     (while (setq article (pop articles))
7207       (setq group (format "%s-%d" gnus-newsgroup-name article))
7208       (gnus-summary-remove-process-mark article)
7209       (when (gnus-summary-display-article article)
7210         (save-excursion
7211           (with-temp-buffer
7212             (insert-buffer-substring gnus-original-article-buffer)
7213             ;; Remove some headers that may lead nndoc to make
7214             ;; the wrong guess.
7215             (message-narrow-to-head)
7216             (goto-char (point-min))
7217             (delete-matching-lines "^\\(Path\\):\\|^From ")
7218             (widen)
7219             (if (setq egroup
7220                       (gnus-group-read-ephemeral-group
7221                        group `(nndoc ,group (nndoc-address ,(current-buffer))
7222                                      (nndoc-article-type guess))
7223                        t nil t))
7224                 (progn
7225                   ;; Make all postings to this group go to the parent group.
7226                   (nconc (gnus-info-params (gnus-get-info egroup))
7227                          params)
7228                   (push egroup groups))
7229               ;; Couldn't select this doc group.
7230               (gnus-error 3 "Article couldn't be entered"))))))
7231     ;; Now we have selected all the documents.
7232     (cond
7233      ((not groups)
7234       (error "None of the articles could be interpreted as documents"))
7235      ((gnus-group-read-ephemeral-group
7236        (setq vgroup (format
7237                      "nnvirtual:%s-%s" gnus-newsgroup-name
7238                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
7239        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
7240        t
7241        (cons (current-buffer) 'summary)))
7242      (t
7243       (error "Couldn't select virtual nndoc group")))))
7244
7245 (defun gnus-summary-isearch-article (&optional regexp-p)
7246   "Do incremental search forward on the current article.
7247 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
7248   (interactive "P")
7249   (let* ((gnus-inhibit-treatment t)
7250          (old (gnus-summary-select-article)))
7251     (gnus-configure-windows 'article)
7252     (gnus-eval-in-buffer-window gnus-article-buffer
7253       (save-restriction
7254         (widen)
7255         (when (eq 'old old)
7256           (gnus-article-show-all-headers))
7257         (goto-char (point-min))
7258         (isearch-forward regexp-p)))))
7259
7260 (defun gnus-summary-search-article-forward (regexp &optional backward)
7261   "Search for an article containing REGEXP forward.
7262 If BACKWARD, search backward instead."
7263   (interactive
7264    (list (read-string
7265           (format "Search article %s (regexp%s): "
7266                   (if current-prefix-arg "backward" "forward")
7267                   (if gnus-last-search-regexp
7268                       (concat ", default " gnus-last-search-regexp)
7269                     "")))
7270          current-prefix-arg))
7271   (if (string-equal regexp "")
7272       (setq regexp (or gnus-last-search-regexp ""))
7273     (setq gnus-last-search-regexp regexp)
7274     (setq gnus-article-before-search gnus-current-article))
7275   ;; Intentionally set gnus-last-article.
7276   (setq gnus-last-article gnus-article-before-search)
7277   (let ((gnus-last-article gnus-last-article))
7278     (if (gnus-summary-search-article regexp backward)
7279         (gnus-summary-show-thread)
7280       (error "Search failed: \"%s\"" regexp))))
7281
7282 (defun gnus-summary-search-article-backward (regexp)
7283   "Search for an article containing REGEXP backward."
7284   (interactive
7285    (list (read-string
7286           (format "Search article backward (regexp%s): "
7287                   (if gnus-last-search-regexp
7288                       (concat ", default " gnus-last-search-regexp)
7289                     "")))))
7290   (gnus-summary-search-article-forward regexp 'backward))
7291
7292 (eval-when-compile
7293   (defmacro gnus-summary-search-article-position-point (regexp backward)
7294     "Dehighlight the last matched text and goto the beginning position."
7295     (` (if (and gnus-summary-search-article-matched-data
7296                 (let ((text (caddr gnus-summary-search-article-matched-data))
7297                       (inhibit-read-only t)
7298                       buffer-read-only)
7299                   (delete-region
7300                    (goto-char (car gnus-summary-search-article-matched-data))
7301                    (cadr gnus-summary-search-article-matched-data))
7302                   (insert text)
7303                   (string-match (, regexp) text)))
7304            (if (, backward) (beginning-of-line) (end-of-line))
7305          (goto-char (if (, backward) (point-max) (point-min))))))
7306
7307   (defmacro gnus-summary-search-article-highlight-goto-x-face (opoint)
7308     "Place point where X-Face image is displayed."
7309     (if (featurep 'xemacs)
7310         (` (let ((end (if (search-forward "\n\n" nil t)
7311                           (goto-char (1- (point)))
7312                         (point-min)))
7313                  extent)
7314              (or (search-backward "\n\n" nil t) (goto-char (point-min)))
7315              (unless (and (re-search-forward "^From:" end t)
7316                           (setq extent (extent-at (point)))
7317                           (extent-begin-glyph extent))
7318                (goto-char (, opoint)))))
7319       (` (let ((end (if (search-forward "\n\n" nil t)
7320                         (goto-char (1- (point)))
7321                       (point-min)))
7322                (start (or (search-backward "\n\n" nil t) (point-min))))
7323            (goto-char
7324             (or (text-property-any start end 'x-face-image t);; x-face-e21
7325                 (text-property-any start end 'x-face-mule-bitmap-image t)
7326                 (, opoint)))))))
7327
7328   (defmacro gnus-summary-search-article-highlight-matched-text
7329     (backward treated x-face)
7330     "Highlight matched text in the function `gnus-summary-search-article'."
7331     (` (let ((start (set-marker (make-marker) (match-beginning 0)))
7332              (end (set-marker (make-marker) (match-end 0)))
7333              (inhibit-read-only t)
7334              buffer-read-only)
7335          (unless treated
7336            (let ((,@
7337                   (let ((items (mapcar 'car gnus-treatment-function-alist)))
7338                     (mapcar
7339                      (lambda (item) (setq items (delq item items)))
7340                      '(gnus-treat-buttonize
7341                        gnus-treat-fill-article
7342                        gnus-treat-fill-long-lines
7343                        gnus-treat-emphasize
7344                        gnus-treat-highlight-headers
7345                        gnus-treat-highlight-citation
7346                        gnus-treat-highlight-signature
7347                        gnus-treat-overstrike
7348                        gnus-treat-display-xface
7349                        gnus-treat-buttonize-head
7350                        gnus-treat-decode-article-as-default-mime-charset))
7351                     (static-if (featurep 'xemacs)
7352                         items
7353                       (cons '(x-face-mule-delete-x-face-field
7354                               (quote never))
7355                             items))))
7356                  (gnus-treat-display-xface
7357                   (when (, x-face) gnus-treat-display-xface)))
7358              (gnus-article-prepare-mime-display)))
7359          (goto-char (if (, backward) start end))
7360          (when (, x-face)
7361            (gnus-summary-search-article-highlight-goto-x-face (point)))
7362          (setq gnus-summary-search-article-matched-data
7363                (list start end (buffer-substring start end)))
7364          (unless (eq start end);; matched text has been deleted. :-<
7365            (put-text-property start end 'face
7366                               (or (find-face 'isearch)
7367                                   'secondary-selection))))))
7368   )
7369
7370 (defun gnus-summary-search-article (regexp &optional backward)
7371   "Search for an article containing REGEXP.
7372 Optional argument BACKWARD means do search for backward.
7373 `gnus-select-article-hook' is not called during the search."
7374   ;; We have to require this here to make sure that the following
7375   ;; dynamic binding isn't shadowed by autoloading.
7376   (require 'gnus-async)
7377   (require 'gnus-art)
7378   (let ((gnus-select-article-hook nil)  ;Disable hook.
7379         (gnus-article-display-hook nil)
7380         (gnus-article-prepare-hook nil)
7381         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
7382         (gnus-use-article-prefetch nil)
7383         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
7384         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
7385         (sum (current-buffer))
7386         (found nil)
7387         point treated)
7388     (gnus-save-hidden-threads
7389       (static-if (featurep 'xemacs)
7390           (let ((gnus-inhibit-treatment t))
7391             (setq treated (eq 'old (gnus-summary-select-article)))
7392             (when (and treated
7393                        (not (and (gnus-buffer-live-p gnus-article-buffer)
7394                                  (window-live-p (get-buffer-window
7395                                                  gnus-article-buffer t)))))
7396               (gnus-summary-select-article nil t)
7397               (setq treated nil)))
7398         (let ((gnus-inhibit-treatment t)
7399               (x-face-mule-delete-x-face-field 'never))
7400           (setq treated (eq 'old (gnus-summary-select-article)))
7401           (when (and treated
7402                      (not
7403                       (and (gnus-buffer-live-p gnus-article-buffer)
7404                            (window-live-p (get-buffer-window
7405                                            gnus-article-buffer t))
7406                            (or (not (string-match "^\\^X-Face:" regexp))
7407                                (with-current-buffer gnus-article-buffer
7408                                  gnus-summary-search-article-matched-data)))))
7409             (gnus-summary-select-article nil t)
7410             (setq treated nil))))
7411       (set-buffer gnus-article-buffer)
7412       (widen)
7413       (if treated
7414           (progn
7415             (gnus-article-show-all-headers)
7416             (gnus-summary-search-article-position-point regexp backward))
7417         (goto-char (if backward (point-max) (point-min))))
7418       (while (not found)
7419         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
7420         (if (if backward
7421                 (re-search-backward regexp nil t)
7422               (re-search-forward regexp nil t))
7423             ;; We found the regexp.
7424             (progn
7425               (gnus-summary-search-article-highlight-matched-text
7426                backward treated (string-match "^\\^X-Face:" regexp))
7427               (setq found 'found)
7428               (forward-line
7429                (/ (- 2 (window-height
7430                         (get-buffer-window gnus-article-buffer t)))
7431                   2))
7432               (set-window-start
7433                (get-buffer-window (current-buffer))
7434                (point))
7435               (set-buffer sum)
7436               (setq point (point)))
7437           ;; We didn't find it, so we go to the next article.
7438           (set-buffer sum)
7439           (setq found 'not)
7440           (while (eq found 'not)
7441             (if (not (if backward (gnus-summary-find-prev)
7442                        (gnus-summary-find-next)))
7443                 ;; No more articles.
7444                 (setq found t)
7445               ;; Select the next article and adjust point.
7446               (unless (gnus-summary-article-sparse-p
7447                        (gnus-summary-article-number))
7448                 (setq found nil)
7449                 (let ((gnus-inhibit-treatment t))
7450                   (gnus-summary-select-article))
7451                 (setq treated nil)
7452                 (set-buffer gnus-article-buffer)
7453                 (widen)
7454                 (goto-char (if backward (point-max) (point-min))))))))
7455       (gnus-message 7 ""))
7456     ;; Return whether we found the regexp.
7457     (when (eq found 'found)
7458       (goto-char point)
7459       (gnus-summary-show-thread)
7460       (gnus-summary-goto-subject gnus-current-article)
7461       (gnus-summary-position-point)
7462       t)))
7463
7464 (defun gnus-summary-find-matching (header regexp &optional backward unread
7465                                           not-case-fold)
7466   "Return a list of all articles that match REGEXP on HEADER.
7467 The search stars on the current article and goes forwards unless
7468 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
7469 If UNREAD is non-nil, only unread articles will
7470 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
7471 in the comparisons."
7472   (let ((data (if (eq backward 'all) gnus-newsgroup-data
7473                 (gnus-data-find-list
7474                  (gnus-summary-article-number) (gnus-data-list backward))))
7475         (case-fold-search (not not-case-fold))
7476         articles d func)
7477     (if (consp header)
7478         (if (eq (car header) 'extra)
7479             (setq func
7480                   `(lambda (h)
7481                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
7482                          "")))
7483           (error "%s is an invalid header" header))
7484       (unless (fboundp (intern (concat "mail-header-" header)))
7485         (error "%s is not a valid header" header))
7486       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
7487     (while data
7488       (setq d (car data))
7489       (and (or (not unread)             ; We want all articles...
7490                (gnus-data-unread-p d))  ; Or just unreads.
7491            (vectorp (gnus-data-header d)) ; It's not a pseudo.
7492            (string-match regexp (funcall func (gnus-data-header d))) ; Match.
7493            (push (gnus-data-number d) articles)) ; Success!
7494       (setq data (cdr data)))
7495     (nreverse articles)))
7496
7497 (defun gnus-summary-execute-command (header regexp command &optional backward)
7498   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
7499 If HEADER is an empty string (or nil), the match is done on the entire
7500 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
7501   (interactive
7502    (list (let ((completion-ignore-case t))
7503            (completing-read
7504             "Header name: "
7505             (mapcar (lambda (string) (list string))
7506                     '("Number" "Subject" "From" "Lines" "Date"
7507                       "Message-ID" "Xref" "References" "Body"))
7508             nil 'require-match))
7509          (read-string "Regexp: ")
7510          (read-key-sequence "Command: ")
7511          current-prefix-arg))
7512   (when (equal header "Body")
7513     (setq header ""))
7514   ;; Hidden thread subtrees must be searched as well.
7515   (gnus-summary-show-all-threads)
7516   ;; We don't want to change current point nor window configuration.
7517   (save-excursion
7518     (save-window-excursion
7519       (gnus-message 6 "Executing %s..." (key-description command))
7520       ;; We'd like to execute COMMAND interactively so as to give arguments.
7521       (gnus-execute header regexp
7522                     `(call-interactively ',(key-binding command))
7523                     backward)
7524       (gnus-message 6 "Executing %s...done" (key-description command)))))
7525
7526 (defun gnus-summary-beginning-of-article ()
7527   "Scroll the article back to the beginning."
7528   (interactive)
7529   (gnus-summary-select-article)
7530   (gnus-configure-windows 'article)
7531   (gnus-eval-in-buffer-window gnus-article-buffer
7532     (widen)
7533     (goto-char (point-min))
7534     (when gnus-page-broken
7535       (gnus-narrow-to-page))))
7536
7537 (defun gnus-summary-end-of-article ()
7538   "Scroll to the end of the article."
7539   (interactive)
7540   (gnus-summary-select-article)
7541   (gnus-configure-windows 'article)
7542   (gnus-eval-in-buffer-window gnus-article-buffer
7543     (widen)
7544     (goto-char (point-max))
7545     (recenter -3)
7546     (when gnus-page-broken
7547       (gnus-narrow-to-page))))
7548
7549 (defun gnus-summary-print-article (&optional filename n)
7550   "Generate and print a PostScript image of the N next (mail) articles.
7551
7552 If N is negative, print the N previous articles.  If N is nil and articles
7553 have been marked with the process mark, print these instead.
7554
7555 If the optional first argument FILENAME is nil, send the image to the
7556 printer.  If FILENAME is a string, save the PostScript image in a file with
7557 that name.  If FILENAME is a number, prompt the user for the name of the file
7558 to save in."
7559   (interactive (list (ps-print-preprint current-prefix-arg)))
7560   (dolist (article (gnus-summary-work-articles n))
7561     (gnus-summary-select-article nil nil 'pseudo article)
7562     (gnus-eval-in-buffer-window gnus-article-buffer
7563       (let ((buffer (generate-new-buffer " *print*")))
7564         (unwind-protect
7565             (progn
7566               (copy-to-buffer buffer (point-min) (point-max))
7567               (set-buffer buffer)
7568               (gnus-article-delete-invisible-text)
7569               (let ((ps-left-header
7570                      (list
7571                       (concat "("
7572                               (mail-header-subject gnus-current-headers) ")")
7573                       (concat "("
7574                               (mail-header-from gnus-current-headers) ")")))
7575                     (ps-right-header
7576                      (list
7577                       "/pagenumberstring load"
7578                       (concat "("
7579                               (mail-header-date gnus-current-headers) ")"))))
7580                 (gnus-run-hooks 'gnus-ps-print-hook)
7581                 (save-excursion
7582                   (ps-spool-buffer-with-faces))))
7583           (kill-buffer buffer))))
7584     (gnus-summary-remove-process-mark article))
7585   (ps-despool filename))
7586
7587 (defun gnus-summary-show-article (&optional arg)
7588   "Force re-fetching of the current article.
7589 If ARG (the prefix) is a number, show the article with the charset
7590 defined in `gnus-summary-show-article-charset-alist', or the charset
7591 inputed.
7592 If ARG (the prefix) is non-nil and not a number, show the raw article
7593 without any article massaging functions being run."
7594   (interactive "P")
7595   (cond
7596    ((numberp arg)
7597     (let ((gnus-newsgroup-charset
7598            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
7599                (read-coding-system "Charset: ")))
7600           (gnus-newsgroup-ignored-charsets 'gnus-all))
7601       (gnus-summary-select-article nil 'force)
7602       (let ((deps gnus-newsgroup-dependencies)
7603             head header)
7604         (save-excursion
7605           (set-buffer gnus-original-article-buffer)
7606           (save-restriction
7607             (message-narrow-to-head)
7608             (setq head (buffer-string)))
7609           (with-temp-buffer
7610             (insert (format "211 %d Article retrieved.\n"
7611                             (cdr gnus-article-current)))
7612             (insert head)
7613             (insert ".\n")
7614             (let ((nntp-server-buffer (current-buffer)))
7615               (setq header (car (gnus-get-newsgroup-headers deps t))))))
7616         (gnus-data-set-header
7617          (gnus-data-find (cdr gnus-article-current))
7618          header)
7619         (gnus-summary-update-article-line
7620          (cdr gnus-article-current) header))))
7621    ((not arg)
7622     ;; Select the article the normal way.
7623     (gnus-summary-select-article nil 'force))
7624    (t
7625     ;; We have to require this here to make sure that the following
7626     ;; dynamic binding isn't shadowed by autoloading.
7627     (require 'gnus-async)
7628     (require 'gnus-art)
7629     ;; Bind the article treatment functions to nil.
7630     (let ((gnus-have-all-headers t)
7631           gnus-article-display-hook
7632           gnus-article-prepare-hook
7633           gnus-article-decode-hook
7634           gnus-break-pages
7635           gnus-show-mime)
7636       (gnus-summary-select-article nil 'force))))
7637   (gnus-summary-goto-subject gnus-current-article)
7638   (gnus-summary-position-point))
7639
7640 (defun gnus-summary-verbose-headers (&optional arg)
7641   "Toggle permanent full header display.
7642 If ARG is a positive number, turn header display on.
7643 If ARG is a negative number, turn header display off."
7644   (interactive "P")
7645   (setq gnus-show-all-headers
7646         (cond ((or (not (numberp arg))
7647                    (zerop arg))
7648                (not gnus-show-all-headers))
7649               ((natnump arg)
7650                t)))
7651   (gnus-summary-show-article))
7652
7653 (defun gnus-summary-toggle-header (&optional arg)
7654   "Show the headers if they are hidden, or hide them if they are shown.
7655 If ARG is a positive number, show the entire header.
7656 If ARG is a negative number, hide the unwanted header lines."
7657   (interactive "P")
7658   (save-excursion
7659     (set-buffer gnus-article-buffer)
7660     (save-restriction
7661       (let* ((buffer-read-only nil)
7662              (inhibit-point-motion-hooks t)
7663              hidden e)
7664         (setq hidden
7665               (if (numberp arg)
7666                   (>= arg 0)
7667                 (save-restriction
7668                   (article-narrow-to-head)
7669                   (gnus-article-hidden-text-p 'headers))))
7670         (goto-char (point-min))
7671         (when (search-forward "\n\n" nil t)
7672           (delete-region (point-min) (1- (point))))
7673         (goto-char (point-min))
7674         (save-excursion
7675           (set-buffer gnus-original-article-buffer)
7676           (goto-char (point-min))
7677           (setq e (1- (or (search-forward "\n\n" nil t) (point-max)))))
7678         (insert-buffer-substring gnus-original-article-buffer 1 e)
7679         (save-restriction
7680           (narrow-to-region (point-min) (point))
7681           (article-decode-encoded-words)
7682           (if  hidden
7683               (let ((gnus-treat-hide-headers nil)
7684                     (gnus-treat-hide-boring-headers nil))
7685                 (setq gnus-article-wash-types
7686                       (delq 'headers gnus-article-wash-types))
7687                 (gnus-treat-article 'head))
7688             (gnus-treat-article 'head)))
7689         (gnus-set-mode-line 'article)))))
7690
7691 (defun gnus-summary-show-all-headers ()
7692   "Make all header lines visible."
7693   (interactive)
7694   (gnus-article-show-all-headers))
7695
7696 (defun gnus-summary-toggle-mime (&optional arg)
7697   "Toggle MIME processing.
7698 If ARG is a positive number, turn MIME processing on."
7699   (interactive "P")
7700   (setq gnus-show-mime
7701         (if (null arg)
7702             (not gnus-show-mime)
7703           (> (prefix-numeric-value arg) 0)))
7704   (gnus-summary-select-article t 'force))
7705
7706 (defun gnus-summary-caesar-message (&optional arg)
7707   "Caesar rotate the current article by 13.
7708 The numerical prefix specifies how many places to rotate each letter
7709 forward."
7710   (interactive "P")
7711   (gnus-summary-select-article)
7712   (let ((mail-header-separator ""))
7713     (gnus-eval-in-buffer-window gnus-article-buffer
7714       (save-restriction
7715         (widen)
7716         (let ((start (window-start))
7717               buffer-read-only)
7718           (message-caesar-buffer-body arg)
7719           (set-window-start (get-buffer-window (current-buffer)) start))))))
7720
7721 (defun gnus-summary-stop-page-breaking ()
7722   "Stop page breaking in the current article."
7723   (interactive)
7724   (gnus-summary-select-article)
7725   (gnus-eval-in-buffer-window gnus-article-buffer
7726     (widen)
7727     (when (gnus-visual-p 'page-marker)
7728       (let ((buffer-read-only nil))
7729         (gnus-remove-text-with-property 'gnus-prev)
7730         (gnus-remove-text-with-property 'gnus-next))
7731       (setq gnus-page-broken nil))))
7732
7733 (defun gnus-summary-move-article (&optional n to-newsgroup
7734                                             select-method action)
7735   "Move the current article to a different newsgroup.
7736 If N is a positive number, move the N next articles.
7737 If N is a negative number, move the N previous articles.
7738 If N is nil and any articles have been marked with the process mark,
7739 move those articles instead.
7740 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7741 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7742 re-spool using this method.
7743
7744 For this function to work, both the current newsgroup and the
7745 newsgroup that you want to move to have to support the `request-move'
7746 and `request-accept' functions.
7747
7748 ACTION can be either `move' (the default), `crosspost' or `copy'."
7749   (interactive "P")
7750   (unless action
7751     (setq action 'move))
7752   ;; Disable marking as read.
7753   (let (gnus-mark-article-hook)
7754     (save-window-excursion
7755       (gnus-summary-select-article)))
7756   ;; Check whether the source group supports the required functions.
7757   (cond ((and (eq action 'move)
7758               (not (gnus-check-backend-function
7759                     'request-move-article gnus-newsgroup-name)))
7760          (error "The current group does not support article moving"))
7761         ((and (eq action 'crosspost)
7762               (not (gnus-check-backend-function
7763                     'request-replace-article gnus-newsgroup-name)))
7764          (error "The current group does not support article editing")))
7765   (let ((articles (gnus-summary-work-articles n))
7766         (prefix (if (gnus-check-backend-function
7767                     'request-move-article gnus-newsgroup-name)
7768                     (gnus-group-real-prefix gnus-newsgroup-name)
7769                   ""))
7770         (names '((move "Move" "Moving")
7771                  (copy "Copy" "Copying")
7772                  (crosspost "Crosspost" "Crossposting")))
7773         (copy-buf (save-excursion
7774                     (nnheader-set-temp-buffer " *copy article*")))
7775         (default-marks gnus-article-mark-lists)
7776         (no-expire-marks (delete '(expirable . expire)
7777                                  (copy-sequence gnus-article-mark-lists)))
7778         art-group to-method new-xref article to-groups)
7779     (unless (assq action names)
7780       (error "Unknown action %s" action))
7781     ;; Read the newsgroup name.
7782     (when (and (not to-newsgroup)
7783                (not select-method))
7784       (setq to-newsgroup
7785             (gnus-read-move-group-name
7786              (cadr (assq action names))
7787              (symbol-value (intern (format "gnus-current-%s-group" action)))
7788              articles prefix))
7789       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
7790     (setq to-method (or select-method
7791                         (gnus-server-to-method
7792                          (gnus-group-method to-newsgroup))))
7793     ;; Check the method we are to move this article to...
7794     (unless (gnus-check-backend-function
7795              'request-accept-article (car to-method))
7796       (error "%s does not support article copying" (car to-method)))
7797     (unless (gnus-check-server to-method)
7798       (error "Can't open server %s" (car to-method)))
7799     (gnus-message 6 "%s to %s: %s..."
7800                   (caddr (assq action names))
7801                   (or (car select-method) to-newsgroup) articles)
7802     (while articles
7803       (setq article (pop articles))
7804       (setq
7805        art-group
7806        (cond
7807         ;; Move the article.
7808         ((eq action 'move)
7809          ;; Remove this article from future suppression.
7810          (gnus-dup-unsuppress-article article)
7811          (gnus-request-move-article
7812           article                       ; Article to move
7813           gnus-newsgroup-name           ; From newsgroup
7814           (nth 1 (gnus-find-method-for-group
7815                   gnus-newsgroup-name)) ; Server
7816           (list 'gnus-request-accept-article
7817                 to-newsgroup (list 'quote select-method)
7818                 (not articles) t)       ; Accept form
7819           (not articles)))              ; Only save nov last time
7820         ;; Copy the article.
7821         ((eq action 'copy)
7822          (save-excursion
7823            (set-buffer copy-buf)
7824            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
7825              (gnus-request-accept-article
7826               to-newsgroup select-method (not articles) t))))
7827         ;; Crosspost the article.
7828         ((eq action 'crosspost)
7829          (let ((xref (message-tokenize-header
7830                       (mail-header-xref (gnus-summary-article-header article))
7831                       " ")))
7832            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
7833                                   ":" article))
7834            (unless xref
7835              (setq xref (list (system-name))))
7836            (setq new-xref
7837                  (concat
7838                   (mapconcat 'identity
7839                              (delete "Xref:" (delete new-xref xref))
7840                              " ")
7841                   " " new-xref))
7842            (save-excursion
7843              (set-buffer copy-buf)
7844              ;; First put the article in the destination group.
7845              (gnus-request-article-this-buffer article gnus-newsgroup-name)
7846              (when (consp (setq art-group
7847                                 (gnus-request-accept-article
7848                                  to-newsgroup select-method (not articles))))
7849                (setq new-xref (concat new-xref " " (car art-group)
7850                                       ":" (cdr art-group)))
7851                ;; Now we have the new Xrefs header, so we insert
7852                ;; it and replace the new article.
7853                (nnheader-replace-header "Xref" new-xref)
7854                (gnus-request-replace-article
7855                 (cdr art-group) to-newsgroup (current-buffer))
7856                art-group))))))
7857       (cond
7858        ((not art-group)
7859         (gnus-message 1 "Couldn't %s article %s: %s"
7860                       (cadr (assq action names)) article
7861                       (nnheader-get-report (car to-method))))
7862        ((eq art-group 'junk)
7863         (when (eq action 'move)
7864           (gnus-summary-mark-article article gnus-canceled-mark)
7865           (gnus-message 4 "Deleted article %s" article)))
7866        (t
7867         (let* ((pto-group (gnus-group-prefixed-name
7868                            (car art-group) to-method))
7869                (entry
7870                 (gnus-gethash pto-group gnus-newsrc-hashtb))
7871                (info (nth 2 entry))
7872                (to-group (gnus-info-group info))
7873                to-marks)
7874           ;; Update the group that has been moved to.
7875           (when (and info
7876                      (memq action '(move copy)))
7877             (unless (member to-group to-groups)
7878               (push to-group to-groups))
7879
7880             (unless (memq article gnus-newsgroup-unreads)
7881               (push 'read to-marks)
7882               (gnus-info-set-read
7883                info (gnus-add-to-range (gnus-info-read info)
7884                                        (list (cdr art-group)))))
7885
7886             ;; See whether the article is to be put in the cache.
7887             (let ((marks (if (gnus-group-auto-expirable-p to-group)
7888                              default-marks
7889                            no-expire-marks))
7890                   (to-article (cdr art-group)))
7891
7892               ;; Enter the article into the cache in the new group,
7893               ;; if that is required.
7894               (when gnus-use-cache
7895                 (gnus-cache-possibly-enter-article
7896                  to-group to-article
7897                  (let ((header (copy-sequence
7898                                 (gnus-summary-article-header article))))
7899                    (mail-header-set-number header to-article)
7900                    header)
7901                  (memq article gnus-newsgroup-marked)
7902                  (memq article gnus-newsgroup-dormant)
7903                  (memq article gnus-newsgroup-unreads)))
7904
7905               (when gnus-preserve-marks
7906                 ;; Copy any marks over to the new group.
7907                 (when (and (equal to-group gnus-newsgroup-name)
7908                            (not (memq article gnus-newsgroup-unreads)))
7909                   ;; Mark this article as read in this group.
7910                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
7911                   (setcdr (gnus-active to-group) to-article)
7912                   (setcdr gnus-newsgroup-active to-article))
7913
7914                 (while marks
7915                   (when (memq article (symbol-value
7916                                        (intern (format "gnus-newsgroup-%s"
7917                                                        (caar marks)))))
7918                     (push (cdar marks) to-marks)
7919                     ;; If the other group is the same as this group,
7920                     ;; then we have to add the mark to the list.
7921                     (when (equal to-group gnus-newsgroup-name)
7922                       (set (intern (format "gnus-newsgroup-%s" (caar marks)))
7923                            (cons to-article
7924                                  (symbol-value
7925                                   (intern (format "gnus-newsgroup-%s"
7926                                                   (caar marks)))))))
7927                     ;; Copy the marks to other group.
7928                     (gnus-add-marked-articles
7929                      to-group (cdar marks) (list to-article) info))
7930                   (setq marks (cdr marks)))
7931
7932                 (gnus-request-set-mark to-group (list (list (list to-article)
7933                                                             'set
7934                                                             to-marks))))
7935
7936               (gnus-dribble-enter
7937                (concat "(gnus-group-set-info '"
7938                        (gnus-prin1-to-string (gnus-get-info to-group))
7939                        ")"))))
7940
7941           ;; Update the Xref header in this article to point to
7942           ;; the new crossposted article we have just created.
7943           (when (eq action 'crosspost)
7944             (save-excursion
7945               (set-buffer copy-buf)
7946               (gnus-request-article-this-buffer article gnus-newsgroup-name)
7947               (nnheader-replace-header "Xref" new-xref)
7948               (gnus-request-replace-article
7949                article gnus-newsgroup-name (current-buffer)))))
7950
7951         ;;;!!!Why is this necessary?
7952         (set-buffer gnus-summary-buffer)
7953
7954         (gnus-summary-goto-subject article)
7955         (when (eq action 'move)
7956           (gnus-summary-mark-article article gnus-canceled-mark))))
7957       (gnus-summary-remove-process-mark article))
7958     ;; Re-activate all groups that have been moved to.
7959     (while to-groups
7960       (save-excursion
7961         (set-buffer gnus-group-buffer)
7962         (when (gnus-group-goto-group (car to-groups) t)
7963           (gnus-group-get-new-news-this-group 1 t))
7964         (pop to-groups)))
7965
7966     (gnus-kill-buffer copy-buf)
7967     (gnus-summary-position-point)
7968     (gnus-set-mode-line 'summary)))
7969
7970 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
7971   "Move the current article to a different newsgroup.
7972 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7973 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7974 re-spool using this method."
7975   (interactive "P")
7976   (gnus-summary-move-article n to-newsgroup select-method 'copy))
7977
7978 (defun gnus-summary-crosspost-article (&optional n)
7979   "Crosspost the current article to some other group."
7980   (interactive "P")
7981   (gnus-summary-move-article n nil nil 'crosspost))
7982
7983 (defcustom gnus-summary-respool-default-method nil
7984   "Default method for respooling an article.
7985 If nil, use to the current newsgroup method."
7986   :type '(choice (gnus-select-method :value (nnml ""))
7987                  (const nil))
7988   :group 'gnus-summary-mail)
7989
7990 (defun gnus-summary-respool-article (&optional n method)
7991   "Respool the current article.
7992 The article will be squeezed through the mail spooling process again,
7993 which means that it will be put in some mail newsgroup or other
7994 depending on `nnmail-split-methods'.
7995 If N is a positive number, respool the N next articles.
7996 If N is a negative number, respool the N previous articles.
7997 If N is nil and any articles have been marked with the process mark,
7998 respool those articles instead.
7999
8000 Respooling can be done both from mail groups and \"real\" newsgroups.
8001 In the former case, the articles in question will be moved from the
8002 current group into whatever groups they are destined to.  In the
8003 latter case, they will be copied into the relevant groups."
8004   (interactive
8005    (list current-prefix-arg
8006          (let* ((methods (gnus-methods-using 'respool))
8007                 (methname
8008                  (symbol-name (or gnus-summary-respool-default-method
8009                                   (car (gnus-find-method-for-group
8010                                         gnus-newsgroup-name)))))
8011                 (method
8012                  (gnus-completing-read
8013                   methname "What backend do you want to use when respooling?"
8014                   methods nil t nil 'gnus-mail-method-history))
8015                 ms)
8016            (cond
8017             ((zerop (length (setq ms (gnus-servers-using-backend
8018                                       (intern method)))))
8019              (list (intern method) ""))
8020             ((= 1 (length ms))
8021              (car ms))
8022             (t
8023              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
8024                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
8025                            ms-alist))))))))
8026   (unless method
8027     (error "No method given for respooling"))
8028   (if (assoc (symbol-name
8029               (car (gnus-find-method-for-group gnus-newsgroup-name)))
8030              (gnus-methods-using 'respool))
8031       (gnus-summary-move-article n nil method)
8032     (gnus-summary-copy-article n nil method)))
8033
8034 (defun gnus-summary-import-article (file)
8035   "Import an arbitrary file into a mail newsgroup."
8036   (interactive "fImport file: ")
8037   (let ((group gnus-newsgroup-name)
8038         (now (current-time))
8039         atts lines)
8040     (unless (gnus-check-backend-function 'request-accept-article group)
8041       (error "%s does not support article importing" group))
8042     (or (file-readable-p file)
8043         (not (file-regular-p file))
8044         (error "Can't read %s" file))
8045     (save-excursion
8046       (set-buffer (gnus-get-buffer-create " *import file*"))
8047       (erase-buffer)
8048       (nnheader-insert-file-contents file)
8049       (goto-char (point-min))
8050       (unless (nnheader-article-p)
8051         ;; This doesn't look like an article, so we fudge some headers.
8052         (setq atts (file-attributes file)
8053               lines (count-lines (point-min) (point-max)))
8054         (insert "From: " (read-string "From: ") "\n"
8055                 "Subject: " (read-string "Subject: ") "\n"
8056                 "Date: " (message-make-date (nth 5 atts))
8057                 "\n"
8058                 "Message-ID: " (message-make-message-id) "\n"
8059                 "Lines: " (int-to-string lines) "\n"
8060                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
8061       (gnus-request-accept-article group nil t)
8062       (kill-buffer (current-buffer)))))
8063
8064 (defun gnus-summary-article-posted-p ()
8065   "Say whether the current (mail) article is available from news as well.
8066 This will be the case if the article has both been mailed and posted."
8067   (interactive)
8068   (let ((id (mail-header-references (gnus-summary-article-header)))
8069         (gnus-override-method (car (gnus-refer-article-methods))))
8070     (if (gnus-request-head id "")
8071         (gnus-message 2 "The current message was found on %s"
8072                       gnus-override-method)
8073       (gnus-message 2 "The current message couldn't be found on %s"
8074                     gnus-override-method)
8075       nil)))
8076
8077 (defun gnus-summary-expire-articles (&optional now)
8078   "Expire all articles that are marked as expirable in the current group."
8079   (interactive)
8080   (when (gnus-check-backend-function
8081          'request-expire-articles gnus-newsgroup-name)
8082     ;; This backend supports expiry.
8083     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
8084            (expirable (if total
8085                           (progn
8086                             ;; We need to update the info for
8087                             ;; this group for `gnus-list-of-read-articles'
8088                             ;; to give us the right answer.
8089                             (gnus-run-hooks 'gnus-exit-group-hook)
8090                             (gnus-summary-update-info)
8091                             (gnus-list-of-read-articles gnus-newsgroup-name))
8092                         (setq gnus-newsgroup-expirable
8093                               (sort gnus-newsgroup-expirable '<))))
8094            (expiry-wait (if now 'immediate
8095                           (gnus-group-find-parameter
8096                            gnus-newsgroup-name 'expiry-wait)))
8097            (nnmail-expiry-target
8098             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
8099                 nnmail-expiry-target))
8100            es)
8101       (when expirable
8102         ;; There are expirable articles in this group, so we run them
8103         ;; through the expiry process.
8104         (gnus-message 6 "Expiring articles...")
8105         (unless (gnus-check-group gnus-newsgroup-name)
8106           (error "Can't open server for %s" gnus-newsgroup-name))
8107         ;; The list of articles that weren't expired is returned.
8108         (save-excursion
8109           (if expiry-wait
8110               (let ((nnmail-expiry-wait-function nil)
8111                     (nnmail-expiry-wait expiry-wait))
8112                 (setq es (gnus-request-expire-articles
8113                           expirable gnus-newsgroup-name)))
8114             (setq es (gnus-request-expire-articles
8115                       expirable gnus-newsgroup-name)))
8116           (unless total
8117             (setq gnus-newsgroup-expirable es))
8118           ;; We go through the old list of expirable, and mark all
8119           ;; really expired articles as nonexistent.
8120           (unless (eq es expirable)     ;If nothing was expired, we don't mark.
8121             (let ((gnus-use-cache nil))
8122               (while expirable
8123                 (unless (memq (car expirable) es)
8124                   (when (gnus-data-find (car expirable))
8125                     (gnus-summary-mark-article
8126                      (car expirable) gnus-canceled-mark)))
8127                 (setq expirable (cdr expirable))))))
8128         (gnus-message 6 "Expiring articles...done")))))
8129
8130 (defun gnus-summary-expire-articles-now ()
8131   "Expunge all expirable articles in the current group.
8132 This means that *all* articles that are marked as expirable will be
8133 deleted forever, right now."
8134   (interactive)
8135   (or gnus-expert-user
8136       (gnus-yes-or-no-p
8137        "Are you really, really, really sure you want to delete all these messages? ")
8138       (error "Phew!"))
8139   (gnus-summary-expire-articles t))
8140
8141 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
8142 (defun gnus-summary-delete-article (&optional n)
8143   "Delete the N next (mail) articles.
8144 This command actually deletes articles.  This is not a marking
8145 command.  The article will disappear forever from your life, never to
8146 return.
8147 If N is negative, delete backwards.
8148 If N is nil and articles have been marked with the process mark,
8149 delete these instead."
8150   (interactive "P")
8151   (unless (gnus-check-backend-function 'request-expire-articles
8152                                        gnus-newsgroup-name)
8153     (error "The current newsgroup does not support article deletion"))
8154   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
8155     (error "Couldn't open server"))
8156   ;; Compute the list of articles to delete.
8157   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
8158         not-deleted)
8159     (if (and gnus-novice-user
8160              (not (gnus-yes-or-no-p
8161                    (format "Do you really want to delete %s forever? "
8162                            (if (> (length articles) 1)
8163                                (format "these %s articles" (length articles))
8164                              "this article")))))
8165         ()
8166       ;; Delete the articles.
8167       (setq not-deleted (gnus-request-expire-articles
8168                          articles gnus-newsgroup-name 'force))
8169       (while articles
8170         (gnus-summary-remove-process-mark (car articles))
8171         ;; The backend might not have been able to delete the article
8172         ;; after all.
8173         (unless (memq (car articles) not-deleted)
8174           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
8175         (setq articles (cdr articles)))
8176       (when not-deleted
8177         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
8178     (gnus-summary-position-point)
8179     (gnus-set-mode-line 'summary)
8180     not-deleted))
8181
8182 (defun gnus-summary-edit-article (&optional force)
8183   "Edit the current article.
8184 This will have permanent effect only in mail groups.
8185 If FORCE is non-nil, allow editing of articles even in read-only
8186 groups."
8187   (interactive "P")
8188   (save-excursion
8189     (set-buffer gnus-summary-buffer)
8190     (let ((mail-parse-charset gnus-newsgroup-charset)
8191           (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
8192       (gnus-set-global-variables)
8193       (when (and (not force)
8194                  (gnus-group-read-only-p))
8195         (error "The current newsgroup does not support article editing"))
8196       (gnus-summary-show-article t)
8197       (gnus-article-edit-article
8198        'ignore
8199        `(lambda (no-highlight)
8200           (let ((mail-parse-charset ',gnus-newsgroup-charset)
8201                 (message-options message-options)
8202                 (message-options-set-recipient)
8203                 (mail-parse-ignored-charsets
8204                  ',gnus-newsgroup-ignored-charsets))
8205             (gnus-summary-edit-article-done
8206              ,(or (mail-header-references gnus-current-headers) "")
8207              ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight)))))))
8208
8209 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
8210
8211 (defun gnus-summary-edit-article-done (&optional references read-only buffer
8212                                                  no-highlight)
8213   "Make edits to the current article permanent."
8214   (interactive)
8215   (save-excursion
8216     ;; The buffer restriction contains the entire article if it exists.
8217     (when (article-goto-body)
8218       (let ((lines (count-lines (point) (point-max)))
8219             (length (- (point-max) (point)))
8220             (case-fold-search t)
8221             (body (copy-marker (point))))
8222         (goto-char (point-min))
8223         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
8224           (delete-region (match-beginning 1) (match-end 1))
8225           (insert (number-to-string length)))
8226         (goto-char (point-min))
8227         (when (re-search-forward
8228                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
8229           (delete-region (match-beginning 1) (match-end 1))
8230           (insert (number-to-string length)))
8231         (goto-char (point-min))
8232         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
8233           (delete-region (match-beginning 1) (match-end 1))
8234           (insert (number-to-string lines))))))
8235   ;; Replace the article.
8236   (let ((buf (current-buffer)))
8237     (with-temp-buffer
8238       (insert-buffer-substring buf)
8239
8240       (if (and (not read-only)
8241                (not (gnus-request-replace-article
8242                      (cdr gnus-article-current) (car gnus-article-current)
8243                      (current-buffer) t)))
8244           (error "Couldn't replace article")
8245         ;; Update the summary buffer.
8246         (if (and references
8247                  (equal (message-tokenize-header references " ")
8248                         (message-tokenize-header
8249                          (or (message-fetch-field "references") "") " ")))
8250             ;; We only have to update this line.
8251             (save-excursion
8252               (save-restriction
8253                 (message-narrow-to-head)
8254                 (let ((head (buffer-string))
8255                       header)
8256                   (with-temp-buffer
8257                     (insert (format "211 %d Article retrieved.\n"
8258                                     (cdr gnus-article-current)))
8259                     (insert head)
8260                     (insert ".\n")
8261                     (let ((nntp-server-buffer (current-buffer)))
8262                       (setq header (car (gnus-get-newsgroup-headers
8263                                          (save-excursion
8264                                            (set-buffer gnus-summary-buffer)
8265                                            gnus-newsgroup-dependencies)
8266                                          t))))
8267                     (save-excursion
8268                       (set-buffer gnus-summary-buffer)
8269                       (gnus-data-set-header
8270                        (gnus-data-find (cdr gnus-article-current))
8271                        header)
8272                       (gnus-summary-update-article-line
8273                        (cdr gnus-article-current) header))))))
8274           ;; Update threads.
8275           (set-buffer (or buffer gnus-summary-buffer))
8276           (gnus-summary-update-article (cdr gnus-article-current)))
8277         ;; Prettify the article buffer again.
8278         (unless no-highlight
8279           (save-excursion
8280             (set-buffer gnus-article-buffer)
8281             ;;;!!! Fix this -- article should be rehighlighted.
8282             ;;;(gnus-run-hooks 'gnus-article-display-hook)
8283             (set-buffer gnus-original-article-buffer)
8284             (gnus-request-article
8285              (cdr gnus-article-current)
8286              (car gnus-article-current) (current-buffer))))
8287         ;; Prettify the summary buffer line.
8288         (when (gnus-visual-p 'summary-highlight 'highlight)
8289           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
8290
8291 (defun gnus-summary-edit-wash (key)
8292   "Perform editing command KEY in the article buffer."
8293   (interactive
8294    (list
8295     (progn
8296       (message "%s" (concat (this-command-keys) "- "))
8297       (read-char))))
8298   (message "")
8299   (gnus-summary-edit-article)
8300   (execute-kbd-macro (concat (this-command-keys) key))
8301   (gnus-article-edit-done))
8302
8303 ;;; Respooling
8304
8305 (defun gnus-summary-respool-query (&optional silent trace)
8306   "Query where the respool algorithm would put this article."
8307   (interactive)
8308   (let (gnus-mark-article-hook)
8309     (gnus-summary-select-article)
8310     (save-excursion
8311       (set-buffer gnus-original-article-buffer)
8312       (save-restriction
8313         (message-narrow-to-head)
8314         (let ((groups (nnmail-article-group 'identity trace)))
8315           (unless silent
8316             (if groups
8317                 (message "This message would go to %s"
8318                          (mapconcat 'car groups ", "))
8319               (message "This message would go to no groups"))
8320             groups))))))
8321
8322 (defun gnus-summary-respool-trace ()
8323   "Trace where the respool algorithm would put this article.
8324 Display a buffer showing all fancy splitting patterns which matched."
8325   (interactive)
8326   (gnus-summary-respool-query nil t))
8327
8328 ;; Summary marking commands.
8329
8330 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
8331   "Mark articles which has the same subject as read, and then select the next.
8332 If UNMARK is positive, remove any kind of mark.
8333 If UNMARK is negative, tick articles."
8334   (interactive "P")
8335   (when unmark
8336     (setq unmark (prefix-numeric-value unmark)))
8337   (let ((count
8338          (gnus-summary-mark-same-subject
8339           (gnus-summary-article-subject) unmark)))
8340     ;; Select next unread article.  If auto-select-same mode, should
8341     ;; select the first unread article.
8342     (gnus-summary-next-article t (and gnus-auto-select-same
8343                                       (gnus-summary-article-subject)))
8344     (gnus-message 7 "%d article%s marked as %s"
8345                   count (if (= count 1) " is" "s are")
8346                   (if unmark "unread" "read"))))
8347
8348 (defun gnus-summary-kill-same-subject (&optional unmark)
8349   "Mark articles which has the same subject as read.
8350 If UNMARK is positive, remove any kind of mark.
8351 If UNMARK is negative, tick articles."
8352   (interactive "P")
8353   (when unmark
8354     (setq unmark (prefix-numeric-value unmark)))
8355   (let ((count
8356          (gnus-summary-mark-same-subject
8357           (gnus-summary-article-subject) unmark)))
8358     ;; If marked as read, go to next unread subject.
8359     (when (null unmark)
8360       ;; Go to next unread subject.
8361       (gnus-summary-next-subject 1 t))
8362     (gnus-message 7 "%d articles are marked as %s"
8363                   count (if unmark "unread" "read"))))
8364
8365 (defun gnus-summary-mark-same-subject (subject &optional unmark)
8366   "Mark articles with same SUBJECT as read, and return marked number.
8367 If optional argument UNMARK is positive, remove any kinds of marks.
8368 If optional argument UNMARK is negative, mark articles as unread instead."
8369   (let ((count 1))
8370     (save-excursion
8371       (cond
8372        ((null unmark)                   ; Mark as read.
8373         (while (and
8374                 (progn
8375                   (gnus-summary-mark-article-as-read gnus-killed-mark)
8376                   (gnus-summary-show-thread) t)
8377                 (gnus-summary-find-subject subject))
8378           (setq count (1+ count))))
8379        ((> unmark 0)                    ; Tick.
8380         (while (and
8381                 (progn
8382                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
8383                   (gnus-summary-show-thread) t)
8384                 (gnus-summary-find-subject subject))
8385           (setq count (1+ count))))
8386        (t                               ; Mark as unread.
8387         (while (and
8388                 (progn
8389                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
8390                   (gnus-summary-show-thread) t)
8391                 (gnus-summary-find-subject subject))
8392           (setq count (1+ count)))))
8393       (gnus-set-mode-line 'summary)
8394       ;; Return the number of marked articles.
8395       count)))
8396
8397 (defun gnus-summary-mark-as-processable (n &optional unmark)
8398   "Set the process mark on the next N articles.
8399 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
8400 the process mark instead.  The difference between N and the actual
8401 number of articles marked is returned."
8402   (interactive "p")
8403   (let ((backward (< n 0))
8404         (n (abs n)))
8405     (while (and
8406             (> n 0)
8407             (if unmark
8408                 (gnus-summary-remove-process-mark
8409                  (gnus-summary-article-number))
8410               (gnus-summary-set-process-mark (gnus-summary-article-number)))
8411             (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
8412       (setq n (1- n)))
8413     (when (/= 0 n)
8414       (gnus-message 7 "No more articles"))
8415     (gnus-summary-recenter)
8416     (gnus-summary-position-point)
8417     n))
8418
8419 (defun gnus-summary-unmark-as-processable (n)
8420   "Remove the process mark from the next N articles.
8421 If N is negative, unmark backward instead.  The difference between N and
8422 the actual number of articles unmarked is returned."
8423   (interactive "p")
8424   (gnus-summary-mark-as-processable n t))
8425
8426 (defun gnus-summary-unmark-all-processable ()
8427   "Remove the process mark from all articles."
8428   (interactive)
8429   (save-excursion
8430     (while gnus-newsgroup-processable
8431       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
8432   (gnus-summary-position-point))
8433
8434 (defun gnus-summary-add-mark (article type)
8435   "Mark ARTICLE with a mark of TYPE."
8436   (let ((vtype (car (assq type gnus-article-mark-lists)))
8437         var)
8438     (if (not vtype)
8439         (error "No such mark type: %s" type)
8440       (setq var (intern (format "gnus-newsgroup-%s" type)))
8441       (set var (cons article (symbol-value var)))
8442       (if (memq type '(processable cached replied saved))
8443           (gnus-summary-update-secondary-mark article)
8444         ;;; !!! This is bobus.  We should find out what primary
8445         ;;; !!! mark we want to set.
8446         (gnus-summary-update-mark gnus-del-mark 'unread)))))
8447
8448 (defun gnus-summary-mark-as-expirable (n)
8449   "Mark N articles forward as expirable.
8450 If N is negative, mark backward instead.  The difference between N and
8451 the actual number of articles marked is returned."
8452   (interactive "p")
8453   (gnus-summary-mark-forward n gnus-expirable-mark))
8454
8455 (defun gnus-summary-mark-article-as-replied (article)
8456   "Mark ARTICLE replied and update the summary line."
8457   (push article gnus-newsgroup-replied)
8458   (let ((buffer-read-only nil))
8459     (when (gnus-summary-goto-subject article nil t)
8460       (gnus-summary-update-secondary-mark article))))
8461
8462 (defun gnus-summary-set-bookmark (article)
8463   "Set a bookmark in current article."
8464   (interactive (list (gnus-summary-article-number)))
8465   (when (or (not (get-buffer gnus-article-buffer))
8466             (not gnus-current-article)
8467             (not gnus-article-current)
8468             (not (equal gnus-newsgroup-name (car gnus-article-current))))
8469     (error "No current article selected"))
8470   ;; Remove old bookmark, if one exists.
8471   (let ((old (assq article gnus-newsgroup-bookmarks)))
8472     (when old
8473       (setq gnus-newsgroup-bookmarks
8474             (delq old gnus-newsgroup-bookmarks))))
8475   ;; Set the new bookmark, which is on the form
8476   ;; (article-number . line-number-in-body).
8477   (push
8478    (cons article
8479          (save-excursion
8480            (set-buffer gnus-article-buffer)
8481            (count-lines
8482             (min (point)
8483                  (save-excursion
8484                    (goto-char (point-min))
8485                    (search-forward "\n\n" nil t)
8486                    (point)))
8487             (point))))
8488    gnus-newsgroup-bookmarks)
8489   (gnus-message 6 "A bookmark has been added to the current article."))
8490
8491 (defun gnus-summary-remove-bookmark (article)
8492   "Remove the bookmark from the current article."
8493   (interactive (list (gnus-summary-article-number)))
8494   ;; Remove old bookmark, if one exists.
8495   (let ((old (assq article gnus-newsgroup-bookmarks)))
8496     (if old
8497         (progn
8498           (setq gnus-newsgroup-bookmarks
8499                 (delq old gnus-newsgroup-bookmarks))
8500           (gnus-message 6 "Removed bookmark."))
8501       (gnus-message 6 "No bookmark in current article."))))
8502
8503 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8504 (defun gnus-summary-mark-as-dormant (n)
8505   "Mark N articles forward as dormant.
8506 If N is negative, mark backward instead.  The difference between N and
8507 the actual number of articles marked is returned."
8508   (interactive "p")
8509   (gnus-summary-mark-forward n gnus-dormant-mark))
8510
8511 (defun gnus-summary-set-process-mark (article)
8512   "Set the process mark on ARTICLE and update the summary line."
8513   (setq gnus-newsgroup-processable
8514         (cons article
8515               (delq article gnus-newsgroup-processable)))
8516   (when (gnus-summary-goto-subject article)
8517     (gnus-summary-show-thread)
8518     (gnus-summary-goto-subject article)
8519     (gnus-summary-update-secondary-mark article)))
8520
8521 (defun gnus-summary-remove-process-mark (article)
8522   "Remove the process mark from ARTICLE and update the summary line."
8523   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
8524   (when (gnus-summary-goto-subject article)
8525     (gnus-summary-show-thread)
8526     (gnus-summary-goto-subject article)
8527     (gnus-summary-update-secondary-mark article)))
8528
8529 (defun gnus-summary-set-saved-mark (article)
8530   "Set the process mark on ARTICLE and update the summary line."
8531   (push article gnus-newsgroup-saved)
8532   (when (gnus-summary-goto-subject article)
8533     (gnus-summary-update-secondary-mark article)))
8534
8535 (defun gnus-summary-mark-forward (n &optional mark no-expire)
8536   "Mark N articles as read forwards.
8537 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
8538 The difference between N and the actual number of articles marked is
8539 returned.
8540 Iff NO-EXPIRE, auto-expiry will be inhibited."
8541   (interactive "p")
8542   (gnus-summary-show-thread)
8543   (let ((backward (< n 0))
8544         (gnus-summary-goto-unread
8545          (and gnus-summary-goto-unread
8546               (not (eq gnus-summary-goto-unread 'never))
8547               (not (memq mark (list gnus-unread-mark
8548                                     gnus-ticked-mark gnus-dormant-mark)))))
8549         (n (abs n))
8550         (mark (or mark gnus-del-mark)))
8551     (while (and (> n 0)
8552                 (gnus-summary-mark-article nil mark no-expire)
8553                 (zerop (gnus-summary-next-subject
8554                         (if backward -1 1)
8555                         (and gnus-summary-goto-unread
8556                              (not (eq gnus-summary-goto-unread 'never)))
8557                         t)))
8558       (setq n (1- n)))
8559     (when (/= 0 n)
8560       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
8561     (gnus-summary-recenter)
8562     (gnus-summary-position-point)
8563     (gnus-set-mode-line 'summary)
8564     n))
8565
8566 (defun gnus-summary-mark-article-as-read (mark)
8567   "Mark the current article quickly as read with MARK."
8568   (let ((article (gnus-summary-article-number)))
8569     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8570     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8571     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8572     (push (cons article mark) gnus-newsgroup-reads)
8573     ;; Possibly remove from cache, if that is used.
8574     (when gnus-use-cache
8575       (gnus-cache-enter-remove-article article))
8576     ;; Allow the backend to change the mark.
8577     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8578     ;; Check for auto-expiry.
8579     (when (and gnus-newsgroup-auto-expire
8580                (memq mark gnus-auto-expirable-marks))
8581       (setq mark gnus-expirable-mark)
8582       ;; Let the backend know about the mark change.
8583       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8584       (push article gnus-newsgroup-expirable))
8585     ;; Set the mark in the buffer.
8586     (gnus-summary-update-mark mark 'unread)
8587     t))
8588
8589 (defun gnus-summary-mark-article-as-unread (mark)
8590   "Mark the current article quickly as unread with MARK."
8591   (let* ((article (gnus-summary-article-number))
8592          (old-mark (gnus-summary-article-mark article)))
8593     ;; Allow the backend to change the mark.
8594     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8595     (if (eq mark old-mark)
8596         t
8597       (if (<= article 0)
8598           (progn
8599             (gnus-error 1 "Can't mark negative article numbers")
8600             nil)
8601         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8602         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8603         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
8604         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
8605         (cond ((= mark gnus-ticked-mark)
8606                (push article gnus-newsgroup-marked))
8607               ((= mark gnus-dormant-mark)
8608                (push article gnus-newsgroup-dormant))
8609               (t
8610                (push article gnus-newsgroup-unreads)))
8611         (gnus-pull article gnus-newsgroup-reads)
8612
8613         ;; See whether the article is to be put in the cache.
8614         (and gnus-use-cache
8615              (vectorp (gnus-summary-article-header article))
8616              (save-excursion
8617                (gnus-cache-possibly-enter-article
8618                 gnus-newsgroup-name article
8619                 (gnus-summary-article-header article)
8620                 (= mark gnus-ticked-mark)
8621                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8622
8623         ;; Fix the mark.
8624         (gnus-summary-update-mark mark 'unread)
8625         t))))
8626
8627 (defun gnus-summary-mark-article (&optional article mark no-expire)
8628   "Mark ARTICLE with MARK.  MARK can be any character.
8629 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
8630 `??' (dormant) and `?E' (expirable).
8631 If MARK is nil, then the default character `?r' is used.
8632 If ARTICLE is nil, then the article on the current line will be
8633 marked.
8634 Iff NO-EXPIRE, auto-expiry will be inhibited."
8635   ;; The mark might be a string.
8636   (when (stringp mark)
8637     (setq mark (aref mark 0)))
8638   ;; If no mark is given, then we check auto-expiring.
8639   (when (null mark)
8640     (setq mark gnus-del-mark))
8641   (when (and (not no-expire)
8642              gnus-newsgroup-auto-expire
8643              (memq mark gnus-auto-expirable-marks))
8644     (setq mark gnus-expirable-mark))
8645   (let ((article (or article (gnus-summary-article-number)))
8646         (old-mark (gnus-summary-article-mark article)))
8647     ;; Allow the backend to change the mark.
8648     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8649     (if (eq mark old-mark)
8650         t
8651       (unless article
8652         (error "No article on current line"))
8653       (if (not (if (or (= mark gnus-unread-mark)
8654                        (= mark gnus-ticked-mark)
8655                        (= mark gnus-dormant-mark))
8656                    (gnus-mark-article-as-unread article mark)
8657                  (gnus-mark-article-as-read article mark)))
8658           t
8659         ;; See whether the article is to be put in the cache.
8660         (and gnus-use-cache
8661              (not (= mark gnus-canceled-mark))
8662              (vectorp (gnus-summary-article-header article))
8663              (save-excursion
8664                (gnus-cache-possibly-enter-article
8665                 gnus-newsgroup-name article
8666                 (gnus-summary-article-header article)
8667                 (= mark gnus-ticked-mark)
8668                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8669
8670         (when (gnus-summary-goto-subject article nil t)
8671           (let ((buffer-read-only nil))
8672             (gnus-summary-show-thread)
8673             ;; Fix the mark.
8674             (gnus-summary-update-mark mark 'unread)
8675             t))))))
8676
8677 (defun gnus-summary-update-secondary-mark (article)
8678   "Update the secondary (read, process, cache) mark."
8679   (gnus-summary-update-mark
8680    (cond ((memq article gnus-newsgroup-processable)
8681           gnus-process-mark)
8682          ((memq article gnus-newsgroup-cached)
8683           gnus-cached-mark)
8684          ((memq article gnus-newsgroup-replied)
8685           gnus-replied-mark)
8686          ((memq article gnus-newsgroup-saved)
8687           gnus-saved-mark)
8688          (t gnus-no-mark))
8689    'replied)
8690   (when (gnus-visual-p 'summary-highlight 'highlight)
8691     (gnus-run-hooks 'gnus-summary-update-hook))
8692   t)
8693
8694 (defun gnus-summary-update-mark (mark type)
8695   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
8696         (buffer-read-only nil))
8697     (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
8698     (when forward
8699       (when (looking-at "\r")
8700         (incf forward))
8701       (when (<= (+ forward (point)) (point-max))
8702         ;; Go to the right position on the line.
8703         (goto-char (+ forward (point)))
8704         ;; Replace the old mark with the new mark.
8705         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
8706         ;; Optionally update the marks by some user rule.
8707         (when (eq type 'unread)
8708           (gnus-data-set-mark
8709            (gnus-data-find (gnus-summary-article-number)) mark)
8710           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
8711
8712 (defun gnus-mark-article-as-read (article &optional mark)
8713   "Enter ARTICLE in the pertinent lists and remove it from others."
8714   ;; Make the article expirable.
8715   (let ((mark (or mark gnus-del-mark)))
8716     (if (= mark gnus-expirable-mark)
8717         (push article gnus-newsgroup-expirable)
8718       (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)))
8719     ;; Remove from unread and marked lists.
8720     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8721     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8722     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8723     (push (cons article mark) gnus-newsgroup-reads)
8724     ;; Possibly remove from cache, if that is used.
8725     (when gnus-use-cache
8726       (gnus-cache-enter-remove-article article))
8727     t))
8728
8729 (defun gnus-mark-article-as-unread (article &optional mark)
8730   "Enter ARTICLE in the pertinent lists and remove it from others."
8731   (let ((mark (or mark gnus-ticked-mark)))
8732     (if (<= article 0)
8733         (progn
8734           (gnus-error 1 "Can't mark negative article numbers")
8735           nil)
8736       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
8737             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
8738             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
8739             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8740
8741       ;; Unsuppress duplicates?
8742       (when gnus-suppress-duplicates
8743         (gnus-dup-unsuppress-article article))
8744
8745       (cond ((= mark gnus-ticked-mark)
8746              (push article gnus-newsgroup-marked))
8747             ((= mark gnus-dormant-mark)
8748              (push article gnus-newsgroup-dormant))
8749             (t
8750              (push article gnus-newsgroup-unreads)))
8751       (gnus-pull article gnus-newsgroup-reads)
8752       t)))
8753
8754 (defalias 'gnus-summary-mark-as-unread-forward
8755   'gnus-summary-tick-article-forward)
8756 (make-obsolete 'gnus-summary-mark-as-unread-forward
8757                'gnus-summary-tick-article-forward)
8758 (defun gnus-summary-tick-article-forward (n)
8759   "Tick N articles forwards.
8760 If N is negative, tick backwards instead.
8761 The difference between N and the number of articles ticked is returned."
8762   (interactive "p")
8763   (gnus-summary-mark-forward n gnus-ticked-mark))
8764
8765 (defalias 'gnus-summary-mark-as-unread-backward
8766   'gnus-summary-tick-article-backward)
8767 (make-obsolete 'gnus-summary-mark-as-unread-backward
8768                'gnus-summary-tick-article-backward)
8769 (defun gnus-summary-tick-article-backward (n)
8770   "Tick N articles backwards.
8771 The difference between N and the number of articles ticked is returned."
8772   (interactive "p")
8773   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
8774
8775 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8776 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8777 (defun gnus-summary-tick-article (&optional article clear-mark)
8778   "Mark current article as unread.
8779 Optional 1st argument ARTICLE specifies article number to be marked as unread.
8780 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
8781   (interactive)
8782   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
8783                                        gnus-ticked-mark)))
8784
8785 (defun gnus-summary-mark-as-read-forward (n)
8786   "Mark N articles as read forwards.
8787 If N is negative, mark backwards instead.
8788 The difference between N and the actual number of articles marked is
8789 returned."
8790   (interactive "p")
8791   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
8792
8793 (defun gnus-summary-mark-as-read-backward (n)
8794   "Mark the N articles as read backwards.
8795 The difference between N and the actual number of articles marked is
8796 returned."
8797   (interactive "p")
8798   (gnus-summary-mark-forward
8799    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
8800
8801 (defun gnus-summary-mark-as-read (&optional article mark)
8802   "Mark current article as read.
8803 ARTICLE specifies the article to be marked as read.
8804 MARK specifies a string to be inserted at the beginning of the line."
8805   (gnus-summary-mark-article article mark))
8806
8807 (defun gnus-summary-clear-mark-forward (n)
8808   "Clear marks from N articles forward.
8809 If N is negative, clear backward instead.
8810 The difference between N and the number of marks cleared is returned."
8811   (interactive "p")
8812   (gnus-summary-mark-forward n gnus-unread-mark))
8813
8814 (defun gnus-summary-clear-mark-backward (n)
8815   "Clear marks from N articles backward.
8816 The difference between N and the number of marks cleared is returned."
8817   (interactive "p")
8818   (gnus-summary-mark-forward (- n) gnus-unread-mark))
8819
8820 (defun gnus-summary-mark-unread-as-read ()
8821   "Intended to be used by `gnus-summary-mark-article-hook'."
8822   (when (memq gnus-current-article gnus-newsgroup-unreads)
8823     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
8824
8825 (defun gnus-summary-mark-read-and-unread-as-read ()
8826   "Intended to be used by `gnus-summary-mark-article-hook'."
8827   (let ((mark (gnus-summary-article-mark)))
8828     (when (or (gnus-unread-mark-p mark)
8829               (gnus-read-mark-p mark))
8830       (gnus-summary-mark-article gnus-current-article gnus-read-mark))))
8831
8832 (defun gnus-summary-mark-unread-as-ticked ()
8833    "Intended to be used by `gnus-summary-mark-article-hook'."
8834   (when (memq gnus-current-article gnus-newsgroup-unreads)
8835     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
8836
8837 (defun gnus-summary-mark-region-as-read (point mark all)
8838   "Mark all unread articles between point and mark as read.
8839 If given a prefix, mark all articles between point and mark as read,
8840 even ticked and dormant ones."
8841   (interactive "r\nP")
8842   (save-excursion
8843     (let (article)
8844       (goto-char point)
8845       (beginning-of-line)
8846       (while (and
8847               (< (point) mark)
8848               (progn
8849                 (when (or all
8850                           (memq (setq article (gnus-summary-article-number))
8851                                 gnus-newsgroup-unreads))
8852                   (gnus-summary-mark-article article gnus-del-mark))
8853                 t)
8854               (gnus-summary-find-next))))))
8855
8856 (defun gnus-summary-mark-below (score mark)
8857   "Mark articles with score less than SCORE with MARK."
8858   (interactive "P\ncMark: ")
8859   (setq score (if score
8860                   (prefix-numeric-value score)
8861                 (or gnus-summary-default-score 0)))
8862   (save-excursion
8863     (set-buffer gnus-summary-buffer)
8864     (goto-char (point-min))
8865     (while
8866         (progn
8867           (and (< (gnus-summary-article-score) score)
8868                (gnus-summary-mark-article nil mark))
8869           (gnus-summary-find-next)))))
8870
8871 (defun gnus-summary-kill-below (&optional score)
8872   "Mark articles with score below SCORE as read."
8873   (interactive "P")
8874   (gnus-summary-mark-below score gnus-killed-mark))
8875
8876 (defun gnus-summary-clear-above (&optional score)
8877   "Clear all marks from articles with score above SCORE."
8878   (interactive "P")
8879   (gnus-summary-mark-above score gnus-unread-mark))
8880
8881 (defun gnus-summary-tick-above (&optional score)
8882   "Tick all articles with score above SCORE."
8883   (interactive "P")
8884   (gnus-summary-mark-above score gnus-ticked-mark))
8885
8886 (defun gnus-summary-mark-above (score mark)
8887   "Mark articles with score over SCORE with MARK."
8888   (interactive "P\ncMark: ")
8889   (setq score (if score
8890                   (prefix-numeric-value score)
8891                 (or gnus-summary-default-score 0)))
8892   (save-excursion
8893     (set-buffer gnus-summary-buffer)
8894     (goto-char (point-min))
8895     (while (and (progn
8896                   (when (> (gnus-summary-article-score) score)
8897                     (gnus-summary-mark-article nil mark))
8898                   t)
8899                 (gnus-summary-find-next)))))
8900
8901 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8902 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
8903 (defun gnus-summary-limit-include-expunged (&optional no-error)
8904   "Display all the hidden articles that were expunged for low scores."
8905   (interactive)
8906   (let ((buffer-read-only nil))
8907     (let ((scored gnus-newsgroup-scored)
8908           headers h)
8909       (while scored
8910         (unless (gnus-number-to-header (caar scored))
8911           (and (setq h (gnus-summary-article-header (caar scored)))
8912                (< (cdar scored) gnus-summary-expunge-below)
8913                (push h headers)))
8914         (setq scored (cdr scored)))
8915       (if (not headers)
8916           (when (not no-error)
8917             (error "No expunged articles hidden"))
8918         (goto-char (point-min))
8919         (gnus-summary-prepare-unthreaded (nreverse headers))
8920         (goto-char (point-min))
8921         (gnus-summary-position-point)
8922         t))))
8923
8924 (defun gnus-summary-catchup (&optional all quietly to-here not-mark)
8925   "Mark all unread articles in this newsgroup as read.
8926 If prefix argument ALL is non-nil, ticked and dormant articles will
8927 also be marked as read.
8928 If QUIETLY is non-nil, no questions will be asked.
8929 If TO-HERE is non-nil, it should be a point in the buffer.  All
8930 articles before this point will be marked as read.
8931 Note that this function will only catch up the unread article
8932 in the current summary buffer limitation.
8933 The number of articles marked as read is returned."
8934   (interactive "P")
8935   (prog1
8936       (save-excursion
8937         (when (or quietly
8938                   (not gnus-interactive-catchup) ;Without confirmation?
8939                   gnus-expert-user
8940                   (gnus-y-or-n-p
8941                    (if all
8942                        "Mark absolutely all articles as read? "
8943                      "Mark all unread articles as read? ")))
8944           (if (and not-mark
8945                    (not gnus-newsgroup-adaptive)
8946                    (not gnus-newsgroup-auto-expire)
8947                    (not gnus-suppress-duplicates)
8948                    (or (not gnus-use-cache)
8949                        (eq gnus-use-cache 'passive)))
8950               (progn
8951                 (when all
8952                   (setq gnus-newsgroup-marked nil
8953                         gnus-newsgroup-dormant nil))
8954                 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable))
8955             ;; We actually mark all articles as canceled, which we
8956             ;; have to do when using auto-expiry or adaptive scoring.
8957             (gnus-summary-show-all-threads)
8958             (when (gnus-summary-first-subject (not all) t)
8959               (while (and
8960                       (if to-here (< (point) to-here) t)
8961                       (gnus-summary-mark-article-as-read gnus-catchup-mark)
8962                       (gnus-summary-find-next (not all) nil nil t))))
8963             (gnus-set-mode-line 'summary))
8964           t))
8965     (gnus-summary-position-point)))
8966
8967 (defun gnus-summary-catchup-to-here (&optional all)
8968   "Mark all unticked articles before the current one as read.
8969 If ALL is non-nil, also mark ticked and dormant articles as read."
8970   (interactive "P")
8971   (save-excursion
8972     (gnus-save-hidden-threads
8973       (let ((beg (point)))
8974         ;; We check that there are unread articles.
8975         (when (or all (gnus-summary-find-prev))
8976           (gnus-summary-catchup all t beg)))))
8977   (gnus-summary-position-point))
8978
8979 (defun gnus-summary-catchup-all (&optional quietly)
8980   "Mark all articles in this newsgroup as read."
8981   (interactive "P")
8982   (gnus-summary-catchup t quietly))
8983
8984 (defun gnus-summary-catchup-and-exit (&optional all quietly)
8985   "Mark all unread articles in this group as read, then exit.
8986 If prefix argument ALL is non-nil, all articles are marked as read."
8987   (interactive "P")
8988   (when (gnus-summary-catchup all quietly nil 'fast)
8989     ;; Select next newsgroup or exit.
8990     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
8991              (eq gnus-auto-select-next 'quietly))
8992         (gnus-summary-next-group nil)
8993       (gnus-summary-exit))))
8994
8995 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
8996   "Mark all articles in this newsgroup as read, and then exit."
8997   (interactive "P")
8998   (gnus-summary-catchup-and-exit t quietly))
8999
9000 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
9001   "Mark all articles in this group as read and select the next group.
9002 If given a prefix, mark all articles, unread as well as ticked, as
9003 read."
9004   (interactive "P")
9005   (save-excursion
9006     (gnus-summary-catchup all))
9007   (gnus-summary-next-group))
9008
9009 ;;;
9010 ;;; with article
9011 ;;;
9012
9013 (defmacro gnus-with-article (article &rest forms)
9014   "Select ARTICLE and perform FORMS in the original article buffer.
9015 Then replace the article with the result."
9016   `(progn
9017      ;; We don't want the article to be marked as read.
9018      (let (gnus-mark-article-hook)
9019        (gnus-summary-select-article t t nil ,article))
9020      (set-buffer gnus-original-article-buffer)
9021      ,@forms
9022      (if (not (gnus-check-backend-function
9023                'request-replace-article (car gnus-article-current)))
9024          (gnus-message 5 "Read-only group; not replacing")
9025        (unless (gnus-request-replace-article
9026                 ,article (car gnus-article-current)
9027                 (current-buffer) t)
9028          (error "Couldn't replace article")))
9029      ;; The cache and backlog have to be flushed somewhat.
9030      (when gnus-keep-backlog
9031        (gnus-backlog-remove-article
9032         (car gnus-article-current) (cdr gnus-article-current)))
9033      (when gnus-use-cache
9034        (gnus-cache-update-article
9035         (car gnus-article-current) (cdr gnus-article-current)))))
9036
9037 (put 'gnus-with-article 'lisp-indent-function 1)
9038 (put 'gnus-with-article 'edebug-form-spec '(form body))
9039
9040 ;; Thread-based commands.
9041
9042 (defun gnus-summary-articles-in-thread (&optional article)
9043   "Return a list of all articles in the current thread.
9044 If ARTICLE is non-nil, return all articles in the thread that starts
9045 with that article."
9046   (let* ((article (or article (gnus-summary-article-number)))
9047          (data (gnus-data-find-list article))
9048          (top-level (gnus-data-level (car data)))
9049          (top-subject
9050           (cond ((null gnus-thread-operation-ignore-subject)
9051                  (gnus-simplify-subject-re
9052                   (mail-header-subject (gnus-data-header (car data)))))
9053                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
9054                  (gnus-simplify-subject-fuzzy
9055                   (mail-header-subject (gnus-data-header (car data)))))
9056                 (t nil)))
9057          (end-point (save-excursion
9058                       (if (gnus-summary-go-to-next-thread)
9059                           (point) (point-max))))
9060          articles)
9061     (while (and data
9062                 (< (gnus-data-pos (car data)) end-point))
9063       (when (or (not top-subject)
9064                 (string= top-subject
9065                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
9066                              (gnus-simplify-subject-fuzzy
9067                               (mail-header-subject
9068                                (gnus-data-header (car data))))
9069                            (gnus-simplify-subject-re
9070                             (mail-header-subject
9071                              (gnus-data-header (car data)))))))
9072         (push (gnus-data-number (car data)) articles))
9073       (unless (and (setq data (cdr data))
9074                    (> (gnus-data-level (car data)) top-level))
9075         (setq data nil)))
9076     ;; Return the list of articles.
9077     (nreverse articles)))
9078
9079 (defun gnus-summary-rethread-current ()
9080   "Rethread the thread the current article is part of."
9081   (interactive)
9082   (let* ((gnus-show-threads t)
9083          (article (gnus-summary-article-number))
9084          (id (mail-header-id (gnus-summary-article-header)))
9085          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
9086     (unless id
9087       (error "No article on the current line"))
9088     (gnus-rebuild-thread id)
9089     (gnus-summary-goto-subject article)))
9090
9091 (defun gnus-summary-reparent-thread ()
9092   "Make the current article child of the marked (or previous) article.
9093
9094 Note that the re-threading will only work if `gnus-thread-ignore-subject'
9095 is non-nil or the Subject: of both articles are the same."
9096   (interactive)
9097   (unless (not (gnus-group-read-only-p))
9098     (error "The current newsgroup does not support article editing"))
9099   (unless (<= (length gnus-newsgroup-processable) 1)
9100     (error "No more than one article may be marked"))
9101   (save-window-excursion
9102     (let ((gnus-article-buffer " *reparent*")
9103           (current-article (gnus-summary-article-number))
9104           ;; First grab the marked article, otherwise one line up.
9105           (parent-article (if (not (null gnus-newsgroup-processable))
9106                               (car gnus-newsgroup-processable)
9107                             (save-excursion
9108                               (if (eq (forward-line -1) 0)
9109                                   (gnus-summary-article-number)
9110                                 (error "Beginning of summary buffer"))))))
9111       (unless (not (eq current-article parent-article))
9112         (error "An article may not be self-referential"))
9113       (let ((message-id (mail-header-id
9114                          (gnus-summary-article-header parent-article))))
9115         (unless (and message-id (not (equal message-id "")))
9116           (error "No message-id in desired parent"))
9117         (gnus-with-article current-article
9118           (save-restriction
9119             (goto-char (point-min))
9120             (message-narrow-to-head)
9121             (if (re-search-forward "^References: " nil t)
9122                 (progn
9123                   (re-search-forward "^[^ \t]" nil t)
9124                   (forward-line -1)
9125                   (end-of-line)
9126                   (insert " " message-id))
9127               (insert "References: " message-id "\n"))))
9128         (set-buffer gnus-summary-buffer)
9129         (gnus-summary-unmark-all-processable)
9130         (gnus-summary-update-article current-article)
9131         (gnus-summary-rethread-current)
9132         (gnus-message 3 "Article %d is now the child of article %d"
9133                       current-article parent-article)))))
9134
9135 (defun gnus-summary-toggle-threads (&optional arg)
9136   "Toggle showing conversation threads.
9137 If ARG is positive number, turn showing conversation threads on."
9138   (interactive "P")
9139   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
9140     (setq gnus-show-threads
9141           (if (null arg) (not gnus-show-threads)
9142             (> (prefix-numeric-value arg) 0)))
9143     (gnus-summary-prepare)
9144     (gnus-summary-goto-subject current)
9145     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
9146     (gnus-summary-position-point)))
9147
9148 (defun gnus-summary-show-all-threads ()
9149   "Show all threads."
9150   (interactive)
9151   (save-excursion
9152     (let ((buffer-read-only nil))
9153       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
9154   (gnus-summary-position-point))
9155
9156 (defun gnus-summary-show-thread ()
9157   "Show thread subtrees.
9158 Returns nil if no thread was there to be shown."
9159   (interactive)
9160   (let ((buffer-read-only nil)
9161         (orig (point))
9162         ;; first goto end then to beg, to have point at beg after let
9163         (end (progn (end-of-line) (point)))
9164         (beg (progn (beginning-of-line) (point))))
9165     (prog1
9166         ;; Any hidden lines here?
9167         (search-forward "\r" end t)
9168       (subst-char-in-region beg end ?\^M ?\n t)
9169       (goto-char orig)
9170       (gnus-summary-position-point))))
9171
9172 (defun gnus-summary-hide-all-threads ()
9173   "Hide all thread subtrees."
9174   (interactive)
9175   (save-excursion
9176     (goto-char (point-min))
9177     (gnus-summary-hide-thread)
9178     (while (zerop (gnus-summary-next-thread 1 t))
9179       (gnus-summary-hide-thread)))
9180   (gnus-summary-position-point))
9181
9182 (defun gnus-summary-hide-thread ()
9183   "Hide thread subtrees.
9184 Returns nil if no threads were there to be hidden."
9185   (interactive)
9186   (let ((buffer-read-only nil)
9187         (start (point))
9188         (article (gnus-summary-article-number)))
9189     (goto-char start)
9190     ;; Go forward until either the buffer ends or the subthread
9191     ;; ends.
9192     (when (and (not (eobp))
9193                (or (zerop (gnus-summary-next-thread 1 t))
9194                    (goto-char (point-max))))
9195       (prog1
9196           (if (and (> (point) start)
9197                    (search-backward "\n" start t))
9198               (progn
9199                 (subst-char-in-region start (point) ?\n ?\^M)
9200                 (gnus-summary-goto-subject article))
9201             (goto-char start)
9202             nil)))))
9203
9204 (defun gnus-summary-go-to-next-thread (&optional previous)
9205   "Go to the same level (or less) next thread.
9206 If PREVIOUS is non-nil, go to previous thread instead.
9207 Return the article number moved to, or nil if moving was impossible."
9208   (let ((level (gnus-summary-thread-level))
9209         (way (if previous -1 1))
9210         (beg (point)))
9211     (forward-line way)
9212     (while (and (not (eobp))
9213                 (< level (gnus-summary-thread-level)))
9214       (forward-line way))
9215     (if (eobp)
9216         (progn
9217           (goto-char beg)
9218           nil)
9219       (setq beg (point))
9220       (prog1
9221           (gnus-summary-article-number)
9222         (goto-char beg)))))
9223
9224 (defun gnus-summary-next-thread (n &optional silent)
9225   "Go to the same level next N'th thread.
9226 If N is negative, search backward instead.
9227 Returns the difference between N and the number of skips actually
9228 done.
9229
9230 If SILENT, don't output messages."
9231   (interactive "p")
9232   (let ((backward (< n 0))
9233         (n (abs n)))
9234     (while (and (> n 0)
9235                 (gnus-summary-go-to-next-thread backward))
9236       (decf n))
9237     (unless silent
9238       (gnus-summary-position-point))
9239     (when (and (not silent) (/= 0 n))
9240       (gnus-message 7 "No more threads"))
9241     n))
9242
9243 (defun gnus-summary-prev-thread (n)
9244   "Go to the same level previous N'th thread.
9245 Returns the difference between N and the number of skips actually
9246 done."
9247   (interactive "p")
9248   (gnus-summary-next-thread (- n)))
9249
9250 (defun gnus-summary-go-down-thread ()
9251   "Go down one level in the current thread."
9252   (let ((children (gnus-summary-article-children)))
9253     (when children
9254       (gnus-summary-goto-subject (car children)))))
9255
9256 (defun gnus-summary-go-up-thread ()
9257   "Go up one level in the current thread."
9258   (let ((parent (gnus-summary-article-parent)))
9259     (when parent
9260       (gnus-summary-goto-subject parent))))
9261
9262 (defun gnus-summary-down-thread (n)
9263   "Go down thread N steps.
9264 If N is negative, go up instead.
9265 Returns the difference between N and how many steps down that were
9266 taken."
9267   (interactive "p")
9268   (let ((up (< n 0))
9269         (n (abs n)))
9270     (while (and (> n 0)
9271                 (if up (gnus-summary-go-up-thread)
9272                   (gnus-summary-go-down-thread)))
9273       (setq n (1- n)))
9274     (gnus-summary-position-point)
9275     (when (/= 0 n)
9276       (gnus-message 7 "Can't go further"))
9277     n))
9278
9279 (defun gnus-summary-up-thread (n)
9280   "Go up thread N steps.
9281 If N is negative, go up instead.
9282 Returns the difference between N and how many steps down that were
9283 taken."
9284   (interactive "p")
9285   (gnus-summary-down-thread (- n)))
9286
9287 (defun gnus-summary-top-thread ()
9288   "Go to the top of the thread."
9289   (interactive)
9290   (while (gnus-summary-go-up-thread))
9291   (gnus-summary-article-number))
9292
9293 (defun gnus-summary-kill-thread (&optional unmark)
9294   "Mark articles under current thread as read.
9295 If the prefix argument is positive, remove any kinds of marks.
9296 If the prefix argument is negative, tick articles instead."
9297   (interactive "P")
9298   (when unmark
9299     (setq unmark (prefix-numeric-value unmark)))
9300   (let ((articles (gnus-summary-articles-in-thread)))
9301     (save-excursion
9302       ;; Expand the thread.
9303       (gnus-summary-show-thread)
9304       ;; Mark all the articles.
9305       (while articles
9306         (gnus-summary-goto-subject (car articles))
9307         (cond ((null unmark)
9308                (gnus-summary-mark-article-as-read gnus-killed-mark))
9309               ((> unmark 0)
9310                (gnus-summary-mark-article-as-unread gnus-unread-mark))
9311               (t
9312                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
9313         (setq articles (cdr articles))))
9314     ;; Hide killed subtrees.
9315     (and (null unmark)
9316          gnus-thread-hide-killed
9317          (gnus-summary-hide-thread))
9318     ;; If marked as read, go to next unread subject.
9319     (when (null unmark)
9320       ;; Go to next unread subject.
9321       (gnus-summary-next-subject 1 t)))
9322   (gnus-set-mode-line 'summary))
9323
9324 ;; Summary sorting commands
9325
9326 (defun gnus-summary-sort-by-number (&optional reverse)
9327   "Sort the summary buffer by article number.
9328 Argument REVERSE means reverse order."
9329   (interactive "P")
9330   (gnus-summary-sort 'number reverse))
9331
9332 (defun gnus-summary-sort-by-author (&optional reverse)
9333   "Sort the summary buffer by author name alphabetically.
9334 If `case-fold-search' is non-nil, case of letters is ignored.
9335 Argument REVERSE means reverse order."
9336   (interactive "P")
9337   (gnus-summary-sort 'author reverse))
9338
9339 (defun gnus-summary-sort-by-subject (&optional reverse)
9340   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
9341 If `case-fold-search' is non-nil, case of letters is ignored.
9342 Argument REVERSE means reverse order."
9343   (interactive "P")
9344   (gnus-summary-sort 'subject reverse))
9345
9346 (defun gnus-summary-sort-by-date (&optional reverse)
9347   "Sort the summary buffer by date.
9348 Argument REVERSE means reverse order."
9349   (interactive "P")
9350   (gnus-summary-sort 'date reverse))
9351
9352 (defun gnus-summary-sort-by-score (&optional reverse)
9353   "Sort the summary buffer by score.
9354 Argument REVERSE means reverse order."
9355   (interactive "P")
9356   (gnus-summary-sort 'score reverse))
9357
9358 (defun gnus-summary-sort-by-lines (&optional reverse)
9359   "Sort the summary buffer by the number of lines.
9360 Argument REVERSE means reverse order."
9361   (interactive "P")
9362   (gnus-summary-sort 'lines reverse))
9363
9364 (defun gnus-summary-sort-by-chars (&optional reverse)
9365   "Sort the summary buffer by article length.
9366 Argument REVERSE means reverse order."
9367   (interactive "P")
9368   (gnus-summary-sort 'chars reverse))
9369
9370 (defun gnus-summary-sort (predicate reverse)
9371   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
9372   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
9373          (article (intern (format "gnus-article-sort-by-%s" predicate)))
9374          (gnus-thread-sort-functions
9375           (if (not reverse)
9376               thread
9377             `(lambda (t1 t2)
9378                (,thread t2 t1))))
9379          (gnus-sort-gathered-threads-function
9380           gnus-thread-sort-functions)
9381          (gnus-article-sort-functions
9382           (if (not reverse)
9383               article
9384             `(lambda (t1 t2)
9385                (,article t2 t1))))
9386          (buffer-read-only)
9387          (gnus-summary-prepare-hook nil))
9388     ;; We do the sorting by regenerating the threads.
9389     (gnus-summary-prepare)
9390     ;; Hide subthreads if needed.
9391     (when (and gnus-show-threads gnus-thread-hide-subtree)
9392       (gnus-summary-hide-all-threads))))
9393
9394 ;; Summary saving commands.
9395
9396 (defun gnus-summary-save-article (&optional n not-saved)
9397   "Save the current article using the default saver function.
9398 If N is a positive number, save the N next articles.
9399 If N is a negative number, save the N previous articles.
9400 If N is nil and any articles have been marked with the process mark,
9401 save those articles instead.
9402 The variable `gnus-default-article-saver' specifies the saver function."
9403   (interactive "P")
9404   (let* ((articles (gnus-summary-work-articles n))
9405          (save-buffer (save-excursion
9406                         (nnheader-set-temp-buffer " *Gnus Save*")))
9407          (num (length articles))
9408          header file)
9409     (dolist (article articles)
9410       (setq header (gnus-summary-article-header article))
9411       (if (not (vectorp header))
9412           ;; This is a pseudo-article.
9413           (if (assq 'name header)
9414               (gnus-copy-file (cdr (assq 'name header)))
9415             (gnus-message 1 "Article %d is unsaveable" article))
9416         ;; This is a real article.
9417         (save-window-excursion
9418           (gnus-summary-select-article t nil nil article))
9419         (save-excursion
9420           (set-buffer save-buffer)
9421           (erase-buffer)
9422           (insert-buffer-substring gnus-original-article-buffer))
9423         (setq file (gnus-article-save save-buffer file num))
9424         (gnus-summary-remove-process-mark article)
9425         (unless not-saved
9426           (gnus-summary-set-saved-mark article))))
9427     (gnus-kill-buffer save-buffer)
9428     (gnus-summary-position-point)
9429     (gnus-set-mode-line 'summary)
9430     n))
9431
9432 (defun gnus-summary-pipe-output (&optional arg)
9433   "Pipe the current article to a subprocess.
9434 If N is a positive number, pipe the N next articles.
9435 If N is a negative number, pipe the N previous articles.
9436 If N is nil and any articles have been marked with the process mark,
9437 pipe those articles instead."
9438   (interactive "P")
9439   (require 'gnus-art)
9440   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
9441     (gnus-summary-save-article arg t))
9442   (gnus-configure-windows 'pipe))
9443
9444 (defun gnus-summary-save-article-mail (&optional arg)
9445   "Append the current article to an mail file.
9446 If N is a positive number, save the N next articles.
9447 If N is a negative number, save the N previous articles.
9448 If N is nil and any articles have been marked with the process mark,
9449 save those articles instead."
9450   (interactive "P")
9451   (require 'gnus-art)
9452   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
9453     (gnus-summary-save-article arg)))
9454
9455 (defun gnus-summary-save-article-rmail (&optional arg)
9456   "Append the current article to an rmail file.
9457 If N is a positive number, save the N next articles.
9458 If N is a negative number, save the N previous articles.
9459 If N is nil and any articles have been marked with the process mark,
9460 save those articles instead."
9461   (interactive "P")
9462   (require 'gnus-art)
9463   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
9464     (gnus-summary-save-article arg)))
9465
9466 (defun gnus-summary-save-article-file (&optional arg)
9467   "Append the current article to a file.
9468 If N is a positive number, save the N next articles.
9469 If N is a negative number, save the N previous articles.
9470 If N is nil and any articles have been marked with the process mark,
9471 save those articles instead."
9472   (interactive "P")
9473   (require 'gnus-art)
9474   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
9475     (gnus-summary-save-article arg)))
9476
9477 (defun gnus-summary-write-article-file (&optional arg)
9478   "Write the current article to a file, deleting the previous file.
9479 If N is a positive number, save the N next articles.
9480 If N is a negative number, save the N previous articles.
9481 If N is nil and any articles have been marked with the process mark,
9482 save those articles instead."
9483   (interactive "P")
9484   (require 'gnus-art)
9485   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
9486     (gnus-summary-save-article arg)))
9487
9488 (defun gnus-summary-save-article-body-file (&optional arg)
9489   "Append the current article body to a file.
9490 If N is a positive number, save the N next articles.
9491 If N is a negative number, save the N previous articles.
9492 If N is nil and any articles have been marked with the process mark,
9493 save those articles instead."
9494   (interactive "P")
9495   (require 'gnus-art)
9496   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
9497     (gnus-summary-save-article arg)))
9498
9499 (defun gnus-summary-pipe-message (program)
9500   "Pipe the current article through PROGRAM."
9501   (interactive "sProgram: ")
9502   (gnus-summary-select-article)
9503   (let ((mail-header-separator ""))
9504     (gnus-eval-in-buffer-window gnus-article-buffer
9505       (save-restriction
9506         (widen)
9507         (let ((start (window-start))
9508               buffer-read-only)
9509           (message-pipe-buffer-body program)
9510           (set-window-start (get-buffer-window (current-buffer)) start))))))
9511
9512 (defun gnus-get-split-value (methods)
9513   "Return a value based on the split METHODS."
9514   (let (split-name method result match)
9515     (when methods
9516       (save-excursion
9517         (set-buffer gnus-original-article-buffer)
9518         (save-restriction
9519           (nnheader-narrow-to-headers)
9520           (while (and methods (not split-name))
9521             (goto-char (point-min))
9522             (setq method (pop methods))
9523             (setq match (car method))
9524             (when (cond
9525                    ((stringp match)
9526                     ;; Regular expression.
9527                     (ignore-errors
9528                       (re-search-forward match nil t)))
9529                    ((gnus-functionp match)
9530                     ;; Function.
9531                     (save-restriction
9532                       (widen)
9533                       (setq result (funcall match gnus-newsgroup-name))))
9534                    ((consp match)
9535                     ;; Form.
9536                     (save-restriction
9537                       (widen)
9538                       (setq result (eval match)))))
9539               (setq split-name (cdr method))
9540               (cond ((stringp result)
9541                      (push (expand-file-name
9542                             result gnus-article-save-directory)
9543                            split-name))
9544                     ((consp result)
9545                      (setq split-name (append result split-name)))))))))
9546     (nreverse split-name)))
9547
9548 (defun gnus-valid-move-group-p (group)
9549   (and (boundp group)
9550        (symbol-name group)
9551        (symbol-value group)
9552        (gnus-get-function (gnus-find-method-for-group
9553                            (symbol-name group)) 'request-accept-article t)))
9554
9555 (defun gnus-read-move-group-name (prompt default articles prefix)
9556   "Read a group name."
9557   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
9558          (minibuffer-confirm-incomplete nil) ; XEmacs
9559          (prom
9560           (format "%s %s to:"
9561                   prompt
9562                   (if (> (length articles) 1)
9563                       (format "these %d articles" (length articles))
9564                     "this article")))
9565          (to-newsgroup
9566           (cond
9567            ((null split-name)
9568             (gnus-completing-read default prom
9569                                   gnus-active-hashtb
9570                                   'gnus-valid-move-group-p
9571                                   nil prefix
9572                                   'gnus-group-history))
9573            ((= 1 (length split-name))
9574             (gnus-completing-read (car split-name) prom
9575                                   gnus-active-hashtb
9576                                   'gnus-valid-move-group-p
9577                                   nil nil
9578                                   'gnus-group-history))
9579            (t
9580             (gnus-completing-read nil prom
9581                                   (mapcar (lambda (el) (list el))
9582                                           (nreverse split-name))
9583                                   nil nil nil
9584                                   'gnus-group-history))))
9585          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
9586     (when to-newsgroup
9587       (if (or (string= to-newsgroup "")
9588               (string= to-newsgroup prefix))
9589           (setq to-newsgroup default))
9590       (unless to-newsgroup
9591         (error "No group name entered"))
9592       (or (gnus-active to-newsgroup)
9593           (gnus-activate-group to-newsgroup nil nil to-method)
9594           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
9595                                      to-newsgroup))
9596               (or (and (gnus-request-create-group to-newsgroup to-method)
9597                        (gnus-activate-group
9598                         to-newsgroup nil nil to-method)
9599                        (gnus-subscribe-group to-newsgroup))
9600                   (error "Couldn't create group %s" to-newsgroup)))
9601           (error "No such group: %s" to-newsgroup)))
9602     to-newsgroup))
9603
9604 (defun gnus-summary-save-parts (type dir n &optional reverse)
9605   "Save parts matching TYPE to DIR.
9606 If REVERSE, save parts that do not match TYPE."
9607   (interactive
9608    (list (read-string "Save parts of type: "
9609                       (or (car gnus-summary-save-parts-type-history)
9610                           gnus-summary-save-parts-default-mime)
9611                       'gnus-summary-save-parts-type-history)
9612          (setq gnus-summary-save-parts-last-directory
9613                (read-file-name "Save to directory: "
9614                                gnus-summary-save-parts-last-directory
9615                                nil t))
9616          current-prefix-arg))
9617   (gnus-summary-iterate n
9618     (let ((gnus-display-mime-function nil)
9619           (gnus-inhibit-treatment t))
9620       (gnus-summary-select-article))
9621     (save-excursion
9622       (set-buffer gnus-article-buffer)
9623       (let ((handles (or gnus-article-mime-handles
9624                          (mm-dissect-buffer) (mm-uu-dissect))))
9625         (when handles
9626           (gnus-summary-save-parts-1 type dir handles reverse)
9627           (unless gnus-article-mime-handles ;; Don't destroy this case.
9628             (mm-destroy-parts handles)))))))
9629
9630 (defun gnus-summary-save-parts-1 (type dir handle reverse)
9631   (if (stringp (car handle))
9632       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
9633               (cdr handle))
9634     (when (if reverse
9635               (not (string-match type (mm-handle-media-type handle)))
9636             (string-match type (mm-handle-media-type handle)))
9637       (let ((file (expand-file-name
9638                    (file-name-nondirectory
9639                     (or
9640                      (mail-content-type-get
9641                       (mm-handle-disposition handle) 'filename)
9642                      (concat gnus-newsgroup-name
9643                              "." (number-to-string
9644                                   (cdr gnus-article-current)))))
9645                    dir)))
9646         (unless (file-exists-p file)
9647           (mm-save-part-to-file handle file))))))
9648
9649 ;; Summary extract commands
9650
9651 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
9652   (let ((buffer-read-only nil)
9653         (article (gnus-summary-article-number))
9654         after-article b e)
9655     (unless (gnus-summary-goto-subject article)
9656       (error "No such article: %d" article))
9657     (gnus-summary-position-point)
9658     ;; If all commands are to be bunched up on one line, we collect
9659     ;; them here.
9660     (unless gnus-view-pseudos-separately
9661       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
9662             files action)
9663         (while ps
9664           (setq action (cdr (assq 'action (car ps))))
9665           (setq files (list (cdr (assq 'name (car ps)))))
9666           (while (and ps (cdr ps)
9667                       (string= (or action "1")
9668                                (or (cdr (assq 'action (cadr ps))) "2")))
9669             (push (cdr (assq 'name (cadr ps))) files)
9670             (setcdr ps (cddr ps)))
9671           (when files
9672             (when (not (string-match "%s" action))
9673               (push " " files))
9674             (push " " files)
9675             (when (assq 'execute (car ps))
9676               (setcdr (assq 'execute (car ps))
9677                       (funcall (if (string-match "%s" action)
9678                                    'format 'concat)
9679                                action
9680                                (mapconcat
9681                                 (lambda (f)
9682                                   (if (equal f " ")
9683                                       f
9684                                     (gnus-quote-arg-for-sh-or-csh f)))
9685                                 files " ")))))
9686           (setq ps (cdr ps)))))
9687     (if (and gnus-view-pseudos (not not-view))
9688         (while pslist
9689           (when (assq 'execute (car pslist))
9690             (gnus-execute-command (cdr (assq 'execute (car pslist)))
9691                                   (eq gnus-view-pseudos 'not-confirm)))
9692           (setq pslist (cdr pslist)))
9693       (save-excursion
9694         (while pslist
9695           (setq after-article (or (cdr (assq 'article (car pslist)))
9696                                   (gnus-summary-article-number)))
9697           (gnus-summary-goto-subject after-article)
9698           (forward-line 1)
9699           (setq b (point))
9700           (insert "    " (file-name-nondirectory
9701                           (cdr (assq 'name (car pslist))))
9702                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
9703           (setq e (point))
9704           (forward-line -1)             ; back to `b'
9705           (gnus-add-text-properties
9706            b (1- e) (list 'gnus-number gnus-reffed-article-number
9707                           gnus-mouse-face-prop gnus-mouse-face))
9708           (gnus-data-enter
9709            after-article gnus-reffed-article-number
9710            gnus-unread-mark b (car pslist) 0 (- e b))
9711           (push gnus-reffed-article-number gnus-newsgroup-unreads)
9712           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
9713           (setq pslist (cdr pslist)))))))
9714
9715 (defun gnus-pseudos< (p1 p2)
9716   (let ((c1 (cdr (assq 'action p1)))
9717         (c2 (cdr (assq 'action p2))))
9718     (and c1 c2 (string< c1 c2))))
9719
9720 (defun gnus-request-pseudo-article (props)
9721   (cond ((assq 'execute props)
9722          (gnus-execute-command (cdr (assq 'execute props)))))
9723   (let ((gnus-current-article (gnus-summary-article-number)))
9724     (gnus-run-hooks 'gnus-mark-article-hook)))
9725
9726 (defun gnus-execute-command (command &optional automatic)
9727   (save-excursion
9728     (gnus-article-setup-buffer)
9729     (set-buffer gnus-article-buffer)
9730     (setq buffer-read-only nil)
9731     (let ((command (if automatic command
9732                      (read-string "Command: " (cons command 0)))))
9733       (erase-buffer)
9734       (insert "$ " command "\n\n")
9735       (if gnus-view-pseudo-asynchronously
9736           (start-process "gnus-execute" (current-buffer) shell-file-name
9737                          shell-command-switch command)
9738         (call-process shell-file-name nil t nil
9739                       shell-command-switch command)))))
9740
9741 ;; Summary kill commands.
9742
9743 (defun gnus-summary-edit-global-kill (article)
9744   "Edit the \"global\" kill file."
9745   (interactive (list (gnus-summary-article-number)))
9746   (gnus-group-edit-global-kill article))
9747
9748 (defun gnus-summary-edit-local-kill ()
9749   "Edit a local kill file applied to the current newsgroup."
9750   (interactive)
9751   (setq gnus-current-headers (gnus-summary-article-header))
9752   (gnus-group-edit-local-kill
9753    (gnus-summary-article-number) gnus-newsgroup-name))
9754
9755 ;;; Header reading.
9756
9757 (defun gnus-read-header (id &optional header)
9758   "Read the headers of article ID and enter them into the Gnus system."
9759   (let ((group gnus-newsgroup-name)
9760         (gnus-override-method
9761          (or
9762           gnus-override-method
9763           (and (gnus-news-group-p gnus-newsgroup-name)
9764                (car (gnus-refer-article-methods)))))
9765         where)
9766     ;; First we check to see whether the header in question is already
9767     ;; fetched.
9768     (if (stringp id)
9769         ;; This is a Message-ID.
9770         (setq header (or header (gnus-id-to-header id)))
9771       ;; This is an article number.
9772       (setq header (or header (gnus-summary-article-header id))))
9773     (if (and header
9774              (not (gnus-summary-article-sparse-p (mail-header-number header))))
9775         ;; We have found the header.
9776         header
9777       ;; If this is a sparse article, we have to nix out its
9778       ;; previous entry in the thread hashtb.
9779       (when (and header
9780                  (gnus-summary-article-sparse-p (mail-header-number header)))
9781         (let* ((parent (gnus-parent-id (mail-header-references header)))
9782                (thread (and parent (gnus-id-to-thread parent))))
9783           (when thread
9784             (delq (assq header thread) thread))))
9785       ;; We have to really fetch the header to this article.
9786       (save-excursion
9787         (set-buffer nntp-server-buffer)
9788         (when (setq where (gnus-request-head id group))
9789           (nnheader-fold-continuation-lines)
9790           (goto-char (point-max))
9791           (insert ".\n")
9792           (goto-char (point-min))
9793           (insert "211 ")
9794           (princ (cond
9795                   ((numberp id) id)
9796                   ((cdr where) (cdr where))
9797                   (header (mail-header-number header))
9798                   (t gnus-reffed-article-number))
9799                  (current-buffer))
9800           (insert " Article retrieved.\n"))
9801         (if (or (not where)
9802                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
9803             ()                          ; Malformed head.
9804           (unless (gnus-summary-article-sparse-p (mail-header-number header))
9805             (when (and (stringp id)
9806                        (not (string= (gnus-group-real-name group)
9807                                      (car where))))
9808               ;; If we fetched by Message-ID and the article came
9809               ;; from a different group, we fudge some bogus article
9810               ;; numbers for this article.
9811               (mail-header-set-number header gnus-reffed-article-number))
9812             (save-excursion
9813               (set-buffer gnus-summary-buffer)
9814               (decf gnus-reffed-article-number)
9815               (gnus-remove-header (mail-header-number header))
9816               (push header gnus-newsgroup-headers)
9817               (setq gnus-current-headers header)
9818               (push (mail-header-number header) gnus-newsgroup-limit)))
9819           header)))))
9820
9821 (defun gnus-remove-header (number)
9822   "Remove header NUMBER from `gnus-newsgroup-headers'."
9823   (if (and gnus-newsgroup-headers
9824            (= number (mail-header-number (car gnus-newsgroup-headers))))
9825       (pop gnus-newsgroup-headers)
9826     (let ((headers gnus-newsgroup-headers))
9827       (while (and (cdr headers)
9828                   (not (= number (mail-header-number (cadr headers)))))
9829         (pop headers))
9830       (when (cdr headers)
9831         (setcdr headers (cddr headers))))))
9832
9833 ;;;
9834 ;;; summary highlights
9835 ;;;
9836
9837 (defun gnus-highlight-selected-summary ()
9838   "Highlight selected article in summary buffer."
9839   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
9840   (when gnus-summary-selected-face
9841     (save-excursion
9842       (let* ((beg (progn (beginning-of-line) (point)))
9843              (end (progn (end-of-line) (point)))
9844              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
9845              (from (if (get-text-property beg gnus-mouse-face-prop)
9846                        beg
9847                      (or (next-single-property-change
9848                           beg gnus-mouse-face-prop nil end)
9849                          beg)))
9850              (to
9851               (if (= from end)
9852                   (- from 2)
9853                 (or (next-single-property-change
9854                      from gnus-mouse-face-prop nil end)
9855                     end))))
9856         ;; If no mouse-face prop on line we will have to = from = end,
9857         ;; so we highlight the entire line instead.
9858         (when (= (+ to 2) from)
9859           (setq from beg)
9860           (setq to end))
9861         (if gnus-newsgroup-selected-overlay
9862             ;; Move old overlay.
9863             (gnus-move-overlay
9864              gnus-newsgroup-selected-overlay from to (current-buffer))
9865           ;; Create new overlay.
9866           (gnus-overlay-put
9867            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
9868            'face gnus-summary-selected-face))))))
9869
9870 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>.
9871 (defun gnus-summary-highlight-line ()
9872   "Highlight current line according to `gnus-summary-highlight'."
9873   (let* ((list gnus-summary-highlight)
9874          (p (point))
9875          (end (progn (end-of-line) (point)))
9876          ;; now find out where the line starts and leave point there.
9877          (beg (progn (beginning-of-line) (point)))
9878          (article (gnus-summary-article-number))
9879          (score (or (cdr (assq (or article gnus-current-article)
9880                                gnus-newsgroup-scored))
9881                     gnus-summary-default-score 0))
9882          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
9883          (inhibit-read-only t))
9884     ;; Eval the cars of the lists until we find a match.
9885     (let ((default gnus-summary-default-score))
9886       (while (and list
9887                   (not (eval (caar list))))
9888         (setq list (cdr list))))
9889     (let ((face (cdar list)))
9890       (unless (eq face (get-text-property beg 'face))
9891         (gnus-put-text-property-excluding-characters-with-faces
9892          beg end 'face
9893          (setq face (if (boundp face) (symbol-value face) face)))
9894         (when gnus-summary-highlight-line-function
9895           (funcall gnus-summary-highlight-line-function article face))))
9896     (goto-char p)))
9897
9898 (defun gnus-update-read-articles (group unread &optional compute)
9899   "Update the list of read articles in GROUP."
9900   (let* ((active (or gnus-newsgroup-active (gnus-active group)))
9901          (entry (gnus-gethash group gnus-newsrc-hashtb))
9902          (info (nth 2 entry))
9903          (prev 1)
9904          (unread (sort (copy-sequence unread) '<))
9905          read)
9906     (if (or (not info) (not active))
9907         ;; There is no info on this group if it was, in fact,
9908         ;; killed.  Gnus stores no information on killed groups, so
9909         ;; there's nothing to be done.
9910         ;; One could store the information somewhere temporarily,
9911         ;; perhaps...  Hmmm...
9912         ()
9913       ;; Remove any negative articles numbers.
9914       (while (and unread (< (car unread) 0))
9915         (setq unread (cdr unread)))
9916       ;; Remove any expired article numbers
9917       (while (and unread (< (car unread) (car active)))
9918         (setq unread (cdr unread)))
9919       ;; Compute the ranges of read articles by looking at the list of
9920       ;; unread articles.
9921       (while unread
9922         (when (/= (car unread) prev)
9923           (push (if (= prev (1- (car unread))) prev
9924                   (cons prev (1- (car unread))))
9925                 read))
9926         (setq prev (1+ (car unread)))
9927         (setq unread (cdr unread)))
9928       (when (<= prev (cdr active))
9929         (push (cons prev (cdr active)) read))
9930       (setq read (if (> (length read) 1) (nreverse read) read))
9931       (if compute
9932           read
9933         (save-excursion
9934           (let (setmarkundo)
9935             ;; Propagate the read marks to the backend.
9936             (when (gnus-check-backend-function 'request-set-mark group)
9937               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
9938                     (add (gnus-remove-from-range read (gnus-info-read info))))
9939                 (when (or add del)
9940                   (unless (gnus-check-group group)
9941                     (error "Can't open server for %s" group))
9942                   (gnus-request-set-mark
9943                    group (delq nil (list (if add (list add 'add '(read)))
9944                                          (if del (list del 'del '(read))))))
9945                   (setq setmarkundo
9946                         `(gnus-request-set-mark
9947                           ,group
9948                           ',(delq nil (list
9949                                        (if del (list del 'add '(read)))
9950                                        (if add (list add 'del '(read))))))))))
9951             (set-buffer gnus-group-buffer)
9952             (gnus-undo-register
9953               `(progn
9954                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
9955                  (gnus-info-set-read ',info ',(gnus-info-read info))
9956                  (gnus-get-unread-articles-in-group ',info
9957                                                     (gnus-active ,group))
9958                  (gnus-group-update-group ,group t)
9959                  ,setmarkundo))))
9960         ;; Enter this list into the group info.
9961         (gnus-info-set-read info read)
9962         ;; Set the number of unread articles in gnus-newsrc-hashtb.
9963         (gnus-get-unread-articles-in-group info (gnus-active group))
9964         t))))
9965
9966 (defun gnus-offer-save-summaries ()
9967   "Offer to save all active summary buffers."
9968   (save-excursion
9969     (let ((buflist (buffer-list))
9970           buffers bufname)
9971       ;; Go through all buffers and find all summaries.
9972       (while buflist
9973         (and (setq bufname (buffer-name (car buflist)))
9974              (string-match "Summary" bufname)
9975              (save-excursion
9976                (set-buffer bufname)
9977                ;; We check that this is, indeed, a summary buffer.
9978                (and (eq major-mode 'gnus-summary-mode)
9979                     ;; Also make sure this isn't bogus.
9980                     gnus-newsgroup-prepared
9981                     ;; Also make sure that this isn't a dead summary buffer.
9982                     (not gnus-dead-summary-mode)))
9983              (push bufname buffers))
9984         (setq buflist (cdr buflist)))
9985       ;; Go through all these summary buffers and offer to save them.
9986       (when buffers
9987         (map-y-or-n-p
9988          "Update summary buffer %s? "
9989          (lambda (buf)
9990            (switch-to-buffer buf)
9991            (gnus-summary-exit))
9992          buffers)))))
9993
9994
9995 ;;; @ for mime-partial
9996 ;;;
9997
9998 (defun gnus-request-partial-message ()
9999   (save-excursion
10000     (let ((number (gnus-summary-article-number))
10001           (group gnus-newsgroup-name)
10002           (mother gnus-article-buffer))
10003       (set-buffer (get-buffer-create " *Partial Article*"))
10004       (erase-buffer)
10005       (setq mime-preview-buffer mother)
10006       (gnus-request-article-this-buffer number group)
10007       (mime-parse-buffer)
10008       )))
10009
10010 (autoload 'mime-combine-message/partial-pieces-automatically
10011   "mime-partial"
10012   "Internal method to combine message/partial messages automatically.")
10013
10014 (mime-add-condition
10015  'action '((type . message)(subtype . partial)
10016            (major-mode . gnus-original-article-mode)
10017            (method . mime-combine-message/partial-pieces-automatically)
10018            (summary-buffer-exp . gnus-summary-buffer)
10019            (request-partial-message-method . gnus-request-partial-message)
10020            ))
10021
10022
10023 ;;; @ for message/rfc822
10024 ;;;
10025
10026 (defun gnus-mime-extract-message/rfc822 (entity situation)
10027   (let (group article num cwin swin cur)
10028     (with-temp-buffer
10029       (mime-insert-entity-content entity)
10030       (setq group (or (cdr (assq 'group situation))
10031                       (completing-read "Group: "
10032                                        gnus-active-hashtb
10033                                        nil
10034                                        (gnus-read-active-file-p)
10035                                        gnus-newsgroup-name))
10036             article (gnus-request-accept-article group)))
10037     (when (and (consp article)
10038                (numberp (setq article (cdr article))))
10039       (setq num (1+ (or (cdr (assq 'number situation)) 0))
10040             cwin (get-buffer-window (current-buffer) t))
10041       (save-window-excursion
10042         (if (setq swin (get-buffer-window gnus-summary-buffer t))
10043             (select-window swin)
10044           (set-buffer gnus-summary-buffer))
10045         (setq cur gnus-current-article)
10046         (forward-line num)
10047         (let (gnus-show-threads)
10048           (gnus-summary-goto-subject article t))
10049         (gnus-summary-clear-mark-forward 1)
10050         (gnus-summary-goto-subject cur))
10051       (when (and cwin (window-frame cwin))
10052         (select-frame (window-frame cwin)))
10053       (when (boundp 'mime-acting-situation-to-override)
10054         (set-alist 'mime-acting-situation-to-override
10055                    'group
10056                    group)
10057         (set-alist 'mime-acting-situation-to-override
10058                    'after-method
10059                    `(progn
10060                       (save-current-buffer
10061                         (set-buffer gnus-group-buffer)
10062                         (gnus-activate-group ,group))
10063                       (gnus-summary-goto-article ,cur
10064                                                  gnus-show-all-headers)))
10065         (set-alist 'mime-acting-situation-to-override
10066                    'number num)))))
10067
10068 (mime-add-condition
10069  'action '((type . message)(subtype . rfc822)
10070            (major-mode . gnus-original-article-mode)
10071            (method . gnus-mime-extract-message/rfc822)
10072            (mode . "extract")
10073            ))
10074
10075 (mime-add-condition
10076  'action '((type . message)(subtype . news)
10077            (major-mode . gnus-original-article-mode)
10078            (method . gnus-mime-extract-message/rfc822)
10079            (mode . "extract")
10080            ))
10081
10082 (defun gnus-mime-extract-multipart (entity situation)
10083   (let ((children (mime-entity-children entity))
10084         mime-acting-situation-to-override
10085         f)
10086     (while children
10087       (mime-play-entity (car children)
10088                         (cons (assq 'mode situation)
10089                               mime-acting-situation-to-override))
10090       (setq children (cdr children)))
10091     (if (setq f (cdr (assq 'after-method
10092                            mime-acting-situation-to-override)))
10093         (eval f)
10094       )))
10095
10096 (mime-add-condition
10097  'action '((type . multipart)
10098            (method . gnus-mime-extract-multipart)
10099            (mode . "extract")
10100            )
10101  'with-default)
10102
10103
10104 ;;; @ end
10105 ;;;
10106
10107 (defun gnus-summary-setup-default-charset ()
10108   "Setup newsgroup default charset."
10109   (if (equal gnus-newsgroup-name "nndraft:drafts")
10110       (setq gnus-newsgroup-charset nil)
10111     (let* ((name (and gnus-newsgroup-name
10112                       (gnus-group-real-name gnus-newsgroup-name)))
10113            (ignored-charsets
10114             (or gnus-newsgroup-ephemeral-ignored-charsets
10115                 (append
10116                  (and gnus-newsgroup-name
10117                       (or (gnus-group-find-parameter gnus-newsgroup-name
10118                                                      'ignored-charsets t)
10119                           (let ((alist gnus-group-ignored-charsets-alist)
10120                                 elem (charsets nil))
10121                             (while (setq elem (pop alist))
10122                               (when (and name
10123                                          (string-match (car elem) name))
10124                                 (setq alist nil
10125                                       charsets (cdr elem))))
10126                             charsets)))
10127                  gnus-newsgroup-ignored-charsets))))
10128       (setq gnus-newsgroup-charset
10129             (or gnus-newsgroup-ephemeral-charset
10130                 (and gnus-newsgroup-name
10131                      (or (gnus-group-find-parameter gnus-newsgroup-name 'charset)
10132                          (let ((alist gnus-group-charset-alist)
10133                                elem charset)
10134                            (while (setq elem (pop alist))
10135                              (when (and name
10136                                         (string-match (car elem) name))
10137                                (setq alist nil
10138                                      charset (cadr elem))))
10139                            charset)))
10140                 gnus-default-charset))
10141       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
10142            ignored-charsets))))
10143
10144 ;;;
10145 ;;; Mime Commands
10146 ;;;
10147
10148 (defun gnus-summary-display-buttonized (&optional show-all-parts)
10149   "Display the current article buffer fully MIME-buttonized.
10150 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
10151 treated as multipart/mixed."
10152   (interactive "P")
10153   (require 'gnus-art)
10154   (let ((gnus-unbuttonized-mime-types nil)
10155         (gnus-mime-display-multipart-as-mixed show-all-parts))
10156     (gnus-summary-show-article)))
10157
10158 (defun gnus-summary-repair-multipart (article)
10159   "Add a Content-Type header to a multipart article without one."
10160   (interactive (list (gnus-summary-article-number)))
10161   (gnus-with-article article
10162     (message-narrow-to-head)
10163     (message-remove-header "Mime-Version")
10164     (goto-char (point-max))
10165     (insert "Mime-Version: 1.0\n")
10166     (widen)
10167     (when (search-forward "\n--" nil t)
10168       (let ((separator (buffer-substring (point) (gnus-point-at-eol))))
10169         (message-narrow-to-head)
10170         (message-remove-header "Content-Type")
10171         (goto-char (point-max))
10172         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
10173                         separator))
10174         (widen))))
10175   (let (gnus-mark-article-hook)
10176     (gnus-summary-select-article t t nil article)))
10177
10178 (defun gnus-summary-toggle-display-buttonized ()
10179   "Toggle the buttonizing of the article buffer."
10180   (interactive)
10181   (require 'gnus-art)
10182   (if (setq gnus-inhibit-mime-unbuttonizing
10183             (not gnus-inhibit-mime-unbuttonizing))
10184       (let ((gnus-unbuttonized-mime-types nil))
10185         (gnus-summary-show-article))
10186     (gnus-summary-show-article)))
10187
10188 ;;;
10189 ;;; Intelli-mouse commmands
10190 ;;;
10191
10192 (defun gnus-wheel-summary-scroll (event)
10193   (interactive "e")
10194   (let ((amount (if (memq 'shift (event-modifiers event))
10195                     (car gnus-wheel-scroll-amount)
10196                   (cdr gnus-wheel-scroll-amount)))
10197         (direction (- (* (static-if (featurep 'xemacs)
10198                              (event-button event)
10199                            (cond ((eq 'mouse-4 (event-basic-type event))
10200                                   4)
10201                                  ((eq 'mouse-5 (event-basic-type event))
10202                                   5)))
10203                          2) 9))
10204         edge)
10205     (gnus-summary-scroll-up (* amount direction))
10206     (when (gnus-eval-in-buffer-window gnus-article-buffer
10207             (save-restriction
10208               (widen)
10209               (and (if (< 0 direction)
10210                        (gnus-article-next-page 0)
10211                      (gnus-article-prev-page 0)
10212                      (bobp))
10213                    (if (setq edge (get-text-property
10214                                    (point-min) 'gnus-wheel-edge))
10215                        (setq edge (* edge direction))
10216                      (setq edge -1))
10217                    (or (plusp edge)
10218                        (let ((buffer-read-only nil)
10219                              (inhibit-read-only t))
10220                          (put-text-property (point-min) (point-max)
10221                                             'gnus-wheel-edge direction)
10222                          nil))
10223                    (or (> edge gnus-wheel-edge-resistance)
10224                        (let ((buffer-read-only nil)
10225                              (inhibit-read-only t))
10226                          (put-text-property (point-min) (point-max)
10227                                             'gnus-wheel-edge
10228                                             (* (1+ edge) direction))
10229                          nil))
10230                    (eq last-command 'gnus-wheel-summary-scroll))))
10231       (gnus-summary-next-article nil nil (minusp direction)))))
10232
10233 (defun gnus-wheel-install ()
10234   "Enable mouse wheel support on summary window."
10235   (when gnus-use-wheel
10236     (let ((keys
10237            '([(mouse-4)] [(shift mouse-4)] [(mouse-5)] [(shift mouse-5)])))
10238       (dolist (key keys)
10239         (define-key gnus-summary-mode-map key
10240           'gnus-wheel-summary-scroll)))))
10241
10242 (add-hook 'gnus-summary-mode-hook 'gnus-wheel-install)
10243
10244 ;;;
10245 ;;; Traditional PGP commmands
10246 ;;;
10247
10248 (defun gnus-summary-decrypt-article (&optional force)
10249   "Decrypt the current article in traditional PGP way.
10250 This will have permanent effect only in mail groups.
10251 If FORCE is non-nil, allow editing of articles even in read-only
10252 groups."
10253   (interactive "P")
10254   (gnus-summary-select-article t)
10255   (gnus-eval-in-buffer-window gnus-article-buffer
10256     (save-excursion
10257       (save-restriction
10258         (widen)
10259         (goto-char (point-min))
10260         (unless (re-search-forward (car pgg-armor-header-lines) nil t)
10261           (error "Not a traditional PGP message!"))
10262         (let ((armor-start (match-beginning 0)))
10263           (if (and (pgg-decrypt-region armor-start (point-max))
10264                    (or force (not (gnus-group-read-only-p))))
10265               (let ((inhibit-read-only t)
10266                     buffer-read-only)
10267                 (delete-region armor-start
10268                                (progn
10269                                  (re-search-forward "^-+END PGP" nil t)
10270                                  (beginning-of-line 2)
10271                                  (point)))
10272                 (insert-buffer-substring pgg-output-buffer))))))))
10273
10274 (defun gnus-summary-verify-article ()
10275   "Verify the current article in traditional PGP way."
10276   (interactive)
10277   (save-excursion
10278     (set-buffer gnus-original-article-buffer)
10279     (goto-char (point-min))
10280     (unless (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE" nil t)
10281       (error "Not a traditional PGP message!"))
10282     (re-search-forward "^-+END PGP" nil t)
10283     (beginning-of-line 2)
10284     (call-interactively (function pgg-verify-region))))
10285
10286 ;;;
10287 ;;; Generic summary marking commands
10288 ;;;
10289
10290 (defvar gnus-summary-marking-alist
10291   '((read gnus-del-mark "d")
10292     (unread gnus-unread-mark "u")
10293     (ticked gnus-ticked-mark "!")
10294     (dormant gnus-dormant-mark "?")
10295     (expirable gnus-expirable-mark "e"))
10296   "An alist of names/marks/keystrokes.")
10297
10298 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
10299 (defvar gnus-summary-mark-map)
10300
10301 (defun gnus-summary-make-all-marking-commands ()
10302   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
10303   (dolist (elem gnus-summary-marking-alist)
10304     (apply 'gnus-summary-make-marking-command elem)))
10305
10306 (defun gnus-summary-make-marking-command (name mark keystroke)
10307   (let ((map (make-sparse-keymap)))
10308     (define-key gnus-summary-generic-mark-map keystroke map)
10309     (dolist (lway `((next "next" next nil "n")
10310                     (next-unread "next unread" next t "N")
10311                     (prev "previous" prev nil "p")
10312                     (prev-unread "previous unread" prev t "P")
10313                     (nomove "" nil nil ,keystroke)))
10314       (let ((func (gnus-summary-make-marking-command-1
10315                    mark (car lway) lway name)))
10316         (setq func (eval func))
10317         (define-key map (nth 4 lway) func)))))
10318
10319 (defun gnus-summary-make-marking-command-1 (mark way lway name)
10320   `(defun ,(intern
10321             (format "gnus-summary-put-mark-as-%s%s"
10322                     name (if (eq way 'nomove)
10323                              ""
10324                            (concat "-" (symbol-name way)))))
10325      (n)
10326      ,(format
10327        "Mark the current article as %s%s.
10328 If N, the prefix, then repeat N times.
10329 If N is negative, move in reverse order.
10330 The difference between N and the actual number of articles marked is
10331 returned."
10332        name (car (cdr lway)))
10333      (interactive "p")
10334      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
10335
10336 (defun gnus-summary-generic-mark (n mark move unread)
10337   "Mark N articles with MARK."
10338   (unless (eq major-mode 'gnus-summary-mode)
10339     (error "This command can only be used in the summary buffer"))
10340   (gnus-summary-show-thread)
10341   (let ((nummove
10342          (cond
10343           ((eq move 'next) 1)
10344           ((eq move 'prev) -1)
10345           (t 0))))
10346     (if (zerop nummove)
10347         (setq n 1)
10348       (when (< n 0)
10349         (setq n (abs n)
10350               nummove (* -1 nummove))))
10351     (while (and (> n 0)
10352                 (gnus-summary-mark-article nil mark)
10353                 (zerop (gnus-summary-next-subject nummove unread t)))
10354       (setq n (1- n)))
10355     (when (/= 0 n)
10356       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
10357     (gnus-summary-recenter)
10358     (gnus-summary-position-point)
10359     (gnus-set-mode-line 'summary)
10360     n))
10361
10362 (gnus-summary-make-all-marking-commands)
10363
10364 (gnus-ems-redefine)
10365
10366 (provide 'gnus-sum)
10367
10368 (run-hooks 'gnus-sum-load-hook)
10369
10370 ;;; gnus-sum.el ends here