7cb066958656c1a8e120b8fdeca4b67a5dba5cd7
[gnus] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile
30   (require 'cl)
31   (defvar tool-bar-map))
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 (require 'mm-decode)
41 (require 'nnoo)
42
43 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
44 (autoload 'gnus-cache-write-active "gnus-cache")
45 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
46 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
47 (autoload 'gnus-pick-line-number "gnus-salt" nil t)
48 (autoload 'mm-uu-dissect "mm-uu")
49 (autoload 'gnus-article-outlook-deuglify-article "deuglify"
50   "Deuglify broken Outlook (Express) articles and redisplay."
51   t)
52 (autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
53 (autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
54 (autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
55
56 (defcustom gnus-kill-summary-on-exit t
57   "*If non-nil, kill the summary buffer when you exit from it.
58 If nil, the summary will become a \"*Dead Summary*\" buffer, and
59 it will be killed sometime later."
60   :group 'gnus-summary-exit
61   :type 'boolean)
62
63 (defcustom gnus-fetch-old-headers nil
64   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
65 If an unread article in the group refers to an older, already read (or
66 just marked as read) article, the old article will not normally be
67 displayed in the Summary buffer.  If this variable is non-nil, Gnus
68 will attempt to grab the headers to the old articles, and thereby
69 build complete threads.  If it has the value `some', only enough
70 headers to connect otherwise loose threads will be displayed.  This
71 variable can also be a number.  In that case, no more than that number
72 of old headers will be fetched.  If it has the value `invisible', all
73 old headers will be fetched, but none will be displayed.
74
75 The server has to support NOV for any of this to work."
76   :group 'gnus-thread
77   :type '(choice (const :tag "off" nil)
78                  (const some)
79                  number
80                  (sexp :menu-tag "other" t)))
81
82 (defcustom gnus-refer-thread-limit 200
83   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
84 If t, fetch all the available old headers."
85   :group 'gnus-thread
86   :type '(choice number
87                  (sexp :menu-tag "other" t)))
88
89 (defcustom gnus-summary-make-false-root 'adopt
90   "*nil means that Gnus won't gather loose threads.
91 If the root of a thread has expired or been read in a previous
92 session, the information necessary to build a complete thread has been
93 lost.  Instead of having many small sub-threads from this original thread
94 scattered all over the summary buffer, Gnus can gather them.
95
96 If non-nil, Gnus will try to gather all loose sub-threads from an
97 original thread into one large thread.
98
99 If this variable is non-nil, it should be one of `none', `adopt',
100 `dummy' or `empty'.
101
102 If this variable is `none', Gnus will not make a false root, but just
103 present the sub-threads after another.
104 If this variable is `dummy', Gnus will create a dummy root that will
105 have all the sub-threads as children.
106 If this variable is `adopt', Gnus will make one of the \"children\"
107 the parent and mark all the step-children as such.
108 If this variable is `empty', the \"children\" are printed with empty
109 subject fields.  (Or rather, they will be printed with a string
110 given by the `gnus-summary-same-subject' variable.)"
111   :group 'gnus-thread
112   :type '(choice (const :tag "off" nil)
113                  (const none)
114                  (const dummy)
115                  (const adopt)
116                  (const empty)))
117
118 (defcustom gnus-summary-make-false-root-always nil
119   "Always make a false dummy root."
120   :group 'gnus-thread
121   :type 'boolean)
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:
151 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
152 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
153   :group 'gnus-thread
154   :type '(repeat function))
155
156 (defcustom gnus-simplify-ignored-prefixes nil
157   "*Remove matches for this regexp from subject lines when simplifying fuzzily."
158   :group 'gnus-thread
159   :type '(choice (const :tag "off" nil)
160                  regexp))
161
162 (defcustom gnus-build-sparse-threads nil
163   "*If non-nil, fill in the gaps in threads.
164 If `some', only fill in the gaps that are needed to tie loose threads
165 together.  If `more', fill in all leaf nodes that Gnus can find.  If
166 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
167   :group 'gnus-thread
168   :type '(choice (const :tag "off" nil)
169                  (const some)
170                  (const more)
171                  (sexp :menu-tag "all" t)))
172
173 (defcustom gnus-summary-thread-gathering-function
174   'gnus-gather-threads-by-subject
175   "*Function used for gathering loose threads.
176 There are two pre-defined functions: `gnus-gather-threads-by-subject',
177 which only takes Subjects into consideration; and
178 `gnus-gather-threads-by-references', which compared the References
179 headers of the articles to find matches."
180   :group 'gnus-thread
181   :type '(radio (function-item gnus-gather-threads-by-subject)
182                 (function-item gnus-gather-threads-by-references)
183                 (function :tag "other")))
184
185 (defcustom gnus-summary-same-subject ""
186   "*String indicating that the current article has the same subject as the previous.
187 This variable will only be used if the value of
188 `gnus-summary-make-false-root' is `empty'."
189   :group 'gnus-summary-format
190   :type 'string)
191
192 (defcustom gnus-summary-goto-unread t
193   "*If t, many commands will go to the next unread article.
194 This applies to marking commands as well as other commands that
195 \"naturally\" select the next article, like, for instance, `SPC' at
196 the end of an article.
197
198 If nil, the marking commands do NOT go to the next unread article
199 \(they go to the next article instead).  If `never', commands that
200 usually go to the next unread article, will go to the next article,
201 whether it is read or not."
202   :group 'gnus-summary-marks
203   :link '(custom-manual "(gnus)Setting Marks")
204   :type '(choice (const :tag "off" nil)
205                  (const never)
206                  (sexp :menu-tag "on" t)))
207
208 (defcustom gnus-summary-default-score 0
209   "*Default article score level.
210 All scores generated by the score files will be added to this score.
211 If this variable is nil, scoring will be disabled."
212   :group 'gnus-score-default
213   :type '(choice (const :tag "disable")
214                  integer))
215
216 (defcustom gnus-summary-default-high-score 0
217   "*Default threshold for a high scored article.
218 An article will be highlighted as high scored if its score is greater
219 than this score."
220   :group 'gnus-score-default
221   :type 'integer)
222
223 (defcustom gnus-summary-default-low-score 0
224   "*Default threshold for a low scored article.
225 An article will be highlighted as low scored if its score is smaller
226 than this score."
227   :group 'gnus-score-default
228   :type 'integer)
229
230 (defcustom gnus-summary-zcore-fuzz 0
231   "*Fuzziness factor for the zcore in the summary buffer.
232 Articles with scores closer than this to `gnus-summary-default-score'
233 will not be marked."
234   :group 'gnus-summary-format
235   :type 'integer)
236
237 (defcustom gnus-simplify-subject-fuzzy-regexp nil
238   "*Strings to be removed when doing fuzzy matches.
239 This can either be a regular expression or list of regular expressions
240 that will be removed from subject strings if fuzzy subject
241 simplification is selected."
242   :group 'gnus-thread
243   :type '(repeat regexp))
244
245 (defcustom gnus-show-threads t
246   "*If non-nil, display threads in summary mode."
247   :group 'gnus-thread
248   :type 'boolean)
249
250 (defcustom gnus-thread-hide-subtree nil
251   "*If non-nil, hide all threads initially.
252 This can be a predicate specifier which says which threads to hide.
253 If threads are hidden, you have to run the command
254 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
255 to expose hidden threads."
256   :group 'gnus-thread
257   :type '(radio (sexp :format "Non-nil\n"
258                       :match (lambda (widget value)
259                                (not (or (consp value) (functionp value))))
260                       :value t)
261                 (const nil)
262                 (sexp :tag "Predicate specifier" :size 0)))
263
264 (defcustom gnus-thread-hide-killed t
265   "*If non-nil, hide killed threads automatically."
266   :group 'gnus-thread
267   :type 'boolean)
268
269 (defcustom gnus-thread-ignore-subject t
270   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
271 If nil, articles that have different subjects from their parents will
272 start separate threads."
273   :group 'gnus-thread
274   :type 'boolean)
275
276 (defcustom gnus-thread-operation-ignore-subject t
277   "*If non-nil, subjects will be ignored when doing thread commands.
278 This affects commands like `gnus-summary-kill-thread' and
279 `gnus-summary-lower-thread'.
280
281 If this variable is nil, articles in the same thread with different
282 subjects will not be included in the operation in question.  If this
283 variable is `fuzzy', only articles that have subjects that are fuzzily
284 equal will be included."
285   :group 'gnus-thread
286   :type '(choice (const :tag "off" nil)
287                  (const fuzzy)
288                  (sexp :tag "on" t)))
289
290 (defcustom gnus-thread-indent-level 4
291   "*Number that says how much each sub-thread should be indented."
292   :group 'gnus-thread
293   :type 'integer)
294
295 (defcustom gnus-auto-extend-newsgroup t
296   "*If non-nil, extend newsgroup forward and backward when requested."
297   :group 'gnus-summary-choose
298   :type 'boolean)
299
300 (defcustom gnus-auto-select-first t
301   "*If non-nil, select the article under point.
302 Which article this is is controlled by the `gnus-auto-select-subject'
303 variable.
304
305 If you want to prevent automatic selection of articles in some
306 newsgroups, set the variable to nil in `gnus-select-group-hook'."
307   :group 'gnus-group-select
308   :type '(choice (const :tag "none" nil)
309                  (sexp :menu-tag "first" t)))
310
311 (defcustom gnus-auto-select-subject 'unread
312   "*Says what subject to place under point when entering a group.
313
314 This variable can either be the symbols `first' (place point on the
315 first subject), `unread' (place point on the subject line of the first
316 unread article), `best' (place point on the subject line of the
317 higest-scored article), `unseen' (place point on the subject line of
318 the first unseen article), 'unseen-or-unread' (place point on the subject
319 line of the first unseen article or, if all article have been seen, on the
320 subject line of the first unread article), or a function to be called to
321 place point on some subject line."
322   :group 'gnus-group-select
323   :type '(choice (const best)
324                  (const unread)
325                  (const first)
326                  (const unseen)
327                  (const unseen-or-unread)))
328
329 (defcustom gnus-auto-select-next t
330   "*If non-nil, offer to go to the next group from the end of the previous.
331 If the value is t and the next newsgroup is empty, Gnus will exit
332 summary mode and go back to group mode.  If the value is neither nil
333 nor t, Gnus will select the following unread newsgroup.  In
334 particular, if the value is the symbol `quietly', the next unread
335 newsgroup will be selected without any confirmation, and if it is
336 `almost-quietly', the next group will be selected without any
337 confirmation if you are located on the last article in the group.
338 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
339 will go to the next group without confirmation."
340   :group 'gnus-summary-maneuvering
341   :type '(choice (const :tag "off" nil)
342                  (const quietly)
343                  (const almost-quietly)
344                  (const slightly-quietly)
345                  (sexp :menu-tag "on" t)))
346
347 (defcustom gnus-auto-select-same nil
348   "*If non-nil, select the next article with the same subject.
349 If there are no more articles with the same subject, go to
350 the first unread article."
351   :group 'gnus-summary-maneuvering
352   :type 'boolean)
353
354 (defcustom gnus-auto-goto-ignores 'unfetched
355   "*Says how to handle unfetched articles when maneuvering.
356
357 This variable can either be the symbols nil (maneuver to any
358 article), `undownloaded' (maneuvering while unplugged ignores articles
359 that have not been fetched), `always-undownloaded' (maneuvering always
360 ignores articles that have not been fetched), `unfetched' (maneuvering
361 ignores articles whose headers have not been fetched).
362
363 NOTE: The list of unfetched articles will always be nil when plugged
364 and, when unplugged, a subset of the undownloaded article list."
365   :group 'gnus-summary-maneuvering
366   :type '(choice (const :tag "None" nil)
367                  (const :tag "Undownloaded when unplugged" undownloaded)
368                  (const :tag "Undownloaded" always-undownloaded)
369                  (const :tag "Unfetched" unfetched)))
370
371 (defcustom gnus-summary-check-current nil
372   "*If non-nil, consider the current article when moving.
373 The \"unread\" movement commands will stay on the same line if the
374 current article is unread."
375   :group 'gnus-summary-maneuvering
376   :type 'boolean)
377
378 (defcustom gnus-auto-center-summary t
379   "*If non-nil, always center the current summary buffer.
380 In particular, if `vertical' do only vertical recentering.  If non-nil
381 and non-`vertical', do both horizontal and vertical recentering."
382   :group 'gnus-summary-maneuvering
383   :type '(choice (const :tag "none" nil)
384                  (const vertical)
385                  (integer :tag "height")
386                  (sexp :menu-tag "both" t)))
387
388 (defvar gnus-auto-center-group t
389   "*If non-nil, always center the group buffer.")
390
391 (defcustom gnus-show-all-headers nil
392   "*If non-nil, don't hide any headers."
393   :group 'gnus-article-hiding
394   :group 'gnus-article-headers
395   :type 'boolean)
396
397 (defcustom gnus-summary-ignore-duplicates nil
398   "*If non-nil, ignore articles with identical Message-ID headers."
399   :group 'gnus-summary
400   :type 'boolean)
401
402 (defcustom gnus-single-article-buffer t
403   "*If non-nil, display all articles in the same buffer.
404 If nil, each group will get its own article buffer."
405   :group 'gnus-article-various
406   :type 'boolean)
407
408 (defcustom gnus-break-pages t
409   "*If non-nil, do page breaking on articles.
410 The page delimiter is specified by the `gnus-page-delimiter'
411 variable."
412   :group 'gnus-article-various
413   :type 'boolean)
414
415 (defcustom gnus-move-split-methods nil
416   "*Variable used to suggest where articles are to be moved to.
417 It uses the same syntax as the `gnus-split-methods' variable.
418 However, whereas `gnus-split-methods' specifies file names as targets,
419 this variable specifies group names."
420   :group 'gnus-summary-mail
421   :type '(repeat (choice (list :value (fun) function)
422                          (cons :value ("" "") regexp (repeat string))
423                          (sexp :value nil))))
424
425 (defcustom gnus-unread-mark ?           ;Whitespace
426   "*Mark used for unread articles."
427   :group 'gnus-summary-marks
428   :type 'character)
429
430 (defcustom gnus-ticked-mark ?!
431   "*Mark used for ticked articles."
432   :group 'gnus-summary-marks
433   :type 'character)
434
435 (defcustom gnus-dormant-mark ??
436   "*Mark used for dormant articles."
437   :group 'gnus-summary-marks
438   :type 'character)
439
440 (defcustom gnus-del-mark ?r
441   "*Mark used for del'd articles."
442   :group 'gnus-summary-marks
443   :type 'character)
444
445 (defcustom gnus-read-mark ?R
446   "*Mark used for read articles."
447   :group 'gnus-summary-marks
448   :type 'character)
449
450 (defcustom gnus-expirable-mark ?E
451   "*Mark used for expirable articles."
452   :group 'gnus-summary-marks
453   :type 'character)
454
455 (defcustom gnus-killed-mark ?K
456   "*Mark used for killed articles."
457   :group 'gnus-summary-marks
458   :type 'character)
459
460 (defcustom gnus-spam-mark ?$
461   "*Mark used for spam articles."
462   :group 'gnus-summary-marks
463   :type 'character)
464
465 (defcustom gnus-souped-mark ?F
466   "*Mark used for souped articles."
467   :group 'gnus-summary-marks
468   :type 'character)
469
470 (defcustom gnus-kill-file-mark ?X
471   "*Mark used for articles killed by kill files."
472   :group 'gnus-summary-marks
473   :type 'character)
474
475 (defcustom gnus-low-score-mark ?Y
476   "*Mark used for articles with a low score."
477   :group 'gnus-summary-marks
478   :type 'character)
479
480 (defcustom gnus-catchup-mark ?C
481   "*Mark used for articles that are caught up."
482   :group 'gnus-summary-marks
483   :type 'character)
484
485 (defcustom gnus-replied-mark ?A
486   "*Mark used for articles that have been replied to."
487   :group 'gnus-summary-marks
488   :type 'character)
489
490 (defcustom gnus-forwarded-mark ?F
491   "*Mark used for articles that have been forwarded."
492   :group 'gnus-summary-marks
493   :type 'character)
494
495 (defcustom gnus-recent-mark ?N
496   "*Mark used for articles that are recent."
497   :group 'gnus-summary-marks
498   :type 'character)
499
500 (defcustom gnus-cached-mark ?*
501   "*Mark used for articles that are in the cache."
502   :group 'gnus-summary-marks
503   :type 'character)
504
505 (defcustom gnus-saved-mark ?S
506   "*Mark used for articles that have been saved."
507   :group 'gnus-summary-marks
508   :type 'character)
509
510 (defcustom gnus-unseen-mark ?.
511   "*Mark used for articles that haven't been seen."
512   :group 'gnus-summary-marks
513   :type 'character)
514
515 (defcustom gnus-no-mark ?               ;Whitespace
516   "*Mark used for articles that have no other secondary mark."
517   :group 'gnus-summary-marks
518   :type 'character)
519
520 (defcustom gnus-ancient-mark ?O
521   "*Mark used for ancient articles."
522   :group 'gnus-summary-marks
523   :type 'character)
524
525 (defcustom gnus-sparse-mark ?Q
526   "*Mark used for sparsely reffed articles."
527   :group 'gnus-summary-marks
528   :type 'character)
529
530 (defcustom gnus-canceled-mark ?G
531   "*Mark used for canceled articles."
532   :group 'gnus-summary-marks
533   :type 'character)
534
535 (defcustom gnus-duplicate-mark ?M
536   "*Mark used for duplicate articles."
537   :group 'gnus-summary-marks
538   :type 'character)
539
540 (defcustom gnus-undownloaded-mark ?-
541   "*Mark used for articles that weren't downloaded."
542   :group 'gnus-summary-marks
543   :type 'character)
544
545 (defcustom gnus-downloaded-mark ?+
546   "*Mark used for articles that were downloaded."
547   :group 'gnus-summary-marks
548   :type 'character)
549
550 (defcustom gnus-downloadable-mark ?%
551   "*Mark used for articles that are to be downloaded."
552   :group 'gnus-summary-marks
553   :type 'character)
554
555 (defcustom gnus-unsendable-mark ?=
556   "*Mark used for articles that won't be sent."
557   :group 'gnus-summary-marks
558   :type 'character)
559
560 (defcustom gnus-score-over-mark ?+
561   "*Score mark used for articles with high scores."
562   :group 'gnus-summary-marks
563   :type 'character)
564
565 (defcustom gnus-score-below-mark ?-
566   "*Score mark used for articles with low scores."
567   :group 'gnus-summary-marks
568   :type 'character)
569
570 (defcustom gnus-empty-thread-mark ?     ;Whitespace
571   "*There is no thread under the article."
572   :group 'gnus-summary-marks
573   :type 'character)
574
575 (defcustom gnus-not-empty-thread-mark ?=
576   "*There is a thread under the article."
577   :group 'gnus-summary-marks
578   :type 'character)
579
580 (defcustom gnus-view-pseudo-asynchronously nil
581   "*If non-nil, Gnus will view pseudo-articles asynchronously."
582   :group 'gnus-extract-view
583   :type 'boolean)
584
585 (defcustom gnus-auto-expirable-marks
586   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
587         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
588         gnus-souped-mark gnus-duplicate-mark)
589   "*The list of marks converted into expiration if a group is auto-expirable."
590   :version "21.1"
591   :group 'gnus-summary
592   :type '(repeat character))
593
594 (defcustom gnus-inhibit-user-auto-expire t
595   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
596   :version "21.1"
597   :group 'gnus-summary
598   :type 'boolean)
599
600 (defcustom gnus-view-pseudos nil
601   "*If `automatic', pseudo-articles will be viewed automatically.
602 If `not-confirm', pseudos will be viewed automatically, and the user
603 will not be asked to confirm the command."
604   :group 'gnus-extract-view
605   :type '(choice (const :tag "off" nil)
606                  (const automatic)
607                  (const not-confirm)))
608
609 (defcustom gnus-view-pseudos-separately t
610   "*If non-nil, one pseudo-article will be created for each file to be viewed.
611 If nil, all files that use the same viewing command will be given as a
612 list of parameters to that command."
613   :group 'gnus-extract-view
614   :type 'boolean)
615
616 (defcustom gnus-insert-pseudo-articles t
617   "*If non-nil, insert pseudo-articles when decoding articles."
618   :group 'gnus-extract-view
619   :type 'boolean)
620
621 (defcustom gnus-summary-dummy-line-format
622   "   %(:                             :%) %S\n"
623   "*The format specification for the dummy roots in the summary buffer.
624 It works along the same lines as a normal formatting string,
625 with some simple extensions.
626
627 %S  The subject
628
629 General format specifiers can also be used.
630 See `(gnus)Formatting Variables'."
631   :link '(custom-manual "(gnus)Formatting Variables")
632   :group 'gnus-threading
633   :type 'string)
634
635 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
636   "*The format specification for the summary mode line.
637 It works along the same lines as a normal formatting string,
638 with some simple extensions:
639
640 %G  Group name
641 %p  Unprefixed group name
642 %A  Current article number
643 %z  Current article score
644 %V  Gnus version
645 %U  Number of unread articles in the group
646 %e  Number of unselected articles in the group
647 %Z  A string with unread/unselected article counts
648 %g  Shortish group name
649 %S  Subject of the current article
650 %u  User-defined spec
651 %s  Current score file name
652 %d  Number of dormant articles
653 %r  Number of articles that have been marked as read in this session
654 %E  Number of articles expunged by the score files"
655   :group 'gnus-summary-format
656   :type 'string)
657
658 (defcustom gnus-list-identifiers nil
659   "Regexp that matches list identifiers to be removed from subject.
660 This can also be a list of regexps."
661   :version "21.1"
662   :group 'gnus-summary-format
663   :group 'gnus-article-hiding
664   :type '(choice (const :tag "none" nil)
665                  (regexp :value ".*")
666                  (repeat :value (".*") regexp)))
667
668 (defcustom gnus-summary-mark-below 0
669   "*Mark all articles with a score below this variable as read.
670 This variable is local to each summary buffer and usually set by the
671 score file."
672   :group 'gnus-score-default
673   :type 'integer)
674
675 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
676   "*List of functions used for sorting articles in the summary buffer.
677
678 Each function takes two articles and returns non-nil if the first
679 article should be sorted before the other.  If you use more than one
680 function, the primary sort function should be the last.  You should
681 probably always include `gnus-article-sort-by-number' in the list of
682 sorting functions -- preferably first.  Also note that sorting by date
683 is often much slower than sorting by number, and the sorting order is
684 very similar.  (Sorting by date means sorting by the time the message
685 was sent, sorting by number means sorting by arrival time.)
686
687 Ready-made functions include `gnus-article-sort-by-number',
688 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
689 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
690 and `gnus-article-sort-by-score'.
691
692 When threading is turned on, the variable `gnus-thread-sort-functions'
693 controls how articles are sorted."
694   :group 'gnus-summary-sort
695   :type '(repeat (choice (function-item gnus-article-sort-by-number)
696                          (function-item gnus-article-sort-by-author)
697                          (function-item gnus-article-sort-by-subject)
698                          (function-item gnus-article-sort-by-date)
699                          (function-item gnus-article-sort-by-score)
700                          (function-item gnus-article-sort-by-random)
701                          (function :tag "other"))))
702
703 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
704   "*List of functions used for sorting threads in the summary buffer.
705 By default, threads are sorted by article number.
706
707 Each function takes two threads and returns non-nil if the first
708 thread should be sorted before the other.  If you use more than one
709 function, the primary sort function should be the last.  You should
710 probably always include `gnus-thread-sort-by-number' in the list of
711 sorting functions -- preferably first.  Also note that sorting by date
712 is often much slower than sorting by number, and the sorting order is
713 very similar.  (Sorting by date means sorting by the time the message
714 was sent, sorting by number means sorting by arrival time.)
715
716 Ready-made functions include `gnus-thread-sort-by-number',
717 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
718 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score',
719 `gnus-thread-sort-by-most-recent-number',
720 `gnus-thread-sort-by-most-recent-date',
721 `gnus-thread-sort-by-random', and
722 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function').
723
724 When threading is turned off, the variable
725 `gnus-article-sort-functions' controls how articles are sorted."
726   :group 'gnus-summary-sort
727   :type '(repeat (choice (function-item gnus-thread-sort-by-number)
728                          (function-item gnus-thread-sort-by-author)
729                          (function-item gnus-thread-sort-by-subject)
730                          (function-item gnus-thread-sort-by-date)
731                          (function-item gnus-thread-sort-by-score)
732                          (function-item gnus-thread-sort-by-total-score)
733                          (function-item gnus-thread-sort-by-random)
734                          (function :tag "other"))))
735
736 (defcustom gnus-thread-score-function '+
737   "*Function used for calculating the total score of a thread.
738
739 The function is called with the scores of the article and each
740 subthread and should then return the score of the thread.
741
742 Some functions you can use are `+', `max', or `min'."
743   :group 'gnus-summary-sort
744   :type 'function)
745
746 (defcustom gnus-summary-expunge-below nil
747   "All articles that have a score less than this variable will be expunged.
748 This variable is local to the summary buffers."
749   :group 'gnus-score-default
750   :type '(choice (const :tag "off" nil)
751                  integer))
752
753 (defcustom gnus-thread-expunge-below nil
754   "All threads that have a total score less than this variable will be expunged.
755 See `gnus-thread-score-function' for en explanation of what a
756 \"thread score\" is.
757
758 This variable is local to the summary buffers."
759   :group 'gnus-threading
760   :group 'gnus-score-default
761   :type '(choice (const :tag "off" nil)
762                  integer))
763
764 (defcustom gnus-summary-mode-hook nil
765   "*A hook for Gnus summary mode.
766 This hook is run before any variables are set in the summary buffer."
767   :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
768   :group 'gnus-summary-various
769   :type 'hook)
770
771 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
772 (when (featurep 'xemacs)
773   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
774   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
775   (add-hook 'gnus-summary-mode-hook
776             'gnus-xmas-switch-horizontal-scrollbar-off))
777
778 (defcustom gnus-summary-menu-hook nil
779   "*Hook run after the creation of the summary mode menu."
780   :group 'gnus-summary-visual
781   :type 'hook)
782
783 (defcustom gnus-summary-exit-hook nil
784   "*A hook called on exit from the summary buffer.
785 It will be called with point in the group buffer."
786   :group 'gnus-summary-exit
787   :type 'hook)
788
789 (defcustom gnus-summary-prepare-hook nil
790   "*A hook called after the summary buffer has been generated.
791 If you want to modify the summary buffer, you can use this hook."
792   :group 'gnus-summary-various
793   :type 'hook)
794
795 (defcustom gnus-summary-prepared-hook nil
796   "*A hook called as the last thing after the summary buffer has been generated."
797   :group 'gnus-summary-various
798   :type 'hook)
799
800 (defcustom gnus-summary-generate-hook nil
801   "*A hook run just before generating the summary buffer.
802 This hook is commonly used to customize threading variables and the
803 like."
804   :group 'gnus-summary-various
805   :type 'hook)
806
807 (defcustom gnus-select-group-hook nil
808   "*A hook called when a newsgroup is selected.
809
810 If you'd like to simplify subjects like the
811 `gnus-summary-next-same-subject' command does, you can use the
812 following hook:
813
814  (add-hook gnus-select-group-hook
815            (lambda ()
816              (mapcar (lambda (header)
817                        (mail-header-set-subject
818                         header
819                         (gnus-simplify-subject
820                          (mail-header-subject header) 're-only)))
821                      gnus-newsgroup-headers)))"
822   :group 'gnus-group-select
823   :type 'hook)
824
825 (defcustom gnus-select-article-hook nil
826   "*A hook called when an article is selected."
827   :group 'gnus-summary-choose
828   :options '(gnus-agent-fetch-selected-article)
829   :type 'hook)
830
831 (defcustom gnus-visual-mark-article-hook
832   (list 'gnus-highlight-selected-summary)
833   "*Hook run after selecting an article in the summary buffer.
834 It is meant to be used for highlighting the article in some way.  It
835 is not run if `gnus-visual' is nil."
836   :group 'gnus-summary-visual
837   :type 'hook)
838
839 (defcustom gnus-parse-headers-hook nil
840   "*A hook called before parsing the headers."
841   :group 'gnus-various
842   :type 'hook)
843
844 (defcustom gnus-exit-group-hook nil
845   "*A hook called when exiting summary mode.
846 This hook is not called from the non-updating exit commands like `Q'."
847   :group 'gnus-various
848   :type 'hook)
849
850 (defcustom gnus-summary-update-hook
851   (list 'gnus-summary-highlight-line)
852   "*A hook called when a summary line is changed.
853 The hook will not be called if `gnus-visual' is nil.
854
855 The default function `gnus-summary-highlight-line' will
856 highlight the line according to the `gnus-summary-highlight'
857 variable."
858   :group 'gnus-summary-visual
859   :type 'hook)
860
861 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
862   "*A hook called when an article is selected for the first time.
863 The hook is intended to mark an article as read (or unread)
864 automatically when it is selected."
865   :group 'gnus-summary-choose
866   :type 'hook)
867
868 (defcustom gnus-group-no-more-groups-hook nil
869   "*A hook run when returning to group mode having no more (unread) groups."
870   :group 'gnus-group-select
871   :type 'hook)
872
873 (defcustom gnus-ps-print-hook nil
874   "*A hook run before ps-printing something from Gnus."
875   :group 'gnus-summary
876   :type 'hook)
877
878 (defcustom gnus-summary-article-move-hook nil
879   "*A hook called after an article is moved, copied, respooled, or crossposted."
880   :group 'gnus-summary
881   :type 'hook)
882
883 (defcustom gnus-summary-article-delete-hook nil
884   "*A hook called after an article is deleted."
885   :group 'gnus-summary
886   :type 'hook)
887
888 (defcustom gnus-summary-article-expire-hook nil
889   "*A hook called after an article is expired."
890   :group 'gnus-summary
891   :type 'hook)
892
893 (defcustom gnus-summary-display-arrow
894   (and (fboundp 'display-graphic-p)
895        (display-graphic-p))
896   "*If non-nil, display an arrow highlighting the current article."
897   :version "21.1"
898   :group 'gnus-summary
899   :type 'boolean)
900
901 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
902   "Face used for highlighting the current article in the summary buffer."
903   :group 'gnus-summary-visual
904   :type 'face)
905
906 (defvar gnus-tmp-downloaded nil)
907
908 (defcustom gnus-summary-highlight
909   '(((eq mark gnus-canceled-mark)
910      . gnus-summary-cancelled-face)
911     ((and uncached (> score default-high))
912      . gnus-summary-high-undownloaded-face)
913     ((and uncached (< score default-low))
914      . gnus-summary-low-undownloaded-face)
915     (uncached
916      . gnus-summary-normal-undownloaded-face)
917     ((and (> score default-high)
918           (or (eq mark gnus-dormant-mark)
919               (eq mark gnus-ticked-mark)))
920      . gnus-summary-high-ticked-face)
921     ((and (< score default-low)
922           (or (eq mark gnus-dormant-mark)
923               (eq mark gnus-ticked-mark)))
924      . gnus-summary-low-ticked-face)
925     ((or (eq mark gnus-dormant-mark)
926          (eq mark gnus-ticked-mark))
927      . gnus-summary-normal-ticked-face)
928     ((and (> score default-high) (eq mark gnus-ancient-mark))
929      . gnus-summary-high-ancient-face)
930     ((and (< score default-low) (eq mark gnus-ancient-mark))
931      . gnus-summary-low-ancient-face)
932     ((eq mark gnus-ancient-mark)
933      . gnus-summary-normal-ancient-face)
934     ((and (> score default-high) (eq mark gnus-unread-mark))
935      . gnus-summary-high-unread-face)
936     ((and (< score default-low) (eq mark gnus-unread-mark))
937      . gnus-summary-low-unread-face)
938     ((eq mark gnus-unread-mark)
939      . gnus-summary-normal-unread-face)
940     ((> score default-high)
941      . gnus-summary-high-read-face)
942     ((< score default-low)
943      . gnus-summary-low-read-face)
944     (t
945      . gnus-summary-normal-read-face))
946   "*Controls the highlighting of summary buffer lines.
947
948 A list of (FORM . FACE) pairs.  When deciding how a a particular
949 summary line should be displayed, each form is evaluated.  The content
950 of the face field after the first true form is used.  You can change
951 how those summary lines are displayed, by editing the face field.
952
953 You can use the following variables in the FORM field.
954
955 score:        The article's score
956 default:      The default article score.
957 default-high: The default score for high scored articles.
958 default-low:  The default score for low scored articles.
959 below:        The score below which articles are automatically marked as read.
960 mark:         The article's mark.
961 uncached:     Non-nil if the article is uncached."
962   :group 'gnus-summary-visual
963   :type '(repeat (cons (sexp :tag "Form" nil)
964                        face)))
965
966 (defcustom gnus-alter-header-function nil
967   "Function called to allow alteration of article header structures.
968 The function is called with one parameter, the article header vector,
969 which it may alter in any way."
970   :type '(choice (const :tag "None" nil)
971                  function)
972   :group 'gnus-summary)
973
974 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
975   "Variable that says which function should be used to decode a string with encoded words.")
976
977 (defcustom gnus-extra-headers '(To Newsgroups)
978   "*Extra headers to parse."
979   :version "21.1"
980   :group 'gnus-summary
981   :type '(repeat symbol))
982
983 (defcustom gnus-ignored-from-addresses
984   (and user-mail-address (regexp-quote user-mail-address))
985   "*Regexp of From headers that may be suppressed in favor of To headers."
986   :version "21.1"
987   :group 'gnus-summary
988   :type 'regexp)
989
990 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
991   "List of charsets that should be ignored.
992 When these charsets are used in the \"charset\" parameter, the
993 default charset will be used instead."
994   :version "21.1"
995   :type '(repeat symbol)
996   :group 'gnus-charset)
997
998 (gnus-define-group-parameter
999  ignored-charsets
1000  :type list
1001  :function-document
1002  "Return the ignored charsets of GROUP."
1003  :variable gnus-group-ignored-charsets-alist
1004  :variable-default
1005  '(("alt\\.chinese\\.text" iso-8859-1))
1006  :variable-document
1007  "Alist of regexps (to match group names) and charsets that should be ignored.
1008 When these charsets are used in the \"charset\" parameter, the
1009 default charset will be used instead."
1010  :variable-group gnus-charset
1011  :variable-type '(repeat (cons (regexp :tag "Group")
1012                                (repeat symbol)))
1013  :parameter-type '(choice :tag "Ignored charsets"
1014                           :value nil
1015                           (repeat (symbol)))
1016  :parameter-document       "\
1017 List of charsets that should be ignored.
1018
1019 When these charsets are used in the \"charset\" parameter, the
1020 default charset will be used instead.")
1021
1022 (defcustom gnus-group-highlight-words-alist nil
1023   "Alist of group regexps and highlight regexps.
1024 This variable uses the same syntax as `gnus-emphasis-alist'."
1025   :version "21.1"
1026   :type '(repeat (cons (regexp :tag "Group")
1027                        (repeat (list (regexp :tag "Highlight regexp")
1028                                      (number :tag "Group for entire word" 0)
1029                                      (number :tag "Group for displayed part" 0)
1030                                      (symbol :tag "Face"
1031                                              gnus-emphasis-highlight-words)))))
1032   :group 'gnus-summary-visual)
1033
1034 (defcustom gnus-summary-show-article-charset-alist
1035   nil
1036   "Alist of number and charset.
1037 The article will be shown with the charset corresponding to the
1038 numbered argument.
1039 For example: ((1 . cn-gb-2312) (2 . big5))."
1040   :version "21.1"
1041   :type '(repeat (cons (number :tag "Argument" 1)
1042                        (symbol :tag "Charset")))
1043   :group 'gnus-charset)
1044
1045 (defcustom gnus-preserve-marks t
1046   "Whether marks are preserved when moving, copying and respooling messages."
1047   :version "21.1"
1048   :type 'boolean
1049   :group 'gnus-summary-marks)
1050
1051 (defcustom gnus-alter-articles-to-read-function nil
1052   "Function to be called to alter the list of articles to be selected."
1053   :type '(choice (const nil) function)
1054   :group 'gnus-summary)
1055
1056 (defcustom gnus-orphan-score nil
1057   "*All orphans get this score added.  Set in the score file."
1058   :group 'gnus-score-default
1059   :type '(choice (const nil)
1060                  integer))
1061
1062 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1063   "*A regexp to match MIME parts when saving multiple parts of a
1064 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1065 This regexp will be used by default when prompting the user for which
1066 type of files to save."
1067   :group 'gnus-summary
1068   :type 'regexp)
1069
1070 (defcustom gnus-read-all-available-headers nil
1071   "Whether Gnus should parse all headers made available to it.
1072 This is mostly relevant for slow back ends where the user may
1073 wish to widen the summary buffer to include all headers
1074 that were fetched.  Say, for nnultimate groups."
1075   :group 'gnus-summary
1076   :type '(choice boolean regexp))
1077
1078 (defcustom gnus-summary-muttprint-program "muttprint"
1079   "Command (and optional arguments) used to run Muttprint."
1080   :version "21.3"
1081   :group 'gnus-summary
1082   :type 'string)
1083
1084 (defcustom gnus-article-loose-mime nil
1085   "If non-nil, don't require MIME-Version header.
1086 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1087 supply the MIME-Version header or deliberately strip it From the mail.
1088 Set it to non-nil, Gnus will treat some articles as MIME even if
1089 the MIME-Version header is missed."
1090   :version "21.3"
1091   :type 'boolean
1092   :group 'gnus-article-mime)
1093
1094 (defcustom gnus-article-emulate-mime t
1095   "If non-nil, use MIME emulation for uuencode and the like.
1096 This means that Gnus will search message bodies for text that look
1097 like uuencoded bits, yEncoded bits, and so on, and present that using
1098 the normal Gnus MIME machinery."
1099   :type 'boolean
1100   :group 'gnus-article-mime)
1101
1102 ;;; Internal variables
1103
1104 (defvar gnus-summary-display-cache nil)
1105 (defvar gnus-article-mime-handles nil)
1106 (defvar gnus-article-decoded-p nil)
1107 (defvar gnus-article-charset nil)
1108 (defvar gnus-article-ignored-charsets nil)
1109 (defvar gnus-scores-exclude-files nil)
1110 (defvar gnus-page-broken nil)
1111
1112 (defvar gnus-original-article nil)
1113 (defvar gnus-article-internal-prepare-hook nil)
1114 (defvar gnus-newsgroup-process-stack nil)
1115
1116 (defvar gnus-thread-indent-array nil)
1117 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1118 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1119   "Function called to sort the articles within a thread after it has been gathered together.")
1120
1121 (defvar gnus-summary-save-parts-type-history nil)
1122 (defvar gnus-summary-save-parts-last-directory mm-default-directory)
1123
1124 ;; Avoid highlighting in kill files.
1125 (defvar gnus-summary-inhibit-highlight nil)
1126 (defvar gnus-newsgroup-selected-overlay nil)
1127 (defvar gnus-inhibit-limiting nil)
1128 (defvar gnus-newsgroup-adaptive-score-file nil)
1129 (defvar gnus-current-score-file nil)
1130 (defvar gnus-current-move-group nil)
1131 (defvar gnus-current-copy-group nil)
1132 (defvar gnus-current-crosspost-group nil)
1133 (defvar gnus-newsgroup-display nil)
1134
1135 (defvar gnus-newsgroup-dependencies nil)
1136 (defvar gnus-newsgroup-adaptive nil)
1137 (defvar gnus-summary-display-article-function nil)
1138 (defvar gnus-summary-highlight-line-function nil
1139   "Function called after highlighting a summary line.")
1140
1141 (defvar gnus-summary-line-format-alist
1142   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1143     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1144     (?s gnus-tmp-subject-or-nil ?s)
1145     (?n gnus-tmp-name ?s)
1146     (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
1147         ?s)
1148     (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
1149             gnus-tmp-from) ?s)
1150     (?F gnus-tmp-from ?s)
1151     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1152     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1153     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1154     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1155     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1156     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1157     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1158     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1159     (?L gnus-tmp-lines ?s)
1160     (?O gnus-tmp-downloaded ?c)
1161     (?I gnus-tmp-indentation ?s)
1162     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1163     (?R gnus-tmp-replied ?c)
1164     (?\[ gnus-tmp-opening-bracket ?c)
1165     (?\] gnus-tmp-closing-bracket ?c)
1166     (?\> (make-string gnus-tmp-level ? ) ?s)
1167     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1168     (?i gnus-tmp-score ?d)
1169     (?z gnus-tmp-score-char ?c)
1170     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1171     (?U gnus-tmp-unread ?c)
1172     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1173         ?s)
1174     (?t (gnus-summary-number-of-articles-in-thread
1175          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1176         ?d)
1177     (?e (gnus-summary-number-of-articles-in-thread
1178          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1179         ?c)
1180     (?u gnus-tmp-user-defined ?s)
1181     (?P (gnus-pick-line-number) ?d)
1182     (?B gnus-tmp-thread-tree-header-string ?s)
1183     (user-date (gnus-user-date
1184                 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1185   "An alist of format specifications that can appear in summary lines.
1186 These are paired with what variables they correspond with, along with
1187 the type of the variable (string, integer, character, etc).")
1188
1189 (defvar gnus-summary-dummy-line-format-alist
1190   `((?S gnus-tmp-subject ?s)
1191     (?N gnus-tmp-number ?d)
1192     (?u gnus-tmp-user-defined ?s)))
1193
1194 (defvar gnus-summary-mode-line-format-alist
1195   `((?G gnus-tmp-group-name ?s)
1196     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1197     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1198     (?A gnus-tmp-article-number ?d)
1199     (?Z gnus-tmp-unread-and-unselected ?s)
1200     (?V gnus-version ?s)
1201     (?U gnus-tmp-unread-and-unticked ?d)
1202     (?S gnus-tmp-subject ?s)
1203     (?e gnus-tmp-unselected ?d)
1204     (?u gnus-tmp-user-defined ?s)
1205     (?d (length gnus-newsgroup-dormant) ?d)
1206     (?t (length gnus-newsgroup-marked) ?d)
1207     (?h (length gnus-newsgroup-spam-marked) ?d)
1208     (?r (length gnus-newsgroup-reads) ?d)
1209     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1210     (?E gnus-newsgroup-expunged-tally ?d)
1211     (?s (gnus-current-score-file-nondirectory) ?s)))
1212
1213 (defvar gnus-last-search-regexp nil
1214   "Default regexp for article search command.")
1215
1216 (defvar gnus-last-shell-command nil
1217   "Default shell command on article.")
1218
1219 (defvar gnus-newsgroup-agentized nil
1220   "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1221 (defvar gnus-newsgroup-begin nil)
1222 (defvar gnus-newsgroup-end nil)
1223 (defvar gnus-newsgroup-last-rmail nil)
1224 (defvar gnus-newsgroup-last-mail nil)
1225 (defvar gnus-newsgroup-last-folder nil)
1226 (defvar gnus-newsgroup-last-file nil)
1227 (defvar gnus-newsgroup-auto-expire nil)
1228 (defvar gnus-newsgroup-active nil)
1229
1230 (defvar gnus-newsgroup-data nil)
1231 (defvar gnus-newsgroup-data-reverse nil)
1232 (defvar gnus-newsgroup-limit nil)
1233 (defvar gnus-newsgroup-limits nil)
1234 (defvar gnus-summary-use-undownloaded-faces nil)
1235
1236 (defvar gnus-newsgroup-unreads nil
1237   "Sorted list of unread articles in the current newsgroup.")
1238
1239 (defvar gnus-newsgroup-unselected nil
1240   "Sorted list of unselected unread articles in the current newsgroup.")
1241
1242 (defvar gnus-newsgroup-reads nil
1243   "Alist of read articles and article marks in the current newsgroup.")
1244
1245 (defvar gnus-newsgroup-expunged-tally nil)
1246
1247 (defvar gnus-newsgroup-marked nil
1248   "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1249
1250 (defvar gnus-newsgroup-spam-marked nil
1251   "List of ranges of articles that have been marked as spam.")
1252
1253 (defvar gnus-newsgroup-killed nil
1254   "List of ranges of articles that have been through the scoring process.")
1255
1256 (defvar gnus-newsgroup-cached nil
1257   "Sorted list of articles that come from the article cache.")
1258
1259 (defvar gnus-newsgroup-saved nil
1260   "List of articles that have been saved.")
1261
1262 (defvar gnus-newsgroup-kill-headers nil)
1263
1264 (defvar gnus-newsgroup-replied nil
1265   "List of articles that have been replied to in the current newsgroup.")
1266
1267 (defvar gnus-newsgroup-forwarded nil
1268   "List of articles that have been forwarded in the current newsgroup.")
1269
1270 (defvar gnus-newsgroup-recent nil
1271   "List of articles that have are recent in the current newsgroup.")
1272
1273 (defvar gnus-newsgroup-expirable nil
1274   "Sorted list of articles in the current newsgroup that can be expired.")
1275
1276 (defvar gnus-newsgroup-processable nil
1277   "List of articles in the current newsgroup that can be processed.")
1278
1279 (defvar gnus-newsgroup-downloadable nil
1280   "Sorted list of articles in the current newsgroup that can be processed.")
1281
1282 (defvar gnus-newsgroup-unfetched nil
1283   "Sorted list of articles in the current newsgroup whose headers have
1284 not been fetched into the agent.
1285
1286 This list will always be a subset of gnus-newsgroup-undownloaded.")
1287
1288 (defvar gnus-newsgroup-undownloaded nil
1289   "List of articles in the current newsgroup that haven't been downloaded.")
1290
1291 (defvar gnus-newsgroup-unsendable nil
1292   "List of articles in the current newsgroup that won't be sent.")
1293
1294 (defvar gnus-newsgroup-bookmarks nil
1295   "List of articles in the current newsgroup that have bookmarks.")
1296
1297 (defvar gnus-newsgroup-dormant nil
1298   "Sorted list of dormant articles in the current newsgroup.")
1299
1300 (defvar gnus-newsgroup-unseen nil
1301   "List of unseen articles in the current newsgroup.")
1302
1303 (defvar gnus-newsgroup-seen nil
1304   "Range of seen articles in the current newsgroup.")
1305
1306 (defvar gnus-newsgroup-articles nil
1307   "List of articles in the current newsgroup.")
1308
1309 (defvar gnus-newsgroup-scored nil
1310   "List of scored articles in the current newsgroup.")
1311
1312 (defvar gnus-newsgroup-headers nil
1313   "List of article headers in the current newsgroup.")
1314
1315 (defvar gnus-newsgroup-threads nil)
1316
1317 (defvar gnus-newsgroup-prepared nil
1318   "Whether the current group has been prepared properly.")
1319
1320 (defvar gnus-newsgroup-ancient nil
1321   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1322
1323 (defvar gnus-newsgroup-sparse nil)
1324
1325 (defvar gnus-current-article nil)
1326 (defvar gnus-article-current nil)
1327 (defvar gnus-current-headers nil)
1328 (defvar gnus-have-all-headers nil)
1329 (defvar gnus-last-article nil)
1330 (defvar gnus-newsgroup-history nil)
1331 (defvar gnus-newsgroup-charset nil)
1332 (defvar gnus-newsgroup-ephemeral-charset nil)
1333 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1334
1335 (defvar gnus-article-before-search nil)
1336
1337 (defvar gnus-summary-local-variables
1338   '(gnus-newsgroup-name
1339     gnus-newsgroup-begin gnus-newsgroup-end
1340     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1341     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1342     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1343     gnus-newsgroup-unselected gnus-newsgroup-marked
1344     gnus-newsgroup-spam-marked
1345     gnus-newsgroup-reads gnus-newsgroup-saved
1346     gnus-newsgroup-replied gnus-newsgroup-forwarded
1347     gnus-newsgroup-recent
1348     gnus-newsgroup-expirable
1349     gnus-newsgroup-processable gnus-newsgroup-killed
1350     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1351     gnus-newsgroup-unfetched
1352     gnus-newsgroup-unsendable gnus-newsgroup-unseen
1353     gnus-newsgroup-seen gnus-newsgroup-articles
1354     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1355     gnus-newsgroup-headers gnus-newsgroup-threads
1356     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1357     gnus-current-article gnus-current-headers gnus-have-all-headers
1358     gnus-last-article gnus-article-internal-prepare-hook
1359     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1360     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1361     gnus-thread-expunge-below
1362     gnus-score-alist gnus-current-score-file
1363     (gnus-summary-expunge-below . global)
1364     (gnus-summary-mark-below . global)
1365     (gnus-orphan-score . global)
1366     gnus-newsgroup-active gnus-scores-exclude-files
1367     gnus-newsgroup-history gnus-newsgroup-ancient
1368     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1369     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1370     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1371     (gnus-newsgroup-expunged-tally . 0)
1372     gnus-cache-removable-articles gnus-newsgroup-cached
1373     gnus-newsgroup-data gnus-newsgroup-data-reverse
1374     gnus-newsgroup-limit gnus-newsgroup-limits
1375     gnus-newsgroup-charset gnus-newsgroup-display
1376     gnus-summary-use-undownloaded-faces)
1377   "Variables that are buffer-local to the summary buffers.")
1378
1379 (defvar gnus-newsgroup-variables nil
1380   "A list of variables that have separate values in different newsgroups.
1381 A list of newsgroup (summary buffer) local variables, or cons of
1382 variables and their default values (when the default values are not
1383 nil), that should be made global while the summary buffer is active.
1384 These variables can be used to set variables in the group parameters
1385 while still allowing them to affect operations done in other
1386 buffers. For example:
1387
1388 \(setq gnus-newsgroup-variables
1389      '(message-use-followup-to
1390        (gnus-visible-headers .
1391          \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1392 ")
1393
1394 ;; Byte-compiler warning.
1395 (eval-when-compile
1396   ;; Bind features so that require will believe that gnus-sum has
1397   ;; already been loaded (avoids infinite recursion)
1398   (let ((features (cons 'gnus-sum features)))
1399     ;; Several of the declarations in gnus-sum are needed to load the
1400     ;; following files. Right now, these definitions have been
1401     ;; compiled but not defined (evaluated).  We could either do a
1402     ;; eval-and-compile about all of the declarations or evaluate the
1403     ;; source file.
1404     (if (boundp 'gnus-newsgroup-variables)
1405         nil
1406       (load "gnus-sum.el" t t t))
1407     (require 'gnus)
1408     (require 'gnus-agent)
1409     (require 'gnus-art)))
1410
1411 ;; MIME stuff.
1412
1413 (defvar gnus-decode-encoded-word-methods
1414   '(mail-decode-encoded-word-string)
1415   "List of methods used to decode encoded words.
1416
1417 This variable is a list of FUNCTION or (REGEXP . FUNCTION).  If item
1418 is FUNCTION, FUNCTION will be apply to all newsgroups.  If item is a
1419 \(REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
1420 whose names match REGEXP.
1421
1422 For example:
1423 \((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
1424  mail-decode-encoded-word-string
1425  (\"chinese\" . rfc1843-decode-string))")
1426
1427 (defvar gnus-decode-encoded-word-methods-cache nil)
1428
1429 (defun gnus-multi-decode-encoded-word-string (string)
1430   "Apply the functions from `gnus-encoded-word-methods' that match."
1431   (unless (and gnus-decode-encoded-word-methods-cache
1432                (eq gnus-newsgroup-name
1433                    (car gnus-decode-encoded-word-methods-cache)))
1434     (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
1435     (mapcar (lambda (x)
1436               (if (symbolp x)
1437                   (nconc gnus-decode-encoded-word-methods-cache (list x))
1438                 (if (and gnus-newsgroup-name
1439                          (string-match (car x) gnus-newsgroup-name))
1440                     (nconc gnus-decode-encoded-word-methods-cache
1441                            (list (cdr x))))))
1442             gnus-decode-encoded-word-methods))
1443   (let ((xlist gnus-decode-encoded-word-methods-cache))
1444     (pop xlist)
1445     (while xlist
1446       (setq string (funcall (pop xlist) string))))
1447   string)
1448
1449 ;; Subject simplification.
1450
1451 (defun gnus-simplify-whitespace (str)
1452   "Remove excessive whitespace from STR."
1453   ;; Multiple spaces.
1454   (while (string-match "[ \t][ \t]+" str)
1455     (setq str (concat (substring str 0 (match-beginning 0))
1456                         " "
1457                         (substring str (match-end 0)))))
1458   ;; Leading spaces.
1459   (when (string-match "^[ \t]+" str)
1460     (setq str (substring str (match-end 0))))
1461   ;; Trailing spaces.
1462   (when (string-match "[ \t]+$" str)
1463     (setq str (substring str 0 (match-beginning 0))))
1464   str)
1465
1466 (defun gnus-simplify-all-whitespace (str)
1467   "Remove all whitespace from STR."
1468   (while (string-match "[ \t\n]+" str)
1469     (setq str (replace-match "" nil nil str)))
1470   str)
1471
1472 (defsubst gnus-simplify-subject-re (subject)
1473   "Remove \"Re:\" from subject lines."
1474   (if (string-match message-subject-re-regexp subject)
1475       (substring subject (match-end 0))
1476     subject))
1477
1478 (defun gnus-simplify-subject (subject &optional re-only)
1479   "Remove `Re:' and words in parentheses.
1480 If RE-ONLY is non-nil, strip leading `Re:'s only."
1481   (let ((case-fold-search t))           ;Ignore case.
1482     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1483     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1484       (setq subject (substring subject (match-end 0))))
1485     ;; Remove uninteresting prefixes.
1486     (when (and (not re-only)
1487                gnus-simplify-ignored-prefixes
1488                (string-match gnus-simplify-ignored-prefixes subject))
1489       (setq subject (substring subject (match-end 0))))
1490     ;; Remove words in parentheses from end.
1491     (unless re-only
1492       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1493         (setq subject (substring subject 0 (match-beginning 0)))))
1494     ;; Return subject string.
1495     subject))
1496
1497 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1498 ;; all whitespace.
1499 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1500   (goto-char (point-min))
1501   (while (re-search-forward regexp nil t)
1502     (replace-match (or newtext ""))))
1503
1504 (defun gnus-simplify-buffer-fuzzy ()
1505   "Simplify string in the buffer fuzzily.
1506 The string in the accessible portion of the current buffer is simplified.
1507 It is assumed to be a single-line subject.
1508 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1509 matter is removed.  Additional things can be deleted by setting
1510 `gnus-simplify-subject-fuzzy-regexp'."
1511   (let ((case-fold-search t)
1512         (modified-tick))
1513     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1514
1515     (while (not (eq modified-tick (buffer-modified-tick)))
1516       (setq modified-tick (buffer-modified-tick))
1517       (cond
1518        ((listp gnus-simplify-subject-fuzzy-regexp)
1519         (mapcar 'gnus-simplify-buffer-fuzzy-step
1520                 gnus-simplify-subject-fuzzy-regexp))
1521        (gnus-simplify-subject-fuzzy-regexp
1522         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1523       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1524       (gnus-simplify-buffer-fuzzy-step
1525        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1526       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1527
1528     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1529     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1530     (gnus-simplify-buffer-fuzzy-step " $")
1531     (gnus-simplify-buffer-fuzzy-step "^ +")))
1532
1533 (defun gnus-simplify-subject-fuzzy (subject)
1534   "Simplify a subject string fuzzily.
1535 See `gnus-simplify-buffer-fuzzy' for details."
1536   (save-excursion
1537     (gnus-set-work-buffer)
1538     (let ((case-fold-search t))
1539       ;; Remove uninteresting prefixes.
1540       (when (and gnus-simplify-ignored-prefixes
1541                  (string-match gnus-simplify-ignored-prefixes subject))
1542         (setq subject (substring subject (match-end 0))))
1543       (insert subject)
1544       (inline (gnus-simplify-buffer-fuzzy))
1545       (buffer-string))))
1546
1547 (defsubst gnus-simplify-subject-fully (subject)
1548   "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1549   (cond
1550    (gnus-simplify-subject-functions
1551     (gnus-map-function gnus-simplify-subject-functions subject))
1552    ((null gnus-summary-gather-subject-limit)
1553     (gnus-simplify-subject-re subject))
1554    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1555     (gnus-simplify-subject-fuzzy subject))
1556    ((numberp gnus-summary-gather-subject-limit)
1557     (gnus-limit-string (gnus-simplify-subject-re subject)
1558                        gnus-summary-gather-subject-limit))
1559    (t
1560     subject)))
1561
1562 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1563   "Check whether two subjects are equal.
1564 If optional argument SIMPLE-FIRST is t, first argument is already
1565 simplified."
1566   (cond
1567    ((null simple-first)
1568     (equal (gnus-simplify-subject-fully s1)
1569            (gnus-simplify-subject-fully s2)))
1570    (t
1571     (equal s1
1572            (gnus-simplify-subject-fully s2)))))
1573
1574 (defun gnus-summary-bubble-group ()
1575   "Increase the score of the current group.
1576 This is a handy function to add to `gnus-summary-exit-hook' to
1577 increase the score of each group you read."
1578   (gnus-group-add-score gnus-newsgroup-name))
1579
1580 \f
1581 ;;;
1582 ;;; Gnus summary mode
1583 ;;;
1584
1585 (put 'gnus-summary-mode 'mode-class 'special)
1586
1587 (defvar gnus-article-commands-menu)
1588
1589 ;; Non-orthogonal keys
1590
1591 (gnus-define-keys gnus-summary-mode-map
1592   " " gnus-summary-next-page
1593   "\177" gnus-summary-prev-page
1594   [delete] gnus-summary-prev-page
1595   [backspace] gnus-summary-prev-page
1596   "\r" gnus-summary-scroll-up
1597   "\M-\r" gnus-summary-scroll-down
1598   "n" gnus-summary-next-unread-article
1599   "p" gnus-summary-prev-unread-article
1600   "N" gnus-summary-next-article
1601   "P" gnus-summary-prev-article
1602   "\M-\C-n" gnus-summary-next-same-subject
1603   "\M-\C-p" gnus-summary-prev-same-subject
1604   "\M-n" gnus-summary-next-unread-subject
1605   "\M-p" gnus-summary-prev-unread-subject
1606   "." gnus-summary-first-unread-article
1607   "," gnus-summary-best-unread-article
1608   "\M-s" gnus-summary-search-article-forward
1609   "\M-r" gnus-summary-search-article-backward
1610   "<" gnus-summary-beginning-of-article
1611   ">" gnus-summary-end-of-article
1612   "j" gnus-summary-goto-article
1613   "^" gnus-summary-refer-parent-article
1614   "\M-^" gnus-summary-refer-article
1615   "u" gnus-summary-tick-article-forward
1616   "!" gnus-summary-tick-article-forward
1617   "U" gnus-summary-tick-article-backward
1618   "d" gnus-summary-mark-as-read-forward
1619   "D" gnus-summary-mark-as-read-backward
1620   "E" gnus-summary-mark-as-expirable
1621   "\M-u" gnus-summary-clear-mark-forward
1622   "\M-U" gnus-summary-clear-mark-backward
1623   "k" gnus-summary-kill-same-subject-and-select
1624   "\C-k" gnus-summary-kill-same-subject
1625   "\M-\C-k" gnus-summary-kill-thread
1626   "\M-\C-l" gnus-summary-lower-thread
1627   "e" gnus-summary-edit-article
1628   "#" gnus-summary-mark-as-processable
1629   "\M-#" gnus-summary-unmark-as-processable
1630   "\M-\C-t" gnus-summary-toggle-threads
1631   "\M-\C-s" gnus-summary-show-thread
1632   "\M-\C-h" gnus-summary-hide-thread
1633   "\M-\C-f" gnus-summary-next-thread
1634   "\M-\C-b" gnus-summary-prev-thread
1635   [(meta down)] gnus-summary-next-thread
1636   [(meta up)] gnus-summary-prev-thread
1637   "\M-\C-u" gnus-summary-up-thread
1638   "\M-\C-d" gnus-summary-down-thread
1639   "&" gnus-summary-execute-command
1640   "c" gnus-summary-catchup-and-exit
1641   "\C-w" gnus-summary-mark-region-as-read
1642   "\C-t" gnus-summary-toggle-truncation
1643   "?" gnus-summary-mark-as-dormant
1644   "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1645   "\C-c\C-s\C-n" gnus-summary-sort-by-number
1646   "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1647   "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1648   "\C-c\C-s\C-a" gnus-summary-sort-by-author
1649   "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1650   "\C-c\C-s\C-d" gnus-summary-sort-by-date
1651   "\C-c\C-s\C-i" gnus-summary-sort-by-score
1652   "\C-c\C-s\C-o" gnus-summary-sort-by-original
1653   "\C-c\C-s\C-r" gnus-summary-sort-by-random
1654   "=" gnus-summary-expand-window
1655   "\C-x\C-s" gnus-summary-reselect-current-group
1656   "\M-g" gnus-summary-rescan-group
1657   "w" gnus-summary-stop-page-breaking
1658   "\C-c\C-r" gnus-summary-caesar-message
1659   "f" gnus-summary-followup
1660   "F" gnus-summary-followup-with-original
1661   "C" gnus-summary-cancel-article
1662   "r" gnus-summary-reply
1663   "R" gnus-summary-reply-with-original
1664   "\C-c\C-f" gnus-summary-mail-forward
1665   "o" gnus-summary-save-article
1666   "\C-o" gnus-summary-save-article-mail
1667   "|" gnus-summary-pipe-output
1668   "\M-k" gnus-summary-edit-local-kill
1669   "\M-K" gnus-summary-edit-global-kill
1670   ;; "V" gnus-version
1671   "\C-c\C-d" gnus-summary-describe-group
1672   "q" gnus-summary-exit
1673   "Q" gnus-summary-exit-no-update
1674   "\C-c\C-i" gnus-info-find-node
1675   gnus-mouse-2 gnus-mouse-pick-article
1676   "m" gnus-summary-mail-other-window
1677   "a" gnus-summary-post-news
1678   "i" gnus-summary-news-other-window
1679   "x" gnus-summary-limit-to-unread
1680   "s" gnus-summary-isearch-article
1681   "t" gnus-summary-toggle-header
1682   "g" gnus-summary-show-article
1683   "l" gnus-summary-goto-last-article
1684   "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1685   "\C-d" gnus-summary-enter-digest-group
1686   "\M-\C-d" gnus-summary-read-document
1687   "\M-\C-e" gnus-summary-edit-parameters
1688   "\M-\C-a" gnus-summary-customize-parameters
1689   "\C-c\C-b" gnus-bug
1690   "*" gnus-cache-enter-article
1691   "\M-*" gnus-cache-remove-article
1692   "\M-&" gnus-summary-universal-argument
1693   "\C-l" gnus-recenter
1694   "I" gnus-summary-increase-score
1695   "L" gnus-summary-lower-score
1696   "\M-i" gnus-symbolic-argument
1697   "h" gnus-summary-select-article-buffer
1698
1699   "b" gnus-article-view-part
1700   "\M-t" gnus-summary-toggle-display-buttonized
1701
1702   "V" gnus-summary-score-map
1703   "X" gnus-uu-extract-map
1704   "S" gnus-summary-send-map)
1705
1706 ;; Sort of orthogonal keymap
1707 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1708   "t" gnus-summary-tick-article-forward
1709   "!" gnus-summary-tick-article-forward
1710   "d" gnus-summary-mark-as-read-forward
1711   "r" gnus-summary-mark-as-read-forward
1712   "c" gnus-summary-clear-mark-forward
1713   " " gnus-summary-clear-mark-forward
1714   "e" gnus-summary-mark-as-expirable
1715   "x" gnus-summary-mark-as-expirable
1716   "?" gnus-summary-mark-as-dormant
1717   "b" gnus-summary-set-bookmark
1718   "B" gnus-summary-remove-bookmark
1719   "#" gnus-summary-mark-as-processable
1720   "\M-#" gnus-summary-unmark-as-processable
1721   "S" gnus-summary-limit-include-expunged
1722   "C" gnus-summary-catchup
1723   "H" gnus-summary-catchup-to-here
1724   "h" gnus-summary-catchup-from-here
1725   "\C-c" gnus-summary-catchup-all
1726   "k" gnus-summary-kill-same-subject-and-select
1727   "K" gnus-summary-kill-same-subject
1728   "P" gnus-uu-mark-map)
1729
1730 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1731   "c" gnus-summary-clear-above
1732   "u" gnus-summary-tick-above
1733   "m" gnus-summary-mark-above
1734   "k" gnus-summary-kill-below)
1735
1736 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1737   "/" gnus-summary-limit-to-subject
1738   "n" gnus-summary-limit-to-articles
1739   "w" gnus-summary-pop-limit
1740   "s" gnus-summary-limit-to-subject
1741   "a" gnus-summary-limit-to-author
1742   "u" gnus-summary-limit-to-unread
1743   "m" gnus-summary-limit-to-marks
1744   "M" gnus-summary-limit-exclude-marks
1745   "v" gnus-summary-limit-to-score
1746   "*" gnus-summary-limit-include-cached
1747   "D" gnus-summary-limit-include-dormant
1748   "T" gnus-summary-limit-include-thread
1749   "d" gnus-summary-limit-exclude-dormant
1750   "t" gnus-summary-limit-to-age
1751   "." gnus-summary-limit-to-unseen
1752   "x" gnus-summary-limit-to-extra
1753   "p" gnus-summary-limit-to-display-predicate
1754   "E" gnus-summary-limit-include-expunged
1755   "c" gnus-summary-limit-exclude-childless-dormant
1756   "C" gnus-summary-limit-mark-excluded-as-read
1757   "o" gnus-summary-insert-old-articles
1758   "N" gnus-summary-insert-new-articles
1759   "r" gnus-summary-limit-to-replied)
1760
1761 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1762   "n" gnus-summary-next-unread-article
1763   "p" gnus-summary-prev-unread-article
1764   "N" gnus-summary-next-article
1765   "P" gnus-summary-prev-article
1766   "\C-n" gnus-summary-next-same-subject
1767   "\C-p" gnus-summary-prev-same-subject
1768   "\M-n" gnus-summary-next-unread-subject
1769   "\M-p" gnus-summary-prev-unread-subject
1770   "f" gnus-summary-first-unread-article
1771   "b" gnus-summary-best-unread-article
1772   "j" gnus-summary-goto-article
1773   "g" gnus-summary-goto-subject
1774   "l" gnus-summary-goto-last-article
1775   "o" gnus-summary-pop-article)
1776
1777 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1778   "k" gnus-summary-kill-thread
1779   "l" gnus-summary-lower-thread
1780   "i" gnus-summary-raise-thread
1781   "T" gnus-summary-toggle-threads
1782   "t" gnus-summary-rethread-current
1783   "^" gnus-summary-reparent-thread
1784   "s" gnus-summary-show-thread
1785   "S" gnus-summary-show-all-threads
1786   "h" gnus-summary-hide-thread
1787   "H" gnus-summary-hide-all-threads
1788   "n" gnus-summary-next-thread
1789   "p" gnus-summary-prev-thread
1790   "u" gnus-summary-up-thread
1791   "o" gnus-summary-top-thread
1792   "d" gnus-summary-down-thread
1793   "#" gnus-uu-mark-thread
1794   "\M-#" gnus-uu-unmark-thread)
1795
1796 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1797   "g" gnus-summary-prepare
1798   "c" gnus-summary-insert-cached-articles
1799   "d" gnus-summary-insert-dormant-articles)
1800
1801 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1802   "c" gnus-summary-catchup-and-exit
1803   "C" gnus-summary-catchup-all-and-exit
1804   "E" gnus-summary-exit-no-update
1805   "Q" gnus-summary-exit
1806   "Z" gnus-summary-exit
1807   "n" gnus-summary-catchup-and-goto-next-group
1808   "R" gnus-summary-reselect-current-group
1809   "G" gnus-summary-rescan-group
1810   "N" gnus-summary-next-group
1811   "s" gnus-summary-save-newsrc
1812   "P" gnus-summary-prev-group)
1813
1814 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1815   " " gnus-summary-next-page
1816   "n" gnus-summary-next-page
1817   "\177" gnus-summary-prev-page
1818   [delete] gnus-summary-prev-page
1819   "p" gnus-summary-prev-page
1820   "\r" gnus-summary-scroll-up
1821   "\M-\r" gnus-summary-scroll-down
1822   "<" gnus-summary-beginning-of-article
1823   ">" gnus-summary-end-of-article
1824   "b" gnus-summary-beginning-of-article
1825   "e" gnus-summary-end-of-article
1826   "^" gnus-summary-refer-parent-article
1827   "r" gnus-summary-refer-parent-article
1828   "D" gnus-summary-enter-digest-group
1829   "R" gnus-summary-refer-references
1830   "T" gnus-summary-refer-thread
1831   "g" gnus-summary-show-article
1832   "s" gnus-summary-isearch-article
1833   "P" gnus-summary-print-article
1834   "M" gnus-mailing-list-insinuate
1835   "t" gnus-article-babel)
1836
1837 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1838   "b" gnus-article-add-buttons
1839   "B" gnus-article-add-buttons-to-head
1840   "o" gnus-article-treat-overstrike
1841   "e" gnus-article-emphasize
1842   "w" gnus-article-fill-cited-article
1843   "Q" gnus-article-fill-long-lines
1844   "C" gnus-article-capitalize-sentences
1845   "c" gnus-article-remove-cr
1846   "q" gnus-article-de-quoted-unreadable
1847   "6" gnus-article-de-base64-unreadable
1848   "Z" gnus-article-decode-HZ
1849   "A" gnus-article-treat-ansi-sequences
1850   "h" gnus-article-wash-html
1851   "u" gnus-article-unsplit-urls
1852   "s" gnus-summary-force-verify-and-decrypt
1853   "f" gnus-article-display-x-face
1854   "l" gnus-summary-stop-page-breaking
1855   "r" gnus-summary-caesar-message
1856   "m" gnus-summary-morse-message
1857   "t" gnus-summary-toggle-header
1858   "g" gnus-treat-smiley
1859   "v" gnus-summary-verbose-headers
1860   "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
1861   "p" gnus-article-verify-x-pgp-sig
1862   "d" gnus-article-treat-dumbquotes)
1863
1864 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
1865   ;; mnemonic: deuglif*Y*
1866   "u" gnus-article-outlook-unwrap-lines
1867   "a" gnus-article-outlook-repair-attribution
1868   "c" gnus-article-outlook-rearrange-citation
1869   "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
1870
1871 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1872   "a" gnus-article-hide
1873   "h" gnus-article-hide-headers
1874   "b" gnus-article-hide-boring-headers
1875   "s" gnus-article-hide-signature
1876   "c" gnus-article-hide-citation
1877   "C" gnus-article-hide-citation-in-followups
1878   "l" gnus-article-hide-list-identifiers
1879   "B" gnus-article-strip-banner
1880   "P" gnus-article-hide-pem
1881   "\C-c" gnus-article-hide-citation-maybe)
1882
1883 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1884   "a" gnus-article-highlight
1885   "h" gnus-article-highlight-headers
1886   "c" gnus-article-highlight-citation
1887   "s" gnus-article-highlight-signature)
1888
1889 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
1890   "f" gnus-article-treat-fold-headers
1891   "u" gnus-article-treat-unfold-headers
1892   "n" gnus-article-treat-fold-newsgroups)
1893
1894 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
1895   "x" gnus-article-display-x-face
1896   "d" gnus-article-display-face
1897   "s" gnus-treat-smiley
1898   "D" gnus-article-remove-images
1899   "f" gnus-treat-from-picon
1900   "m" gnus-treat-mail-picon
1901   "n" gnus-treat-newsgroups-picon)
1902
1903 (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
1904   "w" gnus-article-decode-mime-words
1905   "c" gnus-article-decode-charset
1906   "v" gnus-mime-view-all-parts
1907   "b" gnus-article-view-part)
1908
1909 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1910   "z" gnus-article-date-ut
1911   "u" gnus-article-date-ut
1912   "l" gnus-article-date-local
1913   "p" gnus-article-date-english
1914   "e" gnus-article-date-lapsed
1915   "o" gnus-article-date-original
1916   "i" gnus-article-date-iso8601
1917   "s" gnus-article-date-user)
1918
1919 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1920   "t" gnus-article-remove-trailing-blank-lines
1921   "l" gnus-article-strip-leading-blank-lines
1922   "m" gnus-article-strip-multiple-blank-lines
1923   "a" gnus-article-strip-blank-lines
1924   "A" gnus-article-strip-all-blank-lines
1925   "s" gnus-article-strip-leading-space
1926   "e" gnus-article-strip-trailing-space
1927   "w" gnus-article-remove-leading-whitespace)
1928
1929 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1930   "v" gnus-version
1931   "f" gnus-summary-fetch-faq
1932   "d" gnus-summary-describe-group
1933   "h" gnus-summary-describe-briefly
1934   "i" gnus-info-find-node
1935   "c" gnus-group-fetch-charter
1936   "C" gnus-group-fetch-control)
1937
1938 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
1939   "e" gnus-summary-expire-articles
1940   "\M-\C-e" gnus-summary-expire-articles-now
1941   "\177" gnus-summary-delete-article
1942   [delete] gnus-summary-delete-article
1943   [backspace] gnus-summary-delete-article
1944   "m" gnus-summary-move-article
1945   "r" gnus-summary-respool-article
1946   "w" gnus-summary-edit-article
1947   "c" gnus-summary-copy-article
1948   "B" gnus-summary-crosspost-article
1949   "q" gnus-summary-respool-query
1950   "t" gnus-summary-respool-trace
1951   "i" gnus-summary-import-article
1952   "I" gnus-summary-create-article
1953   "p" gnus-summary-article-posted-p)
1954
1955 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
1956   "o" gnus-summary-save-article
1957   "m" gnus-summary-save-article-mail
1958   "F" gnus-summary-write-article-file
1959   "r" gnus-summary-save-article-rmail
1960   "f" gnus-summary-save-article-file
1961   "b" gnus-summary-save-article-body-file
1962   "h" gnus-summary-save-article-folder
1963   "v" gnus-summary-save-article-vm
1964   "p" gnus-summary-pipe-output
1965   "P" gnus-summary-muttprint
1966   "s" gnus-soup-add-article)
1967
1968 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
1969   "b" gnus-summary-display-buttonized
1970   "m" gnus-summary-repair-multipart
1971   "v" gnus-article-view-part
1972   "o" gnus-article-save-part
1973   "c" gnus-article-copy-part
1974   "C" gnus-article-view-part-as-charset
1975   "e" gnus-article-view-part-externally
1976   "E" gnus-article-encrypt-body
1977   "i" gnus-article-inline-part
1978   "|" gnus-article-pipe-part)
1979
1980 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
1981   "p" gnus-summary-mark-as-processable
1982   "u" gnus-summary-unmark-as-processable
1983   "U" gnus-summary-unmark-all-processable
1984   "v" gnus-uu-mark-over
1985   "s" gnus-uu-mark-series
1986   "r" gnus-uu-mark-region
1987   "g" gnus-uu-unmark-region
1988   "R" gnus-uu-mark-by-regexp
1989   "G" gnus-uu-unmark-by-regexp
1990   "t" gnus-uu-mark-thread
1991   "T" gnus-uu-unmark-thread
1992   "a" gnus-uu-mark-all
1993   "b" gnus-uu-mark-buffer
1994   "S" gnus-uu-mark-sparse
1995   "k" gnus-summary-kill-process-mark
1996   "y" gnus-summary-yank-process-mark
1997   "w" gnus-summary-save-process-mark
1998   "i" gnus-uu-invert-processable)
1999
2000 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2001   ;;"x" gnus-uu-extract-any
2002   "m" gnus-summary-save-parts
2003   "u" gnus-uu-decode-uu
2004   "U" gnus-uu-decode-uu-and-save
2005   "s" gnus-uu-decode-unshar
2006   "S" gnus-uu-decode-unshar-and-save
2007   "o" gnus-uu-decode-save
2008   "O" gnus-uu-decode-save
2009   "b" gnus-uu-decode-binhex
2010   "B" gnus-uu-decode-binhex
2011   "p" gnus-uu-decode-postscript
2012   "P" gnus-uu-decode-postscript-and-save)
2013
2014 (gnus-define-keys
2015     (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2016   "u" gnus-uu-decode-uu-view
2017   "U" gnus-uu-decode-uu-and-save-view
2018   "s" gnus-uu-decode-unshar-view
2019   "S" gnus-uu-decode-unshar-and-save-view
2020   "o" gnus-uu-decode-save-view
2021   "O" gnus-uu-decode-save-view
2022   "b" gnus-uu-decode-binhex-view
2023   "B" gnus-uu-decode-binhex-view
2024   "p" gnus-uu-decode-postscript-view
2025   "P" gnus-uu-decode-postscript-and-save-view)
2026
2027 (defvar gnus-article-post-menu nil)
2028
2029 (defconst gnus-summary-menu-maxlen 20)
2030
2031 (defun gnus-summary-menu-split (menu)
2032   ;; If we have lots of elements, divide them into groups of 20
2033   ;; and make a pane (or submenu) for each one.
2034   (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2035       (let ((menu menu) sublists next
2036             (i 1))
2037         (while menu
2038           ;; Pull off the next gnus-summary-menu-maxlen elements
2039           ;; and make them the next element of sublist.
2040           (setq next (nthcdr gnus-summary-menu-maxlen menu))
2041           (if next
2042               (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2043                       nil))
2044           (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2045                                              (aref (car (last menu)) 0)) menu)
2046                                sublists))
2047           (setq i (1+ i))
2048           (setq menu next))
2049         (nreverse sublists))
2050     ;; Few elements--put them all in one pane.
2051     menu))
2052
2053 (defun gnus-summary-make-menu-bar ()
2054   (gnus-turn-off-edit-menu 'summary)
2055
2056   (unless (boundp 'gnus-summary-misc-menu)
2057
2058     (easy-menu-define
2059       gnus-summary-kill-menu gnus-summary-mode-map ""
2060       (cons
2061        "Score"
2062        (nconc
2063         (list
2064          ["Customize" gnus-score-customize t])
2065         (gnus-make-score-map 'increase)
2066         (gnus-make-score-map 'lower)
2067         '(("Mark"
2068            ["Kill below" gnus-summary-kill-below t]
2069            ["Mark above" gnus-summary-mark-above t]
2070            ["Tick above" gnus-summary-tick-above t]
2071            ["Clear above" gnus-summary-clear-above t])
2072           ["Current score" gnus-summary-current-score t]
2073           ["Set score" gnus-summary-set-score t]
2074           ["Switch current score file..." gnus-score-change-score-file t]
2075           ["Set mark below..." gnus-score-set-mark-below t]
2076           ["Set expunge below..." gnus-score-set-expunge-below t]
2077           ["Edit current score file" gnus-score-edit-current-scores t]
2078           ["Edit score file" gnus-score-edit-file t]
2079           ["Trace score" gnus-score-find-trace t]
2080           ["Find words" gnus-score-find-favourite-words t]
2081           ["Rescore buffer" gnus-summary-rescore t]
2082           ["Increase score..." gnus-summary-increase-score t]
2083           ["Lower score..." gnus-summary-lower-score t]))))
2084
2085     ;; Define both the Article menu in the summary buffer and the
2086     ;; equivalent Commands menu in the article buffer here for
2087     ;; consistency.
2088     (let ((innards
2089            `(("Hide"
2090               ["All" gnus-article-hide t]
2091               ["Headers" gnus-article-hide-headers t]
2092               ["Signature" gnus-article-hide-signature t]
2093               ["Citation" gnus-article-hide-citation t]
2094               ["List identifiers" gnus-article-hide-list-identifiers t]
2095               ["Banner" gnus-article-strip-banner t]
2096               ["Boring headers" gnus-article-hide-boring-headers t])
2097              ("Highlight"
2098               ["All" gnus-article-highlight t]
2099               ["Headers" gnus-article-highlight-headers t]
2100               ["Signature" gnus-article-highlight-signature t]
2101               ["Citation" gnus-article-highlight-citation t])
2102              ("MIME"
2103               ["Words" gnus-article-decode-mime-words t]
2104               ["Charset" gnus-article-decode-charset t]
2105               ["QP" gnus-article-de-quoted-unreadable t]
2106               ["Base64" gnus-article-de-base64-unreadable t]
2107               ["View MIME buttons" gnus-summary-display-buttonized t]
2108               ["View all" gnus-mime-view-all-parts t]
2109               ["Verify and Decrypt" gnus-summary-force-verify-and-decrypt t]
2110               ["Encrypt body" gnus-article-encrypt-body
2111                :active (not (gnus-group-read-only-p))
2112                ,@(if (featurep 'xemacs) nil
2113                    '(:help "Encrypt the message body on disk"))]
2114               ["Extract all parts..." gnus-summary-save-parts t]
2115               ("Multipart"
2116                ["Repair multipart" gnus-summary-repair-multipart t]
2117                ["Pipe part..." gnus-article-pipe-part t]
2118                ["Inline part" gnus-article-inline-part t]
2119                ["Encrypt body" gnus-article-encrypt-body
2120                 :active (not (gnus-group-read-only-p))
2121                ,@(if (featurep 'xemacs) nil
2122                    '(:help "Encrypt the message body on disk"))]
2123                ["View part externally" gnus-article-view-part-externally t]
2124                ["View part with charset..." gnus-article-view-part-as-charset t]
2125                ["Copy part" gnus-article-copy-part t]
2126                ["Save part..." gnus-article-save-part t]
2127                ["View part" gnus-article-view-part t]))
2128              ("Date"
2129               ["Local" gnus-article-date-local t]
2130               ["ISO8601" gnus-article-date-iso8601 t]
2131               ["UT" gnus-article-date-ut t]
2132               ["Original" gnus-article-date-original t]
2133               ["Lapsed" gnus-article-date-lapsed t]
2134               ["User-defined" gnus-article-date-user t])
2135              ("Display"
2136               ["Remove images" gnus-article-remove-images t]
2137               ["Toggle smiley" gnus-treat-smiley t]
2138               ["Show X-Face" gnus-article-display-x-face t]
2139               ["Show picons in From" gnus-treat-from-picon t]
2140               ["Show picons in mail headers" gnus-treat-mail-picon t]
2141               ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2142               ("View as different encoding"
2143                ,@(gnus-summary-menu-split
2144                   (mapcar
2145                    (lambda (cs)
2146                      ;; Since easymenu under Emacs doesn't allow
2147                      ;; lambda forms for menu commands, we should
2148                      ;; provide intern'ed function symbols.
2149                      (let ((command (intern (format "\
2150 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2151                        (fset command
2152                              `(lambda ()
2153                                 (interactive)
2154                                 (let ((gnus-summary-show-article-charset-alist
2155                                        '((1 . ,cs))))
2156                                   (gnus-summary-show-article 1))))
2157                        `[,(symbol-name cs) ,command t]))
2158                    (sort (if (fboundp 'coding-system-list)
2159                              (coding-system-list)
2160                            (mapcar 'car mm-mime-mule-charset-alist))
2161                          'string<)))))
2162              ("Washing"
2163               ("Remove Blanks"
2164                ["Leading" gnus-article-strip-leading-blank-lines t]
2165                ["Multiple" gnus-article-strip-multiple-blank-lines t]
2166                ["Trailing" gnus-article-remove-trailing-blank-lines t]
2167                ["All of the above" gnus-article-strip-blank-lines t]
2168                ["All" gnus-article-strip-all-blank-lines t]
2169                ["Leading space" gnus-article-strip-leading-space t]
2170                ["Trailing space" gnus-article-strip-trailing-space t]
2171                ["Leading space in headers"
2172                 gnus-article-remove-leading-whitespace t])
2173               ["Overstrike" gnus-article-treat-overstrike t]
2174               ["Dumb quotes" gnus-article-treat-dumbquotes t]
2175               ["Emphasis" gnus-article-emphasize t]
2176               ["Word wrap" gnus-article-fill-cited-article t]
2177               ["Fill long lines" gnus-article-fill-long-lines t]
2178               ["Capitalize sentences" gnus-article-capitalize-sentences t]
2179               ["Remove CR" gnus-article-remove-cr t]
2180               ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
2181               ["Base64" gnus-article-de-base64-unreadable t]
2182               ["Rot 13" gnus-summary-caesar-message
2183                ,@(if (featurep 'xemacs) '(t)
2184                    '(:help "\"Caesar rotate\" article by 13"))]
2185               ["Morse decode" gnus-summary-morse-message t]
2186               ["Unix pipe..." gnus-summary-pipe-message t]
2187               ["Add buttons" gnus-article-add-buttons t]
2188               ["Add buttons to head" gnus-article-add-buttons-to-head t]
2189               ["Stop page breaking" gnus-summary-stop-page-breaking t]
2190               ["Verbose header" gnus-summary-verbose-headers t]
2191               ["Toggle header" gnus-summary-toggle-header t]
2192               ["Unfold headers" gnus-article-treat-unfold-headers t]
2193               ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2194               ["Html" gnus-article-wash-html t]
2195               ["Unsplit URLs" gnus-article-unsplit-urls t]
2196               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2197               ["Decode HZ" gnus-article-decode-HZ t]
2198               ["ANSI sequences" gnus-article-treat-ansi-sequences t]
2199               ("(Outlook) Deuglify"
2200                ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2201                ["Repair attribution" gnus-article-outlook-repair-attribution t]
2202                ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2203                ["Full (Outlook) deuglify"
2204                 gnus-article-outlook-deuglify-article t])
2205               )
2206              ("Output"
2207               ["Save in default format..." gnus-summary-save-article
2208                ,@(if (featurep 'xemacs) '(t)
2209                    '(:help "Save article using default method"))]
2210               ["Save in file..." gnus-summary-save-article-file
2211                ,@(if (featurep 'xemacs) '(t)
2212                    '(:help "Save article in file"))]
2213               ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2214               ["Save in MH folder..." gnus-summary-save-article-folder t]
2215               ["Save in VM folder..." gnus-summary-save-article-vm t]
2216               ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2217               ["Save body in file..." gnus-summary-save-article-body-file t]
2218               ["Pipe through a filter..." gnus-summary-pipe-output t]
2219               ["Add to SOUP packet" gnus-soup-add-article t]
2220               ["Print with Muttprint..." gnus-summary-muttprint t]
2221               ["Print" gnus-summary-print-article t])
2222              ("Backend"
2223               ["Respool article..." gnus-summary-respool-article t]
2224               ["Move article..." gnus-summary-move-article
2225                (gnus-check-backend-function
2226                 'request-move-article gnus-newsgroup-name)]
2227               ["Copy article..." gnus-summary-copy-article t]
2228               ["Crosspost article..." gnus-summary-crosspost-article
2229                (gnus-check-backend-function
2230                 'request-replace-article gnus-newsgroup-name)]
2231               ["Import file..." gnus-summary-import-article
2232                (gnus-check-backend-function
2233                 'request-accept-article gnus-newsgroup-name)]
2234               ["Create article..." gnus-summary-create-article
2235                (gnus-check-backend-function
2236                 'request-accept-article gnus-newsgroup-name)]
2237               ["Check if posted" gnus-summary-article-posted-p t]
2238               ["Edit article" gnus-summary-edit-article
2239                (not (gnus-group-read-only-p))]
2240               ["Delete article" gnus-summary-delete-article
2241                (gnus-check-backend-function
2242                 'request-expire-articles gnus-newsgroup-name)]
2243               ["Query respool" gnus-summary-respool-query t]
2244               ["Trace respool" gnus-summary-respool-trace t]
2245               ["Delete expirable articles" gnus-summary-expire-articles-now
2246                (gnus-check-backend-function
2247                 'request-expire-articles gnus-newsgroup-name)])
2248              ("Extract"
2249               ["Uudecode" gnus-uu-decode-uu
2250                ,@(if (featurep 'xemacs) '(t)
2251                    '(:help "Decode uuencoded article(s)"))]
2252               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2253               ["Unshar" gnus-uu-decode-unshar t]
2254               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2255               ["Save" gnus-uu-decode-save t]
2256               ["Binhex" gnus-uu-decode-binhex t]
2257               ["Postscript" gnus-uu-decode-postscript t]
2258               ["All MIME parts" gnus-summary-save-parts t])
2259              ("Cache"
2260               ["Enter article" gnus-cache-enter-article t]
2261               ["Remove article" gnus-cache-remove-article t])
2262              ["Translate" gnus-article-babel t]
2263              ["Select article buffer" gnus-summary-select-article-buffer t]
2264              ["Enter digest buffer" gnus-summary-enter-digest-group t]
2265              ["Isearch article..." gnus-summary-isearch-article t]
2266              ["Beginning of the article" gnus-summary-beginning-of-article t]
2267              ["End of the article" gnus-summary-end-of-article t]
2268              ["Fetch parent of article" gnus-summary-refer-parent-article t]
2269              ["Fetch referenced articles" gnus-summary-refer-references t]
2270              ["Fetch current thread" gnus-summary-refer-thread t]
2271              ["Fetch article with id..." gnus-summary-refer-article t]
2272              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2273              ["Redisplay" gnus-summary-show-article t]
2274              ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2275       (easy-menu-define
2276         gnus-summary-article-menu gnus-summary-mode-map ""
2277         (cons "Article" innards))
2278
2279       (if (not (keymapp gnus-summary-article-menu))
2280           (easy-menu-define
2281             gnus-article-commands-menu gnus-article-mode-map ""
2282             (cons "Commands" innards))
2283         ;; in Emacs, don't share menu.
2284         (setq gnus-article-commands-menu
2285               (copy-keymap gnus-summary-article-menu))
2286         (define-key gnus-article-mode-map [menu-bar commands]
2287           (cons "Commands" gnus-article-commands-menu))))
2288
2289     (easy-menu-define
2290       gnus-summary-thread-menu gnus-summary-mode-map ""
2291       '("Threads"
2292         ["Find all messages in thread" gnus-summary-refer-thread t]
2293         ["Toggle threading" gnus-summary-toggle-threads t]
2294         ["Hide threads" gnus-summary-hide-all-threads t]
2295         ["Show threads" gnus-summary-show-all-threads t]
2296         ["Hide thread" gnus-summary-hide-thread t]
2297         ["Show thread" gnus-summary-show-thread t]
2298         ["Go to next thread" gnus-summary-next-thread t]
2299         ["Go to previous thread" gnus-summary-prev-thread t]
2300         ["Go down thread" gnus-summary-down-thread t]
2301         ["Go up thread" gnus-summary-up-thread t]
2302         ["Top of thread" gnus-summary-top-thread t]
2303         ["Mark thread as read" gnus-summary-kill-thread t]
2304         ["Lower thread score" gnus-summary-lower-thread t]
2305         ["Raise thread score" gnus-summary-raise-thread t]
2306         ["Rethread current" gnus-summary-rethread-current t]))
2307
2308     (easy-menu-define
2309       gnus-summary-post-menu gnus-summary-mode-map ""
2310       `("Post"
2311         ["Send a message (mail or news)" gnus-summary-post-news
2312          ,@(if (featurep 'xemacs) '(t)
2313              '(:help "Post an article"))]
2314         ["Followup" gnus-summary-followup
2315          ,@(if (featurep 'xemacs) '(t)
2316              '(:help "Post followup to this article"))]
2317         ["Followup and yank" gnus-summary-followup-with-original
2318          ,@(if (featurep 'xemacs) '(t)
2319              '(:help "Post followup to this article, quoting its contents"))]
2320         ["Supersede article" gnus-summary-supersede-article t]
2321         ["Cancel article" gnus-summary-cancel-article
2322          ,@(if (featurep 'xemacs) '(t)
2323              '(:help "Cancel an article you posted"))]
2324         ["Reply" gnus-summary-reply t]
2325         ["Reply and yank" gnus-summary-reply-with-original t]
2326         ["Wide reply" gnus-summary-wide-reply t]
2327         ["Wide reply and yank" gnus-summary-wide-reply-with-original
2328          ,@(if (featurep 'xemacs) '(t)
2329              '(:help "Mail a reply, quoting this article"))]
2330         ["Very wide reply" gnus-summary-very-wide-reply t]
2331         ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2332          ,@(if (featurep 'xemacs) '(t)
2333              '(:help "Mail a very wide reply, quoting this article"))]
2334         ["Mail forward" gnus-summary-mail-forward t]
2335         ["Post forward" gnus-summary-post-forward t]
2336         ["Digest and mail" gnus-uu-digest-mail-forward t]
2337         ["Digest and post" gnus-uu-digest-post-forward t]
2338         ["Resend message" gnus-summary-resend-message t]
2339         ["Resend message edit" gnus-summary-resend-message-edit t]
2340         ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2341         ["Send a mail" gnus-summary-mail-other-window t]
2342         ["Create a local message" gnus-summary-news-other-window t]
2343         ["Uuencode and post" gnus-uu-post-news
2344          ,@(if (featurep 'xemacs) '(t)
2345              '(:help "Post a uuencoded article"))]
2346         ["Followup via news" gnus-summary-followup-to-mail t]
2347         ["Followup via news and yank"
2348          gnus-summary-followup-to-mail-with-original t]
2349         ;;("Draft"
2350         ;;["Send" gnus-summary-send-draft t]
2351         ;;["Send bounced" gnus-resend-bounced-mail t])
2352         ))
2353
2354     (cond
2355      ((not (keymapp gnus-summary-post-menu))
2356       (setq gnus-article-post-menu gnus-summary-post-menu))
2357      ((not gnus-article-post-menu)
2358       ;; Don't share post menu.
2359       (setq gnus-article-post-menu
2360             (copy-keymap gnus-summary-post-menu))))
2361     (define-key gnus-article-mode-map [menu-bar post]
2362       (cons "Post" gnus-article-post-menu))
2363
2364     (easy-menu-define
2365       gnus-summary-misc-menu gnus-summary-mode-map ""
2366       `("Gnus"
2367         ("Mark Read"
2368          ["Mark as read" gnus-summary-mark-as-read-forward t]
2369          ["Mark same subject and select"
2370           gnus-summary-kill-same-subject-and-select t]
2371          ["Mark same subject" gnus-summary-kill-same-subject t]
2372          ["Catchup" gnus-summary-catchup
2373           ,@(if (featurep 'xemacs) '(t)
2374               '(:help "Mark unread articles in this group as read"))]
2375          ["Catchup all" gnus-summary-catchup-all t]
2376          ["Catchup to here" gnus-summary-catchup-to-here t]
2377          ["Catchup from here" gnus-summary-catchup-from-here t]
2378          ["Catchup region" gnus-summary-mark-region-as-read
2379           (gnus-mark-active-p)]
2380          ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2381         ("Mark Various"
2382          ["Tick" gnus-summary-tick-article-forward t]
2383          ["Mark as dormant" gnus-summary-mark-as-dormant t]
2384          ["Remove marks" gnus-summary-clear-mark-forward t]
2385          ["Set expirable mark" gnus-summary-mark-as-expirable t]
2386          ["Set bookmark" gnus-summary-set-bookmark t]
2387          ["Remove bookmark" gnus-summary-remove-bookmark t])
2388         ("Limit to"
2389          ["Marks..." gnus-summary-limit-to-marks t]
2390          ["Subject..." gnus-summary-limit-to-subject t]
2391          ["Author..." gnus-summary-limit-to-author t]
2392          ["Age..." gnus-summary-limit-to-age t]
2393          ["Extra..." gnus-summary-limit-to-extra t]
2394          ["Score..." gnus-summary-limit-to-score t]
2395          ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2396          ["Unread" gnus-summary-limit-to-unread t]
2397          ["Unseen" gnus-summary-limit-to-unseen t]
2398          ["Replied" gnus-summary-limit-to-replied t]
2399          ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2400          ["Next articles" gnus-summary-limit-to-articles t]
2401          ["Pop limit" gnus-summary-pop-limit t]
2402          ["Show dormant" gnus-summary-limit-include-dormant t]
2403          ["Hide childless dormant"
2404           gnus-summary-limit-exclude-childless-dormant t]
2405          ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2406          ["Hide marked" gnus-summary-limit-exclude-marks t]
2407          ["Show expunged" gnus-summary-limit-include-expunged t])
2408         ("Process Mark"
2409          ["Set mark" gnus-summary-mark-as-processable t]
2410          ["Remove mark" gnus-summary-unmark-as-processable t]
2411          ["Remove all marks" gnus-summary-unmark-all-processable t]
2412          ["Mark above" gnus-uu-mark-over t]
2413          ["Mark series" gnus-uu-mark-series t]
2414          ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2415          ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2416          ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2417          ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2418          ["Mark all" gnus-uu-mark-all t]
2419          ["Mark buffer" gnus-uu-mark-buffer t]
2420          ["Mark sparse" gnus-uu-mark-sparse t]
2421          ["Mark thread" gnus-uu-mark-thread t]
2422          ["Unmark thread" gnus-uu-unmark-thread t]
2423          ("Process Mark Sets"
2424           ["Kill" gnus-summary-kill-process-mark t]
2425           ["Yank" gnus-summary-yank-process-mark
2426            gnus-newsgroup-process-stack]
2427           ["Save" gnus-summary-save-process-mark t]
2428           ["Run command on marked..." gnus-summary-universal-argument t]))
2429         ("Scroll article"
2430          ["Page forward" gnus-summary-next-page
2431           ,@(if (featurep 'xemacs) '(t)
2432               '(:help "Show next page of article"))]
2433          ["Page backward" gnus-summary-prev-page
2434           ,@(if (featurep 'xemacs) '(t)
2435               '(:help "Show previous page of article"))]
2436          ["Line forward" gnus-summary-scroll-up t])
2437         ("Move"
2438          ["Next unread article" gnus-summary-next-unread-article t]
2439          ["Previous unread article" gnus-summary-prev-unread-article t]
2440          ["Next article" gnus-summary-next-article t]
2441          ["Previous article" gnus-summary-prev-article t]
2442          ["Next unread subject" gnus-summary-next-unread-subject t]
2443          ["Previous unread subject" gnus-summary-prev-unread-subject t]
2444          ["Next article same subject" gnus-summary-next-same-subject t]
2445          ["Previous article same subject" gnus-summary-prev-same-subject t]
2446          ["First unread article" gnus-summary-first-unread-article t]
2447          ["Best unread article" gnus-summary-best-unread-article t]
2448          ["Go to subject number..." gnus-summary-goto-subject t]
2449          ["Go to article number..." gnus-summary-goto-article t]
2450          ["Go to the last article" gnus-summary-goto-last-article t]
2451          ["Pop article off history" gnus-summary-pop-article t])
2452         ("Sort"
2453          ["Sort by number" gnus-summary-sort-by-number t]
2454          ["Sort by author" gnus-summary-sort-by-author t]
2455          ["Sort by subject" gnus-summary-sort-by-subject t]
2456          ["Sort by date" gnus-summary-sort-by-date t]
2457          ["Sort by score" gnus-summary-sort-by-score t]
2458          ["Sort by lines" gnus-summary-sort-by-lines t]
2459          ["Sort by characters" gnus-summary-sort-by-chars t]
2460          ["Randomize" gnus-summary-sort-by-random t]
2461          ["Original sort" gnus-summary-sort-by-original t])
2462         ("Help"
2463          ["Fetch group FAQ" gnus-summary-fetch-faq t]
2464          ["Describe group" gnus-summary-describe-group t]
2465          ["Fetch charter" gnus-group-fetch-charter
2466           ,@(if (featurep 'xemacs) nil
2467               '(:help "Display the charter of the current group"))]
2468          ["Fetch control message" gnus-group-fetch-control
2469           ,@(if (featurep 'xemacs) nil
2470               '(:help "Display the archived control message for the current group"))]
2471          ["Read manual" gnus-info-find-node t])
2472         ("Modes"
2473          ["Pick and read" gnus-pick-mode t]
2474          ["Binary" gnus-binary-mode t])
2475         ("Regeneration"
2476          ["Regenerate" gnus-summary-prepare t]
2477          ["Insert cached articles" gnus-summary-insert-cached-articles t]
2478          ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2479          ["Toggle threading" gnus-summary-toggle-threads t])
2480         ["See old articles" gnus-summary-insert-old-articles t]
2481         ["See new articles" gnus-summary-insert-new-articles t]
2482         ["Filter articles..." gnus-summary-execute-command t]
2483         ["Run command on articles..." gnus-summary-universal-argument t]
2484         ["Search articles forward..." gnus-summary-search-article-forward t]
2485         ["Search articles backward..." gnus-summary-search-article-backward t]
2486         ["Toggle line truncation" gnus-summary-toggle-truncation t]
2487         ["Expand window" gnus-summary-expand-window t]
2488         ["Expire expirable articles" gnus-summary-expire-articles
2489          (gnus-check-backend-function
2490           'request-expire-articles gnus-newsgroup-name)]
2491         ["Edit local kill file" gnus-summary-edit-local-kill t]
2492         ["Edit main kill file" gnus-summary-edit-global-kill t]
2493         ["Edit group parameters" gnus-summary-edit-parameters t]
2494         ["Customize group parameters" gnus-summary-customize-parameters t]
2495         ["Send a bug report" gnus-bug t]
2496         ("Exit"
2497          ["Catchup and exit" gnus-summary-catchup-and-exit
2498           ,@(if (featurep 'xemacs) '(t)
2499               '(:help "Mark unread articles in this group as read, then exit"))]
2500          ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2501          ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2502          ["Exit group" gnus-summary-exit
2503           ,@(if (featurep 'xemacs) '(t)
2504               '(:help "Exit current group, return to group selection mode"))]
2505          ["Exit group without updating" gnus-summary-exit-no-update t]
2506          ["Exit and goto next group" gnus-summary-next-group t]
2507          ["Exit and goto prev group" gnus-summary-prev-group t]
2508          ["Reselect group" gnus-summary-reselect-current-group t]
2509          ["Rescan group" gnus-summary-rescan-group t]
2510          ["Update dribble" gnus-summary-save-newsrc t])))
2511
2512     (gnus-run-hooks 'gnus-summary-menu-hook)))
2513
2514 (defvar gnus-summary-tool-bar-map nil)
2515
2516 ;; Emacs 21 tool bar.  Should be no-op otherwise.
2517 (defun gnus-summary-make-tool-bar ()
2518   (if (and (fboundp 'tool-bar-add-item-from-menu)
2519            (default-value 'tool-bar-mode)
2520            (not gnus-summary-tool-bar-map))
2521       (setq gnus-summary-tool-bar-map
2522             (let ((tool-bar-map (make-sparse-keymap))
2523                   (load-path (mm-image-load-path)))
2524               (tool-bar-add-item-from-menu
2525                'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map)
2526               (tool-bar-add-item-from-menu
2527                'gnus-summary-next-unread "next-ur" gnus-summary-mode-map)
2528               (tool-bar-add-item-from-menu
2529                'gnus-summary-post-news "post" gnus-summary-mode-map)
2530               (tool-bar-add-item-from-menu
2531                'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map)
2532               (tool-bar-add-item-from-menu
2533                'gnus-summary-followup "followup" gnus-summary-mode-map)
2534               (tool-bar-add-item-from-menu
2535                'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map)
2536               (tool-bar-add-item-from-menu
2537                'gnus-summary-reply "reply" gnus-summary-mode-map)
2538               (tool-bar-add-item-from-menu
2539                'gnus-summary-caesar-message "rot13" gnus-summary-mode-map)
2540               (tool-bar-add-item-from-menu
2541                'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map)
2542               (tool-bar-add-item-from-menu
2543                'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map)
2544               (tool-bar-add-item-from-menu
2545                'gnus-summary-save-article "save-art" gnus-summary-mode-map)
2546               (tool-bar-add-item-from-menu
2547                'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2548               (tool-bar-add-item-from-menu
2549                'gnus-summary-catchup "catchup" gnus-summary-mode-map)
2550               (tool-bar-add-item-from-menu
2551                'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map)
2552               (tool-bar-add-item-from-menu
2553                'gnus-summary-exit "exit-summ" gnus-summary-mode-map)
2554               tool-bar-map)))
2555   (if gnus-summary-tool-bar-map
2556       (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
2557
2558 (defun gnus-score-set-default (var value)
2559   "A version of set that updates the GNU Emacs menu-bar."
2560   (set var value)
2561   ;; It is the message that forces the active status to be updated.
2562   (message ""))
2563
2564 (defun gnus-make-score-map (type)
2565   "Make a summary score map of type TYPE."
2566   (if t
2567       nil
2568     (let ((headers '(("author" "from" string)
2569                      ("subject" "subject" string)
2570                      ("article body" "body" string)
2571                      ("article head" "head" string)
2572                      ("xref" "xref" string)
2573                      ("extra header" "extra" string)
2574                      ("lines" "lines" number)
2575                      ("followups to author" "followup" string)))
2576           (types '((number ("less than" <)
2577                            ("greater than" >)
2578                            ("equal" =))
2579                    (string ("substring" s)
2580                            ("exact string" e)
2581                            ("fuzzy string" f)
2582                            ("regexp" r))))
2583           (perms '(("temporary" (current-time-string))
2584                    ("permanent" nil)
2585                    ("immediate" now)))
2586           header)
2587       (list
2588        (apply
2589         'nconc
2590         (list
2591          (if (eq type 'lower)
2592              "Lower score"
2593            "Increase score"))
2594         (let (outh)
2595           (while headers
2596             (setq header (car headers))
2597             (setq outh
2598                   (cons
2599                    (apply
2600                     'nconc
2601                     (list (car header))
2602                     (let ((ts (cdr (assoc (nth 2 header) types)))
2603                           outt)
2604                       (while ts
2605                         (setq outt
2606                               (cons
2607                                (apply
2608                                 'nconc
2609                                 (list (caar ts))
2610                                 (let ((ps perms)
2611                                       outp)
2612                                   (while ps
2613                                     (setq outp
2614                                           (cons
2615                                            (vector
2616                                             (caar ps)
2617                                             (list
2618                                              'gnus-summary-score-entry
2619                                              (nth 1 header)
2620                                              (if (or (string= (nth 1 header)
2621                                                               "head")
2622                                                      (string= (nth 1 header)
2623                                                               "body"))
2624                                                  ""
2625                                                (list 'gnus-summary-header
2626                                                      (nth 1 header)))
2627                                              (list 'quote (nth 1 (car ts)))
2628                                              (list 'gnus-score-delta-default
2629                                                    nil)
2630                                              (nth 1 (car ps))
2631                                              t)
2632                                             t)
2633                                            outp))
2634                                     (setq ps (cdr ps)))
2635                                   (list (nreverse outp))))
2636                                outt))
2637                         (setq ts (cdr ts)))
2638                       (list (nreverse outt))))
2639                    outh))
2640             (setq headers (cdr headers)))
2641           (list (nreverse outh))))))))
2642
2643 \f
2644
2645 (defun gnus-summary-mode (&optional group)
2646   "Major mode for reading articles.
2647
2648 All normal editing commands are switched off.
2649 \\<gnus-summary-mode-map>
2650 Each line in this buffer represents one article.  To read an
2651 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
2652 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2653 respectively.
2654
2655 You can also post articles and send mail from this buffer.  To
2656 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
2657 of an article, type `\\[gnus-summary-reply]'.
2658
2659 There are approx. one gazillion commands you can execute in this
2660 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2661
2662 The following commands are available:
2663
2664 \\{gnus-summary-mode-map}"
2665   (interactive)
2666   (kill-all-local-variables)
2667   (when (gnus-visual-p 'summary-menu 'menu)
2668     (gnus-summary-make-menu-bar)
2669     (gnus-summary-make-tool-bar))
2670   (gnus-summary-make-local-variables)
2671   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
2672     (gnus-summary-make-local-variables))
2673   (gnus-make-thread-indent-array)
2674   (gnus-simplify-mode-line)
2675   (setq major-mode 'gnus-summary-mode)
2676   (setq mode-name "Summary")
2677   (make-local-variable 'minor-mode-alist)
2678   (use-local-map gnus-summary-mode-map)
2679   (buffer-disable-undo)
2680   (setq buffer-read-only t)             ;Disable modification
2681   (setq truncate-lines t)
2682   (setq selective-display t)
2683   (setq selective-display-ellipses t)   ;Display `...'
2684   (gnus-summary-set-display-table)
2685   (gnus-set-default-directory)
2686   (setq gnus-newsgroup-name group)
2687   (make-local-variable 'gnus-summary-line-format)
2688   (make-local-variable 'gnus-summary-line-format-spec)
2689   (make-local-variable 'gnus-summary-dummy-line-format)
2690   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2691   (make-local-variable 'gnus-summary-mark-positions)
2692   (gnus-make-local-hook 'pre-command-hook)
2693   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2694   (gnus-run-hooks 'gnus-summary-mode-hook)
2695   (turn-on-gnus-mailing-list-mode)
2696   (mm-enable-multibyte)
2697   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2698   (gnus-update-summary-mark-positions))
2699
2700 (defun gnus-summary-make-local-variables ()
2701   "Make all the local summary buffer variables."
2702   (let (global)
2703     (dolist (local gnus-summary-local-variables)
2704       (if (consp local)
2705           (progn
2706             (if (eq (cdr local) 'global)
2707                 ;; Copy the global value of the variable.
2708                 (setq global (symbol-value (car local)))
2709               ;; Use the value from the list.
2710               (setq global (eval (cdr local))))
2711             (set (make-local-variable (car local)) global))
2712         ;; Simple nil-valued local variable.
2713         (set (make-local-variable local) nil)))))
2714
2715 (defun gnus-summary-clear-local-variables ()
2716   (let ((locals gnus-summary-local-variables))
2717     (while locals
2718       (if (consp (car locals))
2719           (and (vectorp (caar locals))
2720                (set (caar locals) nil))
2721         (and (vectorp (car locals))
2722              (set (car locals) nil)))
2723       (setq locals (cdr locals)))))
2724
2725 ;; Summary data functions.
2726
2727 (defmacro gnus-data-number (data)
2728   `(car ,data))
2729
2730 (defmacro gnus-data-set-number (data number)
2731   `(setcar ,data ,number))
2732
2733 (defmacro gnus-data-mark (data)
2734   `(nth 1 ,data))
2735
2736 (defmacro gnus-data-set-mark (data mark)
2737   `(setcar (nthcdr 1 ,data) ,mark))
2738
2739 (defmacro gnus-data-pos (data)
2740   `(nth 2 ,data))
2741
2742 (defmacro gnus-data-set-pos (data pos)
2743   `(setcar (nthcdr 2 ,data) ,pos))
2744
2745 (defmacro gnus-data-header (data)
2746   `(nth 3 ,data))
2747
2748 (defmacro gnus-data-set-header (data header)
2749   `(setf (nth 3 ,data) ,header))
2750
2751 (defmacro gnus-data-level (data)
2752   `(nth 4 ,data))
2753
2754 (defmacro gnus-data-unread-p (data)
2755   `(= (nth 1 ,data) gnus-unread-mark))
2756
2757 (defmacro gnus-data-read-p (data)
2758   `(/= (nth 1 ,data) gnus-unread-mark))
2759
2760 (defmacro gnus-data-pseudo-p (data)
2761   `(consp (nth 3 ,data)))
2762
2763 (defmacro gnus-data-find (number)
2764   `(assq ,number gnus-newsgroup-data))
2765
2766 (defmacro gnus-data-find-list (number &optional data)
2767   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2768      (memq (assq ,number bdata)
2769            bdata)))
2770
2771 (defmacro gnus-data-make (number mark pos header level)
2772   `(list ,number ,mark ,pos ,header ,level))
2773
2774 (defun gnus-data-enter (after-article number mark pos header level offset)
2775   (let ((data (gnus-data-find-list after-article)))
2776     (unless data
2777       (error "No such article: %d" after-article))
2778     (setcdr data (cons (gnus-data-make number mark pos header level)
2779                        (cdr data)))
2780     (setq gnus-newsgroup-data-reverse nil)
2781     (gnus-data-update-list (cddr data) offset)))
2782
2783 (defun gnus-data-enter-list (after-article list &optional offset)
2784   (when list
2785     (let ((data (and after-article (gnus-data-find-list after-article)))
2786           (ilist list))
2787       (if (not (or data
2788                    after-article))
2789           (let ((odata gnus-newsgroup-data))
2790             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2791             (when offset
2792               (gnus-data-update-list odata offset)))
2793       ;; Find the last element in the list to be spliced into the main
2794         ;; list.
2795         (while (cdr list)
2796           (setq list (cdr list)))
2797         (if (not data)
2798             (progn
2799               (setcdr list gnus-newsgroup-data)
2800               (setq gnus-newsgroup-data ilist)
2801               (when offset
2802                 (gnus-data-update-list (cdr list) offset)))
2803           (setcdr list (cdr data))
2804           (setcdr data ilist)
2805           (when offset
2806             (gnus-data-update-list (cdr list) offset))))
2807       (setq gnus-newsgroup-data-reverse nil))))
2808
2809 (defun gnus-data-remove (article &optional offset)
2810   (let ((data gnus-newsgroup-data))
2811     (if (= (gnus-data-number (car data)) article)
2812         (progn
2813           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2814                 gnus-newsgroup-data-reverse nil)
2815           (when offset
2816             (gnus-data-update-list gnus-newsgroup-data offset)))
2817       (while (cdr data)
2818         (when (= (gnus-data-number (cadr data)) article)
2819           (setcdr data (cddr data))
2820           (when offset
2821             (gnus-data-update-list (cdr data) offset))
2822           (setq data nil
2823                 gnus-newsgroup-data-reverse nil))
2824         (setq data (cdr data))))))
2825
2826 (defmacro gnus-data-list (backward)
2827   `(if ,backward
2828        (or gnus-newsgroup-data-reverse
2829            (setq gnus-newsgroup-data-reverse
2830                  (reverse gnus-newsgroup-data)))
2831      gnus-newsgroup-data))
2832
2833 (defun gnus-data-update-list (data offset)
2834   "Add OFFSET to the POS of all data entries in DATA."
2835   (setq gnus-newsgroup-data-reverse nil)
2836   (while data
2837     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2838     (setq data (cdr data))))
2839
2840 (defun gnus-summary-article-pseudo-p (article)
2841   "Say whether this article is a pseudo article or not."
2842   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2843
2844 (defmacro gnus-summary-article-sparse-p (article)
2845   "Say whether this article is a sparse article or not."
2846   `(memq ,article gnus-newsgroup-sparse))
2847
2848 (defmacro gnus-summary-article-ancient-p (article)
2849   "Say whether this article is a sparse article or not."
2850   `(memq ,article gnus-newsgroup-ancient))
2851
2852 (defun gnus-article-parent-p (number)
2853   "Say whether this article is a parent or not."
2854   (let ((data (gnus-data-find-list number)))
2855     (and (cdr data)              ; There has to be an article after...
2856          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2857             (gnus-data-level (nth 1 data))))))
2858
2859 (defun gnus-article-children (number)
2860   "Return a list of all children to NUMBER."
2861   (let* ((data (gnus-data-find-list number))
2862          (level (gnus-data-level (car data)))
2863          children)
2864     (setq data (cdr data))
2865     (while (and data
2866                 (= (gnus-data-level (car data)) (1+ level)))
2867       (push (gnus-data-number (car data)) children)
2868       (setq data (cdr data)))
2869     children))
2870
2871 (defmacro gnus-summary-skip-intangible ()
2872   "If the current article is intangible, then jump to a different article."
2873   '(let ((to (get-text-property (point) 'gnus-intangible)))
2874      (and to (gnus-summary-goto-subject to))))
2875
2876 (defmacro gnus-summary-article-intangible-p ()
2877   "Say whether this article is intangible or not."
2878   '(get-text-property (point) 'gnus-intangible))
2879
2880 (defun gnus-article-read-p (article)
2881   "Say whether ARTICLE is read or not."
2882   (not (or (memq article gnus-newsgroup-marked)
2883            (memq article gnus-newsgroup-spam-marked)
2884            (memq article gnus-newsgroup-unreads)
2885            (memq article gnus-newsgroup-unselected)
2886            (memq article gnus-newsgroup-dormant))))
2887
2888 ;; Some summary mode macros.
2889
2890 (defmacro gnus-summary-article-number ()
2891   "The article number of the article on the current line.
2892 If there isn't an article number here, then we return the current
2893 article number."
2894   '(progn
2895      (gnus-summary-skip-intangible)
2896      (or (get-text-property (point) 'gnus-number)
2897          (gnus-summary-last-subject))))
2898
2899 (defmacro gnus-summary-article-header (&optional number)
2900   "Return the header of article NUMBER."
2901   `(gnus-data-header (gnus-data-find
2902                       ,(or number '(gnus-summary-article-number)))))
2903
2904 (defmacro gnus-summary-thread-level (&optional number)
2905   "Return the level of thread that starts with article NUMBER."
2906   `(if (and (eq gnus-summary-make-false-root 'dummy)
2907             (get-text-property (point) 'gnus-intangible))
2908        0
2909      (gnus-data-level (gnus-data-find
2910                        ,(or number '(gnus-summary-article-number))))))
2911
2912 (defmacro gnus-summary-article-mark (&optional number)
2913   "Return the mark of article NUMBER."
2914   `(gnus-data-mark (gnus-data-find
2915                     ,(or number '(gnus-summary-article-number)))))
2916
2917 (defmacro gnus-summary-article-pos (&optional number)
2918   "Return the position of the line of article NUMBER."
2919   `(gnus-data-pos (gnus-data-find
2920                    ,(or number '(gnus-summary-article-number)))))
2921
2922 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2923 (defmacro gnus-summary-article-subject (&optional number)
2924   "Return current subject string or nil if nothing."
2925   `(let ((headers
2926           ,(if number
2927                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2928              '(gnus-data-header (assq (gnus-summary-article-number)
2929                                       gnus-newsgroup-data)))))
2930      (and headers
2931           (vectorp headers)
2932           (mail-header-subject headers))))
2933
2934 (defmacro gnus-summary-article-score (&optional number)
2935   "Return current article score."
2936   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2937                   gnus-newsgroup-scored))
2938        gnus-summary-default-score 0))
2939
2940 (defun gnus-summary-article-children (&optional number)
2941   "Return a list of article numbers that are children of article NUMBER."
2942   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2943          (level (gnus-data-level (car data)))
2944          l children)
2945     (while (and (setq data (cdr data))
2946                 (> (setq l (gnus-data-level (car data))) level))
2947       (and (= (1+ level) l)
2948            (push (gnus-data-number (car data))
2949                  children)))
2950     (nreverse children)))
2951
2952 (defun gnus-summary-article-parent (&optional number)
2953   "Return the article number of the parent of article NUMBER."
2954   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2955                                     (gnus-data-list t)))
2956          (level (gnus-data-level (car data))))
2957     (if (zerop level)
2958         ()                              ; This is a root.
2959       ;; We search until we find an article with a level less than
2960       ;; this one.  That function has to be the parent.
2961       (while (and (setq data (cdr data))
2962                   (not (< (gnus-data-level (car data)) level))))
2963       (and data (gnus-data-number (car data))))))
2964
2965 (defun gnus-unread-mark-p (mark)
2966   "Say whether MARK is the unread mark."
2967   (= mark gnus-unread-mark))
2968
2969 (defun gnus-read-mark-p (mark)
2970   "Say whether MARK is one of the marks that mark as read.
2971 This is all marks except unread, ticked, dormant, and expirable."
2972   (not (or (= mark gnus-unread-mark)
2973            (= mark gnus-ticked-mark)
2974            (= mark gnus-spam-mark)
2975            (= mark gnus-dormant-mark)
2976            (= mark gnus-expirable-mark))))
2977
2978 (defmacro gnus-article-mark (number)
2979   "Return the MARK of article NUMBER.
2980 This macro should only be used when computing the mark the \"first\"
2981 time; i.e., when generating the summary lines.  After that,
2982 `gnus-summary-article-mark' should be used to examine the
2983 marks of articles."
2984   `(cond
2985     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
2986     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
2987     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
2988     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
2989     ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
2990     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
2991     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
2992     (t (or (cdr (assq ,number gnus-newsgroup-reads))
2993            gnus-ancient-mark))))
2994
2995 ;; Saving hidden threads.
2996
2997 (defmacro gnus-save-hidden-threads (&rest forms)
2998   "Save hidden threads, eval FORMS, and restore the hidden threads."
2999   (let ((config (make-symbol "config")))
3000     `(let ((,config (gnus-hidden-threads-configuration)))
3001        (unwind-protect
3002            (save-excursion
3003              ,@forms)
3004          (gnus-restore-hidden-threads-configuration ,config)))))
3005 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3006 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3007
3008 (defun gnus-data-compute-positions ()
3009   "Compute the positions of all articles."
3010   (setq gnus-newsgroup-data-reverse nil)
3011   (let ((data gnus-newsgroup-data))
3012     (save-excursion
3013       (gnus-save-hidden-threads
3014         (gnus-summary-show-all-threads)
3015         (goto-char (point-min))
3016         (while data
3017           (while (get-text-property (point) 'gnus-intangible)
3018             (forward-line 1))
3019           (gnus-data-set-pos (car data) (+ (point) 3))
3020           (setq data (cdr data))
3021           (forward-line 1))))))
3022
3023 (defun gnus-hidden-threads-configuration ()
3024   "Return the current hidden threads configuration."
3025   (save-excursion
3026     (let (config)
3027       (goto-char (point-min))
3028       (while (search-forward "\r" nil t)
3029         (push (1- (point)) config))
3030       config)))
3031
3032 (defun gnus-restore-hidden-threads-configuration (config)
3033   "Restore hidden threads configuration from CONFIG."
3034   (save-excursion
3035     (let (point buffer-read-only)
3036       (while (setq point (pop config))
3037         (when (and (< point (point-max))
3038                    (goto-char point)
3039                    (eq (char-after) ?\n))
3040           (subst-char-in-region point (1+ point) ?\n ?\r))))))
3041
3042 ;; Various summary mode internalish functions.
3043
3044 (defun gnus-mouse-pick-article (e)
3045   (interactive "e")
3046   (mouse-set-point e)
3047   (gnus-summary-next-page nil t))
3048
3049 (defun gnus-summary-set-display-table ()
3050   "Change the display table.
3051 Odd characters have a tendency to mess
3052 up nicely formatted displays - we make all possible glyphs
3053 display only a single character."
3054
3055   ;; We start from the standard display table, if any.
3056   (let ((table (or (copy-sequence standard-display-table)
3057                    (make-display-table)))
3058         (i 32))
3059     ;; Nix out all the control chars...
3060     (while (>= (setq i (1- i)) 0)
3061       (aset table i [??]))
3062    ;; ... but not newline and cr, of course.  (cr is necessary for the
3063     ;; selective display).
3064     (aset table ?\n nil)
3065     (aset table ?\r nil)
3066     ;; We keep TAB as well.
3067     (aset table ?\t nil)
3068     ;; We nix out any glyphs over 126 that are not set already.
3069     (let ((i 256))
3070       (while (>= (setq i (1- i)) 127)
3071         ;; Only modify if the entry is nil.
3072         (unless (aref table i)
3073           (aset table i [??]))))
3074     (setq buffer-display-table table)))
3075
3076 (defun gnus-summary-set-article-display-arrow (pos)
3077   "Update the overlay arrow to point to line at position POS."
3078   (when (and gnus-summary-display-arrow
3079              (boundp 'overlay-arrow-position)
3080              (boundp 'overlay-arrow-string))
3081     (save-excursion
3082       (goto-char pos)
3083       (beginning-of-line)
3084       (unless overlay-arrow-position
3085         (setq overlay-arrow-position (make-marker)))
3086       (setq overlay-arrow-string "=>"
3087             overlay-arrow-position (set-marker overlay-arrow-position
3088                                                (point)
3089                                                (current-buffer))))))
3090
3091 (defun gnus-summary-setup-buffer (group)
3092   "Initialize summary buffer."
3093   (let ((buffer (gnus-summary-buffer-name group))
3094         (dead-name (concat "*Dead Summary "
3095                            (gnus-group-decoded-name group) "*")))
3096     ;; If a dead summary buffer exists, we kill it.
3097     (when (gnus-buffer-live-p dead-name)
3098       (gnus-kill-buffer dead-name))
3099     (if (get-buffer buffer)
3100         (progn
3101           (set-buffer buffer)
3102           (setq gnus-summary-buffer (current-buffer))
3103           (not gnus-newsgroup-prepared))
3104       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3105       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3106       (gnus-summary-mode group)
3107       (when gnus-carpal
3108         (gnus-carpal-setup-buffer 'summary))
3109       (unless gnus-single-article-buffer
3110         (make-local-variable 'gnus-article-buffer)
3111         (make-local-variable 'gnus-article-current)
3112         (make-local-variable 'gnus-original-article-buffer))
3113       (setq gnus-newsgroup-name group)
3114       ;; Set any local variables in the group parameters.
3115       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3116       t)))
3117
3118 (defun gnus-set-global-variables ()
3119   "Set the global equivalents of the buffer-local variables.
3120 They are set to the latest values they had.  These reflect the summary
3121 buffer that was in action when the last article was fetched."
3122   (when (eq major-mode 'gnus-summary-mode)
3123     (setq gnus-summary-buffer (current-buffer))
3124     (let ((name gnus-newsgroup-name)
3125           (marked gnus-newsgroup-marked)
3126           (spam gnus-newsgroup-spam-marked)
3127           (unread gnus-newsgroup-unreads)
3128           (headers gnus-current-headers)
3129           (data gnus-newsgroup-data)
3130           (summary gnus-summary-buffer)
3131           (article-buffer gnus-article-buffer)
3132           (original gnus-original-article-buffer)
3133           (gac gnus-article-current)
3134           (reffed gnus-reffed-article-number)
3135           (score-file gnus-current-score-file)
3136           (default-charset gnus-newsgroup-charset)
3137           vlist)
3138       (let ((locals gnus-newsgroup-variables))
3139         (while locals
3140           (if (consp (car locals))
3141               (push (eval (caar locals)) vlist)
3142             (push (eval (car locals)) vlist))
3143           (setq locals (cdr locals)))
3144         (setq vlist (nreverse vlist)))
3145       (save-excursion
3146         (set-buffer gnus-group-buffer)
3147         (setq gnus-newsgroup-name name
3148               gnus-newsgroup-marked marked
3149               gnus-newsgroup-spam-marked spam
3150               gnus-newsgroup-unreads unread
3151               gnus-current-headers headers
3152               gnus-newsgroup-data data
3153               gnus-article-current gac
3154               gnus-summary-buffer summary
3155               gnus-article-buffer article-buffer
3156               gnus-original-article-buffer original
3157               gnus-reffed-article-number reffed
3158               gnus-current-score-file score-file
3159               gnus-newsgroup-charset default-charset)
3160         (let ((locals gnus-newsgroup-variables))
3161           (while locals
3162             (if (consp (car locals))
3163                 (set (caar locals) (pop vlist))
3164               (set (car locals) (pop vlist)))
3165             (setq locals (cdr locals))))
3166         ;; The article buffer also has local variables.
3167         (when (gnus-buffer-live-p gnus-article-buffer)
3168           (set-buffer gnus-article-buffer)
3169           (setq gnus-summary-buffer summary))))))
3170
3171 (defun gnus-summary-article-unread-p (article)
3172   "Say whether ARTICLE is unread or not."
3173   (memq article gnus-newsgroup-unreads))
3174
3175 (defun gnus-summary-first-article-p (&optional article)
3176   "Return whether ARTICLE is the first article in the buffer."
3177   (if (not (setq article (or article (gnus-summary-article-number))))
3178       nil
3179     (eq article (caar gnus-newsgroup-data))))
3180
3181 (defun gnus-summary-last-article-p (&optional article)
3182   "Return whether ARTICLE is the last article in the buffer."
3183   (if (not (setq article (or article (gnus-summary-article-number))))
3184       ;; All non-existent numbers are the last article.  :-)
3185       t
3186     (not (cdr (gnus-data-find-list article)))))
3187
3188 (defun gnus-make-thread-indent-array ()
3189   (let ((n 200))
3190     (unless (and gnus-thread-indent-array
3191                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
3192       (setq gnus-thread-indent-array (make-vector 201 "")
3193             gnus-thread-indent-array-level gnus-thread-indent-level)
3194       (while (>= n 0)
3195         (aset gnus-thread-indent-array n
3196               (make-string (* n gnus-thread-indent-level) ? ))
3197         (setq n (1- n))))))
3198
3199 (defun gnus-update-summary-mark-positions ()
3200   "Compute where the summary marks are to go."
3201   (save-excursion
3202     (when (gnus-buffer-exists-p gnus-summary-buffer)
3203       (set-buffer gnus-summary-buffer))
3204     (let ((gnus-replied-mark 129)
3205           (gnus-score-below-mark 130)
3206           (gnus-score-over-mark 130)
3207           (gnus-undownloaded-mark 131)
3208           (spec gnus-summary-line-format-spec)
3209           gnus-visual pos)
3210       (save-excursion
3211         (gnus-set-work-buffer)
3212         (let ((gnus-summary-line-format-spec spec)
3213               (gnus-newsgroup-downloadable '(0)))
3214           (gnus-summary-insert-line
3215            [0 "" "" "05 Apr 2001 23:33:09 +0400" "" "" 0 0 "" nil]
3216            0 nil t 128 t nil "" nil 1)
3217           (goto-char (point-min))
3218           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
3219                                              (- (point) (point-min) 1)))))
3220           (goto-char (point-min))
3221           (push (cons 'replied (and (search-forward "\201" nil t)
3222                                     (- (point) (point-min) 1)))
3223                 pos)
3224           (goto-char (point-min))
3225           (push (cons 'score (and (search-forward "\202" nil t)
3226                                   (- (point) (point-min) 1)))
3227                 pos)
3228           (goto-char (point-min))
3229           (push (cons 'download
3230                       (and (search-forward "\203" nil t)
3231                            (- (point) (point-min) 1)))
3232                 pos)))
3233       (setq gnus-summary-mark-positions pos))))
3234
3235 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3236   "Insert a dummy root in the summary buffer."
3237   (beginning-of-line)
3238   (gnus-add-text-properties
3239    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3240    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3241
3242 (defun gnus-summary-extract-address-component (from)
3243   (or (car (funcall gnus-extract-address-components from))
3244       from))
3245
3246 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3247   (let ((mail-parse-charset gnus-newsgroup-charset)
3248         ; Is it really necessary to do this next part for each summary line?
3249         ; Luckily, doesn't seem to slow things down much.
3250         (mail-parse-ignored-charsets
3251          (with-current-buffer gnus-summary-buffer
3252            gnus-newsgroup-ignored-charsets)))
3253     (or
3254      (and gnus-ignored-from-addresses
3255           (string-match gnus-ignored-from-addresses gnus-tmp-from)
3256           (let ((extra-headers (mail-header-extra header))
3257                 to
3258                 newsgroups)
3259             (cond
3260              ((setq to (cdr (assq 'To extra-headers)))
3261               (concat "-> "
3262                       (inline
3263                         (gnus-summary-extract-address-component
3264                          (funcall gnus-decode-encoded-word-function to)))))
3265              ((setq newsgroups (cdr (assq 'Newsgroups extra-headers)))
3266               (concat "=> " newsgroups)))))
3267      (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3268
3269 (defun gnus-summary-insert-line (gnus-tmp-header
3270                                  gnus-tmp-level gnus-tmp-current
3271                                  undownloaded gnus-tmp-unread gnus-tmp-replied
3272                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
3273                                  &optional gnus-tmp-dummy gnus-tmp-score
3274                                  gnus-tmp-process)
3275   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3276          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3277          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3278          (gnus-tmp-score-char
3279           (if (or (null gnus-summary-default-score)
3280                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3281                       gnus-summary-zcore-fuzz))
3282               ?                         ;Whitespace
3283             (if (< gnus-tmp-score gnus-summary-default-score)
3284                 gnus-score-below-mark gnus-score-over-mark)))
3285          (gnus-tmp-number (mail-header-number gnus-tmp-header))
3286          (gnus-tmp-replied
3287           (cond (gnus-tmp-process gnus-process-mark)
3288                 ((memq gnus-tmp-current gnus-newsgroup-cached)
3289                  gnus-cached-mark)
3290                 (gnus-tmp-replied gnus-replied-mark)
3291                 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3292                  gnus-forwarded-mark)
3293                 ((memq gnus-tmp-current gnus-newsgroup-saved)
3294                  gnus-saved-mark)
3295                 ((memq gnus-tmp-number gnus-newsgroup-recent)
3296                  gnus-recent-mark)
3297                 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3298                  gnus-unseen-mark)
3299                 (t gnus-no-mark)))
3300          (gnus-tmp-downloaded
3301           (cond (undownloaded
3302                  gnus-undownloaded-mark)
3303                 (gnus-newsgroup-agentized
3304                  gnus-downloaded-mark)
3305                 (t
3306                  gnus-no-mark)))
3307          (gnus-tmp-from (mail-header-from gnus-tmp-header))
3308          (gnus-tmp-name
3309           (cond
3310            ((string-match "<[^>]+> *$" gnus-tmp-from)
3311             (let ((beg (match-beginning 0)))
3312               (or (and (string-match "^\".+\"" gnus-tmp-from)
3313                        (substring gnus-tmp-from 1 (1- (match-end 0))))
3314                   (substring gnus-tmp-from 0 beg))))
3315            ((string-match "(.+)" gnus-tmp-from)
3316             (substring gnus-tmp-from
3317                        (1+ (match-beginning 0)) (1- (match-end 0))))
3318            (t gnus-tmp-from)))
3319          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3320          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3321          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3322          (buffer-read-only nil))
3323     (when (string= gnus-tmp-name "")
3324       (setq gnus-tmp-name gnus-tmp-from))
3325     (unless (numberp gnus-tmp-lines)
3326       (setq gnus-tmp-lines -1))
3327     (if (= gnus-tmp-lines -1)
3328         (setq gnus-tmp-lines "?")
3329       (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3330       (gnus-put-text-property
3331      (point)
3332      (progn (eval gnus-summary-line-format-spec) (point))
3333        'gnus-number gnus-tmp-number)
3334     (when (gnus-visual-p 'summary-highlight 'highlight)
3335       (forward-line -1)
3336       (gnus-run-hooks 'gnus-summary-update-hook)
3337       (forward-line 1))))
3338
3339 (defun gnus-summary-update-line (&optional dont-update)
3340   "Update summary line after change."
3341   (when (and gnus-summary-default-score
3342              (not gnus-summary-inhibit-highlight))
3343     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3344            (article (gnus-summary-article-number))
3345            (score (gnus-summary-article-score article)))
3346       (unless dont-update
3347         (if (and gnus-summary-mark-below
3348                  (< (gnus-summary-article-score)
3349                     gnus-summary-mark-below))
3350             ;; This article has a low score, so we mark it as read.
3351             (when (memq article gnus-newsgroup-unreads)
3352               (gnus-summary-mark-article-as-read gnus-low-score-mark))
3353           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3354             ;; This article was previously marked as read on account
3355             ;; of a low score, but now it has risen, so we mark it as
3356             ;; unread.
3357             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3358         (gnus-summary-update-mark
3359          (if (or (null gnus-summary-default-score)
3360                  (<= (abs (- score gnus-summary-default-score))
3361                      gnus-summary-zcore-fuzz))
3362              ?                          ;Whitespace
3363            (if (< score gnus-summary-default-score)
3364                gnus-score-below-mark gnus-score-over-mark))
3365          'score))
3366       ;; Do visual highlighting.
3367       (when (gnus-visual-p 'summary-highlight 'highlight)
3368         (gnus-run-hooks 'gnus-summary-update-hook)))))
3369
3370 (defvar gnus-tmp-new-adopts nil)
3371
3372 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3373   "Return the number of articles in THREAD.
3374 This may be 0 in some cases -- if none of the articles in
3375 the thread are to be displayed."
3376   (let* ((number
3377          ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3378           (cond
3379            ((not (listp thread))
3380             1)
3381            ((and (consp thread) (cdr thread))
3382             (apply
3383              '+ 1 (mapcar
3384                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
3385            ((null thread)
3386             1)
3387            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3388             1)
3389            (t 0))))
3390     (when (and level (zerop level) gnus-tmp-new-adopts)
3391       (incf number
3392             (apply '+ (mapcar
3393                        'gnus-summary-number-of-articles-in-thread
3394                        gnus-tmp-new-adopts))))
3395     (if char
3396         (if (> number 1) gnus-not-empty-thread-mark
3397           gnus-empty-thread-mark)
3398       number)))
3399
3400 (defsubst gnus-summary-line-message-size (head)
3401   "Return pretty-printed version of message size.
3402 This function is intended to be used in
3403 `gnus-summary-line-format-alist'."
3404   (let ((c (or (mail-header-chars head) -1)))
3405     (cond ((< c 0) "n/a")               ; chars not available
3406           ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3407           ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3408           ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3409           (t (format "%dM" (/ c (* 1024.0 1024)))))))
3410
3411
3412 (defun gnus-summary-set-local-parameters (group)
3413   "Go through the local params of GROUP and set all variable specs in that list."
3414   (let ((params (gnus-group-find-parameter group))
3415         (vars '(quit-config))           ; Ignore quit-config.
3416         elem)
3417     (while params
3418       (setq elem (car params)
3419             params (cdr params))
3420       (and (consp elem)                 ; Has to be a cons.
3421            (consp (cdr elem))           ; The cdr has to be a list.
3422            (symbolp (car elem))         ; Has to be a symbol in there.
3423            (not (memq (car elem) vars))
3424            (ignore-errors               ; So we set it.
3425              (push (car elem) vars)
3426              (make-local-variable (car elem))
3427              (set (car elem) (eval (nth 1 elem))))))))
3428
3429 (defun gnus-summary-read-group (group &optional show-all no-article
3430                                       kill-buffer no-display backward
3431                                       select-articles)
3432   "Start reading news in newsgroup GROUP.
3433 If SHOW-ALL is non-nil, already read articles are also listed.
3434 If NO-ARTICLE is non-nil, no article is selected initially.
3435 If NO-DISPLAY, don't generate a summary buffer."
3436   (let (result)
3437     (while (and group
3438                 (null (setq result
3439                             (let ((gnus-auto-select-next nil))
3440                               (or (gnus-summary-read-group-1
3441                                    group show-all no-article
3442                                    kill-buffer no-display
3443                                    select-articles)
3444                                   (setq show-all nil
3445                                         select-articles nil)))))
3446                 (eq gnus-auto-select-next 'quietly))
3447       (set-buffer gnus-group-buffer)
3448       ;; The entry function called above goes to the next
3449       ;; group automatically, so we go two groups back
3450       ;; if we are searching for the previous group.
3451       (when backward
3452         (gnus-group-prev-unread-group 2))
3453       (if (not (equal group (gnus-group-group-name)))
3454           (setq group (gnus-group-group-name))
3455         (setq group nil)))
3456     result))
3457
3458 (defun gnus-summary-read-group-1 (group show-all no-article
3459                                         kill-buffer no-display
3460                                         &optional select-articles)
3461   ;; Killed foreign groups can't be entered.
3462   ;;  (when (and (not (gnus-group-native-p group))
3463   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
3464   ;;    (error "Dead non-native groups can't be entered"))
3465   (gnus-message 5 "Retrieving newsgroup: %s..."
3466                 (gnus-group-decoded-name group))
3467   (let* ((new-group (gnus-summary-setup-buffer group))
3468          (quit-config (gnus-group-quit-config group))
3469          (did-select (and new-group (gnus-select-newsgroup
3470                                      group show-all select-articles))))
3471     (cond
3472      ;; This summary buffer exists already, so we just select it.
3473      ((not new-group)
3474       (gnus-set-global-variables)
3475       (when kill-buffer
3476         (gnus-kill-or-deaden-summary kill-buffer))
3477       (gnus-configure-windows 'summary 'force)
3478       (gnus-set-mode-line 'summary)
3479       (gnus-summary-position-point)
3480       (message "")
3481       t)
3482      ;; We couldn't select this group.
3483      ((null did-select)
3484       (when (and (eq major-mode 'gnus-summary-mode)
3485                  (not (equal (current-buffer) kill-buffer)))
3486         (kill-buffer (current-buffer))
3487         (if (not quit-config)
3488             (progn
3489               ;; Update the info -- marks might need to be removed,
3490               ;; for instance.
3491               (gnus-summary-update-info)
3492               (set-buffer gnus-group-buffer)
3493               (gnus-group-jump-to-group group)
3494               (gnus-group-next-unread-group 1))
3495           (gnus-handle-ephemeral-exit quit-config)))
3496       (let ((grpinfo (gnus-get-info group)))
3497         (if (null (gnus-info-read grpinfo))
3498             (gnus-message 3 "Group %s contains no messages"
3499                           (gnus-group-decoded-name group))
3500           (gnus-message 3 "Can't select group")))
3501       nil)
3502      ;; The user did a `C-g' while prompting for number of articles,
3503      ;; so we exit this group.
3504      ((eq did-select 'quit)
3505       (and (eq major-mode 'gnus-summary-mode)
3506            (not (equal (current-buffer) kill-buffer))
3507            (kill-buffer (current-buffer)))
3508       (when kill-buffer
3509         (gnus-kill-or-deaden-summary kill-buffer))
3510       (if (not quit-config)
3511           (progn
3512             (set-buffer gnus-group-buffer)
3513             (gnus-group-jump-to-group group)
3514             (gnus-group-next-unread-group 1)
3515             (gnus-configure-windows 'group 'force))
3516         (gnus-handle-ephemeral-exit quit-config))
3517       ;; Finally signal the quit.
3518       (signal 'quit nil))
3519      ;; The group was successfully selected.
3520      (t
3521       (gnus-set-global-variables)
3522       ;; Save the active value in effect when the group was entered.
3523       (setq gnus-newsgroup-active
3524             (gnus-copy-sequence
3525              (gnus-active gnus-newsgroup-name)))
3526       ;; You can change the summary buffer in some way with this hook.
3527       (gnus-run-hooks 'gnus-select-group-hook)
3528       (gnus-update-format-specifications
3529        nil 'summary 'summary-mode 'summary-dummy)
3530       (gnus-update-summary-mark-positions)
3531       ;; Do score processing.
3532       (when gnus-use-scoring
3533         (gnus-possibly-score-headers))
3534       ;; Check whether to fill in the gaps in the threads.
3535       (when gnus-build-sparse-threads
3536         (gnus-build-sparse-threads))
3537       ;; Find the initial limit.
3538       (if gnus-show-threads
3539           (if show-all
3540               (let ((gnus-newsgroup-dormant nil))
3541                 (gnus-summary-initial-limit show-all))
3542             (gnus-summary-initial-limit show-all))
3543         ;; When unthreaded, all articles are always shown.
3544         (setq gnus-newsgroup-limit
3545               (mapcar
3546                (lambda (header) (mail-header-number header))
3547                gnus-newsgroup-headers)))
3548       ;; Generate the summary buffer.
3549       (unless no-display
3550         (gnus-summary-prepare))
3551       (when gnus-use-trees
3552         (gnus-tree-open group)
3553         (setq gnus-summary-highlight-line-function
3554               'gnus-tree-highlight-article))
3555       ;; If the summary buffer is empty, but there are some low-scored
3556       ;; articles or some excluded dormants, we include these in the
3557       ;; buffer.
3558       (when (and (zerop (buffer-size))
3559                  (not no-display))
3560         (cond (gnus-newsgroup-dormant
3561                (gnus-summary-limit-include-dormant))
3562               ((and gnus-newsgroup-scored show-all)
3563                (gnus-summary-limit-include-expunged t))))
3564       ;; Function `gnus-apply-kill-file' must be called in this hook.
3565       (gnus-run-hooks 'gnus-apply-kill-hook)
3566       (if (and (zerop (buffer-size))
3567                (not no-display))
3568           (progn
3569             ;; This newsgroup is empty.
3570             (gnus-summary-catchup-and-exit nil t)
3571             (gnus-message 6 "No unread news")
3572             (when kill-buffer
3573               (gnus-kill-or-deaden-summary kill-buffer))
3574             ;; Return nil from this function.
3575             nil)
3576         ;; Hide conversation thread subtrees.  We cannot do this in
3577         ;; gnus-summary-prepare-hook since kill processing may not
3578         ;; work with hidden articles.
3579         (gnus-summary-maybe-hide-threads)
3580         (when kill-buffer
3581           (gnus-kill-or-deaden-summary kill-buffer))
3582         (gnus-summary-auto-select-subject)
3583         ;; Show first unread article if requested.
3584         (if (and (not no-article)
3585                  (not no-display)
3586                  gnus-newsgroup-unreads
3587                  gnus-auto-select-first)
3588             (progn
3589               (gnus-configure-windows 'summary)
3590               (let ((art (gnus-summary-article-number)))
3591                 (unless (and (not gnus-plugged)
3592                              (or (memq art gnus-newsgroup-undownloaded)
3593                                  (memq art gnus-newsgroup-downloadable)))
3594                   (gnus-summary-goto-article art))))
3595           ;; Don't select any articles.
3596           (gnus-summary-position-point)
3597           (gnus-configure-windows 'summary 'force)
3598           (gnus-set-mode-line 'summary))
3599         (when (and gnus-auto-center-group
3600                    (get-buffer-window gnus-group-buffer t))
3601           ;; Gotta use windows, because recenter does weird stuff if
3602           ;; the current buffer ain't the displayed window.
3603           (let ((owin (selected-window)))
3604             (select-window (get-buffer-window gnus-group-buffer t))
3605             (when (gnus-group-goto-group group)
3606               (recenter))
3607             (select-window owin)))
3608         ;; Mark this buffer as "prepared".
3609         (setq gnus-newsgroup-prepared t)
3610         (gnus-run-hooks 'gnus-summary-prepared-hook)
3611         (unless (gnus-ephemeral-group-p group)
3612           (gnus-group-update-group group))
3613         t)))))
3614
3615 (defun gnus-summary-auto-select-subject ()
3616   "Select the subject line on initial group entry."
3617   (goto-char (point-min))
3618   (cond
3619    ((eq gnus-auto-select-subject 'best)
3620     (gnus-summary-best-unread-subject))
3621    ((eq gnus-auto-select-subject 'unread)
3622     (gnus-summary-first-unread-subject))
3623    ((eq gnus-auto-select-subject 'unseen)
3624     (gnus-summary-first-unseen-subject))
3625    ((eq gnus-auto-select-subject 'unseen-or-unread)
3626     (gnus-summary-first-unseen-or-unread-subject))
3627    ((eq gnus-auto-select-subject 'first)
3628     ;; Do nothing.
3629     )
3630    ((functionp gnus-auto-select-subject)
3631     (funcall gnus-auto-select-subject))))
3632
3633 (defun gnus-summary-prepare ()
3634   "Generate the summary buffer."
3635   (interactive)
3636   (let ((buffer-read-only nil))
3637     (erase-buffer)
3638     (setq gnus-newsgroup-data nil
3639           gnus-newsgroup-data-reverse nil)
3640     (gnus-run-hooks 'gnus-summary-generate-hook)
3641     ;; Generate the buffer, either with threads or without.
3642     (when gnus-newsgroup-headers
3643       (gnus-summary-prepare-threads
3644        (if gnus-show-threads
3645            (gnus-sort-gathered-threads
3646             (funcall gnus-summary-thread-gathering-function
3647                      (gnus-sort-threads
3648                       (gnus-cut-threads (gnus-make-threads)))))
3649          ;; Unthreaded display.
3650          (gnus-sort-articles gnus-newsgroup-headers))))
3651     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
3652     ;; Call hooks for modifying summary buffer.
3653     (goto-char (point-min))
3654     (gnus-run-hooks 'gnus-summary-prepare-hook)))
3655
3656 (defsubst gnus-general-simplify-subject (subject)
3657   "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
3658   (setq subject
3659         (cond
3660          ;; Truncate the subject.
3661          (gnus-simplify-subject-functions
3662           (gnus-map-function gnus-simplify-subject-functions subject))
3663          ((numberp gnus-summary-gather-subject-limit)
3664           (setq subject (gnus-simplify-subject-re subject))
3665           (if (> (length subject) gnus-summary-gather-subject-limit)
3666               (substring subject 0 gnus-summary-gather-subject-limit)
3667             subject))
3668          ;; Fuzzily simplify it.
3669          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3670           (gnus-simplify-subject-fuzzy subject))
3671          ;; Just remove the leading "Re:".
3672          (t
3673           (gnus-simplify-subject-re subject))))
3674
3675   (if (and gnus-summary-gather-exclude-subject
3676            (string-match gnus-summary-gather-exclude-subject subject))
3677       nil                         ; This article shouldn't be gathered
3678     subject))
3679
3680 (defun gnus-summary-simplify-subject-query ()
3681   "Query where the respool algorithm would put this article."
3682   (interactive)
3683   (gnus-summary-select-article)
3684   (message (gnus-general-simplify-subject (gnus-summary-article-subject))))
3685
3686 (defun gnus-gather-threads-by-subject (threads)
3687   "Gather threads by looking at Subject headers."
3688   (if (not gnus-summary-make-false-root)
3689       threads
3690     (let ((hashtb (gnus-make-hashtable 1024))
3691           (prev threads)
3692           (result threads)
3693           subject hthread whole-subject)
3694       (while threads
3695         (setq subject (gnus-general-simplify-subject
3696                        (setq whole-subject (mail-header-subject
3697                                             (caar threads)))))
3698         (when subject
3699           (if (setq hthread (gnus-gethash subject hashtb))
3700               (progn
3701                 ;; We enter a dummy root into the thread, if we
3702                 ;; haven't done that already.
3703                 (unless (stringp (caar hthread))
3704                   (setcar hthread (list whole-subject (car hthread))))
3705                 ;; We add this new gathered thread to this gathered
3706                 ;; thread.
3707                 (setcdr (car hthread)
3708                         (nconc (cdar hthread) (list (car threads))))
3709                 ;; Remove it from the list of threads.
3710                 (setcdr prev (cdr threads))
3711                 (setq threads prev))
3712             ;; Enter this thread into the hash table.
3713             (gnus-sethash subject
3714                           (if gnus-summary-make-false-root-always
3715                               (progn
3716                                 ;; If you want a dummy root above all
3717                                 ;; threads...
3718                                 (setcar threads (list whole-subject
3719                                                       (car threads)))
3720                                 threads)
3721                             threads)
3722                           hashtb)))
3723         (setq prev threads)
3724         (setq threads (cdr threads)))
3725       result)))
3726
3727 (defun gnus-gather-threads-by-references (threads)
3728   "Gather threads by looking at References headers."
3729   (let ((idhashtb (gnus-make-hashtable 1024))
3730         (thhashtb (gnus-make-hashtable 1024))
3731         (prev threads)
3732         (result threads)
3733         ids references id gthread gid entered ref)
3734     (while threads
3735       (when (setq references (mail-header-references (caar threads)))
3736         (setq id (mail-header-id (caar threads))
3737               ids (inline (gnus-split-references references))
3738               entered nil)
3739         (while (setq ref (pop ids))
3740           (setq ids (delete ref ids))
3741           (if (not (setq gid (gnus-gethash ref idhashtb)))
3742               (progn
3743                 (gnus-sethash ref id idhashtb)
3744                 (gnus-sethash id threads thhashtb))
3745             (setq gthread (gnus-gethash gid thhashtb))
3746             (unless entered
3747               ;; We enter a dummy root into the thread, if we
3748               ;; haven't done that already.
3749               (unless (stringp (caar gthread))
3750                 (setcar gthread (list (mail-header-subject (caar gthread))
3751                                       (car gthread))))
3752               ;; We add this new gathered thread to this gathered
3753               ;; thread.
3754               (setcdr (car gthread)
3755                       (nconc (cdar gthread) (list (car threads)))))
3756             ;; Add it into the thread hash table.
3757             (gnus-sethash id gthread thhashtb)
3758             (setq entered t)
3759             ;; Remove it from the list of threads.
3760             (setcdr prev (cdr threads))
3761             (setq threads prev))))
3762       (setq prev threads)
3763       (setq threads (cdr threads)))
3764     result))
3765
3766 (defun gnus-sort-gathered-threads (threads)
3767   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3768   (let ((result threads))
3769     (while threads
3770       (when (stringp (caar threads))
3771         (setcdr (car threads)
3772                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3773       (setq threads (cdr threads)))
3774     result))
3775
3776 (defun gnus-thread-loop-p (root thread)
3777   "Say whether ROOT is in THREAD."
3778   (let ((stack (list thread))
3779         (infloop 0)
3780         th)
3781     (while (setq thread (pop stack))
3782       (setq th (cdr thread))
3783       (while (and th
3784                   (not (eq (caar th) root)))
3785         (pop th))
3786       (if th
3787           ;; We have found a loop.
3788           (let (ref-dep)
3789             (setcdr thread (delq (car th) (cdr thread)))
3790             (if (boundp (setq ref-dep (intern "none"
3791                                               gnus-newsgroup-dependencies)))
3792                 (setcdr (symbol-value ref-dep)
3793                         (nconc (cdr (symbol-value ref-dep))
3794                                (list (car th))))
3795               (set ref-dep (list nil (car th))))
3796             (setq infloop 1
3797                   stack nil))
3798         ;; Push all the subthreads onto the stack.
3799         (push (cdr thread) stack)))
3800     infloop))
3801
3802 (defun gnus-make-threads ()
3803   "Go through the dependency hashtb and find the roots.  Return all threads."
3804   (let (threads)
3805     (while (catch 'infloop
3806              (mapatoms
3807               (lambda (refs)
3808                 ;; Deal with self-referencing References loops.
3809                 (when (and (car (symbol-value refs))
3810                            (not (zerop
3811                                  (apply
3812                                   '+
3813                                   (mapcar
3814                                    (lambda (thread)
3815                                      (gnus-thread-loop-p
3816                                       (car (symbol-value refs)) thread))
3817                                    (cdr (symbol-value refs)))))))
3818                   (setq threads nil)
3819                   (throw 'infloop t))
3820                 (unless (car (symbol-value refs))
3821                   ;; These threads do not refer back to any other
3822                   ;; articles, so they're roots.
3823                   (setq threads (append (cdr (symbol-value refs)) threads))))
3824               gnus-newsgroup-dependencies)))
3825     threads))
3826
3827 ;; Build the thread tree.
3828 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3829   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3830
3831 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3832 if it was already present.
3833
3834 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3835 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3836 Message-IDs will be renamed to a unique Message-ID before being
3837 entered.
3838
3839 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3840   (let* ((id (mail-header-id header))
3841          (id-dep (and id (intern id dependencies)))
3842          parent-id ref ref-dep ref-header replaced)
3843     ;; Enter this `header' in the `dependencies' table.
3844     (cond
3845      ((not id-dep)
3846       (setq header nil))
3847      ;; The first two cases do the normal part: enter a new `header'
3848      ;; in the `dependencies' table.
3849      ((not (boundp id-dep))
3850       (set id-dep (list header)))
3851      ((null (car (symbol-value id-dep)))
3852       (setcar (symbol-value id-dep) header))
3853
3854      ;; From here the `header' was already present in the
3855      ;; `dependencies' table.
3856      (force-new
3857       ;; Overrides an existing entry;
3858       ;; just set the header part of the entry.
3859       (setcar (symbol-value id-dep) header)
3860       (setq replaced t))
3861
3862      ;; Renames the existing `header' to a unique Message-ID.
3863      ((not gnus-summary-ignore-duplicates)
3864       ;; An article with this Message-ID has already been seen.
3865       ;; We rename the Message-ID.
3866       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3867            (list header))
3868       (mail-header-set-id header id))
3869
3870      ;; The last case ignores an existing entry, except it adds any
3871      ;; additional Xrefs (in case the two articles came from different
3872      ;; servers.
3873      ;; Also sets `header' to `nil' meaning that the `dependencies'
3874      ;; table was *not* modified.
3875      (t
3876       (mail-header-set-xref
3877        (car (symbol-value id-dep))
3878        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3879                    "")
3880                (or (mail-header-xref header) "")))
3881       (setq header nil)))
3882
3883     (when (and header (not replaced))
3884       ;; First check that we are not creating a References loop.
3885       (setq parent-id (gnus-parent-id (mail-header-references header)))
3886       (setq ref parent-id)
3887       (while (and ref
3888                   (setq ref-dep (intern-soft ref dependencies))
3889                   (boundp ref-dep)
3890                   (setq ref-header (car (symbol-value ref-dep))))
3891         (if (string= id ref)
3892             ;; Yuk!  This is a reference loop.  Make the article be a
3893             ;; root article.
3894             (progn
3895               (mail-header-set-references (car (symbol-value id-dep)) "none")
3896               (setq ref nil)
3897               (setq parent-id nil))
3898           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3899       (setq ref-dep (intern (or parent-id "none") dependencies))
3900       (if (boundp ref-dep)
3901           (setcdr (symbol-value ref-dep)
3902                   (nconc (cdr (symbol-value ref-dep))
3903                          (list (symbol-value id-dep))))
3904         (set ref-dep (list nil (symbol-value id-dep)))))
3905     header))
3906
3907 (defun gnus-extract-message-id-from-in-reply-to (string)
3908   (if (string-match "<[^>]+>" string)
3909       (substring string (match-beginning 0) (match-end 0))
3910     nil))
3911
3912 (defun gnus-build-sparse-threads ()
3913   (let ((headers gnus-newsgroup-headers)
3914         (mail-parse-charset gnus-newsgroup-charset)
3915         (gnus-summary-ignore-duplicates t)
3916         header references generation relations
3917         subject child end new-child date)
3918     ;; First we create an alist of generations/relations, where
3919     ;; generations is how much we trust the relation, and the relation
3920     ;; is parent/child.
3921     (gnus-message 7 "Making sparse threads...")
3922     (save-excursion
3923       (nnheader-set-temp-buffer " *gnus sparse threads*")
3924       (while (setq header (pop headers))
3925         (when (and (setq references (mail-header-references header))
3926                    (not (string= references "")))
3927           (insert references)
3928           (setq child (mail-header-id header)
3929                 subject (mail-header-subject header)
3930                 date (mail-header-date header)
3931                 generation 0)
3932           (while (search-backward ">" nil t)
3933             (setq end (1+ (point)))
3934             (when (search-backward "<" nil t)
3935               (setq new-child (buffer-substring (point) end))
3936               (push (list (incf generation)
3937                           child (setq child new-child)
3938                           subject date)
3939                     relations)))
3940           (when child
3941             (push (list (1+ generation) child nil subject) relations))
3942           (erase-buffer)))
3943       (kill-buffer (current-buffer)))
3944     ;; Sort over trustworthiness.
3945     (mapcar
3946      (lambda (relation)
3947        (when (gnus-dependencies-add-header
3948               (make-full-mail-header
3949                gnus-reffed-article-number
3950                (nth 3 relation) "" (or (nth 4 relation) "")
3951                (nth 1 relation)
3952                (or (nth 2 relation) "") 0 0 "")
3953               gnus-newsgroup-dependencies nil)
3954          (push gnus-reffed-article-number gnus-newsgroup-limit)
3955          (push gnus-reffed-article-number gnus-newsgroup-sparse)
3956          (push (cons gnus-reffed-article-number gnus-sparse-mark)
3957                gnus-newsgroup-reads)
3958          (decf gnus-reffed-article-number)))
3959      (sort relations 'car-less-than-car))
3960     (gnus-message 7 "Making sparse threads...done")))
3961
3962 (defun gnus-build-old-threads ()
3963   ;; Look at all the articles that refer back to old articles, and
3964   ;; fetch the headers for the articles that aren't there.  This will
3965   ;; build complete threads - if the roots haven't been expired by the
3966   ;; server, that is.
3967   (let ((mail-parse-charset gnus-newsgroup-charset)
3968         id heads)
3969     (mapatoms
3970      (lambda (refs)
3971        (when (not (car (symbol-value refs)))
3972          (setq heads (cdr (symbol-value refs)))
3973          (while heads
3974            (if (memq (mail-header-number (caar heads))
3975                      gnus-newsgroup-dormant)
3976                (setq heads (cdr heads))
3977              (setq id (symbol-name refs))
3978              (while (and (setq id (gnus-build-get-header id))
3979                          (not (car (gnus-id-to-thread id)))))
3980              (setq heads nil)))))
3981      gnus-newsgroup-dependencies)))
3982
3983 (defsubst gnus-remove-odd-characters (string)
3984   "Translate STRING into something that doesn't contain weird characters."
3985   (mm-subst-char-in-string
3986    ?\r ?\-
3987    (mm-subst-char-in-string ?\n ?\- string t) t))
3988
3989 ;; This function has to be called with point after the article number
3990 ;; on the beginning of the line.
3991 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
3992   (let ((eol (point-at-eol))
3993         (buffer (current-buffer))
3994         header references in-reply-to)
3995
3996     ;; overview: [num subject from date id refs chars lines misc]
3997     (unwind-protect
3998         (let (x)
3999           (narrow-to-region (point) eol)
4000           (unless (eobp)
4001             (forward-char))
4002
4003           (setq header
4004                 (make-full-mail-header
4005                  number                 ; number
4006                  (condition-case ()     ; subject
4007                      (gnus-remove-odd-characters
4008                       (funcall gnus-decode-encoded-word-function
4009                                (setq x (nnheader-nov-field))))
4010                    (error x))
4011                  (condition-case ()     ; from
4012                      (gnus-remove-odd-characters
4013                       (funcall gnus-decode-encoded-word-function
4014                                (setq x (nnheader-nov-field))))
4015                    (error x))
4016                  (nnheader-nov-field)   ; date
4017                  (nnheader-nov-read-message-id) ; id
4018                  (setq references (nnheader-nov-field)) ; refs
4019                  (nnheader-nov-read-integer) ; chars
4020                  (nnheader-nov-read-integer) ; lines
4021                  (unless (eobp)
4022                    (if (looking-at "Xref: ")
4023                        (goto-char (match-end 0)))
4024                    (nnheader-nov-field)) ; Xref
4025                  (nnheader-nov-parse-extra)))) ; extra
4026
4027       (widen))
4028
4029     (when (and (string= references "")
4030                (setq in-reply-to (mail-header-extra header))
4031                (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4032       (mail-header-set-references
4033        header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4034
4035     (when gnus-alter-header-function
4036       (funcall gnus-alter-header-function header))
4037     (gnus-dependencies-add-header header dependencies force-new)))
4038
4039 (defun gnus-build-get-header (id)
4040   "Look through the buffer of NOV lines and find the header to ID.
4041 Enter this line into the dependencies hash table, and return
4042 the id of the parent article (if any)."
4043   (let ((deps gnus-newsgroup-dependencies)
4044         found header)
4045     (prog1
4046         (save-excursion
4047           (set-buffer nntp-server-buffer)
4048           (let ((case-fold-search nil))
4049             (goto-char (point-min))
4050             (while (and (not found)
4051                         (search-forward id nil t))
4052               (beginning-of-line)
4053               (setq found (looking-at
4054                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4055                                    (regexp-quote id))))
4056               (or found (beginning-of-line 2)))
4057             (when found
4058               (beginning-of-line)
4059               (and
4060                (setq header (gnus-nov-parse-line
4061                              (read (current-buffer)) deps))
4062                (gnus-parent-id (mail-header-references header))))))
4063       (when header
4064         (let ((number (mail-header-number header)))
4065           (push number gnus-newsgroup-limit)
4066           (push header gnus-newsgroup-headers)
4067           (if (memq number gnus-newsgroup-unselected)
4068               (progn
4069                 (setq gnus-newsgroup-unreads
4070                       (gnus-add-to-sorted-list gnus-newsgroup-unreads
4071                                                number))
4072                 (setq gnus-newsgroup-unselected
4073                       (delq number gnus-newsgroup-unselected)))
4074             (push number gnus-newsgroup-ancient)))))))
4075
4076 (defun gnus-build-all-threads ()
4077   "Read all the headers."
4078   (let ((gnus-summary-ignore-duplicates t)
4079         (mail-parse-charset gnus-newsgroup-charset)
4080         (dependencies gnus-newsgroup-dependencies)
4081         header article)
4082     (save-excursion
4083       (set-buffer nntp-server-buffer)
4084       (let ((case-fold-search nil))
4085         (goto-char (point-min))
4086         (while (not (eobp))
4087           (ignore-errors
4088             (setq article (read (current-buffer))
4089                   header (gnus-nov-parse-line article dependencies)))
4090           (when header
4091             (save-excursion
4092               (set-buffer gnus-summary-buffer)
4093               (push header gnus-newsgroup-headers)
4094               (if (memq (setq article (mail-header-number header))
4095                         gnus-newsgroup-unselected)
4096                   (progn
4097                     (setq gnus-newsgroup-unreads
4098                           (gnus-add-to-sorted-list
4099                            gnus-newsgroup-unreads article))
4100                     (setq gnus-newsgroup-unselected
4101                           (delq article gnus-newsgroup-unselected)))
4102                 (push article gnus-newsgroup-ancient)))
4103             (forward-line 1)))))))
4104
4105 (defun gnus-summary-update-article-line (article header)
4106   "Update the line for ARTICLE using HEADER."
4107   (let* ((id (mail-header-id header))
4108          (thread (gnus-id-to-thread id)))
4109     (unless thread
4110       (error "Article in no thread"))
4111     ;; Update the thread.
4112     (setcar thread header)
4113     (gnus-summary-goto-subject article)
4114     (let* ((datal (gnus-data-find-list article))
4115            (data (car datal))
4116            (buffer-read-only nil)
4117            (level (gnus-summary-thread-level)))
4118       (gnus-delete-line)
4119       (let ((inserted (- (point)
4120                          (progn
4121                            (gnus-summary-insert-line
4122                             header level nil
4123                             (memq article gnus-newsgroup-undownloaded)
4124                             (gnus-article-mark article)
4125                             (memq article gnus-newsgroup-replied)
4126                             (memq article gnus-newsgroup-expirable)
4127                             ;; Only insert the Subject string when it's different
4128                             ;; from the previous Subject string.
4129                             (if (and
4130                                  gnus-show-threads
4131                                  (gnus-subject-equal
4132                                   (condition-case ()
4133                                       (mail-header-subject
4134                                        (gnus-data-header
4135                                         (cadr
4136                                          (gnus-data-find-list
4137                                           article
4138                                           (gnus-data-list t)))))
4139                                     ;; Error on the side of excessive subjects.
4140                                     (error ""))
4141                                   (mail-header-subject header)))
4142                                 ""
4143                               (mail-header-subject header))
4144                             nil (cdr (assq article gnus-newsgroup-scored))
4145                             (memq article gnus-newsgroup-processable))
4146                            (point)))))
4147         (when (cdr datal)
4148           (gnus-data-update-list
4149            (cdr datal)
4150            (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4151
4152 (defun gnus-summary-update-article (article &optional iheader)
4153   "Update ARTICLE in the summary buffer."
4154   (set-buffer gnus-summary-buffer)
4155   (let* ((header (gnus-summary-article-header article))
4156          (id (mail-header-id header))
4157          (data (gnus-data-find article))
4158          (thread (gnus-id-to-thread id))
4159          (references (mail-header-references header))
4160          (parent
4161           (gnus-id-to-thread
4162            (or (gnus-parent-id
4163                 (when (and references
4164                            (not (equal "" references)))
4165                   references))
4166                "none")))
4167          (buffer-read-only nil)
4168          (old (car thread)))
4169     (when thread
4170       (unless iheader
4171         (setcar thread nil)
4172         (when parent
4173           (delq thread parent)))
4174       (if (gnus-summary-insert-subject id header)
4175           ;; Set the (possibly) new article number in the data structure.
4176           (gnus-data-set-number data (gnus-id-to-article id))
4177         (setcar thread old)
4178         nil))))
4179
4180 (defun gnus-rebuild-thread (id &optional line)
4181   "Rebuild the thread containing ID.
4182 If LINE, insert the rebuilt thread starting on line LINE."
4183   (let ((buffer-read-only nil)
4184         old-pos current thread data)
4185     (if (not gnus-show-threads)
4186         (setq thread (list (car (gnus-id-to-thread id))))
4187       ;; Get the thread this article is part of.
4188       (setq thread (gnus-remove-thread id)))
4189     (setq old-pos (point-at-bol))
4190     (setq current (save-excursion
4191                     (and (re-search-backward "[\r\n]" nil t)
4192                          (gnus-summary-article-number))))
4193     ;; If this is a gathered thread, we have to go some re-gathering.
4194     (when (stringp (car thread))
4195       (let ((subject (car thread))
4196             roots thr)
4197         (setq thread (cdr thread))
4198         (while thread
4199           (unless (memq (setq thr (gnus-id-to-thread
4200                                    (gnus-root-id
4201                                     (mail-header-id (caar thread)))))
4202                         roots)
4203             (push thr roots))
4204           (setq thread (cdr thread)))
4205         ;; We now have all (unique) roots.
4206         (if (= (length roots) 1)
4207             ;; All the loose roots are now one solid root.
4208             (setq thread (car roots))
4209           (setq thread (cons subject (gnus-sort-threads roots))))))
4210     (let (threads)
4211       ;; We then insert this thread into the summary buffer.
4212       (when line
4213         (goto-char (point-min))
4214         (forward-line (1- line)))
4215       (let (gnus-newsgroup-data gnus-newsgroup-threads)
4216         (if gnus-show-threads
4217             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4218           (gnus-summary-prepare-unthreaded thread))
4219         (setq data (nreverse gnus-newsgroup-data))
4220         (setq threads gnus-newsgroup-threads))
4221       ;; We splice the new data into the data structure.
4222       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
4223       ;;!!! then we want to insert at the beginning of the buffer.
4224       ;;!!! That happens to be true with Gnus now, but that may
4225       ;;!!! change in the future.  Perhaps.
4226       (gnus-data-enter-list
4227        (if line nil current) data (- (point) old-pos))
4228       (setq gnus-newsgroup-threads
4229             (nconc threads gnus-newsgroup-threads))
4230       (gnus-data-compute-positions))))
4231
4232 (defun gnus-number-to-header (number)
4233   "Return the header for article NUMBER."
4234   (let ((headers gnus-newsgroup-headers))
4235     (while (and headers
4236                 (not (= number (mail-header-number (car headers)))))
4237       (pop headers))
4238     (when headers
4239       (car headers))))
4240
4241 (defun gnus-parent-headers (in-headers &optional generation)
4242   "Return the headers of the GENERATIONeth parent of HEADERS."
4243   (unless generation
4244     (setq generation 1))
4245   (let ((parent t)
4246         (headers in-headers)
4247         references)
4248     (while (and parent
4249                 (not (zerop generation))
4250                 (setq references (mail-header-references headers)))
4251       (setq headers (if (and references
4252                              (setq parent (gnus-parent-id references)))
4253                         (car (gnus-id-to-thread parent))
4254                       nil))
4255       (decf generation))
4256     (and (not (eq headers in-headers))
4257          headers)))
4258
4259 (defun gnus-id-to-thread (id)
4260   "Return the (sub-)thread where ID appears."
4261   (gnus-gethash id gnus-newsgroup-dependencies))
4262
4263 (defun gnus-id-to-article (id)
4264   "Return the article number of ID."
4265   (let ((thread (gnus-id-to-thread id)))
4266     (when (and thread
4267                (car thread))
4268       (mail-header-number (car thread)))))
4269
4270 (defun gnus-id-to-header (id)
4271   "Return the article headers of ID."
4272   (car (gnus-id-to-thread id)))
4273
4274 (defun gnus-article-displayed-root-p (article)
4275   "Say whether ARTICLE is a root(ish) article."
4276   (let ((level (gnus-summary-thread-level article))
4277         (refs (mail-header-references  (gnus-summary-article-header article)))
4278         particle)
4279     (cond
4280      ((null level) nil)
4281      ((zerop level) t)
4282      ((null refs) t)
4283      ((null (gnus-parent-id refs)) t)
4284      ((and (= 1 level)
4285            (null (setq particle (gnus-id-to-article
4286                                  (gnus-parent-id refs))))
4287            (null (gnus-summary-thread-level particle)))))))
4288
4289 (defun gnus-root-id (id)
4290   "Return the id of the root of the thread where ID appears."
4291   (let (last-id prev)
4292     (while (and id (setq prev (car (gnus-id-to-thread id))))
4293       (setq last-id id
4294             id (gnus-parent-id (mail-header-references prev))))
4295     last-id))
4296
4297 (defun gnus-articles-in-thread (thread)
4298   "Return the list of articles in THREAD."
4299   (cons (mail-header-number (car thread))
4300         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4301
4302 (defun gnus-remove-thread (id &optional dont-remove)
4303   "Remove the thread that has ID in it."
4304   (let (headers thread last-id)
4305     ;; First go up in this thread until we find the root.
4306     (setq last-id (gnus-root-id id)
4307           headers (message-flatten-list (gnus-id-to-thread last-id)))
4308     ;; We have now found the real root of this thread.  It might have
4309     ;; been gathered into some loose thread, so we have to search
4310     ;; through the threads to find the thread we wanted.
4311     (let ((threads gnus-newsgroup-threads)
4312           sub)
4313       (while threads
4314         (setq sub (car threads))
4315         (if (stringp (car sub))
4316             ;; This is a gathered thread, so we look at the roots
4317             ;; below it to find whether this article is in this
4318             ;; gathered root.
4319             (progn
4320               (setq sub (cdr sub))
4321               (while sub
4322                 (when (member (caar sub) headers)
4323                   (setq thread (car threads)
4324                         threads nil
4325                         sub nil))
4326                 (setq sub (cdr sub))))
4327           ;; It's an ordinary thread, so we check it.
4328           (when (eq (car sub) (car headers))
4329             (setq thread sub
4330                   threads nil)))
4331         (setq threads (cdr threads)))
4332       ;; If this article is in no thread, then it's a root.
4333       (if thread
4334           (unless dont-remove
4335             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4336         (setq thread (gnus-id-to-thread last-id)))
4337       (when thread
4338         (prog1
4339             thread                      ; We return this thread.
4340           (unless dont-remove
4341             (if (stringp (car thread))
4342                 (progn
4343                   ;; If we use dummy roots, then we have to remove the
4344                   ;; dummy root as well.
4345                   (when (eq gnus-summary-make-false-root 'dummy)
4346                     ;; We go to the dummy root by going to
4347                     ;; the first sub-"thread", and then one line up.
4348                     (gnus-summary-goto-article
4349                      (mail-header-number (caadr thread)))
4350                     (forward-line -1)
4351                     (gnus-delete-line)
4352                     (gnus-data-compute-positions))
4353                   (setq thread (cdr thread))
4354                   (while thread
4355                     (gnus-remove-thread-1 (car thread))
4356                     (setq thread (cdr thread))))
4357               (gnus-remove-thread-1 thread))))))))
4358
4359 (defun gnus-remove-thread-1 (thread)
4360   "Remove the thread THREAD recursively."
4361   (let ((number (mail-header-number (pop thread)))
4362         d)
4363     (setq thread (reverse thread))
4364     (while thread
4365       (gnus-remove-thread-1 (pop thread)))
4366     (when (setq d (gnus-data-find number))
4367       (goto-char (gnus-data-pos d))
4368       (gnus-summary-show-thread)
4369       (gnus-data-remove
4370        number
4371        (- (point-at-bol)
4372           (prog1
4373               (1+ (point-at-eol))
4374             (gnus-delete-line)))))))
4375
4376 (defun gnus-sort-threads-1 (threads func)
4377   (sort (mapcar (lambda (thread)
4378                   (cons (car thread)
4379                         (and (cdr thread)
4380                              (gnus-sort-threads-1 (cdr thread) func))))
4381                 threads) func))
4382
4383 (defun gnus-sort-threads (threads)
4384   "Sort THREADS."
4385   (if (not gnus-thread-sort-functions)
4386       threads
4387     (gnus-message 8 "Sorting threads...")
4388     (let ((max-lisp-eval-depth 5000))
4389       (prog1 (gnus-sort-threads-1
4390          threads
4391          (gnus-make-sort-function gnus-thread-sort-functions))
4392         (gnus-message 8 "Sorting threads...done")))))
4393
4394 (defun gnus-sort-articles (articles)
4395   "Sort ARTICLES."
4396   (when gnus-article-sort-functions
4397     (gnus-message 7 "Sorting articles...")
4398     (prog1
4399         (setq gnus-newsgroup-headers
4400               (sort articles (gnus-make-sort-function
4401                               gnus-article-sort-functions)))
4402       (gnus-message 7 "Sorting articles...done"))))
4403
4404 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4405 (defmacro gnus-thread-header (thread)
4406   "Return header of first article in THREAD.
4407 Note that THREAD must never, ever be anything else than a variable -
4408 using some other form will lead to serious barfage."
4409   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4410   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4411   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4412         (vector thread) 2))
4413
4414 (defsubst gnus-article-sort-by-number (h1 h2)
4415   "Sort articles by article number."
4416   (< (mail-header-number h1)
4417      (mail-header-number h2)))
4418
4419 (defun gnus-thread-sort-by-number (h1 h2)
4420   "Sort threads by root article number."
4421   (gnus-article-sort-by-number
4422    (gnus-thread-header h1) (gnus-thread-header h2)))
4423
4424 (defsubst gnus-article-sort-by-random (h1 h2)
4425   "Sort articles by article number."
4426   (zerop (random 2)))
4427
4428 (defun gnus-thread-sort-by-random (h1 h2)
4429   "Sort threads by root article number."
4430   (gnus-article-sort-by-random
4431    (gnus-thread-header h1) (gnus-thread-header h2)))
4432
4433 (defsubst gnus-article-sort-by-lines (h1 h2)
4434   "Sort articles by article Lines header."
4435   (< (mail-header-lines h1)
4436      (mail-header-lines h2)))
4437
4438 (defun gnus-thread-sort-by-lines (h1 h2)
4439   "Sort threads by root article Lines header."
4440   (gnus-article-sort-by-lines
4441    (gnus-thread-header h1) (gnus-thread-header h2)))
4442
4443 (defsubst gnus-article-sort-by-chars (h1 h2)
4444   "Sort articles by octet length."
4445   (< (mail-header-chars h1)
4446      (mail-header-chars h2)))
4447
4448 (defun gnus-thread-sort-by-chars (h1 h2)
4449   "Sort threads by root article octet length."
4450   (gnus-article-sort-by-chars
4451    (gnus-thread-header h1) (gnus-thread-header h2)))
4452
4453 (defsubst gnus-article-sort-by-author (h1 h2)
4454   "Sort articles by root author."
4455   (string-lessp
4456    (let ((extract (funcall
4457                    gnus-extract-address-components
4458                    (mail-header-from h1))))
4459      (or (car extract) (cadr extract) ""))
4460    (let ((extract (funcall
4461                    gnus-extract-address-components
4462                    (mail-header-from h2))))
4463      (or (car extract) (cadr extract) ""))))
4464
4465 (defun gnus-thread-sort-by-author (h1 h2)
4466   "Sort threads by root author."
4467   (gnus-article-sort-by-author
4468    (gnus-thread-header h1)  (gnus-thread-header h2)))
4469
4470 (defsubst gnus-article-sort-by-subject (h1 h2)
4471   "Sort articles by root subject."
4472   (string-lessp
4473    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4474    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4475
4476 (defun gnus-thread-sort-by-subject (h1 h2)
4477   "Sort threads by root subject."
4478   (gnus-article-sort-by-subject
4479    (gnus-thread-header h1) (gnus-thread-header h2)))
4480
4481 (defsubst gnus-article-sort-by-date (h1 h2)
4482   "Sort articles by root article date."
4483   (time-less-p
4484    (gnus-date-get-time (mail-header-date h1))
4485    (gnus-date-get-time (mail-header-date h2))))
4486
4487 (defun gnus-thread-sort-by-date (h1 h2)
4488   "Sort threads by root article date."
4489   (gnus-article-sort-by-date
4490    (gnus-thread-header h1) (gnus-thread-header h2)))
4491
4492 (defsubst gnus-article-sort-by-score (h1 h2)
4493   "Sort articles by root article score.
4494 Unscored articles will be counted as having a score of zero."
4495   (> (or (cdr (assq (mail-header-number h1)
4496                     gnus-newsgroup-scored))
4497          gnus-summary-default-score 0)
4498      (or (cdr (assq (mail-header-number h2)
4499                     gnus-newsgroup-scored))
4500          gnus-summary-default-score 0)))
4501
4502 (defun gnus-thread-sort-by-score (h1 h2)
4503   "Sort threads by root article score."
4504   (gnus-article-sort-by-score
4505    (gnus-thread-header h1) (gnus-thread-header h2)))
4506
4507 (defun gnus-thread-sort-by-total-score (h1 h2)
4508   "Sort threads by the sum of all scores in the thread.
4509 Unscored articles will be counted as having a score of zero."
4510   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4511
4512 (defun gnus-thread-total-score (thread)
4513   ;; This function find the total score of THREAD.
4514   (cond
4515    ((null thread)
4516     0)
4517    ((consp thread)
4518     (if (stringp (car thread))
4519         (apply gnus-thread-score-function 0
4520                (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4521       (gnus-thread-total-score-1 thread)))
4522    (t
4523     (gnus-thread-total-score-1 (list thread)))))
4524
4525 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4526   "Sort threads such that the thread with the most recently arrived article comes first."
4527   (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4528
4529 (defun gnus-thread-highest-number (thread)
4530   "Return the highest article number in THREAD."
4531   (apply 'max (mapcar (lambda (header)
4532                         (mail-header-number header))
4533                       (message-flatten-list thread))))
4534
4535 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4536   "Sort threads such that the thread with the most recently dated article comes first."
4537   (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4538
4539 (defun gnus-thread-latest-date (thread)
4540   "Return the highest article date in THREAD."
4541   (let ((previous-time 0))
4542     (apply 'max
4543            (mapcar
4544             (lambda (header)
4545               (setq previous-time
4546                     (condition-case ()
4547                         (time-to-seconds (mail-header-parse-date
4548                                           (mail-header-date header)))
4549                       (error previous-time))))
4550             (sort
4551              (message-flatten-list thread)
4552              (lambda (h1 h2)
4553                (< (mail-header-number h1)
4554                   (mail-header-number h2))))))))
4555
4556 (defun gnus-thread-total-score-1 (root)
4557   ;; This function find the total score of the thread below ROOT.
4558   (setq root (car root))
4559   (apply gnus-thread-score-function
4560          (or (append
4561               (mapcar 'gnus-thread-total-score
4562                       (cdr (gnus-id-to-thread (mail-header-id root))))
4563               (when (> (mail-header-number root) 0)
4564                 (list (or (cdr (assq (mail-header-number root)
4565                                      gnus-newsgroup-scored))
4566                           gnus-summary-default-score 0))))
4567              (list gnus-summary-default-score)
4568              '(0))))
4569
4570 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
4571 (defvar gnus-tmp-prev-subject nil)
4572 (defvar gnus-tmp-false-parent nil)
4573 (defvar gnus-tmp-root-expunged nil)
4574 (defvar gnus-tmp-dummy-line nil)
4575
4576 (eval-when-compile (defvar gnus-tmp-header))
4577 (defun gnus-extra-header (type &optional header)
4578   "Return the extra header of TYPE."
4579   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
4580       ""))
4581
4582 (defvar gnus-tmp-thread-tree-header-string "")
4583
4584 (defcustom gnus-sum-thread-tree-root "> "
4585   "With %B spec, used for the root of a thread.
4586 If nil, use subject instead."
4587   :type '(radio (const :format "%v  " nil) (string :size 0))
4588   :group 'gnus-thread)
4589 (defcustom gnus-sum-thread-tree-false-root "> "
4590   "With %B spec, used for a false root of a thread.
4591 If nil, use subject instead."
4592   :type '(radio (const :format "%v  " nil) (string :size 0))
4593   :group 'gnus-thread)
4594 (defcustom gnus-sum-thread-tree-single-indent ""
4595   "With %B spec, used for a thread with just one message.
4596 If nil, use subject instead."
4597   :type '(radio (const :format "%v  " nil) (string :size 0))
4598   :group 'gnus-thread)
4599 (defcustom gnus-sum-thread-tree-vertical "| "
4600   "With %B spec, used for drawing a vertical line."
4601   :type 'string
4602   :group 'gnus-thread)
4603 (defcustom gnus-sum-thread-tree-indent "  "
4604   "With %B spec, used for indenting."
4605   :type 'string
4606   :group 'gnus-thread)
4607 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
4608   "With %B spec, used for a leaf with brothers."
4609   :type 'string
4610   :group 'gnus-thread)
4611 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
4612   "With %B spec, used for a leaf without brothers."
4613   :type 'string
4614   :group 'gnus-thread)
4615
4616 (defun gnus-summary-prepare-threads (threads)
4617   "Prepare summary buffer from THREADS and indentation LEVEL.
4618 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
4619 or a straight list of headers."
4620   (gnus-message 7 "Generating summary...")
4621
4622   (setq gnus-newsgroup-threads threads)
4623   (beginning-of-line)
4624
4625   (let ((gnus-tmp-level 0)
4626         (default-score (or gnus-summary-default-score 0))
4627         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
4628         (building-line-count gnus-summary-display-while-building)
4629         (building-count (integerp gnus-summary-display-while-building))
4630         thread number subject stack state gnus-tmp-gathered beg-match
4631         new-roots gnus-tmp-new-adopts thread-end simp-subject
4632         gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
4633         gnus-tmp-replied gnus-tmp-subject-or-nil
4634         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
4635         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
4636         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
4637         tree-stack)
4638
4639     (setq gnus-tmp-prev-subject nil
4640           gnus-tmp-thread-tree-header-string "")
4641
4642     (if (vectorp (car threads))
4643         ;; If this is a straight (sic) list of headers, then a
4644         ;; threaded summary display isn't required, so we just create
4645         ;; an unthreaded one.
4646         (gnus-summary-prepare-unthreaded threads)
4647
4648       ;; Do the threaded display.
4649
4650       (if gnus-summary-display-while-building
4651           (switch-to-buffer (buffer-name)))
4652       (while (or threads stack gnus-tmp-new-adopts new-roots)
4653
4654         (if (and (= gnus-tmp-level 0)
4655                  (or (not stack)
4656                      (= (caar stack) 0))
4657                  (not gnus-tmp-false-parent)
4658                  (or gnus-tmp-new-adopts new-roots))
4659             (if gnus-tmp-new-adopts
4660                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
4661                       thread (list (car gnus-tmp-new-adopts))
4662                       gnus-tmp-header (caar thread)
4663                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
4664               (when new-roots
4665                 (setq thread (list (car new-roots))
4666                       gnus-tmp-header (caar thread)
4667                       new-roots (cdr new-roots))))
4668
4669           (if threads
4670               ;; If there are some threads, we do them before the
4671               ;; threads on the stack.
4672               (setq thread threads
4673                     gnus-tmp-header (caar thread))
4674             ;; There were no current threads, so we pop something off
4675             ;; the stack.
4676             (setq state (car stack)
4677                   gnus-tmp-level (car state)
4678                   tree-stack (cadr state)
4679                   thread (caddr state)
4680                   stack (cdr stack)
4681                   gnus-tmp-header (caar thread))))
4682
4683         (setq gnus-tmp-false-parent nil)
4684         (setq gnus-tmp-root-expunged nil)
4685         (setq thread-end nil)
4686
4687         (if (stringp gnus-tmp-header)
4688             ;; The header is a dummy root.
4689             (cond
4690              ((eq gnus-summary-make-false-root 'adopt)
4691               ;; We let the first article adopt the rest.
4692               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
4693                                                (cddar thread)))
4694               (setq gnus-tmp-gathered
4695                     (nconc (mapcar
4696                             (lambda (h) (mail-header-number (car h)))
4697                             (cddar thread))
4698                            gnus-tmp-gathered))
4699               (setq thread (cons (list (caar thread)
4700                                        (cadar thread))
4701                                  (cdr thread)))
4702               (setq gnus-tmp-level -1
4703                     gnus-tmp-false-parent t))
4704              ((eq gnus-summary-make-false-root 'empty)
4705               ;; We print adopted articles with empty subject fields.
4706               (setq gnus-tmp-gathered
4707                     (nconc (mapcar
4708                             (lambda (h) (mail-header-number (car h)))
4709                             (cddar thread))
4710                            gnus-tmp-gathered))
4711               (setq gnus-tmp-level -1))
4712              ((eq gnus-summary-make-false-root 'dummy)
4713               ;; We remember that we probably want to output a dummy
4714               ;; root.
4715               (setq gnus-tmp-dummy-line gnus-tmp-header)
4716               (setq gnus-tmp-prev-subject gnus-tmp-header))
4717              (t
4718               ;; We do not make a root for the gathered
4719               ;; sub-threads at all.
4720               (setq gnus-tmp-level -1)))
4721
4722           (setq number (mail-header-number gnus-tmp-header)
4723                 subject (mail-header-subject gnus-tmp-header)
4724                 simp-subject (gnus-simplify-subject-fully subject))
4725
4726           (cond
4727            ;; If the thread has changed subject, we might want to make
4728            ;; this subthread into a root.
4729            ((and (null gnus-thread-ignore-subject)
4730                  (not (zerop gnus-tmp-level))
4731                  gnus-tmp-prev-subject
4732                  (not (string= gnus-tmp-prev-subject simp-subject)))
4733             (setq new-roots (nconc new-roots (list (car thread)))
4734                   thread-end t
4735                   gnus-tmp-header nil))
4736            ;; If the article lies outside the current limit,
4737            ;; then we do not display it.
4738            ((not (memq number gnus-newsgroup-limit))
4739             (setq gnus-tmp-gathered
4740                   (nconc (mapcar
4741                           (lambda (h) (mail-header-number (car h)))
4742                           (cdar thread))
4743                          gnus-tmp-gathered))
4744             (setq gnus-tmp-new-adopts (if (cdar thread)
4745                                           (append gnus-tmp-new-adopts
4746                                                   (cdar thread))
4747                                         gnus-tmp-new-adopts)
4748                   thread-end t
4749                   gnus-tmp-header nil)
4750             (when (zerop gnus-tmp-level)
4751               (setq gnus-tmp-root-expunged t)))
4752            ;; Perhaps this article is to be marked as read?
4753            ((and gnus-summary-mark-below
4754                  (< (or (cdr (assq number gnus-newsgroup-scored))
4755                         default-score)
4756                     gnus-summary-mark-below)
4757                  ;; Don't touch sparse articles.
4758                  (not (gnus-summary-article-sparse-p number))
4759                  (not (gnus-summary-article-ancient-p number)))
4760             (setq gnus-newsgroup-unreads
4761                   (delq number gnus-newsgroup-unreads))
4762             (if gnus-newsgroup-auto-expire
4763                 (setq gnus-newsgroup-expirable
4764                       (gnus-add-to-sorted-list
4765                        gnus-newsgroup-expirable number))
4766               (push (cons number gnus-low-score-mark)
4767                     gnus-newsgroup-reads))))
4768
4769           (when gnus-tmp-header
4770             ;; We may have an old dummy line to output before this
4771             ;; article.
4772             (when (and gnus-tmp-dummy-line
4773                        (gnus-subject-equal
4774                         gnus-tmp-dummy-line
4775                         (mail-header-subject gnus-tmp-header)))
4776               (gnus-summary-insert-dummy-line
4777                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
4778               (setq gnus-tmp-dummy-line nil))
4779
4780             ;; Compute the mark.
4781             (setq gnus-tmp-unread (gnus-article-mark number))
4782
4783             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
4784                                   gnus-tmp-header gnus-tmp-level)
4785                   gnus-newsgroup-data)
4786
4787             ;; Actually insert the line.
4788             (setq
4789              gnus-tmp-subject-or-nil
4790              (cond
4791               ((and gnus-thread-ignore-subject
4792                     gnus-tmp-prev-subject
4793                     (not (string= gnus-tmp-prev-subject simp-subject)))
4794                subject)
4795               ((zerop gnus-tmp-level)
4796                (if (and (eq gnus-summary-make-false-root 'empty)
4797                         (memq number gnus-tmp-gathered)
4798                         gnus-tmp-prev-subject
4799                         (string= gnus-tmp-prev-subject simp-subject))
4800                    gnus-summary-same-subject
4801                  subject))
4802               (t gnus-summary-same-subject)))
4803             (if (and (eq gnus-summary-make-false-root 'adopt)
4804                      (= gnus-tmp-level 1)
4805                      (memq number gnus-tmp-gathered))
4806                 (setq gnus-tmp-opening-bracket ?\<
4807                       gnus-tmp-closing-bracket ?\>)
4808               (setq gnus-tmp-opening-bracket ?\[
4809                     gnus-tmp-closing-bracket ?\]))
4810             (setq
4811              gnus-tmp-indentation
4812              (aref gnus-thread-indent-array gnus-tmp-level)
4813              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4814              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4815                                 gnus-summary-default-score 0)
4816              gnus-tmp-score-char
4817              (if (or (null gnus-summary-default-score)
4818                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4819                          gnus-summary-zcore-fuzz))
4820                  ?                      ;Whitespace
4821                (if (< gnus-tmp-score gnus-summary-default-score)
4822                    gnus-score-below-mark gnus-score-over-mark))
4823              gnus-tmp-replied
4824              (cond ((memq number gnus-newsgroup-processable)
4825                     gnus-process-mark)
4826                    ((memq number gnus-newsgroup-cached)
4827                     gnus-cached-mark)
4828                    ((memq number gnus-newsgroup-replied)
4829                     gnus-replied-mark)
4830                    ((memq number gnus-newsgroup-forwarded)
4831                     gnus-forwarded-mark)
4832                    ((memq number gnus-newsgroup-saved)
4833                     gnus-saved-mark)
4834                    ((memq number gnus-newsgroup-recent)
4835                     gnus-recent-mark)
4836                    ((memq number gnus-newsgroup-unseen)
4837                     gnus-unseen-mark)
4838                    (t gnus-no-mark))
4839              gnus-tmp-downloaded
4840              (cond ((memq number gnus-newsgroup-undownloaded)
4841                     gnus-undownloaded-mark)
4842                    (gnus-newsgroup-agentized
4843                     gnus-downloaded-mark)
4844                    (t
4845                     gnus-no-mark))
4846              gnus-tmp-from (mail-header-from gnus-tmp-header)
4847              gnus-tmp-name
4848              (cond
4849               ((string-match "<[^>]+> *$" gnus-tmp-from)
4850                (setq beg-match (match-beginning 0))
4851                (or (and (string-match "^\".+\"" gnus-tmp-from)
4852                         (substring gnus-tmp-from 1 (1- (match-end 0))))
4853                    (substring gnus-tmp-from 0 beg-match)))
4854               ((string-match "(.+)" gnus-tmp-from)
4855                (substring gnus-tmp-from
4856                           (1+ (match-beginning 0)) (1- (match-end 0))))
4857               (t gnus-tmp-from))
4858
4859              ;; Do the %B string
4860              gnus-tmp-thread-tree-header-string
4861              (cond
4862               ((not gnus-show-threads) "")
4863               ((zerop gnus-tmp-level)
4864                (cond ((cdar thread)
4865                       (or gnus-sum-thread-tree-root subject))
4866                      (gnus-tmp-new-adopts
4867                       (or gnus-sum-thread-tree-false-root subject))
4868                      (t
4869                       (or gnus-sum-thread-tree-single-indent subject))))
4870               (t
4871                (concat (apply 'concat
4872                               (mapcar (lambda (item)
4873                                         (if (= item 1)
4874                                             gnus-sum-thread-tree-vertical
4875                                           gnus-sum-thread-tree-indent))
4876                                       (cdr (reverse tree-stack))))
4877                        (if (nth 1 thread)
4878                            gnus-sum-thread-tree-leaf-with-other
4879                          gnus-sum-thread-tree-single-leaf)))))
4880             (when (string= gnus-tmp-name "")
4881               (setq gnus-tmp-name gnus-tmp-from))
4882             (unless (numberp gnus-tmp-lines)
4883               (setq gnus-tmp-lines -1))
4884             (if (= gnus-tmp-lines -1)
4885                 (setq gnus-tmp-lines "?")
4886               (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
4887               (gnus-put-text-property
4888              (point)
4889              (progn (eval gnus-summary-line-format-spec) (point))
4890                'gnus-number number)
4891             (when gnus-visual-p
4892               (forward-line -1)
4893               (gnus-run-hooks 'gnus-summary-update-hook)
4894               (forward-line 1))
4895
4896             (setq gnus-tmp-prev-subject simp-subject)))
4897
4898         (when (nth 1 thread)
4899           (push (list (max 0 gnus-tmp-level)
4900                       (copy-sequence tree-stack)
4901                       (nthcdr 1 thread))
4902                 stack))
4903         (push (if (nth 1 thread) 1 0) tree-stack)
4904         (incf gnus-tmp-level)
4905         (setq threads (if thread-end nil (cdar thread)))
4906         (if gnus-summary-display-while-building
4907             (if building-count
4908                 (progn
4909                   ;; use a set frequency
4910                   (setq building-line-count (1- building-line-count))
4911                   (when (= building-line-count 0)
4912                     (sit-for 0)
4913                     (setq building-line-count
4914                           gnus-summary-display-while-building)))
4915               ;; always
4916               (sit-for 0)))
4917         (unless threads
4918           (setq gnus-tmp-level 0)))))
4919   (gnus-message 7 "Generating summary...done"))
4920
4921 (defun gnus-summary-prepare-unthreaded (headers)
4922   "Generate an unthreaded summary buffer based on HEADERS."
4923   (let (header number mark)
4924
4925     (beginning-of-line)
4926
4927     (while headers
4928       ;; We may have to root out some bad articles...
4929       (when (memq (setq number (mail-header-number
4930                                 (setq header (pop headers))))
4931                   gnus-newsgroup-limit)
4932         ;; Mark article as read when it has a low score.
4933         (when (and gnus-summary-mark-below
4934                    (< (or (cdr (assq number gnus-newsgroup-scored))
4935                           gnus-summary-default-score 0)
4936                       gnus-summary-mark-below)
4937                    (not (gnus-summary-article-ancient-p number)))
4938           (setq gnus-newsgroup-unreads
4939                 (delq number gnus-newsgroup-unreads))
4940           (if gnus-newsgroup-auto-expire
4941               (push number gnus-newsgroup-expirable)
4942             (push (cons number gnus-low-score-mark)
4943                   gnus-newsgroup-reads)))
4944
4945         (setq mark (gnus-article-mark number))
4946         (push (gnus-data-make number mark (1+ (point)) header 0)
4947               gnus-newsgroup-data)
4948         (gnus-summary-insert-line
4949          header 0 number
4950          (memq number gnus-newsgroup-undownloaded)
4951          mark (memq number gnus-newsgroup-replied)
4952          (memq number gnus-newsgroup-expirable)
4953          (mail-header-subject header) nil
4954          (cdr (assq number gnus-newsgroup-scored))
4955          (memq number gnus-newsgroup-processable))))))
4956
4957 (defun gnus-summary-remove-list-identifiers ()
4958   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
4959   (let ((regexp (if (consp gnus-list-identifiers)
4960                     (mapconcat 'identity gnus-list-identifiers " *\\|")
4961                   gnus-list-identifiers))
4962         changed subject)
4963     (when regexp
4964       (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
4965       (dolist (header gnus-newsgroup-headers)
4966         (setq subject (mail-header-subject header)
4967               changed nil)
4968         (while (string-match regexp subject)
4969           (setq subject
4970                 (concat (substring subject 0 (match-beginning 1))
4971                         (substring subject (match-end 0)))
4972                 changed t))
4973         (when changed
4974           (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
4975             (setq subject
4976                   (concat (substring subject 0 (match-beginning 1))
4977                           (substring subject (match-end 1)))))
4978           (mail-header-set-subject header subject))))))
4979
4980 (defun gnus-fetch-headers (articles)
4981   "Fetch headers of ARTICLES."
4982   (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
4983     (gnus-message 5 "Fetching headers for %s..." name)
4984     (prog1
4985         (if (eq 'nov
4986                 (setq gnus-headers-retrieved-by
4987                       (gnus-retrieve-headers
4988                        articles gnus-newsgroup-name
4989                        ;; We might want to fetch old headers, but
4990                        ;; not if there is only 1 article.
4991                        (and (or (and
4992                                  (not (eq gnus-fetch-old-headers 'some))
4993                                  (not (numberp gnus-fetch-old-headers)))
4994                                 (> (length articles) 1))
4995                             gnus-fetch-old-headers))))
4996             (gnus-get-newsgroup-headers-xover
4997              articles nil nil gnus-newsgroup-name t)
4998           (gnus-get-newsgroup-headers))
4999       (gnus-message 5 "Fetching headers for %s...done" name))))
5000
5001 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5002   "Select newsgroup GROUP.
5003 If READ-ALL is non-nil, all articles in the group are selected.
5004 If SELECT-ARTICLES, only select those articles from GROUP."
5005   (let* ((entry (gnus-group-entry group))
5006          ;;!!! Dirty hack; should be removed.
5007          (gnus-summary-ignore-duplicates
5008           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5009               t
5010             gnus-summary-ignore-duplicates))
5011          (info (nth 2 entry))
5012          articles fetched-articles cached)
5013
5014     (unless (gnus-check-server
5015              (set (make-local-variable 'gnus-current-select-method)
5016                   (gnus-find-method-for-group group)))
5017       (error "Couldn't open server"))
5018
5019     (or (and entry (not (eq (car entry) t))) ; Either it's active...
5020         (gnus-activate-group group)     ; Or we can activate it...
5021         (progn                          ; Or we bug out.
5022           (when (equal major-mode 'gnus-summary-mode)
5023             (gnus-kill-buffer (current-buffer)))
5024           (error "Couldn't activate group %s: %s"
5025                  group (gnus-status-message group))))
5026
5027     (unless (gnus-request-group group t)
5028       (when (equal major-mode 'gnus-summary-mode)
5029         (gnus-kill-buffer (current-buffer)))
5030       (error "Couldn't request group %s: %s"
5031              group (gnus-status-message group)))
5032
5033     (when gnus-agent
5034       (gnus-agent-possibly-alter-active group (gnus-active group) info)
5035       
5036       (setq gnus-summary-use-undownloaded-faces
5037             (gnus-agent-find-parameter
5038              group
5039              'agent-enable-undownloaded-faces)))
5040
5041     (setq gnus-newsgroup-name group
5042           gnus-newsgroup-unselected nil
5043           gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5044
5045     (let ((display (gnus-group-find-parameter group 'display)))
5046       (setq gnus-newsgroup-display
5047             (cond
5048              ((not (zerop (or (car-safe read-all) 0)))
5049               ;; The user entered the group with C-u SPC/RET, let's show
5050               ;; all articles.
5051               'gnus-not-ignore)
5052              ((eq display 'all)
5053               'gnus-not-ignore)
5054              ((arrayp display)
5055               (gnus-summary-display-make-predicate (mapcar 'identity display)))
5056              ((numberp display)
5057               ;; The following is probably the "correct" solution, but
5058               ;; it makes Gnus fetch all headers and then limit the
5059               ;; articles (which is slow), so instead we hack the
5060               ;; select-articles parameter instead. -- Simon Josefsson
5061               ;; <jas@kth.se>
5062               ;;
5063               ;; (gnus-byte-compile
5064               ;;  `(lambda () (> number ,(- (cdr (gnus-active group))
5065               ;;                         display)))))
5066               (setq select-articles
5067                     (gnus-uncompress-range
5068                      (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5069                              (if (> tmp 0)
5070                                  tmp
5071                                1))
5072                            (cdr (gnus-active group)))))
5073               nil)
5074              (t
5075               nil))))
5076
5077     (gnus-summary-setup-default-charset)
5078
5079     ;; Kludge to avoid having cached articles nixed out in virtual groups.
5080     (when (gnus-virtual-group-p group)
5081       (setq cached gnus-newsgroup-cached))
5082
5083     (setq gnus-newsgroup-unreads
5084           (gnus-sorted-ndifference
5085            (gnus-sorted-ndifference gnus-newsgroup-unreads
5086                                     gnus-newsgroup-marked)
5087            gnus-newsgroup-dormant))
5088
5089     (setq gnus-newsgroup-processable nil)
5090
5091     (gnus-update-read-articles group gnus-newsgroup-unreads)
5092
5093     ;; Adjust and set lists of article marks.
5094     (when info
5095       (gnus-adjust-marked-articles info))
5096     (if (setq articles select-articles)
5097         (setq gnus-newsgroup-unselected
5098               (gnus-sorted-difference gnus-newsgroup-unreads articles))
5099       (setq articles (gnus-articles-to-read group read-all)))
5100
5101     (cond
5102      ((null articles)
5103       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5104       'quit)
5105      ((eq articles 0) nil)
5106      (t
5107       ;; Init the dependencies hash table.
5108       (setq gnus-newsgroup-dependencies
5109             (gnus-make-hashtable (length articles)))
5110       (gnus-set-global-variables)
5111       ;; Retrieve the headers and read them in.
5112
5113       (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5114
5115       ;; Kludge to avoid having cached articles nixed out in virtual groups.
5116       (when cached
5117         (setq gnus-newsgroup-cached cached))
5118
5119       ;; Suppress duplicates?
5120       (when gnus-suppress-duplicates
5121         (gnus-dup-suppress-articles))
5122
5123       ;; Set the initial limit.
5124       (setq gnus-newsgroup-limit (copy-sequence articles))
5125       ;; Remove canceled articles from the list of unread articles.
5126       (setq fetched-articles
5127             (mapcar (lambda (headers) (mail-header-number headers))
5128                     gnus-newsgroup-headers))
5129       (setq gnus-newsgroup-articles fetched-articles)
5130       (setq gnus-newsgroup-unreads
5131             (gnus-sorted-nintersection
5132              gnus-newsgroup-unreads fetched-articles))
5133       (gnus-compute-unseen-list)
5134
5135       ;; Removed marked articles that do not exist.
5136       (gnus-update-missing-marks
5137        (gnus-sorted-difference articles fetched-articles))
5138       ;; We might want to build some more threads first.
5139       (when (and gnus-fetch-old-headers
5140                  (eq gnus-headers-retrieved-by 'nov))
5141         (if (eq gnus-fetch-old-headers 'invisible)
5142             (gnus-build-all-threads)
5143           (gnus-build-old-threads)))
5144       ;; Let the Gnus agent mark articles as read.
5145       (when gnus-agent
5146         (gnus-agent-get-undownloaded-list))
5147       ;; Remove list identifiers from subject
5148       (when gnus-list-identifiers
5149         (gnus-summary-remove-list-identifiers))
5150       ;; Check whether auto-expire is to be done in this group.
5151       (setq gnus-newsgroup-auto-expire
5152             (gnus-group-auto-expirable-p group))
5153       ;; Set up the article buffer now, if necessary.
5154       (unless gnus-single-article-buffer
5155         (gnus-article-setup-buffer))
5156       ;; First and last article in this newsgroup.
5157       (when gnus-newsgroup-headers
5158         (setq gnus-newsgroup-begin
5159               (mail-header-number (car gnus-newsgroup-headers))
5160               gnus-newsgroup-end
5161               (mail-header-number
5162                (gnus-last-element gnus-newsgroup-headers))))
5163       ;; GROUP is successfully selected.
5164       (or gnus-newsgroup-headers t)))))
5165
5166 (defun gnus-compute-unseen-list ()
5167   ;; The `seen' marks are treated specially.
5168   (if (not gnus-newsgroup-seen)
5169       (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5170     (setq gnus-newsgroup-unseen
5171           (gnus-inverse-list-range-intersection
5172            gnus-newsgroup-articles gnus-newsgroup-seen))))
5173
5174 (defun gnus-summary-display-make-predicate (display)
5175   (require 'gnus-agent)
5176   (when (= (length display) 1)
5177     (setq display (car display)))
5178   (unless gnus-summary-display-cache
5179     (dolist (elem (append '((unread . unread)
5180                             (read . read)
5181                             (unseen . unseen))
5182                           gnus-article-mark-lists))
5183       (push (cons (cdr elem)
5184                   (gnus-byte-compile
5185                    `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5186             gnus-summary-display-cache)))
5187   (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5188         (gnus-category-predicate-cache gnus-summary-display-cache))
5189     (gnus-get-predicate display)))
5190
5191 ;; Uses the dynamically bound `number' variable.
5192 (eval-when-compile
5193   (defvar number))
5194 (defun gnus-article-marked-p (type &optional article)
5195   (let ((article (or article number)))
5196     (cond
5197      ((eq type 'tick)
5198       (memq article gnus-newsgroup-marked))
5199      ((eq type 'spam)
5200       (memq article gnus-newsgroup-spam-marked))
5201      ((eq type 'unsend)
5202       (memq article gnus-newsgroup-unsendable))
5203      ((eq type 'undownload)
5204       (memq article gnus-newsgroup-undownloaded))
5205      ((eq type 'download)
5206       (memq article gnus-newsgroup-downloadable))
5207      ((eq type 'unread)
5208       (memq article gnus-newsgroup-unreads))
5209      ((eq type 'read)
5210       (memq article gnus-newsgroup-reads))
5211      ((eq type 'dormant)
5212       (memq article gnus-newsgroup-dormant) )
5213      ((eq type 'expire)
5214       (memq article gnus-newsgroup-expirable))
5215      ((eq type 'reply)
5216       (memq article gnus-newsgroup-replied))
5217      ((eq type 'killed)
5218       (memq article gnus-newsgroup-killed))
5219      ((eq type 'bookmark)
5220       (assq article gnus-newsgroup-bookmarks))
5221      ((eq type 'score)
5222       (assq article gnus-newsgroup-scored))
5223      ((eq type 'save)
5224       (memq article gnus-newsgroup-saved))
5225      ((eq type 'cache)
5226       (memq article gnus-newsgroup-cached))
5227      ((eq type 'forward)
5228       (memq article gnus-newsgroup-forwarded))
5229      ((eq type 'seen)
5230       (not (memq article gnus-newsgroup-unseen)))
5231      ((eq type 'recent)
5232       (memq article gnus-newsgroup-recent))
5233      (t t))))
5234
5235 (defun gnus-articles-to-read (group &optional read-all)
5236   "Find out what articles the user wants to read."
5237   (let* ((display (gnus-group-find-parameter group 'display))
5238          (articles
5239           ;; Select all articles if `read-all' is non-nil, or if there
5240           ;; are no unread articles.
5241           (if (or read-all
5242                   (and (zerop (length gnus-newsgroup-marked))
5243                        (zerop (length gnus-newsgroup-unreads)))
5244                   ;; Fetch all if the predicate is non-nil.
5245                   gnus-newsgroup-display)
5246               ;; We want to select the headers for all the articles in
5247               ;; the group, so we select either all the active
5248               ;; articles in the group, or (if that's nil), the
5249               ;; articles in the cache.
5250               (or
5251                (gnus-uncompress-range (gnus-active group))
5252                (gnus-cache-articles-in-group group))
5253             ;; Select only the "normal" subset of articles.
5254             (gnus-sorted-nunion
5255              (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5256              gnus-newsgroup-unreads)))
5257          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5258          (scored (length scored-list))
5259          (number (length articles))
5260          (marked (+ (length gnus-newsgroup-marked)
5261                     (length gnus-newsgroup-dormant)))
5262          (select
5263           (cond
5264            ((numberp read-all)
5265             read-all)
5266            ((numberp gnus-newsgroup-display)
5267             gnus-newsgroup-display)
5268            (t
5269             (condition-case ()
5270                 (cond
5271                  ((and (or (<= scored marked) (= scored number))
5272                        (numberp gnus-large-newsgroup)
5273                        (> number gnus-large-newsgroup))
5274                   (let* ((cursor-in-echo-area nil)
5275                          (initial (gnus-parameter-large-newsgroup-initial
5276                                    gnus-newsgroup-name))
5277                          (input
5278                           (read-string
5279                            (format
5280                             "How many articles from %s (%s %d): "
5281                             (gnus-limit-string
5282                              (gnus-group-decoded-name gnus-newsgroup-name)
5283                              35)
5284                             (if initial "max" "default")
5285                             number)
5286                            (if initial
5287                                (cons (number-to-string initial)
5288                                      0)))))
5289                     (if (string-match "^[ \t]*$" input) number input)))
5290                  ((and (> scored marked) (< scored number)
5291                        (> (- scored number) 20))
5292                   (let ((input
5293                          (read-string
5294                           (format "%s %s (%d scored, %d total): "
5295                                   "How many articles from"
5296                                   (gnus-group-decoded-name group)
5297                                   scored number))))
5298                     (if (string-match "^[ \t]*$" input)
5299                         number input)))
5300                  (t number))
5301               (quit
5302                (message "Quit getting the articles to read")
5303                nil))))))
5304     (setq select (if (stringp select) (string-to-number select) select))
5305     (if (or (null select) (zerop select))
5306         select
5307       (if (and (not (zerop scored)) (<= (abs select) scored))
5308           (progn
5309             (setq articles (sort scored-list '<))
5310             (setq number (length articles)))
5311         (setq articles (copy-sequence articles)))
5312
5313       (when (< (abs select) number)
5314         (if (< select 0)
5315             ;; Select the N oldest articles.
5316             (setcdr (nthcdr (1- (abs select)) articles) nil)
5317           ;; Select the N most recent articles.
5318           (setq articles (nthcdr (- number select) articles))))
5319       (setq gnus-newsgroup-unselected
5320             (gnus-sorted-difference gnus-newsgroup-unreads articles))
5321       (when gnus-alter-articles-to-read-function
5322         (setq articles
5323               (sort
5324                (funcall gnus-alter-articles-to-read-function
5325                         gnus-newsgroup-name articles)
5326                '<)))
5327       articles)))
5328
5329 (defun gnus-killed-articles (killed articles)
5330   (let (out)
5331     (while articles
5332       (when (inline (gnus-member-of-range (car articles) killed))
5333         (push (car articles) out))
5334       (setq articles (cdr articles)))
5335     out))
5336
5337 (defun gnus-uncompress-marks (marks)
5338   "Uncompress the mark ranges in MARKS."
5339   (let ((uncompressed '(score bookmark))
5340         out)
5341     (while marks
5342       (if (memq (caar marks) uncompressed)
5343           (push (car marks) out)
5344         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5345       (setq marks (cdr marks)))
5346     out))
5347
5348 (defun gnus-article-mark-to-type (mark)
5349   "Return the type of MARK."
5350   (or (cadr (assq mark gnus-article-special-mark-lists))
5351       'list))
5352
5353 (defun gnus-article-unpropagatable-p (mark)
5354   "Return whether MARK should be propagated to back end."
5355   (memq mark gnus-article-unpropagated-mark-lists))
5356
5357 (defun gnus-adjust-marked-articles (info)
5358   "Set all article lists and remove all marks that are no longer valid."
5359   (let* ((marked-lists (gnus-info-marks info))
5360          (active (gnus-active (gnus-info-group info)))
5361          (min (car active))
5362          (max (cdr active))
5363          (types gnus-article-mark-lists)
5364          marks var articles article mark mark-type
5365          bgn end)
5366
5367     (dolist (marks marked-lists)
5368       (setq mark (car marks)
5369             mark-type (gnus-article-mark-to-type mark)
5370             var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5371
5372       ;; We set the variable according to the type of the marks list,
5373       ;; and then adjust the marks to a subset of the active articles.
5374       (cond
5375        ;; Adjust "simple" lists - compressed yet unsorted
5376        ((eq mark-type 'list)
5377         ;; Simultaneously uncompress and clip to active range
5378         ;; See gnus-uncompress-range for a description of possible marks
5379         (let (l lh)
5380           (if (not (cadr marks))
5381               (set var nil)
5382             (setq articles (if (numberp (cddr marks))
5383                                (list (cdr marks))
5384                              (cdr marks))
5385                   lh (cons nil nil)
5386                   l lh)
5387
5388             (while (setq article (pop articles))
5389               (cond ((consp article)
5390                      (setq bgn (max (car article) min)
5391                            end (min (cdr article) max))
5392                      (while (<= bgn end)
5393                        (setq l (setcdr l (cons bgn nil))
5394                              bgn (1+ bgn))))
5395                     ((and (<= min article)
5396                           (>= max article))
5397                      (setq l (setcdr l (cons article nil))))))
5398             (set var (cdr lh)))))
5399        ;; Adjust assocs.
5400        ((eq mark-type 'tuple)
5401         (set var (setq articles (cdr marks)))
5402         (when (not (listp (cdr (symbol-value var))))
5403           (set var (list (symbol-value var))))
5404         (when (not (listp (cdr articles)))
5405           (setq articles (list articles)))
5406         (while articles
5407           (when (or (not (consp (setq article (pop articles))))
5408                     (< (car article) min)
5409                     (> (car article) max))
5410             (set var (delq article (symbol-value var))))))
5411        ;; Adjust ranges (sloppily).
5412        ((eq mark-type 'range)
5413         (cond
5414          ((eq mark 'seen)
5415           ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5416           ;; It should be (seen (NUM1 . NUM2)).
5417           (when (numberp (cddr marks))
5418             (setcdr marks (list (cdr marks))))
5419           (setq articles (cdr marks))
5420           (while (and articles
5421                       (or (and (consp (car articles))
5422                                (> min (cdar articles)))
5423                           (and (numberp (car articles))
5424                                (> min (car articles)))))
5425             (pop articles))
5426           (set var articles))))))))
5427
5428 (defun gnus-update-missing-marks (missing)
5429   "Go through the list of MISSING articles and remove them from the mark lists."
5430   (when missing
5431     (let (var m)
5432       ;; Go through all types.
5433       (dolist (elem gnus-article-mark-lists)
5434         (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5435           (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5436           (when (symbol-value var)
5437             ;; This list has articles.  So we delete all missing
5438             ;; articles from it.
5439             (setq m missing)
5440             (while m
5441               (set var (delq (pop m) (symbol-value var))))))))))
5442
5443 (defun gnus-update-marks ()
5444   "Enter the various lists of marked articles into the newsgroup info list."
5445   (let ((types gnus-article-mark-lists)
5446         (info (gnus-get-info gnus-newsgroup-name))
5447         type list newmarked symbol delta-marks)
5448     (when info
5449       ;; Add all marks lists to the list of marks lists.
5450       (while (setq type (pop types))
5451         (setq list (symbol-value
5452                     (setq symbol
5453                           (intern (format "gnus-newsgroup-%s" (car type))))))
5454
5455         (when list
5456           ;; Get rid of the entries of the articles that have the
5457           ;; default score.
5458           (when (and (eq (cdr type) 'score)
5459                      gnus-save-score
5460                      list)
5461             (let* ((arts list)
5462                    (prev (cons nil list))
5463                    (all prev))
5464               (while arts
5465                 (if (or (not (consp (car arts)))
5466                         (= (cdar arts) gnus-summary-default-score))
5467                     (setcdr prev (cdr arts))
5468                   (setq prev arts))
5469                 (setq arts (cdr arts)))
5470               (setq list (cdr all)))))
5471
5472         (when (eq (cdr type) 'seen)
5473           (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5474
5475         (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5476           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5477
5478         (when (and (gnus-check-backend-function
5479                     'request-set-mark gnus-newsgroup-name)
5480                    (not (gnus-article-unpropagatable-p (cdr type))))
5481           (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5482                  (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5483                  (add (gnus-remove-from-range
5484                        (gnus-copy-sequence list) old)))
5485             (when add
5486               (push (list add 'add (list (cdr type))) delta-marks))
5487             (when del
5488               (push (list del 'del (list (cdr type))) delta-marks))))
5489
5490         (when list
5491           (push (cons (cdr type) list) newmarked)))
5492
5493       (when delta-marks
5494         (unless (gnus-check-group gnus-newsgroup-name)
5495           (error "Can't open server for %s" gnus-newsgroup-name))
5496         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5497
5498       ;; Enter these new marks into the info of the group.
5499       (if (nthcdr 3 info)
5500           (setcar (nthcdr 3 info) newmarked)
5501         ;; Add the marks lists to the end of the info.
5502         (when newmarked
5503           (setcdr (nthcdr 2 info) (list newmarked))))
5504
5505       ;; Cut off the end of the info if there's nothing else there.
5506       (let ((i 5))
5507         (while (and (> i 2)
5508                     (not (nth i info)))
5509           (when (nthcdr (decf i) info)
5510             (setcdr (nthcdr i info) nil)))))))
5511
5512 (defun gnus-set-mode-line (where)
5513   "Set the mode line of the article or summary buffers.
5514 If WHERE is `summary', the summary mode line format will be used."
5515   ;; Is this mode line one we keep updated?
5516   (when (and (memq where gnus-updated-mode-lines)
5517              (symbol-value
5518               (intern (format "gnus-%s-mode-line-format-spec" where))))
5519     (let (mode-string)
5520       (save-excursion
5521         ;; We evaluate this in the summary buffer since these
5522         ;; variables are buffer-local to that buffer.
5523         (set-buffer gnus-summary-buffer)
5524        ;; We bind all these variables that are used in the `eval' form
5525         ;; below.
5526         (let* ((mformat (symbol-value
5527                          (intern
5528                           (format "gnus-%s-mode-line-format-spec" where))))
5529                (gnus-tmp-group-name (gnus-group-decoded-name
5530                                      gnus-newsgroup-name))
5531                (gnus-tmp-article-number (or gnus-current-article 0))
5532                (gnus-tmp-unread gnus-newsgroup-unreads)
5533                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
5534                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
5535                (gnus-tmp-unread-and-unselected
5536                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
5537                             (zerop gnus-tmp-unselected))
5538                        "")
5539                       ((zerop gnus-tmp-unselected)
5540                        (format "{%d more}" gnus-tmp-unread-and-unticked))
5541                       (t (format "{%d(+%d) more}"
5542                                  gnus-tmp-unread-and-unticked
5543                                  gnus-tmp-unselected))))
5544                (gnus-tmp-subject
5545                 (if (and gnus-current-headers
5546                          (vectorp gnus-current-headers))
5547                     (gnus-mode-string-quote
5548                      (mail-header-subject gnus-current-headers))
5549                   ""))
5550                bufname-length max-len
5551                gnus-tmp-header) ;; passed as argument to any user-format-funcs
5552           (setq mode-string (eval mformat))
5553           (setq bufname-length (if (string-match "%b" mode-string)
5554                                    (- (length
5555                                        (buffer-name
5556                                         (if (eq where 'summary)
5557                                             nil
5558                                           (get-buffer gnus-article-buffer))))
5559                                       2)
5560                                  0))
5561           (setq max-len (max 4 (if gnus-mode-non-string-length
5562                                    (- (window-width)
5563                                       gnus-mode-non-string-length
5564                                       bufname-length)
5565                                  (length mode-string))))
5566           ;; We might have to chop a bit of the string off...
5567           (when (> (length mode-string) max-len)
5568             (setq mode-string
5569                   (concat (truncate-string-to-width mode-string (- max-len 3))
5570                           "...")))
5571           ;; Pad the mode string a bit.
5572           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
5573       ;; Update the mode line.
5574       (setq mode-line-buffer-identification
5575             (gnus-mode-line-buffer-identification (list mode-string)))
5576       (set-buffer-modified-p t))))
5577
5578 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
5579   "Go through the HEADERS list and add all Xrefs to a hash table.
5580 The resulting hash table is returned, or nil if no Xrefs were found."
5581   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
5582          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
5583          (xref-hashtb (gnus-make-hashtable))
5584          start group entry number xrefs header)
5585     (while headers
5586       (setq header (pop headers))
5587       (when (and (setq xrefs (mail-header-xref header))
5588                  (not (memq (setq number (mail-header-number header))
5589                             unreads)))
5590         (setq start 0)
5591         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
5592           (setq start (match-end 0))
5593           (setq group (if prefix
5594                           (concat prefix (substring xrefs (match-beginning 1)
5595                                                     (match-end 1)))
5596                         (substring xrefs (match-beginning 1) (match-end 1))))
5597           (setq number
5598                 (string-to-int (substring xrefs (match-beginning 2)
5599                                           (match-end 2))))
5600           (if (setq entry (gnus-gethash group xref-hashtb))
5601               (setcdr entry (cons number (cdr entry)))
5602             (gnus-sethash group (cons number nil) xref-hashtb)))))
5603     (and start xref-hashtb)))
5604
5605 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
5606   "Look through all the headers and mark the Xrefs as read."
5607   (let ((virtual (gnus-virtual-group-p from-newsgroup))
5608         name info xref-hashtb idlist method nth4)
5609     (save-excursion
5610       (set-buffer gnus-group-buffer)
5611       (when (setq xref-hashtb
5612                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
5613         (mapatoms
5614          (lambda (group)
5615            (unless (string= from-newsgroup (setq name (symbol-name group)))
5616              (setq idlist (symbol-value group))
5617              ;; Dead groups are not updated.
5618              (and (prog1
5619                       (setq info (gnus-get-info name))
5620                     (when (stringp (setq nth4 (gnus-info-method info)))
5621                       (setq nth4 (gnus-server-to-method nth4))))
5622                   ;; Only do the xrefs if the group has the same
5623                   ;; select method as the group we have just read.
5624                   (or (gnus-methods-equal-p
5625                        nth4 (gnus-find-method-for-group from-newsgroup))
5626                       virtual
5627                       (equal nth4 (setq method (gnus-find-method-for-group
5628                                                 from-newsgroup)))
5629                       (and (equal (car nth4) (car method))
5630                            (equal (nth 1 nth4) (nth 1 method))))
5631                   gnus-use-cross-reference
5632                   (or (not (eq gnus-use-cross-reference t))
5633                       virtual
5634                       ;; Only do cross-references on subscribed
5635                       ;; groups, if that is what is wanted.
5636                       (<= (gnus-info-level info) gnus-level-subscribed))
5637                   (gnus-group-make-articles-read name idlist))))
5638          xref-hashtb)))))
5639
5640 (defun gnus-compute-read-articles (group articles)
5641   (let* ((entry (gnus-group-entry group))
5642          (info (nth 2 entry))
5643          (active (gnus-active group))
5644          ninfo)
5645     (when entry
5646       ;; First peel off all invalid article numbers.
5647       (when active
5648         (let ((ids articles)
5649               id first)
5650           (while (setq id (pop ids))
5651             (when (and first (> id (cdr active)))
5652               ;; We'll end up in this situation in one particular
5653               ;; obscure situation.  If you re-scan a group and get
5654               ;; a new article that is cross-posted to a different
5655               ;; group that has not been re-scanned, you might get
5656               ;; crossposted article that has a higher number than
5657               ;; Gnus believes possible.  So we re-activate this
5658               ;; group as well.  This might mean doing the
5659               ;; crossposting thingy will *increase* the number
5660               ;; of articles in some groups.  Tsk, tsk.
5661               (setq active (or (gnus-activate-group group) active)))
5662             (when (or (> id (cdr active))
5663                       (< id (car active)))
5664               (setq articles (delq id articles))))))
5665       ;; If the read list is nil, we init it.
5666       (if (and active
5667                (null (gnus-info-read info))
5668                (> (car active) 1))
5669           (setq ninfo (cons 1 (1- (car active))))
5670         (setq ninfo (gnus-info-read info)))
5671       ;; Then we add the read articles to the range.
5672       (gnus-add-to-range
5673        ninfo (setq articles (sort articles '<))))))
5674
5675 (defun gnus-group-make-articles-read (group articles)
5676   "Update the info of GROUP to say that ARTICLES are read."
5677   (let* ((num 0)
5678          (entry (gnus-group-entry group))
5679          (info (nth 2 entry))
5680          (active (gnus-active group))
5681          range)
5682     (when entry
5683       (setq range (gnus-compute-read-articles group articles))
5684       (with-current-buffer gnus-group-buffer
5685         (gnus-undo-register
5686           `(progn
5687              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
5688              (gnus-info-set-read ',info ',(gnus-info-read info))
5689              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
5690              (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
5691              (gnus-group-update-group ,group t))))
5692       ;; Add the read articles to the range.
5693       (gnus-info-set-read info range)
5694       (gnus-request-set-mark group (list (list range 'add '(read))))
5695       ;; Then we have to re-compute how many unread
5696       ;; articles there are in this group.
5697       (when active
5698         (cond
5699          ((not range)
5700           (setq num (- (1+ (cdr active)) (car active))))
5701          ((not (listp (cdr range)))
5702           (setq num (- (cdr active) (- (1+ (cdr range))
5703                                        (car range)))))
5704          (t
5705           (while range
5706             (if (numberp (car range))
5707                 (setq num (1+ num))
5708               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
5709             (setq range (cdr range)))
5710           (setq num (- (cdr active) num))))
5711         ;; Update the number of unread articles.
5712         (setcar entry num)
5713         ;; Update the group buffer.
5714         (unless (gnus-ephemeral-group-p group)
5715           (gnus-group-update-group group t))))))
5716
5717 (defvar gnus-newsgroup-none-id 0)
5718
5719 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
5720   (let ((cur nntp-server-buffer)
5721         (dependencies
5722          (or dependencies
5723              (save-excursion (set-buffer gnus-summary-buffer)
5724                              gnus-newsgroup-dependencies)))
5725         headers id end ref
5726         (mail-parse-charset gnus-newsgroup-charset)
5727         (mail-parse-ignored-charsets
5728          (save-excursion (condition-case nil
5729                              (set-buffer gnus-summary-buffer)
5730                            (error))
5731                          gnus-newsgroup-ignored-charsets)))
5732     (save-excursion
5733       (set-buffer nntp-server-buffer)
5734       ;; Translate all TAB characters into SPACE characters.
5735       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
5736       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5737       (ietf-drums-unfold-fws)
5738       (gnus-run-hooks 'gnus-parse-headers-hook)
5739       (let ((case-fold-search t)
5740             in-reply-to header p lines chars)
5741         (goto-char (point-min))
5742         ;; Search to the beginning of the next header.  Error messages
5743         ;; do not begin with 2 or 3.
5744         (while (re-search-forward "^[23][0-9]+ " nil t)
5745           (setq id nil
5746                 ref nil)
5747           ;; This implementation of this function, with nine
5748           ;; search-forwards instead of the one re-search-forward and
5749           ;; a case (which basically was the old function) is actually
5750           ;; about twice as fast, even though it looks messier.  You
5751           ;; can't have everything, I guess.  Speed and elegance
5752           ;; doesn't always go hand in hand.
5753           (setq
5754            header
5755            (vector
5756             ;; Number.
5757             (prog1
5758                 (read cur)
5759               (end-of-line)
5760               (setq p (point))
5761               (narrow-to-region (point)
5762                                 (or (and (search-forward "\n.\n" nil t)
5763                                          (- (point) 2))
5764                                     (point))))
5765             ;; Subject.
5766             (progn
5767               (goto-char p)
5768               (if (search-forward "\nsubject:" nil t)
5769                   (funcall gnus-decode-encoded-word-function
5770                            (nnheader-header-value))
5771                 "(none)"))
5772             ;; From.
5773             (progn
5774               (goto-char p)
5775               (if (search-forward "\nfrom:" nil t)
5776                   (funcall gnus-decode-encoded-word-function
5777                            (nnheader-header-value))
5778                 "(nobody)"))
5779             ;; Date.
5780             (progn
5781               (goto-char p)
5782               (if (search-forward "\ndate:" nil t)
5783                   (nnheader-header-value) ""))
5784             ;; Message-ID.
5785             (progn
5786               (goto-char p)
5787               (setq id (if (re-search-forward
5788                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
5789                            ;; We do it this way to make sure the Message-ID
5790                            ;; is (somewhat) syntactically valid.
5791                            (buffer-substring (match-beginning 1)
5792                                              (match-end 1))
5793                          ;; If there was no message-id, we just fake one
5794                          ;; to make subsequent routines simpler.
5795                          (nnheader-generate-fake-message-id))))
5796             ;; References.
5797             (progn
5798               (goto-char p)
5799               (if (search-forward "\nreferences:" nil t)
5800                   (progn
5801                     (setq end (point))
5802                     (prog1
5803                         (nnheader-header-value)
5804                       (setq ref
5805                             (buffer-substring
5806                              (progn
5807                                (end-of-line)
5808                                (search-backward ">" end t)
5809                                (1+ (point)))
5810                              (progn
5811                                (search-backward "<" end t)
5812                                (point))))))
5813                 ;; Get the references from the in-reply-to header if there
5814                 ;; were no references and the in-reply-to header looks
5815                 ;; promising.
5816                 (if (and (search-forward "\nin-reply-to:" nil t)
5817                          (setq in-reply-to (nnheader-header-value))
5818                          (string-match "<[^>]+>" in-reply-to))
5819                     (let (ref2)
5820                       (setq ref (substring in-reply-to (match-beginning 0)
5821                                            (match-end 0)))
5822                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
5823                         (setq ref2 (substring in-reply-to (match-beginning 0)
5824                                               (match-end 0)))
5825                         (when (> (length ref2) (length ref))
5826                           (setq ref ref2)))
5827                       ref)
5828                   (setq ref nil))))
5829             ;; Chars.
5830             (progn
5831               (goto-char p)
5832               (if (search-forward "\nchars: " nil t)
5833                   (if (numberp (setq chars (ignore-errors (read cur))))
5834                       chars -1)
5835                 -1))
5836             ;; Lines.
5837             (progn
5838               (goto-char p)
5839               (if (search-forward "\nlines: " nil t)
5840                   (if (numberp (setq lines (ignore-errors (read cur))))
5841                       lines -1)
5842                 -1))
5843             ;; Xref.
5844             (progn
5845               (goto-char p)
5846               (and (search-forward "\nxref:" nil t)
5847                    (nnheader-header-value)))
5848             ;; Extra.
5849             (when gnus-extra-headers
5850               (let ((extra gnus-extra-headers)
5851                     out)
5852                 (while extra
5853                   (goto-char p)
5854                   (when (search-forward
5855                          (concat "\n" (symbol-name (car extra)) ":") nil t)
5856                     (push (cons (car extra) (nnheader-header-value))
5857                           out))
5858                   (pop extra))
5859                 out))))
5860           (when (equal id ref)
5861             (setq ref nil))
5862
5863           (when gnus-alter-header-function
5864             (funcall gnus-alter-header-function header)
5865             (setq id (mail-header-id header)
5866                   ref (gnus-parent-id (mail-header-references header))))
5867
5868           (when (setq header
5869                       (gnus-dependencies-add-header
5870                        header dependencies force-new))
5871             (push header headers))
5872           (goto-char (point-max))
5873           (widen))
5874         (nreverse headers)))))
5875
5876 ;; Goes through the xover lines and returns a list of vectors
5877 (defun gnus-get-newsgroup-headers-xover (sequence &optional
5878                                                   force-new dependencies
5879                                                   group also-fetch-heads)
5880   "Parse the news overview data in the server buffer.
5881 Return a list of headers that match SEQUENCE (see
5882 `nntp-retrieve-headers')."
5883   ;; Get the Xref when the users reads the articles since most/some
5884   ;; NNTP servers do not include Xrefs when using XOVER.
5885   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
5886   (let ((mail-parse-charset gnus-newsgroup-charset)
5887         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
5888         (cur nntp-server-buffer)
5889         (dependencies (or dependencies gnus-newsgroup-dependencies))
5890         (allp (cond
5891                ((eq gnus-read-all-available-headers t)
5892                 t)
5893                ((stringp gnus-read-all-available-headers)
5894                 (string-match gnus-read-all-available-headers group))
5895                (t
5896                 nil)))
5897         number headers header)
5898     (save-excursion
5899       (set-buffer nntp-server-buffer)
5900       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5901       ;; Allow the user to mangle the headers before parsing them.
5902       (gnus-run-hooks 'gnus-parse-headers-hook)
5903       (goto-char (point-min))
5904       (gnus-parse-without-error
5905         (while (and (or sequence allp)
5906                     (not (eobp)))
5907           (setq number (read cur))
5908           (when (not allp)
5909             (while (and sequence
5910                         (< (car sequence) number))
5911               (setq sequence (cdr sequence))))
5912           (when (and (or allp
5913                          (and sequence
5914                               (eq number (car sequence))))
5915                      (progn
5916                        (setq sequence (cdr sequence))
5917                        (setq header (inline
5918                                       (gnus-nov-parse-line
5919                                        number dependencies force-new)))))
5920             (push header headers))
5921           (forward-line 1)))
5922       ;; A common bug in inn is that if you have posted an article and
5923       ;; then retrieves the active file, it will answer correctly --
5924       ;; the new article is included.  However, a NOV entry for the
5925       ;; article may not have been generated yet, so this may fail.
5926       ;; We work around this problem by retrieving the last few
5927       ;; headers using HEAD.
5928       (if (or (not also-fetch-heads)
5929               (not sequence))
5930           ;; We (probably) got all the headers.
5931           (nreverse headers)
5932         (let ((gnus-nov-is-evil t))
5933           (nconc
5934            (nreverse headers)
5935            (when (eq (gnus-retrieve-headers sequence group) 'headers)
5936              (gnus-get-newsgroup-headers))))))))
5937
5938 (defun gnus-article-get-xrefs ()
5939   "Fill in the Xref value in `gnus-current-headers', if necessary.
5940 This is meant to be called in `gnus-article-internal-prepare-hook'."
5941   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
5942                                  gnus-current-headers)))
5943     (or (not gnus-use-cross-reference)
5944         (not headers)
5945         (and (mail-header-xref headers)
5946              (not (string= (mail-header-xref headers) "")))
5947         (let ((case-fold-search t)
5948               xref)
5949           (save-restriction
5950             (nnheader-narrow-to-headers)
5951             (goto-char (point-min))
5952             (when (or (and (not (eobp))
5953                            (eq (downcase (char-after)) ?x)
5954                            (looking-at "Xref:"))
5955                       (search-forward "\nXref:" nil t))
5956               (goto-char (1+ (match-end 0)))
5957               (setq xref (buffer-substring (point) (point-at-eol)))
5958               (mail-header-set-xref headers xref)))))))
5959
5960 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
5961   "Find article ID and insert the summary line for that article.
5962 OLD-HEADER can either be a header or a line number to insert
5963 the subject line on."
5964   (let* ((line (and (numberp old-header) old-header))
5965          (old-header (and (vectorp old-header) old-header))
5966          (header (cond ((and old-header use-old-header)
5967                         old-header)
5968                        ((and (numberp id)
5969                              (gnus-number-to-header id))
5970                         (gnus-number-to-header id))
5971                        (t
5972                         (gnus-read-header id))))
5973          (number (and (numberp id) id))
5974          d)
5975     (when header
5976       ;; Rebuild the thread that this article is part of and go to the
5977       ;; article we have fetched.
5978       (when (and (not gnus-show-threads)
5979                  old-header)
5980         (when (and number
5981                    (setq d (gnus-data-find (mail-header-number old-header))))
5982           (goto-char (gnus-data-pos d))
5983           (gnus-data-remove
5984            number
5985            (- (point-at-bol)
5986               (prog1
5987                   (1+ (point-at-eol))
5988                 (gnus-delete-line))))))
5989       (when old-header
5990         (mail-header-set-number header (mail-header-number old-header)))
5991       (setq gnus-newsgroup-sparse
5992             (delq (setq number (mail-header-number header))
5993                   gnus-newsgroup-sparse))
5994       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
5995       (push number gnus-newsgroup-limit)
5996       (gnus-rebuild-thread (mail-header-id header) line)
5997       (gnus-summary-goto-subject number nil t))
5998     (when (and (numberp number)
5999                (> number 0))
6000       ;; We have to update the boundaries even if we can't fetch the
6001       ;; article if ID is a number -- so that the next `P' or `N'
6002       ;; command will fetch the previous (or next) article even
6003       ;; if the one we tried to fetch this time has been canceled.
6004       (when (> number gnus-newsgroup-end)
6005         (setq gnus-newsgroup-end number))
6006       (when (< number gnus-newsgroup-begin)
6007         (setq gnus-newsgroup-begin number))
6008       (setq gnus-newsgroup-unselected
6009             (delq number gnus-newsgroup-unselected)))
6010     ;; Report back a success?
6011     (and header (mail-header-number header))))
6012
6013 ;;; Process/prefix in the summary buffer
6014
6015 (defun gnus-summary-work-articles (n)
6016   "Return a list of articles to be worked upon.
6017 The prefix argument, the list of process marked articles, and the
6018 current article will be taken into consideration."
6019   (save-excursion
6020     (set-buffer gnus-summary-buffer)
6021     (cond
6022      (n
6023       ;; A numerical prefix has been given.
6024       (setq n (prefix-numeric-value n))
6025       (let ((backward (< n 0))
6026             (n (abs (prefix-numeric-value n)))
6027             articles article)
6028         (save-excursion
6029           (while
6030               (and (> n 0)
6031                    (push (setq article (gnus-summary-article-number))
6032                          articles)
6033                    (if backward
6034                        (gnus-summary-find-prev nil article)
6035                      (gnus-summary-find-next nil article)))
6036             (decf n)))
6037         (nreverse articles)))
6038      ((and (gnus-region-active-p) (mark))
6039       (message "region active")
6040       ;; Work on the region between point and mark.
6041       (let ((max (max (point) (mark)))
6042             articles article)
6043         (save-excursion
6044           (goto-char (min (min (point) (mark))))
6045           (while
6046               (and
6047                (push (setq article (gnus-summary-article-number)) articles)
6048                (gnus-summary-find-next nil article)
6049                (< (point) max)))
6050           (nreverse articles))))
6051      (gnus-newsgroup-processable
6052       ;; There are process-marked articles present.
6053       ;; Save current state.
6054       (gnus-summary-save-process-mark)
6055       ;; Return the list.
6056       (reverse gnus-newsgroup-processable))
6057      (t
6058       ;; Just return the current article.
6059       (list (gnus-summary-article-number))))))
6060
6061 (defmacro gnus-summary-iterate (arg &rest forms)
6062   "Iterate over the process/prefixed articles and do FORMS.
6063 ARG is the interactive prefix given to the command.  FORMS will be
6064 executed with point over the summary line of the articles."
6065   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6066     `(let ((,articles (gnus-summary-work-articles ,arg)))
6067        (while ,articles
6068          (gnus-summary-goto-subject (car ,articles))
6069          ,@forms
6070          (pop ,articles)))))
6071
6072 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6073 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6074
6075 (defun gnus-summary-save-process-mark ()
6076   "Push the current set of process marked articles on the stack."
6077   (interactive)
6078   (push (copy-sequence gnus-newsgroup-processable)
6079         gnus-newsgroup-process-stack))
6080
6081 (defun gnus-summary-kill-process-mark ()
6082   "Push the current set of process marked articles on the stack and unmark."
6083   (interactive)
6084   (gnus-summary-save-process-mark)
6085   (gnus-summary-unmark-all-processable))
6086
6087 (defun gnus-summary-yank-process-mark ()
6088   "Pop the last process mark state off the stack and restore it."
6089   (interactive)
6090   (unless gnus-newsgroup-process-stack
6091     (error "Empty mark stack"))
6092   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6093
6094 (defun gnus-summary-process-mark-set (set)
6095   "Make SET into the current process marked articles."
6096   (gnus-summary-unmark-all-processable)
6097   (while set
6098     (gnus-summary-set-process-mark (pop set))))
6099
6100 ;;; Searching and stuff
6101
6102 (defun gnus-summary-search-group (&optional backward use-level)
6103   "Search for next unread newsgroup.
6104 If optional argument BACKWARD is non-nil, search backward instead."
6105   (save-excursion
6106     (set-buffer gnus-group-buffer)
6107     (when (gnus-group-search-forward
6108            backward nil (if use-level (gnus-group-group-level) nil))
6109       (gnus-group-group-name))))
6110
6111 (defun gnus-summary-best-group (&optional exclude-group)
6112   "Find the name of the best unread group.
6113 If EXCLUDE-GROUP, do not go to this group."
6114   (save-excursion
6115     (set-buffer gnus-group-buffer)
6116     (save-excursion
6117       (gnus-group-best-unread-group exclude-group))))
6118
6119 (defun gnus-summary-find-next (&optional unread article backward)
6120   (if backward
6121       (gnus-summary-find-prev unread article)
6122     (let* ((dummy (gnus-summary-article-intangible-p))
6123            (article (or article (gnus-summary-article-number)))
6124            (data (gnus-data-find-list article))
6125            result)
6126       (when (and (not dummy)
6127                  (or (not gnus-summary-check-current)
6128                      (not unread)
6129                      (not (gnus-data-unread-p (car data)))))
6130         (setq data (cdr data)))
6131       (when (setq result
6132                   (if unread
6133                       (progn
6134                         (while data
6135                           (unless (memq (gnus-data-number (car data))
6136                                         (cond
6137                                          ((eq gnus-auto-goto-ignores
6138                                               'always-undownloaded)
6139                                           gnus-newsgroup-undownloaded)
6140                                          (gnus-plugged
6141                                           nil)
6142                                          ((eq gnus-auto-goto-ignores
6143                                               'unfetched)
6144                                           gnus-newsgroup-unfetched)
6145                                          ((eq gnus-auto-goto-ignores
6146                                               'undownloaded)
6147                                           gnus-newsgroup-undownloaded)))
6148                             (when (gnus-data-unread-p (car data))
6149                               (setq result (car data)
6150                                     data nil)))
6151                           (setq data (cdr data)))
6152                         result)
6153                     (car data)))
6154         (goto-char (gnus-data-pos result))
6155         (gnus-data-number result)))))
6156
6157 (defun gnus-summary-find-prev (&optional unread article)
6158   (let* ((eobp (eobp))
6159          (article (or article (gnus-summary-article-number)))
6160          (data (gnus-data-find-list article (gnus-data-list 'rev)))
6161          result)
6162     (when (and (not eobp)
6163                (or (not gnus-summary-check-current)
6164                    (not unread)
6165                    (not (gnus-data-unread-p (car data)))))
6166       (setq data (cdr data)))
6167     (when (setq result
6168                 (if unread
6169                     (progn
6170                       (while data
6171                         (unless (memq (gnus-data-number (car data))
6172                                       (cond
6173                                        ((eq gnus-auto-goto-ignores
6174                                             'always-undownloaded)
6175                                         gnus-newsgroup-undownloaded)
6176                                        (gnus-plugged
6177                                         nil)
6178                                        ((eq gnus-auto-goto-ignores
6179                                             'unfetched)
6180                                         gnus-newsgroup-unfetched)
6181                                        ((eq gnus-auto-goto-ignores
6182                                             'undownloaded)
6183                                         gnus-newsgroup-undownloaded)))
6184                           (when (gnus-data-unread-p (car data))
6185                             (setq result (car data)
6186                                   data nil)))
6187                         (setq data (cdr data)))
6188                       result)
6189                   (car data)))
6190       (goto-char (gnus-data-pos result))
6191       (gnus-data-number result))))
6192
6193 (defun gnus-summary-find-subject (subject &optional unread backward article)
6194   (let* ((simp-subject (gnus-simplify-subject-fully subject))
6195          (article (or article (gnus-summary-article-number)))
6196          (articles (gnus-data-list backward))
6197          (arts (gnus-data-find-list article articles))
6198          result)
6199     (when (or (not gnus-summary-check-current)
6200               (not unread)
6201               (not (gnus-data-unread-p (car arts))))
6202       (setq arts (cdr arts)))
6203     (while arts
6204       (and (or (not unread)
6205                (gnus-data-unread-p (car arts)))
6206            (vectorp (gnus-data-header (car arts)))
6207            (gnus-subject-equal
6208             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6209            (setq result (car arts)
6210                  arts nil))
6211       (setq arts (cdr arts)))
6212     (and result
6213          (goto-char (gnus-data-pos result))
6214          (gnus-data-number result))))
6215
6216 (defun gnus-summary-search-forward (&optional unread subject backward)
6217   "Search forward for an article.
6218 If UNREAD, look for unread articles.  If SUBJECT, look for
6219 articles with that subject.  If BACKWARD, search backward instead."
6220   (cond (subject (gnus-summary-find-subject subject unread backward))
6221         (backward (gnus-summary-find-prev unread))
6222         (t (gnus-summary-find-next unread))))
6223
6224 (defun gnus-recenter (&optional n)
6225   "Center point in window and redisplay frame.
6226 Also do horizontal recentering."
6227   (interactive "P")
6228   (when (and gnus-auto-center-summary
6229              (not (eq gnus-auto-center-summary 'vertical)))
6230     (gnus-horizontal-recenter))
6231   (recenter n))
6232
6233 (defun gnus-summary-recenter ()
6234   "Center point in the summary window.
6235 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6236 displayed, no centering will be performed."
6237   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6238   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
6239   (interactive)
6240   ;; The user has to want it.
6241   (when gnus-auto-center-summary
6242     (let* ((top (cond ((< (window-height) 4) 0)
6243                       ((< (window-height) 7) 1)
6244                       (t (if (numberp gnus-auto-center-summary)
6245                              gnus-auto-center-summary
6246                            2))))
6247            (height (1- (window-height)))
6248            (bottom (save-excursion (goto-char (point-max))
6249                                    (forward-line (- height))
6250                                    (point)))
6251            (window (get-buffer-window (current-buffer))))
6252       (when (get-buffer-window gnus-article-buffer)
6253         ;; Only do recentering when the article buffer is displayed,
6254         ;; Set the window start to either `bottom', which is the biggest
6255         ;; possible valid number, or the second line from the top,
6256         ;; whichever is the least.
6257         (let ((top-pos (save-excursion (forward-line (- top)) (point))))
6258           (if (> bottom top-pos)
6259               ;; Keep the second line from the top visible
6260               (set-window-start window top-pos t)
6261             ;; Try to keep the bottom line visible; if it's partially
6262             ;; obscured, either scroll one more line to make it fully
6263             ;; visible, or revert to using TOP-POS.
6264             (save-excursion
6265               (goto-char (point-max))
6266               (forward-line -1)
6267               (let ((last-line-start (point)))
6268                 (goto-char bottom)
6269                 (set-window-start window (point) t)
6270                 (when (not (pos-visible-in-window-p last-line-start window))
6271                   (forward-line 1)
6272                   (set-window-start window (min (point) top-pos) t)))))))
6273       ;; Do horizontal recentering while we're at it.
6274       (when (and (get-buffer-window (current-buffer) t)
6275                  (not (eq gnus-auto-center-summary 'vertical)))
6276         (let ((selected (selected-window)))
6277           (select-window (get-buffer-window (current-buffer) t))
6278           (gnus-summary-position-point)
6279           (gnus-horizontal-recenter)
6280           (select-window selected))))))
6281
6282 (defun gnus-summary-jump-to-group (newsgroup)
6283   "Move point to NEWSGROUP in group mode buffer."
6284   ;; Keep update point of group mode buffer if visible.
6285   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6286       (save-window-excursion
6287         ;; Take care of tree window mode.
6288         (when (get-buffer-window gnus-group-buffer)
6289           (pop-to-buffer gnus-group-buffer))
6290         (gnus-group-jump-to-group newsgroup))
6291     (save-excursion
6292       ;; Take care of tree window mode.
6293       (if (get-buffer-window gnus-group-buffer)
6294           (pop-to-buffer gnus-group-buffer)
6295         (set-buffer gnus-group-buffer))
6296       (gnus-group-jump-to-group newsgroup))))
6297
6298 ;; This function returns a list of article numbers based on the
6299 ;; difference between the ranges of read articles in this group and
6300 ;; the range of active articles.
6301 (defun gnus-list-of-unread-articles (group)
6302   (let* ((read (gnus-info-read (gnus-get-info group)))
6303          (active (or (gnus-active group) (gnus-activate-group group)))
6304          (last (cdr active))
6305          first nlast unread)
6306     ;; If none are read, then all are unread.
6307     (if (not read)
6308         (setq first (car active))
6309       ;; If the range of read articles is a single range, then the
6310       ;; first unread article is the article after the last read
6311       ;; article.  Sounds logical, doesn't it?
6312       (if (and (not (listp (cdr read)))
6313                (or (< (car read) (car active))
6314                    (progn (setq read (list read))
6315                           nil)))
6316           (setq first (max (car active) (1+ (cdr read))))
6317         ;; `read' is a list of ranges.
6318         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6319                                   (caar read)))
6320                   1)
6321           (setq first (car active)))
6322         (while read
6323           (when first
6324             (while (< first nlast)
6325               (setq unread (cons first unread)
6326                     first (1+ first))))
6327           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6328           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6329           (setq read (cdr read)))))
6330     ;; And add the last unread articles.
6331     (while (<= first last)
6332       (setq unread (cons first unread)
6333             first (1+ first)))
6334     ;; Return the list of unread articles.
6335     (delq 0 (nreverse unread))))
6336
6337 (defun gnus-list-of-read-articles (group)
6338   "Return a list of unread, unticked and non-dormant articles."
6339   (let* ((info (gnus-get-info group))
6340          (marked (gnus-info-marks info))
6341          (active (gnus-active group)))
6342     (and info active
6343          (gnus-list-range-difference
6344           (gnus-list-range-difference
6345            (gnus-sorted-complement
6346             (gnus-uncompress-range active)
6347             (gnus-list-of-unread-articles group))
6348            (cdr (assq 'dormant marked)))
6349           (cdr (assq 'tick marked))))))
6350
6351 ;; This function returns a sequence of article numbers based on the
6352 ;; difference between the ranges of read articles in this group and
6353 ;; the range of active articles.
6354 (defun gnus-sequence-of-unread-articles (group)
6355   (let* ((read (gnus-info-read (gnus-get-info group)))
6356          (active (or (gnus-active group) (gnus-activate-group group)))
6357          (last (cdr active))
6358          first nlast unread)
6359     ;; If none are read, then all are unread.
6360     (if (not read)
6361         (setq first (car active))
6362       ;; If the range of read articles is a single range, then the
6363       ;; first unread article is the article after the last read
6364       ;; article.  Sounds logical, doesn't it?
6365       (if (and (not (listp (cdr read)))
6366                (or (< (car read) (car active))
6367                    (progn (setq read (list read))
6368                           nil)))
6369           (setq first (max (car active) (1+ (cdr read))))
6370         ;; `read' is a list of ranges.
6371         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6372                                   (caar read)))
6373                   1)
6374           (setq first (car active)))
6375         (while read
6376           (when first
6377             (push (cons first nlast) unread))
6378           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6379           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6380           (setq read (cdr read)))))
6381     ;; And add the last unread articles.
6382     (cond ((< first last)
6383            (push (cons first last) unread))
6384           ((= first last)
6385            (push first unread)))
6386     ;; Return the sequence of unread articles.
6387     (delq 0 (nreverse unread))))
6388
6389 ;; Various summary commands
6390
6391 (defun gnus-summary-select-article-buffer ()
6392   "Reconfigure windows to show article buffer."
6393   (interactive)
6394   (if (not (gnus-buffer-live-p gnus-article-buffer))
6395       (error "There is no article buffer for this summary buffer")
6396     (gnus-configure-windows 'article)
6397     (select-window (get-buffer-window gnus-article-buffer))))
6398
6399 (defun gnus-summary-universal-argument (arg)
6400   "Perform any operation on all articles that are process/prefixed."
6401   (interactive "P")
6402   (let ((articles (gnus-summary-work-articles arg))
6403         func article)
6404     (if (eq
6405          (setq
6406           func
6407           (key-binding
6408            (read-key-sequence
6409             (substitute-command-keys
6410              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6411          'undefined)
6412         (gnus-error 1 "Undefined key")
6413       (save-excursion
6414         (while articles
6415           (gnus-summary-goto-subject (setq article (pop articles)))
6416           (let (gnus-newsgroup-processable)
6417             (command-execute func))
6418           (gnus-summary-remove-process-mark article)))))
6419   (gnus-summary-position-point))
6420
6421 (defun gnus-summary-toggle-truncation (&optional arg)
6422   "Toggle truncation of summary lines.
6423 With ARG, turn line truncation on if ARG is positive."
6424   (interactive "P")
6425   (setq truncate-lines
6426         (if (null arg) (not truncate-lines)
6427           (> (prefix-numeric-value arg) 0)))
6428   (redraw-display))
6429
6430 (defun gnus-summary-find-for-reselect ()
6431   "Return the number of an article to stay on across a reselect.
6432 The current article is considered, then following articles, then previous
6433 articles.  An article is sought which is not cancelled and isn't a temporary
6434 insertion from another group.  If there's no such then return a dummy 0."
6435   (let (found)
6436     (dolist (rev '(nil t))
6437       (unless found      ; don't demand the reverse list if we don't need it
6438         (let ((data (gnus-data-find-list
6439                      (gnus-summary-article-number) (gnus-data-list rev))))
6440           (while (and data (not found))
6441             (if (and (< 0 (gnus-data-number (car data)))
6442                      (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6443                 (setq found (gnus-data-number (car data))))
6444             (setq data (cdr data))))))
6445     (or found 0)))
6446
6447 (defun gnus-summary-reselect-current-group (&optional all rescan)
6448   "Exit and then reselect the current newsgroup.
6449 The prefix argument ALL means to select all articles."
6450   (interactive "P")
6451   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6452     (error "Ephemeral groups can't be reselected"))
6453   (let ((current-subject (gnus-summary-find-for-reselect))
6454         (group gnus-newsgroup-name))
6455     (setq gnus-newsgroup-begin nil)
6456     (gnus-summary-exit nil 'leave-hidden)
6457     ;; We have to adjust the point of group mode buffer because
6458     ;; point was moved to the next unread newsgroup by exiting.
6459     (gnus-summary-jump-to-group group)
6460     (when rescan
6461       (save-excursion
6462         (gnus-group-get-new-news-this-group 1)))
6463     (gnus-group-read-group all t)
6464     (gnus-summary-goto-subject current-subject nil t)))
6465
6466 (defun gnus-summary-rescan-group (&optional all)
6467   "Exit the newsgroup, ask for new articles, and select the newsgroup."
6468   (interactive "P")
6469   (gnus-summary-reselect-current-group all t))
6470
6471 (defun gnus-summary-update-info (&optional non-destructive)
6472   (save-excursion
6473     (let ((group gnus-newsgroup-name))
6474       (when group
6475         (when gnus-newsgroup-kill-headers
6476           (setq gnus-newsgroup-killed
6477                 (gnus-compress-sequence
6478                  (gnus-sorted-union
6479                   (gnus-list-range-intersection
6480                    gnus-newsgroup-unselected gnus-newsgroup-killed)
6481                   gnus-newsgroup-unreads)
6482                  t)))
6483         (unless (listp (cdr gnus-newsgroup-killed))
6484           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
6485         (let ((headers gnus-newsgroup-headers))
6486           ;; Set the new ranges of read articles.
6487           (save-excursion
6488             (set-buffer gnus-group-buffer)
6489             (gnus-undo-force-boundary))
6490           (gnus-update-read-articles
6491            group (gnus-sorted-union
6492                   gnus-newsgroup-unreads gnus-newsgroup-unselected))
6493           ;; Set the current article marks.
6494           (let ((gnus-newsgroup-scored
6495                  (if (and (not gnus-save-score)
6496                           (not non-destructive))
6497                      nil
6498                    gnus-newsgroup-scored)))
6499             (save-excursion
6500               (gnus-update-marks)))
6501           ;; Do the cross-ref thing.
6502           (when gnus-use-cross-reference
6503             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
6504           ;; Do not switch windows but change the buffer to work.
6505           (set-buffer gnus-group-buffer)
6506           (unless (gnus-ephemeral-group-p group)
6507             (gnus-group-update-group group)))))))
6508
6509 (defun gnus-summary-save-newsrc (&optional force)
6510   "Save the current number of read/marked articles in the dribble buffer.
6511 The dribble buffer will then be saved.
6512 If FORCE (the prefix), also save the .newsrc file(s)."
6513   (interactive "P")
6514   (gnus-summary-update-info t)
6515   (if force
6516       (gnus-save-newsrc-file)
6517     (gnus-dribble-save)))
6518
6519 (defun gnus-summary-exit (&optional temporary leave-hidden)
6520   "Exit reading current newsgroup, and then return to group selection mode.
6521 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
6522   (interactive)
6523   (gnus-set-global-variables)
6524   (when (gnus-buffer-live-p gnus-article-buffer)
6525     (save-excursion
6526       (set-buffer gnus-article-buffer)
6527       (mm-destroy-parts gnus-article-mime-handles)
6528       ;; Set it to nil for safety reason.
6529       (setq gnus-article-mime-handle-alist nil)
6530       (setq gnus-article-mime-handles nil)))
6531   (gnus-kill-save-kill-buffer)
6532   (gnus-async-halt-prefetch)
6533   (let* ((group gnus-newsgroup-name)
6534          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
6535          (gnus-group-is-exiting-p t)
6536          (mode major-mode)
6537          (group-point nil)
6538          (buf (current-buffer)))
6539     (unless quit-config
6540       ;; Do adaptive scoring, and possibly save score files.
6541       (when gnus-newsgroup-adaptive
6542         (gnus-score-adaptive))
6543       (when gnus-use-scoring
6544         (gnus-score-save)))
6545     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
6546     ;; If we have several article buffers, we kill them at exit.
6547     (unless gnus-single-article-buffer
6548       (gnus-kill-buffer gnus-original-article-buffer)
6549       (setq gnus-article-current nil))
6550     (when gnus-use-cache
6551       (gnus-cache-possibly-remove-articles)
6552       (gnus-cache-save-buffers))
6553     (gnus-async-prefetch-remove-group group)
6554     (when gnus-suppress-duplicates
6555       (gnus-dup-enter-articles))
6556     (when gnus-use-trees
6557       (gnus-tree-close group))
6558     (when gnus-use-cache
6559       (gnus-cache-write-active))
6560     ;; Remove entries for this group.
6561     (nnmail-purge-split-history (gnus-group-real-name group))
6562     ;; Make all changes in this group permanent.
6563     (unless quit-config
6564       (gnus-run-hooks 'gnus-exit-group-hook)
6565       (gnus-summary-update-info))
6566     (gnus-close-group group)
6567     ;; Make sure where we were, and go to next newsgroup.
6568     (set-buffer gnus-group-buffer)
6569     (unless quit-config
6570       (gnus-group-jump-to-group group))
6571     (gnus-run-hooks 'gnus-summary-exit-hook)
6572     (unless (or quit-config
6573                 ;; If this group has disappeared from the summary
6574                 ;; buffer, don't skip forwards.
6575                 (not (string= group (gnus-group-group-name))))
6576       (gnus-group-next-unread-group 1))
6577     (setq group-point (point))
6578     (if temporary
6579         nil                             ;Nothing to do.
6580       ;; If we have several article buffers, we kill them at exit.
6581       (unless gnus-single-article-buffer
6582         (gnus-kill-buffer gnus-article-buffer)
6583         (gnus-kill-buffer gnus-original-article-buffer)
6584         (setq gnus-article-current nil))
6585       (set-buffer buf)
6586       (if (not gnus-kill-summary-on-exit)
6587           (progn
6588             (gnus-deaden-summary)
6589             (setq mode nil))
6590         ;; We set all buffer-local variables to nil.  It is unclear why
6591         ;; this is needed, but if we don't, buffer-local variables are
6592         ;; not garbage-collected, it seems.  This would the lead to en
6593         ;; ever-growing Emacs.
6594         (gnus-summary-clear-local-variables)
6595         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6596           (gnus-summary-clear-local-variables))
6597         (when (get-buffer gnus-article-buffer)
6598           (bury-buffer gnus-article-buffer))
6599         ;; We clear the global counterparts of the buffer-local
6600         ;; variables as well, just to be on the safe side.
6601         (set-buffer gnus-group-buffer)
6602         (gnus-summary-clear-local-variables)
6603         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6604           (gnus-summary-clear-local-variables))
6605         ;; Return to group mode buffer.
6606         (when (eq mode 'gnus-summary-mode)
6607           (gnus-kill-buffer buf)))
6608       (setq gnus-current-select-method gnus-select-method)
6609       (if leave-hidden
6610           (set-buffer gnus-group-buffer)
6611         (pop-to-buffer gnus-group-buffer))
6612       (if (not quit-config)
6613           (progn
6614             (goto-char group-point)
6615             (unless leave-hidden
6616               (gnus-configure-windows 'group 'force)))
6617         (gnus-handle-ephemeral-exit quit-config))
6618       ;; Clear the current group name.
6619       (unless quit-config
6620         (setq gnus-newsgroup-name nil)))))
6621
6622 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
6623 (defun gnus-summary-exit-no-update (&optional no-questions)
6624   "Quit reading current newsgroup without updating read article info."
6625   (interactive)
6626   (let* ((group gnus-newsgroup-name)
6627          (gnus-group-is-exiting-p t)
6628          (gnus-group-is-exiting-without-update-p t)
6629          (quit-config (gnus-group-quit-config group)))
6630     (when (or no-questions
6631               gnus-expert-user
6632               (gnus-y-or-n-p "Discard changes to this group and exit? "))
6633       (gnus-async-halt-prefetch)
6634       (run-hooks 'gnus-summary-prepare-exit-hook)
6635       (when (gnus-buffer-live-p gnus-article-buffer)
6636         (save-excursion
6637           (set-buffer gnus-article-buffer)
6638           (mm-destroy-parts gnus-article-mime-handles)
6639           ;; Set it to nil for safety reason.
6640           (setq gnus-article-mime-handle-alist nil)
6641           (setq gnus-article-mime-handles nil)))
6642       ;; If we have several article buffers, we kill them at exit.
6643       (unless gnus-single-article-buffer
6644         (gnus-kill-buffer gnus-article-buffer)
6645         (gnus-kill-buffer gnus-original-article-buffer)
6646         (setq gnus-article-current nil))
6647       (if (not gnus-kill-summary-on-exit)
6648           (gnus-deaden-summary)
6649         (gnus-close-group group)
6650         (gnus-summary-clear-local-variables)
6651         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6652           (gnus-summary-clear-local-variables))
6653         (set-buffer gnus-group-buffer)
6654         (gnus-summary-clear-local-variables)
6655         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6656           (gnus-summary-clear-local-variables))
6657         (gnus-kill-buffer gnus-summary-buffer))
6658       (unless gnus-single-article-buffer
6659         (setq gnus-article-current nil))
6660       (when gnus-use-trees
6661         (gnus-tree-close group))
6662       (gnus-async-prefetch-remove-group group)
6663       (when (get-buffer gnus-article-buffer)
6664         (bury-buffer gnus-article-buffer))
6665       ;; Return to the group buffer.
6666       (gnus-configure-windows 'group 'force)
6667       ;; Clear the current group name.
6668       (setq gnus-newsgroup-name nil)
6669       (unless (gnus-ephemeral-group-p group)
6670         (gnus-group-update-group group))
6671       (when (equal (gnus-group-group-name) group)
6672         (gnus-group-next-unread-group 1))
6673       (when quit-config
6674         (gnus-handle-ephemeral-exit quit-config)))))
6675
6676 (defun gnus-handle-ephemeral-exit (quit-config)
6677   "Handle movement when leaving an ephemeral group.
6678 The state which existed when entering the ephemeral is reset."
6679   (if (not (buffer-name (car quit-config)))
6680       (gnus-configure-windows 'group 'force)
6681     (set-buffer (car quit-config))
6682     (cond ((eq major-mode 'gnus-summary-mode)
6683            (gnus-set-global-variables))
6684           ((eq major-mode 'gnus-article-mode)
6685            (save-excursion
6686              ;; The `gnus-summary-buffer' variable may point
6687              ;; to the old summary buffer when using a single
6688              ;; article buffer.
6689              (unless (gnus-buffer-live-p gnus-summary-buffer)
6690                (set-buffer gnus-group-buffer))
6691              (set-buffer gnus-summary-buffer)
6692              (gnus-set-global-variables))))
6693     (if (or (eq (cdr quit-config) 'article)
6694             (eq (cdr quit-config) 'pick))
6695         (progn
6696           ;; The current article may be from the ephemeral group
6697           ;; thus it is best that we reload this article
6698           ;;
6699           ;; If we're exiting from a large digest, this can be
6700           ;; extremely slow.  So, it's better not to reload it. -- jh.
6701           ;;(gnus-summary-show-article)
6702           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
6703               (gnus-configure-windows 'pick 'force)
6704             (gnus-configure-windows (cdr quit-config) 'force)))
6705       (gnus-configure-windows (cdr quit-config) 'force))
6706     (when (eq major-mode 'gnus-summary-mode)
6707       (gnus-summary-next-subject 1 nil t)
6708       (gnus-summary-recenter)
6709       (gnus-summary-position-point))))
6710
6711 ;;; Dead summaries.
6712
6713 (defvar gnus-dead-summary-mode-map nil)
6714
6715 (unless gnus-dead-summary-mode-map
6716   (setq gnus-dead-summary-mode-map (make-keymap))
6717   (suppress-keymap gnus-dead-summary-mode-map)
6718   (substitute-key-definition
6719    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
6720   (dolist (key '("\C-d" "\r" "\177" [delete]))
6721     (define-key gnus-dead-summary-mode-map
6722       key 'gnus-summary-wake-up-the-dead))
6723   (dolist (key '("q" "Q"))
6724     (define-key gnus-dead-summary-mode-map key 'bury-buffer)))
6725
6726 (defvar gnus-dead-summary-mode nil
6727   "Minor mode for Gnus summary buffers.")
6728
6729 (defun gnus-dead-summary-mode (&optional arg)
6730   "Minor mode for Gnus summary buffers."
6731   (interactive "P")
6732   (when (eq major-mode 'gnus-summary-mode)
6733     (make-local-variable 'gnus-dead-summary-mode)
6734     (setq gnus-dead-summary-mode
6735           (if (null arg) (not gnus-dead-summary-mode)
6736             (> (prefix-numeric-value arg) 0)))
6737     (when gnus-dead-summary-mode
6738       (add-minor-mode
6739        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
6740
6741 (defun gnus-deaden-summary ()
6742   "Make the current summary buffer into a dead summary buffer."
6743   ;; Kill any previous dead summary buffer.
6744   (when (and gnus-dead-summary
6745              (buffer-name gnus-dead-summary))
6746     (save-excursion
6747       (set-buffer gnus-dead-summary)
6748       (when gnus-dead-summary-mode
6749         (kill-buffer (current-buffer)))))
6750   ;; Make this the current dead summary.
6751   (setq gnus-dead-summary (current-buffer))
6752   (gnus-dead-summary-mode 1)
6753   (let ((name (buffer-name)))
6754     (when (string-match "Summary" name)
6755       (rename-buffer
6756        (concat (substring name 0 (match-beginning 0)) "Dead "
6757                (substring name (match-beginning 0)))
6758        t)
6759       (bury-buffer))))
6760
6761 (defun gnus-kill-or-deaden-summary (buffer)
6762   "Kill or deaden the summary BUFFER."
6763   (save-excursion
6764     (when (and (buffer-name buffer)
6765                (not gnus-single-article-buffer))
6766       (save-excursion
6767         (set-buffer buffer)
6768         (gnus-kill-buffer gnus-article-buffer)
6769         (gnus-kill-buffer gnus-original-article-buffer)))
6770     (cond
6771      ;; Kill the buffer.
6772      (gnus-kill-summary-on-exit
6773       (when (and gnus-use-trees
6774                  (gnus-buffer-exists-p buffer))
6775         (save-excursion
6776           (set-buffer buffer)
6777           (gnus-tree-close gnus-newsgroup-name)))
6778       (gnus-kill-buffer buffer))
6779      ;; Deaden the buffer.
6780      ((gnus-buffer-exists-p buffer)
6781       (save-excursion
6782         (set-buffer buffer)
6783         (gnus-deaden-summary))))))
6784
6785 (defun gnus-summary-wake-up-the-dead (&rest args)
6786   "Wake up the dead summary buffer."
6787   (interactive)
6788   (gnus-dead-summary-mode -1)
6789   (let ((name (buffer-name)))
6790     (when (string-match "Dead " name)
6791       (rename-buffer
6792        (concat (substring name 0 (match-beginning 0))
6793                (substring name (match-end 0)))
6794        t)))
6795   (gnus-message 3 "This dead summary is now alive again"))
6796
6797 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
6798 (defun gnus-summary-fetch-faq (&optional faq-dir)
6799   "Fetch the FAQ for the current group.
6800 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
6801 in."
6802   (interactive
6803    (list
6804     (when current-prefix-arg
6805       (completing-read
6806        "FAQ dir: " (and (listp gnus-group-faq-directory)
6807                         (mapcar (lambda (file) (list file))
6808                                 gnus-group-faq-directory))))))
6809   (let (gnus-faq-buffer)
6810     (when (setq gnus-faq-buffer
6811                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
6812       (gnus-configure-windows 'summary-faq))))
6813
6814 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
6815 (defun gnus-summary-describe-group (&optional force)
6816   "Describe the current newsgroup."
6817   (interactive "P")
6818   (gnus-group-describe-group force gnus-newsgroup-name))
6819
6820 (defun gnus-summary-describe-briefly ()
6821   "Describe summary mode commands briefly."
6822   (interactive)
6823   (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")))
6824
6825 ;; Walking around group mode buffer from summary mode.
6826
6827 (defun gnus-summary-next-group (&optional no-article target-group backward)
6828   "Exit current newsgroup and then select next unread newsgroup.
6829 If prefix argument NO-ARTICLE is non-nil, no article is selected
6830 initially.  If TARGET-GROUP, go to this group.  If BACKWARD, go to
6831 previous group instead."
6832   (interactive "P")
6833   ;; Stop pre-fetching.
6834   (gnus-async-halt-prefetch)
6835   (let ((current-group gnus-newsgroup-name)
6836         (current-buffer (current-buffer))
6837         entered)
6838     ;; First we semi-exit this group to update Xrefs and all variables.
6839     ;; We can't do a real exit, because the window conf must remain
6840     ;; the same in case the user is prompted for info, and we don't
6841     ;; want the window conf to change before that...
6842     (gnus-summary-exit t)
6843     (while (not entered)
6844       ;; Then we find what group we are supposed to enter.
6845       (set-buffer gnus-group-buffer)
6846       (gnus-group-jump-to-group current-group)
6847       (setq target-group
6848             (or target-group
6849                 (if (eq gnus-keep-same-level 'best)
6850                     (gnus-summary-best-group gnus-newsgroup-name)
6851                   (gnus-summary-search-group backward gnus-keep-same-level))))
6852       (if (not target-group)
6853           ;; There are no further groups, so we return to the group
6854           ;; buffer.
6855           (progn
6856             (gnus-message 5 "Returning to the group buffer")
6857             (setq entered t)
6858             (when (gnus-buffer-live-p current-buffer)
6859               (set-buffer current-buffer)
6860               (gnus-summary-exit))
6861             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
6862         ;; We try to enter the target group.
6863         (gnus-group-jump-to-group target-group)
6864         (let ((unreads (gnus-group-group-unread)))
6865           (if (and (or (eq t unreads)
6866                        (and unreads (not (zerop unreads))))
6867                    (gnus-summary-read-group
6868                     target-group nil no-article
6869                     (and (buffer-name current-buffer) current-buffer)
6870                     nil backward))
6871               (setq entered t)
6872             (setq current-group target-group
6873                   target-group nil)))))))
6874
6875 (defun gnus-summary-prev-group (&optional no-article)
6876   "Exit current newsgroup and then select previous unread newsgroup.
6877 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
6878   (interactive "P")
6879   (gnus-summary-next-group no-article nil t))
6880
6881 ;; Walking around summary lines.
6882
6883 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
6884   "Go to the first subject satisfying any non-nil constraint.
6885 If UNREAD is non-nil, the article should be unread.
6886 If UNDOWNLOADED is non-nil, the article should be undownloaded.
6887 If UNSEEN is non-nil, the article should be unseen.
6888 Returns the article selected or nil if there are no matching articles."
6889   (interactive "P")
6890   (cond
6891    ;; Empty summary.
6892    ((null gnus-newsgroup-data)
6893     (gnus-message 3 "No articles in the group")
6894     nil)
6895    ;; Pick the first article.
6896    ((not (or unread undownloaded unseen))
6897     (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
6898     (gnus-data-number (car gnus-newsgroup-data)))
6899    ;; Find the first unread article.
6900    (t
6901     (let ((data gnus-newsgroup-data))
6902       (while (and data
6903                   (let ((num (gnus-data-number (car data))))
6904                     (or (memq num gnus-newsgroup-unfetched)
6905                         (not (or (and unread
6906                                       (memq num gnus-newsgroup-unreads))
6907                                  (and undownloaded
6908                                       (memq num gnus-newsgroup-undownloaded))
6909                                  (and unseen
6910                                       (memq num gnus-newsgroup-unseen)))))))
6911         (setq data (cdr data)))
6912       (prog1
6913           (if data
6914               (progn
6915                 (goto-char (gnus-data-pos (car data)))
6916                 (gnus-data-number (car data)))
6917             (gnus-message 3 "No more%s articles"
6918                           (let* ((r (when unread " unread"))
6919                                  (d (when undownloaded " undownloaded"))
6920                                  (s (when unseen " unseen"))
6921                                  (l (delq nil (list r d s))))
6922                             (cond ((= 3 (length l))
6923                                    (concat r "," d ", or" s))
6924                                   ((= 2 (length l))
6925                                    (concat (car l) ", or" (cadr l)))
6926                                   ((= 1 (length l))
6927                                    (car l))
6928                                   (t
6929                                    ""))))
6930             nil
6931             )
6932         (gnus-summary-position-point))))))
6933
6934 (defun gnus-summary-next-subject (n &optional unread dont-display)
6935   "Go to next N'th summary line.
6936 If N is negative, go to the previous N'th subject line.
6937 If UNREAD is non-nil, only unread articles are selected.
6938 The difference between N and the actual number of steps taken is
6939 returned."
6940   (interactive "p")
6941   (let ((backward (< n 0))
6942         (n (abs n)))
6943     (while (and (> n 0)
6944                 (if backward
6945                     (gnus-summary-find-prev unread)
6946                   (gnus-summary-find-next unread)))
6947       (unless (zerop (setq n (1- n)))
6948         (gnus-summary-show-thread)))
6949     (when (/= 0 n)
6950       (gnus-message 7 "No more%s articles"
6951                     (if unread " unread" "")))
6952     (unless dont-display
6953       (gnus-summary-recenter)
6954       (gnus-summary-position-point))
6955     n))
6956
6957 (defun gnus-summary-next-unread-subject (n)
6958   "Go to next N'th unread summary line."
6959   (interactive "p")
6960   (gnus-summary-next-subject n t))
6961
6962 (defun gnus-summary-prev-subject (n &optional unread)
6963   "Go to previous N'th summary line.
6964 If optional argument UNREAD is non-nil, only unread article is selected."
6965   (interactive "p")
6966   (gnus-summary-next-subject (- n) unread))
6967
6968 (defun gnus-summary-prev-unread-subject (n)
6969   "Go to previous N'th unread summary line."
6970   (interactive "p")
6971   (gnus-summary-next-subject (- n) t))
6972
6973 (defun gnus-summary-goto-subjects (articles)
6974   "Insert the subject header for ARTICLES in the current buffer."
6975   (save-excursion
6976     (dolist (article articles)
6977       (gnus-summary-goto-subject article t)))
6978   (gnus-summary-limit (append articles gnus-newsgroup-limit))
6979   (gnus-summary-position-point))
6980  
6981 (defun gnus-summary-goto-subject (article &optional force silent)
6982   "Go the subject line of ARTICLE.
6983 If FORCE, also allow jumping to articles not currently shown."
6984   (interactive "nArticle number: ")
6985   (unless (numberp article)
6986     (error "Article %s is not a number" article))
6987   (let ((b (point))
6988         (data (gnus-data-find article)))
6989     ;; We read in the article if we have to.
6990     (and (not data)
6991          force
6992          (gnus-summary-insert-subject
6993           article
6994           (if (or (numberp force) (vectorp force)) force)
6995           t)
6996          (setq data (gnus-data-find article)))
6997     (goto-char b)
6998     (if (not data)
6999         (progn
7000           (unless silent
7001             (gnus-message 3 "Can't find article %d" article))
7002           nil)
7003       (let ((pt (gnus-data-pos data)))
7004         (goto-char pt)
7005         (gnus-summary-set-article-display-arrow pt))
7006       (gnus-summary-position-point)
7007       article)))
7008
7009 ;; Walking around summary lines with displaying articles.
7010
7011 (defun gnus-summary-expand-window (&optional arg)
7012   "Make the summary buffer take up the entire Emacs frame.
7013 Given a prefix, will force an `article' buffer configuration."
7014   (interactive "P")
7015   (if arg
7016       (gnus-configure-windows 'article 'force)
7017     (gnus-configure-windows 'summary 'force)))
7018
7019 (defun gnus-summary-display-article (article &optional all-header)
7020   "Display ARTICLE in article buffer."
7021   (when (gnus-buffer-live-p gnus-article-buffer)
7022     (with-current-buffer gnus-article-buffer
7023       (mm-enable-multibyte)))
7024   (gnus-set-global-variables)
7025   (when (gnus-buffer-live-p gnus-article-buffer)
7026     (with-current-buffer gnus-article-buffer
7027       (setq gnus-article-charset gnus-newsgroup-charset)
7028       (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7029       (mm-enable-multibyte)))
7030   (if (null article)
7031       nil
7032     (prog1
7033         (if gnus-summary-display-article-function
7034             (funcall gnus-summary-display-article-function article all-header)
7035           (gnus-article-prepare article all-header))
7036       (gnus-run-hooks 'gnus-select-article-hook)
7037       (when (and gnus-current-article
7038                  (not (zerop gnus-current-article)))
7039         (gnus-summary-goto-subject gnus-current-article))
7040       (gnus-summary-recenter)
7041       (when (and gnus-use-trees gnus-show-threads)
7042         (gnus-possibly-generate-tree article)
7043         (gnus-highlight-selected-tree article))
7044       ;; Successfully display article.
7045       (gnus-article-set-window-start
7046        (cdr (assq article gnus-newsgroup-bookmarks))))))
7047
7048 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7049   "Select the current article.
7050 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
7051 non-nil, the article will be re-fetched even if it already present in
7052 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
7053 be displayed."
7054   ;; Make sure we are in the summary buffer to work around bbdb bug.
7055   (unless (eq major-mode 'gnus-summary-mode)
7056     (set-buffer gnus-summary-buffer))
7057   (let ((article (or article (gnus-summary-article-number)))
7058         (all-headers (not (not all-headers))) ;Must be t or nil.
7059         gnus-summary-display-article-function)
7060     (and (not pseudo)
7061          (gnus-summary-article-pseudo-p article)
7062          (error "This is a pseudo-article"))
7063     (save-excursion
7064       (set-buffer gnus-summary-buffer)
7065       (if (or (and gnus-single-article-buffer
7066                    (or (null gnus-current-article)
7067                        (null gnus-article-current)
7068                        (null (get-buffer gnus-article-buffer))
7069                        (not (eq article (cdr gnus-article-current)))
7070                        (not (equal (car gnus-article-current)
7071                                    gnus-newsgroup-name))))
7072               (and (not gnus-single-article-buffer)
7073                    (or (null gnus-current-article)
7074                        (not (eq gnus-current-article article))))
7075               force)
7076           ;; The requested article is different from the current article.
7077           (progn
7078             (gnus-summary-display-article article all-headers)
7079             (when (gnus-buffer-live-p gnus-article-buffer)
7080               (with-current-buffer gnus-article-buffer
7081                 (if (not gnus-article-decoded-p) ;; a local variable
7082                     (mm-disable-multibyte))))
7083             (gnus-article-set-window-start
7084              (cdr (assq article gnus-newsgroup-bookmarks)))
7085             article)
7086         'old))))
7087
7088 (defun gnus-summary-force-verify-and-decrypt ()
7089   "Display buttons for signed/encrypted parts and verify/decrypt them."
7090   (interactive)
7091   (let ((mm-verify-option 'known)
7092         (mm-decrypt-option 'known)
7093         (gnus-article-emulate-mime t)
7094         (gnus-buttonized-mime-types (append (list "multipart/signed"
7095                                                   "multipart/encrypted")
7096                                             gnus-buttonized-mime-types)))
7097     (gnus-summary-select-article nil 'force)))
7098
7099 (defun gnus-summary-set-current-mark (&optional current-mark)
7100   "Obsolete function."
7101   nil)
7102
7103 (defun gnus-summary-next-article (&optional unread subject backward push)
7104   "Select the next article.
7105 If UNREAD, only unread articles are selected.
7106 If SUBJECT, only articles with SUBJECT are selected.
7107 If BACKWARD, the previous article is selected instead of the next."
7108   (interactive "P")
7109   (cond
7110    ;; Is there such an article?
7111    ((and (gnus-summary-search-forward unread subject backward)
7112          (or (gnus-summary-display-article (gnus-summary-article-number))
7113              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7114     (gnus-summary-position-point))
7115    ;; If not, we try the first unread, if that is wanted.
7116    ((and subject
7117          gnus-auto-select-same
7118          (gnus-summary-first-unread-article))
7119     (gnus-summary-position-point)
7120     (gnus-message 6 "Wrapped"))
7121    ;; Try to get next/previous article not displayed in this group.
7122    ((and gnus-auto-extend-newsgroup
7123          (not unread) (not subject))
7124     (gnus-summary-goto-article
7125      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7126      nil (count-lines (point-min) (point))))
7127    ;; Go to next/previous group.
7128    (t
7129     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7130       (gnus-summary-jump-to-group gnus-newsgroup-name))
7131     (let ((cmd last-command-char)
7132           (point
7133            (save-excursion
7134              (set-buffer gnus-group-buffer)
7135              (point)))
7136           (group
7137            (if (eq gnus-keep-same-level 'best)
7138                (gnus-summary-best-group gnus-newsgroup-name)
7139              (gnus-summary-search-group backward gnus-keep-same-level))))
7140       ;; For some reason, the group window gets selected.  We change
7141       ;; it back.
7142       (select-window (get-buffer-window (current-buffer)))
7143       ;; Select next unread newsgroup automagically.
7144       (cond
7145        ((or (not gnus-auto-select-next)
7146             (not cmd))
7147         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7148        ((or (eq gnus-auto-select-next 'quietly)
7149             (and (eq gnus-auto-select-next 'slightly-quietly)
7150                  push)
7151             (and (eq gnus-auto-select-next 'almost-quietly)
7152                  (gnus-summary-last-article-p)))
7153         ;; Select quietly.
7154         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7155             (gnus-summary-exit)
7156           (gnus-message 7 "No more%s articles (%s)..."
7157                         (if unread " unread" "")
7158                         (if group (concat "selecting " group)
7159                           "exiting"))
7160           (gnus-summary-next-group nil group backward)))
7161        (t
7162         (when (gnus-key-press-event-p last-input-event)
7163           (gnus-summary-walk-group-buffer
7164            gnus-newsgroup-name cmd unread backward point))))))))
7165
7166 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7167   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7168                       (?\C-p (gnus-group-prev-unread-group 1))))
7169         (cursor-in-echo-area t)
7170         keve key group ended prompt)
7171     (save-excursion
7172       (set-buffer gnus-group-buffer)
7173       (goto-char start)
7174       (setq group
7175             (if (eq gnus-keep-same-level 'best)
7176                 (gnus-summary-best-group gnus-newsgroup-name)
7177               (gnus-summary-search-group backward gnus-keep-same-level))))
7178     (while (not ended)
7179       (setq prompt
7180             (format
7181              "No more%s articles%s " (if unread " unread" "")
7182              (if (and group
7183                       (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7184                  (format " (Type %s for %s [%s])"
7185                          (single-key-description cmd) group
7186                          (gnus-group-unread group))
7187                (format " (Type %s to exit %s)"
7188                        (single-key-description cmd)
7189                        gnus-newsgroup-name))))
7190       ;; Confirm auto selection.
7191       (setq key (car (setq keve (gnus-read-event-char prompt)))
7192             ended t)
7193       (cond
7194        ((assq key keystrokes)
7195         (let ((obuf (current-buffer)))
7196           (switch-to-buffer gnus-group-buffer)
7197           (when group
7198             (gnus-group-jump-to-group group))
7199           (eval (cadr (assq key keystrokes)))
7200           (setq group (gnus-group-group-name))
7201           (switch-to-buffer obuf))
7202         (setq ended nil))
7203        ((equal key cmd)
7204         (if (or (not group)
7205                 (gnus-ephemeral-group-p gnus-newsgroup-name))
7206             (gnus-summary-exit)
7207           (gnus-summary-next-group nil group backward)))
7208        (t
7209         (push (cdr keve) unread-command-events))))))
7210
7211 (defun gnus-summary-next-unread-article ()
7212   "Select unread article after current one."
7213   (interactive)
7214   (gnus-summary-next-article
7215    (or (not (eq gnus-summary-goto-unread 'never))
7216        (gnus-summary-last-article-p (gnus-summary-article-number)))
7217    (and gnus-auto-select-same
7218         (gnus-summary-article-subject))))
7219
7220 (defun gnus-summary-prev-article (&optional unread subject)
7221   "Select the article after the current one.
7222 If UNREAD is non-nil, only unread articles are selected."
7223   (interactive "P")
7224   (gnus-summary-next-article unread subject t))
7225
7226 (defun gnus-summary-prev-unread-article ()
7227   "Select unread article before current one."
7228   (interactive)
7229   (gnus-summary-prev-article
7230    (or (not (eq gnus-summary-goto-unread 'never))
7231        (gnus-summary-first-article-p (gnus-summary-article-number)))
7232    (and gnus-auto-select-same
7233         (gnus-summary-article-subject))))
7234
7235 (defun gnus-summary-next-page (&optional lines circular stop)
7236   "Show next page of the selected article.
7237 If at the end of the current article, select the next article.
7238 LINES says how many lines should be scrolled up.
7239
7240 If CIRCULAR is non-nil, go to the start of the article instead of
7241 selecting the next article when reaching the end of the current
7242 article.
7243
7244 If STOP is non-nil, just stop when reaching the end of the message.
7245
7246 Also see the variable `gnus-article-skip-boring'."
7247   (interactive "P")
7248   (setq gnus-summary-buffer (current-buffer))
7249   (gnus-set-global-variables)
7250   (let ((article (gnus-summary-article-number))
7251         (article-window (get-buffer-window gnus-article-buffer t))
7252         endp)
7253     ;; If the buffer is empty, we have no article.
7254     (unless article
7255       (error "No article to select"))
7256     (gnus-configure-windows 'article)
7257     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7258         (if (and (eq gnus-summary-goto-unread 'never)
7259                  (not (gnus-summary-last-article-p article)))
7260             (gnus-summary-next-article)
7261           (gnus-summary-next-unread-article))
7262       (if (or (null gnus-current-article)
7263               (null gnus-article-current)
7264               (/= article (cdr gnus-article-current))
7265               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7266           ;; Selected subject is different from current article's.
7267           (gnus-summary-display-article article)
7268         (when article-window
7269           (gnus-eval-in-buffer-window gnus-article-buffer
7270             (setq endp (or (gnus-article-next-page lines)
7271                            (gnus-article-only-boring-p))))
7272           (when endp
7273             (cond (stop
7274                    (gnus-message 3 "End of message"))
7275                   (circular
7276                    (gnus-summary-beginning-of-article))
7277                   (lines
7278                    (gnus-message 3 "End of message"))
7279                   ((null lines)
7280                    (if (and (eq gnus-summary-goto-unread 'never)
7281                             (not (gnus-summary-last-article-p article)))
7282                        (gnus-summary-next-article)
7283                      (gnus-summary-next-unread-article))))))))
7284     (gnus-summary-recenter)
7285     (gnus-summary-position-point)))
7286
7287 (defun gnus-summary-prev-page (&optional lines move)
7288   "Show previous page of selected article.
7289 Argument LINES specifies lines to be scrolled down.
7290 If MOVE, move to the previous unread article if point is at
7291 the beginning of the buffer."
7292   (interactive "P")
7293   (let ((article (gnus-summary-article-number))
7294         (article-window (get-buffer-window gnus-article-buffer t))
7295         endp)
7296     (gnus-configure-windows 'article)
7297     (if (or (null gnus-current-article)
7298             (null gnus-article-current)
7299             (/= article (cdr gnus-article-current))
7300             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7301         ;; Selected subject is different from current article's.
7302         (gnus-summary-display-article article)
7303       (gnus-summary-recenter)
7304       (when article-window
7305         (gnus-eval-in-buffer-window gnus-article-buffer
7306           (setq endp (gnus-article-prev-page lines)))
7307         (when (and move endp)
7308           (cond (lines
7309                  (gnus-message 3 "Beginning of message"))
7310                 ((null lines)
7311                  (if (and (eq gnus-summary-goto-unread 'never)
7312                           (not (gnus-summary-first-article-p article)))
7313                      (gnus-summary-prev-article)
7314                    (gnus-summary-prev-unread-article))))))))
7315   (gnus-summary-position-point))
7316
7317 (defun gnus-summary-prev-page-or-article (&optional lines)
7318   "Show previous page of selected article.
7319 Argument LINES specifies lines to be scrolled down.
7320 If at the beginning of the article, go to the next article."
7321   (interactive "P")
7322   (gnus-summary-prev-page lines t))
7323
7324 (defun gnus-summary-scroll-up (lines)
7325   "Scroll up (or down) one line current article.
7326 Argument LINES specifies lines to be scrolled up (or down if negative)."
7327   (interactive "p")
7328   (gnus-configure-windows 'article)
7329   (gnus-summary-show-thread)
7330   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7331     (gnus-eval-in-buffer-window gnus-article-buffer
7332       (cond ((> lines 0)
7333              (when (gnus-article-next-page lines)
7334                (gnus-message 3 "End of message")))
7335             ((< lines 0)
7336              (gnus-article-prev-page (- lines))))))
7337   (gnus-summary-recenter)
7338   (gnus-summary-position-point))
7339
7340 (defun gnus-summary-scroll-down (lines)
7341   "Scroll down (or up) one line current article.
7342 Argument LINES specifies lines to be scrolled down (or up if negative)."
7343   (interactive "p")
7344   (gnus-summary-scroll-up (- lines)))
7345
7346 (defun gnus-summary-next-same-subject ()
7347   "Select next article which has the same subject as current one."
7348   (interactive)
7349   (gnus-summary-next-article nil (gnus-summary-article-subject)))
7350
7351 (defun gnus-summary-prev-same-subject ()
7352   "Select previous article which has the same subject as current one."
7353   (interactive)
7354   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7355
7356 (defun gnus-summary-next-unread-same-subject ()
7357   "Select next unread article which has the same subject as current one."
7358   (interactive)
7359   (gnus-summary-next-article t (gnus-summary-article-subject)))
7360
7361 (defun gnus-summary-prev-unread-same-subject ()
7362   "Select previous unread article which has the same subject as current one."
7363   (interactive)
7364   (gnus-summary-prev-article t (gnus-summary-article-subject)))
7365
7366 (defun gnus-summary-first-unread-article ()
7367   "Select the first unread article.
7368 Return nil if there are no unread articles."
7369   (interactive)
7370   (prog1
7371       (when (gnus-summary-first-subject t)
7372         (gnus-summary-show-thread)
7373         (gnus-summary-first-subject t)
7374         (gnus-summary-display-article (gnus-summary-article-number)))
7375     (gnus-summary-position-point)))
7376
7377 (defun gnus-summary-first-unread-subject ()
7378   "Place the point on the subject line of the first unread article.
7379 Return nil if there are no unread articles."
7380   (interactive)
7381   (prog1
7382       (when (gnus-summary-first-subject t)
7383         (gnus-summary-show-thread)
7384         (gnus-summary-first-subject t))
7385     (gnus-summary-position-point)))
7386
7387 (defun gnus-summary-first-unseen-subject ()
7388   "Place the point on the subject line of the first unseen article.
7389 Return nil if there are no unseen articles."
7390   (interactive)
7391   (prog1
7392       (when (gnus-summary-first-subject nil nil t)
7393         (gnus-summary-show-thread)
7394         (gnus-summary-first-subject nil nil t))
7395     (gnus-summary-position-point)))
7396
7397 (defun gnus-summary-first-unseen-or-unread-subject ()
7398   "Place the point on the subject line of the first unseen article or,
7399 if all article have been seen, on the subject line of the first unread
7400 article."
7401   (interactive)
7402   (prog1
7403       (unless (when (gnus-summary-first-subject nil nil t)
7404                 (gnus-summary-show-thread)
7405                 (gnus-summary-first-subject nil nil t))
7406         (when (gnus-summary-first-subject t)
7407           (gnus-summary-show-thread)
7408           (gnus-summary-first-subject t)))
7409     (gnus-summary-position-point)))
7410
7411 (defun gnus-summary-first-article ()
7412   "Select the first article.
7413 Return nil if there are no articles."
7414   (interactive)
7415   (prog1
7416       (when (gnus-summary-first-subject)
7417         (gnus-summary-show-thread)
7418         (gnus-summary-first-subject)
7419         (gnus-summary-display-article (gnus-summary-article-number)))
7420     (gnus-summary-position-point)))
7421
7422 (defun gnus-summary-best-unread-article (&optional arg)
7423   "Select the unread article with the highest score.
7424 If given a prefix argument, select the next unread article that has a
7425 score higher than the default score."
7426   (interactive "P")
7427   (let ((article (if arg
7428                      (gnus-summary-better-unread-subject)
7429                    (gnus-summary-best-unread-subject))))
7430     (if article
7431         (gnus-summary-goto-article article)
7432       (error "No unread articles"))))
7433
7434 (defun gnus-summary-best-unread-subject ()
7435   "Select the unread subject with the highest score."
7436   (interactive)
7437   (let ((best -1000000)
7438         (data gnus-newsgroup-data)
7439         article score)
7440     (while data
7441       (and (gnus-data-unread-p (car data))
7442            (> (setq score
7443                     (gnus-summary-article-score (gnus-data-number (car data))))
7444               best)
7445            (setq best score
7446                  article (gnus-data-number (car data))))
7447       (setq data (cdr data)))
7448     (when article
7449       (gnus-summary-goto-subject article))
7450     (gnus-summary-position-point)
7451     article))
7452
7453 (defun gnus-summary-better-unread-subject ()
7454   "Select the first unread subject that has a score over the default score."
7455   (interactive)
7456   (let ((data gnus-newsgroup-data)
7457         article score)
7458     (while (and (setq article (gnus-data-number (car data)))
7459                 (or (gnus-data-read-p (car data))
7460                     (not (> (gnus-summary-article-score article)
7461                             gnus-summary-default-score))))
7462       (setq data (cdr data)))
7463     (when article
7464       (gnus-summary-goto-subject article))
7465     (gnus-summary-position-point)
7466     article))
7467
7468 (defun gnus-summary-last-subject ()
7469   "Go to the last displayed subject line in the group."
7470   (let ((article (gnus-data-number (car (gnus-data-list t)))))
7471     (when article
7472       (gnus-summary-goto-subject article))))
7473
7474 (defun gnus-summary-goto-article (article &optional all-headers force)
7475   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7476 If ALL-HEADERS is non-nil, no header lines are hidden.
7477 If FORCE, go to the article even if it isn't displayed.  If FORCE
7478 is a number, it is the line the article is to be displayed on."
7479   (interactive
7480    (list
7481     (completing-read
7482      "Article number or Message-ID: "
7483      (mapcar (lambda (number) (list (int-to-string number)))
7484              gnus-newsgroup-limit))
7485     current-prefix-arg
7486     t))
7487   (prog1
7488       (if (and (stringp article)
7489                (string-match "@\\|%40" article))
7490           (gnus-summary-refer-article article)
7491         (when (stringp article)
7492           (setq article (string-to-number article)))
7493         (if (gnus-summary-goto-subject article force)
7494             (gnus-summary-display-article article all-headers)
7495           (gnus-message 4 "Couldn't go to article %s" article) nil))
7496     (gnus-summary-position-point)))
7497
7498 (defun gnus-summary-goto-last-article ()
7499   "Go to the previously read article."
7500   (interactive)
7501   (prog1
7502       (when gnus-last-article
7503         (gnus-summary-goto-article gnus-last-article nil t))
7504     (gnus-summary-position-point)))
7505
7506 (defun gnus-summary-pop-article (number)
7507   "Pop one article off the history and go to the previous.
7508 NUMBER articles will be popped off."
7509   (interactive "p")
7510   (let (to)
7511     (setq gnus-newsgroup-history
7512           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
7513     (if to
7514         (gnus-summary-goto-article (car to) nil t)
7515       (error "Article history empty")))
7516   (gnus-summary-position-point))
7517
7518 ;; Summary commands and functions for limiting the summary buffer.
7519
7520 (defun gnus-summary-limit-to-articles (n)
7521   "Limit the summary buffer to the next N articles.
7522 If not given a prefix, use the process marked articles instead."
7523   (interactive "P")
7524   (prog1
7525       (let ((articles (gnus-summary-work-articles n)))
7526         (setq gnus-newsgroup-processable nil)
7527         (gnus-summary-limit articles))
7528     (gnus-summary-position-point)))
7529
7530 (defun gnus-summary-pop-limit (&optional total)
7531   "Restore the previous limit.
7532 If given a prefix, remove all limits."
7533   (interactive "P")
7534   (when total
7535     (setq gnus-newsgroup-limits
7536           (list (mapcar (lambda (h) (mail-header-number h))
7537                         gnus-newsgroup-headers))))
7538   (unless gnus-newsgroup-limits
7539     (error "No limit to pop"))
7540   (prog1
7541       (gnus-summary-limit nil 'pop)
7542     (gnus-summary-position-point)))
7543
7544 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
7545   "Limit the summary buffer to articles that have subjects that match a regexp.
7546 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
7547   (interactive
7548    (list (read-string (if current-prefix-arg
7549                           "Exclude subject (regexp): "
7550                         "Limit to subject (regexp): "))
7551          nil current-prefix-arg))
7552   (unless header
7553     (setq header "subject"))
7554   (when (not (equal "" subject))
7555     (prog1
7556         (let ((articles (gnus-summary-find-matching
7557                          (or header "subject") subject 'all nil nil
7558                          not-matching)))
7559           (unless articles
7560             (error "Found no matches for \"%s\"" subject))
7561           (gnus-summary-limit articles))
7562       (gnus-summary-position-point))))
7563
7564 (defun gnus-summary-limit-to-author (from &optional not-matching)
7565   "Limit the summary buffer to articles that have authors that match a regexp.
7566 If NOT-MATCHING, excluding articles that have authors that match a regexp."
7567   (interactive
7568    (list (read-string (if current-prefix-arg
7569                           "Exclude author (regexp): "
7570                         "Limit to author (regexp): "))
7571          current-prefix-arg))
7572   (gnus-summary-limit-to-subject from "from" not-matching))
7573
7574 (defun gnus-summary-limit-to-age (age &optional younger-p)
7575   "Limit the summary buffer to articles that are older than (or equal) AGE days.
7576 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
7577 articles that are younger than AGE days."
7578   (interactive
7579    (let ((younger current-prefix-arg)
7580          (days-got nil)
7581          days)
7582      (while (not days-got)
7583        (setq days (if younger
7584                       (read-string "Limit to articles younger than (in days, older when negative): ")
7585                     (read-string
7586                      "Limit to articles older than (in days, younger when negative): ")))
7587        (when (> (length days) 0)
7588          (setq days (read days)))
7589        (if (numberp days)
7590            (progn
7591              (setq days-got t)
7592              (if (< days 0)
7593                  (progn
7594                    (setq younger (not younger))
7595                    (setq days (* days -1)))))
7596          (message "Please enter a number.")
7597          (sleep-for 1)))
7598      (list days younger)))
7599   (prog1
7600       (let ((data gnus-newsgroup-data)
7601             (cutoff (days-to-time age))
7602             articles d date is-younger)
7603         (while (setq d (pop data))
7604           (when (and (vectorp (gnus-data-header d))
7605                      (setq date (mail-header-date (gnus-data-header d))))
7606             (setq is-younger (time-less-p
7607                               (time-since (condition-case ()
7608                                               (date-to-time date)
7609                                             (error '(0 0))))
7610                               cutoff))
7611             (when (if younger-p
7612                       is-younger
7613                     (not is-younger))
7614               (push (gnus-data-number d) articles))))
7615         (gnus-summary-limit (nreverse articles)))
7616     (gnus-summary-position-point)))
7617
7618 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
7619   "Limit the summary buffer to articles that match an 'extra' header."
7620   (interactive
7621    (let ((header
7622           (intern
7623            (gnus-completing-read-with-default
7624             (symbol-name (car gnus-extra-headers))
7625             (if current-prefix-arg
7626                 "Exclude extra header:"
7627               "Limit extra header:")
7628             (mapcar (lambda (x)
7629                       (cons (symbol-name x) x))
7630                     gnus-extra-headers)
7631             nil
7632             t))))
7633      (list header
7634            (read-string (format "%s header %s (regexp): "
7635                                 (if current-prefix-arg "Exclude" "Limit to")
7636                                 header))
7637            current-prefix-arg)))
7638   (when (not (equal "" regexp))
7639     (prog1
7640         (let ((articles (gnus-summary-find-matching
7641                          (cons 'extra header) regexp 'all nil nil
7642                          not-matching)))
7643           (unless articles
7644             (error "Found no matches for \"%s\"" regexp))
7645           (gnus-summary-limit articles))
7646       (gnus-summary-position-point))))
7647
7648 (defun gnus-summary-limit-to-display-predicate ()
7649   "Limit the summary buffer to the predicated in the `display' group parameter."
7650   (interactive)
7651   (unless gnus-newsgroup-display
7652     (error "There is no `display' group parameter"))
7653   (let (articles)
7654     (dolist (number gnus-newsgroup-articles)
7655       (when (funcall gnus-newsgroup-display)
7656         (push number articles)))
7657     (gnus-summary-limit articles))
7658   (gnus-summary-position-point))
7659
7660 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7661 (make-obsolete
7662  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7663
7664 (defun gnus-summary-limit-to-unread (&optional all)
7665   "Limit the summary buffer to articles that are not marked as read.
7666 If ALL is non-nil, limit strictly to unread articles."
7667   (interactive "P")
7668   (if all
7669       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
7670     (gnus-summary-limit-to-marks
7671      ;; Concat all the marks that say that an article is read and have
7672      ;; those removed.
7673      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
7674            gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
7675            gnus-low-score-mark gnus-expirable-mark
7676            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
7677            gnus-duplicate-mark gnus-souped-mark)
7678      'reverse)))
7679
7680 (defun gnus-summary-limit-to-replied (&optional unreplied)
7681   "Limit the summary buffer to replied articles.
7682 If UNREPLIED (the prefix), limit to unreplied articles."
7683   (interactive "P")
7684   (if unreplied
7685       (gnus-summary-limit
7686        (gnus-set-difference gnus-newsgroup-articles
7687         gnus-newsgroup-replied))
7688     (gnus-summary-limit gnus-newsgroup-replied))
7689   (gnus-summary-position-point))
7690
7691 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
7692 (make-obsolete 'gnus-summary-delete-marked-with
7693                'gnus-summary-limit-exclude-marks)
7694
7695 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
7696   "Exclude articles that are marked with MARKS (e.g. \"DK\").
7697 If REVERSE, limit the summary buffer to articles that are marked
7698 with MARKS.  MARKS can either be a string of marks or a list of marks.
7699 Returns how many articles were removed."
7700   (interactive "sMarks: ")
7701   (gnus-summary-limit-to-marks marks t))
7702
7703 (defun gnus-summary-limit-to-marks (marks &optional reverse)
7704   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
7705 If REVERSE (the prefix), limit the summary buffer to articles that are
7706 not marked with MARKS.  MARKS can either be a string of marks or a
7707 list of marks.
7708 Returns how many articles were removed."
7709   (interactive "sMarks: \nP")
7710   (prog1
7711       (let ((data gnus-newsgroup-data)
7712             (marks (if (listp marks) marks
7713                      (append marks nil))) ; Transform to list.
7714             articles)
7715         (while data
7716           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
7717                   (memq (gnus-data-mark (car data)) marks))
7718             (push (gnus-data-number (car data)) articles))
7719           (setq data (cdr data)))
7720         (gnus-summary-limit articles))
7721     (gnus-summary-position-point)))
7722
7723 (defun gnus-summary-limit-to-score (score)
7724   "Limit to articles with score at or above SCORE."
7725   (interactive "NLimit to articles with score of at least: ")
7726   (let ((data gnus-newsgroup-data)
7727         articles)
7728     (while data
7729       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
7730                 score)
7731         (push (gnus-data-number (car data)) articles))
7732       (setq data (cdr data)))
7733     (prog1
7734         (gnus-summary-limit articles)
7735       (gnus-summary-position-point))))
7736
7737 (defun gnus-summary-limit-to-unseen ()
7738   "Limit to unseen articles."
7739   (interactive)
7740   (prog1
7741       (gnus-summary-limit gnus-newsgroup-unseen)
7742     (gnus-summary-position-point)))
7743
7744 (defun gnus-summary-limit-include-thread (id)
7745   "Display all the hidden articles that is in the thread with ID in it.
7746 When called interactively, ID is the Message-ID of the current
7747 article."
7748   (interactive (list (mail-header-id (gnus-summary-article-header))))
7749   (let ((articles (gnus-articles-in-thread
7750                    (gnus-id-to-thread (gnus-root-id id)))))
7751     (prog1
7752         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7753       (gnus-summary-limit-include-matching-articles
7754        "subject"
7755        (regexp-quote (gnus-simplify-subject-re
7756                       (mail-header-subject (gnus-id-to-header id)))))
7757       (gnus-summary-position-point))))
7758
7759 (defun gnus-summary-limit-include-matching-articles (header regexp)
7760   "Display all the hidden articles that have HEADERs that match REGEXP."
7761   (interactive (list (read-string "Match on header: ")
7762                      (read-string "Regexp: ")))
7763   (let ((articles (gnus-find-matching-articles header regexp)))
7764     (prog1
7765         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7766       (gnus-summary-position-point))))
7767
7768 (defun gnus-summary-insert-dormant-articles ()
7769   "Insert all the dormant articles for this group into the current buffer."
7770   (interactive)
7771   (let ((gnus-verbose (max 6 gnus-verbose)))
7772     (if (not gnus-newsgroup-dormant)
7773         (gnus-message 3 "No cached articles for this group")
7774       (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
7775
7776 (defun gnus-summary-limit-include-dormant ()
7777   "Display all the hidden articles that are marked as dormant.
7778 Note that this command only works on a subset of the articles currently
7779 fetched for this group."
7780   (interactive)
7781   (unless gnus-newsgroup-dormant
7782     (error "There are no dormant articles in this group"))
7783   (prog1
7784       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
7785     (gnus-summary-position-point)))
7786
7787 (defun gnus-summary-limit-exclude-dormant ()
7788   "Hide all dormant articles."
7789   (interactive)
7790   (prog1
7791       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
7792     (gnus-summary-position-point)))
7793
7794 (defun gnus-summary-limit-exclude-childless-dormant ()
7795   "Hide all dormant articles that have no children."
7796   (interactive)
7797   (let ((data (gnus-data-list t))
7798         articles d children)
7799     ;; Find all articles that are either not dormant or have
7800     ;; children.
7801     (while (setq d (pop data))
7802       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
7803                 (and (setq children
7804                            (gnus-article-children (gnus-data-number d)))
7805                      (let (found)
7806                        (while children
7807                          (when (memq (car children) articles)
7808                            (setq children nil
7809                                  found t))
7810                          (pop children))
7811                        found)))
7812         (push (gnus-data-number d) articles)))
7813     ;; Do the limiting.
7814     (prog1
7815         (gnus-summary-limit articles)
7816       (gnus-summary-position-point))))
7817
7818 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
7819   "Mark all unread excluded articles as read.
7820 If ALL, mark even excluded ticked and dormants as read."
7821   (interactive "P")
7822   (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
7823   (let ((articles (gnus-sorted-ndifference
7824                    (sort
7825                     (mapcar (lambda (h) (mail-header-number h))
7826                             gnus-newsgroup-headers)
7827                     '<)
7828                    gnus-newsgroup-limit))
7829         article)
7830     (setq gnus-newsgroup-unreads
7831           (gnus-sorted-intersection gnus-newsgroup-unreads
7832                                     gnus-newsgroup-limit))
7833     (if all
7834         (setq gnus-newsgroup-dormant nil
7835               gnus-newsgroup-marked nil
7836               gnus-newsgroup-reads
7837               (nconc
7838                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
7839                gnus-newsgroup-reads))
7840       (while (setq article (pop articles))
7841         (unless (or (memq article gnus-newsgroup-dormant)
7842                     (memq article gnus-newsgroup-marked))
7843           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
7844
7845 (defun gnus-summary-limit (articles &optional pop)
7846   (if pop
7847       ;; We pop the previous limit off the stack and use that.
7848       (setq articles (car gnus-newsgroup-limits)
7849             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
7850     ;; We use the new limit, so we push the old limit on the stack.
7851     (push gnus-newsgroup-limit gnus-newsgroup-limits))
7852   ;; Set the limit.
7853   (setq gnus-newsgroup-limit articles)
7854   (let ((total (length gnus-newsgroup-data))
7855         (data (gnus-data-find-list (gnus-summary-article-number)))
7856         (gnus-summary-mark-below nil)   ; Inhibit this.
7857         found)
7858     ;; This will do all the work of generating the new summary buffer
7859     ;; according to the new limit.
7860     (gnus-summary-prepare)
7861     ;; Hide any threads, possibly.
7862     (gnus-summary-maybe-hide-threads)
7863     ;; Try to return to the article you were at, or one in the
7864     ;; neighborhood.
7865     (when data
7866       ;; We try to find some article after the current one.
7867       (while data
7868         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
7869           (setq data nil
7870                 found t))
7871         (setq data (cdr data))))
7872     (unless found
7873       ;; If there is no data, that means that we were after the last
7874       ;; article.  The same goes when we can't find any articles
7875       ;; after the current one.
7876       (goto-char (point-max))
7877       (gnus-summary-find-prev))
7878     (gnus-set-mode-line 'summary)
7879     ;; We return how many articles were removed from the summary
7880     ;; buffer as a result of the new limit.
7881     (- total (length gnus-newsgroup-data))))
7882
7883 (defsubst gnus-invisible-cut-children (threads)
7884   (let ((num 0))
7885     (while threads
7886       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
7887         (incf num))
7888       (pop threads))
7889     (< num 2)))
7890
7891 (defsubst gnus-cut-thread (thread)
7892   "Go forwards in the thread until we find an article that we want to display."
7893   (when (or (eq gnus-fetch-old-headers 'some)
7894             (eq gnus-fetch-old-headers 'invisible)
7895             (numberp gnus-fetch-old-headers)
7896             (eq gnus-build-sparse-threads 'some)
7897             (eq gnus-build-sparse-threads 'more))
7898     ;; Deal with old-fetched headers and sparse threads.
7899     (while (and
7900             thread
7901             (or
7902              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
7903              (gnus-summary-article-ancient-p
7904               (mail-header-number (car thread))))
7905             (if (or (<= (length (cdr thread)) 1)
7906                     (eq gnus-fetch-old-headers 'invisible))
7907                 (setq gnus-newsgroup-limit
7908                       (delq (mail-header-number (car thread))
7909                             gnus-newsgroup-limit)
7910                       thread (cadr thread))
7911               (when (gnus-invisible-cut-children (cdr thread))
7912                 (let ((th (cdr thread)))
7913                   (while th
7914                     (if (memq (mail-header-number (caar th))
7915                               gnus-newsgroup-limit)
7916                         (setq thread (car th)
7917                               th nil)
7918                       (setq th (cdr th))))))))))
7919   thread)
7920
7921 (defun gnus-cut-threads (threads)
7922   "Cut off all uninteresting articles from the beginning of THREADS."
7923   (when (or (eq gnus-fetch-old-headers 'some)
7924             (eq gnus-fetch-old-headers 'invisible)
7925             (numberp gnus-fetch-old-headers)
7926             (eq gnus-build-sparse-threads 'some)
7927             (eq gnus-build-sparse-threads 'more))
7928     (let ((th threads))
7929       (while th
7930         (setcar th (gnus-cut-thread (car th)))
7931         (setq th (cdr th)))))
7932   ;; Remove nixed out threads.
7933   (delq nil threads))
7934
7935 (defun gnus-summary-initial-limit (&optional show-if-empty)
7936   "Figure out what the initial limit is supposed to be on group entry.
7937 This entails weeding out unwanted dormants, low-scored articles,
7938 fetch-old-headers verbiage, and so on."
7939   ;; Most groups have nothing to remove.
7940   (if (or gnus-inhibit-limiting
7941           (and (null gnus-newsgroup-dormant)
7942                (eq gnus-newsgroup-display 'gnus-not-ignore)
7943                (not (eq gnus-fetch-old-headers 'some))
7944                (not (numberp gnus-fetch-old-headers))
7945                (not (eq gnus-fetch-old-headers 'invisible))
7946                (null gnus-summary-expunge-below)
7947                (not (eq gnus-build-sparse-threads 'some))
7948                (not (eq gnus-build-sparse-threads 'more))
7949                (null gnus-thread-expunge-below)
7950                (not gnus-use-nocem)))
7951       ()                                ; Do nothing.
7952     (push gnus-newsgroup-limit gnus-newsgroup-limits)
7953     (setq gnus-newsgroup-limit nil)
7954     (mapatoms
7955      (lambda (node)
7956        (unless (car (symbol-value node))
7957          ;; These threads have no parents -- they are roots.
7958          (let ((nodes (cdr (symbol-value node)))
7959                thread)
7960            (while nodes
7961              (if (and gnus-thread-expunge-below
7962                       (< (gnus-thread-total-score (car nodes))
7963                          gnus-thread-expunge-below))
7964                  (gnus-expunge-thread (pop nodes))
7965                (setq thread (pop nodes))
7966                (gnus-summary-limit-children thread))))))
7967      gnus-newsgroup-dependencies)
7968     ;; If this limitation resulted in an empty group, we might
7969     ;; pop the previous limit and use it instead.
7970     (when (and (not gnus-newsgroup-limit)
7971                show-if-empty)
7972       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
7973     gnus-newsgroup-limit))
7974
7975 (defun gnus-summary-limit-children (thread)
7976   "Return 1 if this subthread is visible and 0 if it is not."
7977   ;; First we get the number of visible children to this thread.  This
7978   ;; is done by recursing down the thread using this function, so this
7979   ;; will really go down to a leaf article first, before slowly
7980   ;; working its way up towards the root.
7981   (when thread
7982     (let* ((max-lisp-eval-depth 5000)
7983            (children
7984            (if (cdr thread)
7985                (apply '+ (mapcar 'gnus-summary-limit-children
7986                                  (cdr thread)))
7987              0))
7988           (number (mail-header-number (car thread)))
7989           score)
7990       (if (and
7991            (not (memq number gnus-newsgroup-marked))
7992            (or
7993             ;; If this article is dormant and has absolutely no visible
7994             ;; children, then this article isn't visible.
7995             (and (memq number gnus-newsgroup-dormant)
7996                  (zerop children))
7997             ;; If this is "fetch-old-headered" and there is no
7998             ;; visible children, then we don't want this article.
7999             (and (or (eq gnus-fetch-old-headers 'some)
8000                      (numberp gnus-fetch-old-headers))
8001                  (gnus-summary-article-ancient-p number)
8002                  (zerop children))
8003             ;; If this is "fetch-old-headered" and `invisible', then
8004             ;; we don't want this article.
8005             (and (eq gnus-fetch-old-headers 'invisible)
8006                  (gnus-summary-article-ancient-p number))
8007             ;; If this is a sparsely inserted article with no children,
8008             ;; we don't want it.
8009             (and (eq gnus-build-sparse-threads 'some)
8010                  (gnus-summary-article-sparse-p number)
8011                  (zerop children))
8012             ;; If we use expunging, and this article is really
8013             ;; low-scored, then we don't want this article.
8014             (when (and gnus-summary-expunge-below
8015                        (< (setq score
8016                                 (or (cdr (assq number gnus-newsgroup-scored))
8017                                     gnus-summary-default-score))
8018                           gnus-summary-expunge-below))
8019               ;; We increase the expunge-tally here, but that has
8020               ;; nothing to do with the limits, really.
8021               (incf gnus-newsgroup-expunged-tally)
8022               ;; We also mark as read here, if that's wanted.
8023               (when (and gnus-summary-mark-below
8024                          (< score gnus-summary-mark-below))
8025                 (setq gnus-newsgroup-unreads
8026                       (delq number gnus-newsgroup-unreads))
8027                 (if gnus-newsgroup-auto-expire
8028                     (push number gnus-newsgroup-expirable)
8029                   (push (cons number gnus-low-score-mark)
8030                         gnus-newsgroup-reads)))
8031               t)
8032             ;; Do the `display' group parameter.
8033             (and gnus-newsgroup-display
8034                  (not (funcall gnus-newsgroup-display)))
8035             ;; Check NoCeM things.
8036             (if (and gnus-use-nocem
8037                      (gnus-nocem-unwanted-article-p
8038                       (mail-header-id (car thread))))
8039                 (progn
8040                   (setq gnus-newsgroup-unreads
8041                         (delq number gnus-newsgroup-unreads))
8042                   t))))
8043           ;; Nope, invisible article.
8044           0
8045         ;; Ok, this article is to be visible, so we add it to the limit
8046         ;; and return 1.
8047         (push number gnus-newsgroup-limit)
8048         1))))
8049
8050 (defun gnus-expunge-thread (thread)
8051   "Mark all articles in THREAD as read."
8052   (let* ((number (mail-header-number (car thread))))
8053     (incf gnus-newsgroup-expunged-tally)
8054     ;; We also mark as read here, if that's wanted.
8055     (setq gnus-newsgroup-unreads
8056           (delq number gnus-newsgroup-unreads))
8057     (if gnus-newsgroup-auto-expire
8058         (push number gnus-newsgroup-expirable)
8059       (push (cons number gnus-low-score-mark)
8060             gnus-newsgroup-reads)))
8061   ;; Go recursively through all subthreads.
8062   (mapcar 'gnus-expunge-thread (cdr thread)))
8063
8064 ;; Summary article oriented commands
8065
8066 (defun gnus-summary-refer-parent-article (n)
8067   "Refer parent article N times.
8068 If N is negative, go to ancestor -N instead.
8069 The difference between N and the number of articles fetched is returned."
8070   (interactive "p")
8071   (let ((skip 1)
8072         error header ref)
8073     (when (not (natnump n))
8074       (setq skip (abs n)
8075             n 1))
8076     (while (and (> n 0)
8077                 (not error))
8078       (setq header (gnus-summary-article-header))
8079       (if (and (eq (mail-header-number header)
8080                    (cdr gnus-article-current))
8081                (equal gnus-newsgroup-name
8082                       (car gnus-article-current)))
8083           ;; If we try to find the parent of the currently
8084           ;; displayed article, then we take a look at the actual
8085           ;; References header, since this is slightly more
8086           ;; reliable than the References field we got from the
8087           ;; server.
8088           (save-excursion
8089             (set-buffer gnus-original-article-buffer)
8090             (nnheader-narrow-to-headers)
8091             (unless (setq ref (message-fetch-field "references"))
8092               (when (setq ref (message-fetch-field "in-reply-to"))
8093                 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8094             (widen))
8095         (setq ref
8096               ;; It's not the current article, so we take a bet on
8097               ;; the value we got from the server.
8098               (mail-header-references header)))
8099       (if (and ref
8100                (not (equal ref "")))
8101           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8102             (gnus-message 1 "Couldn't find parent"))
8103         (gnus-message 1 "No references in article %d"
8104                       (gnus-summary-article-number))
8105         (setq error t))
8106       (decf n))
8107     (gnus-summary-position-point)
8108     n))
8109
8110 (defun gnus-summary-refer-references ()
8111   "Fetch all articles mentioned in the References header.
8112 Return the number of articles fetched."
8113   (interactive)
8114   (let ((ref (mail-header-references (gnus-summary-article-header)))
8115         (current (gnus-summary-article-number))
8116         (n 0))
8117     (if (or (not ref)
8118             (equal ref ""))
8119         (error "No References in the current article")
8120       ;; For each Message-ID in the References header...
8121       (while (string-match "<[^>]*>" ref)
8122         (incf n)
8123         ;; ... fetch that article.
8124         (gnus-summary-refer-article
8125          (prog1 (match-string 0 ref)
8126            (setq ref (substring ref (match-end 0))))))
8127       (gnus-summary-goto-subject current)
8128       (gnus-summary-position-point)
8129       n)))
8130
8131 (defun gnus-summary-refer-thread (&optional limit)
8132   "Fetch all articles in the current thread.
8133 If LIMIT (the numerical prefix), fetch that many old headers instead
8134 of what's specified by the `gnus-refer-thread-limit' variable."
8135   (interactive "P")
8136   (let ((id (mail-header-id (gnus-summary-article-header)))
8137         (limit (if limit (prefix-numeric-value limit)
8138                  gnus-refer-thread-limit)))
8139     (unless (eq gnus-fetch-old-headers 'invisible)
8140       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8141       ;; Retrieve the headers and read them in.
8142       (if (eq (if (numberp limit)
8143                   (gnus-retrieve-headers
8144                    (list (min
8145                           (+ (mail-header-number
8146                               (gnus-summary-article-header))
8147                              limit)
8148                           gnus-newsgroup-end))
8149                    gnus-newsgroup-name (* limit 2))
8150                 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8151                 ;; headers.
8152                 (gnus-retrieve-headers (list gnus-newsgroup-end)
8153                                        gnus-newsgroup-name limit))
8154               'nov)
8155           (gnus-build-all-threads)
8156         (error "Can't fetch thread from back ends that don't support NOV"))
8157       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8158     (gnus-summary-limit-include-thread id)))
8159
8160 (defun gnus-summary-refer-article (message-id)
8161   "Fetch an article specified by MESSAGE-ID."
8162   (interactive "sMessage-ID: ")
8163   (when (and (stringp message-id)
8164              (not (zerop (length message-id))))
8165     (setq message-id (gnus-replace-in-string message-id " " ""))
8166     ;; Construct the correct Message-ID if necessary.
8167     ;; Suggested by tale@pawl.rpi.edu.
8168     (unless (string-match "^<" message-id)
8169       (setq message-id (concat "<" message-id)))
8170     (unless (string-match ">$" message-id)
8171       (setq message-id (concat message-id ">")))
8172     ;; People often post MIDs from URLs, so unhex it:
8173     (unless (string-match "@" message-id)
8174       (setq message-id (gnus-url-unhex-string message-id)))
8175     (let* ((header (gnus-id-to-header message-id))
8176            (sparse (and header
8177                         (gnus-summary-article-sparse-p
8178                          (mail-header-number header))
8179                         (memq (mail-header-number header)
8180                               gnus-newsgroup-limit)))
8181            number)
8182       (cond
8183        ;; If the article is present in the buffer we just go to it.
8184        ((and header
8185              (or (not (gnus-summary-article-sparse-p
8186                        (mail-header-number header)))
8187                  sparse))
8188         (prog1
8189             (gnus-summary-goto-article
8190              (mail-header-number header) nil t)
8191           (when sparse
8192             (gnus-summary-update-article (mail-header-number header)))))
8193        (t
8194         ;; We fetch the article.
8195         (catch 'found
8196           (dolist (gnus-override-method (gnus-refer-article-methods))
8197             (when (and (gnus-check-server gnus-override-method)
8198                        ;; Fetch the header,
8199                        (setq number (gnus-summary-insert-subject message-id)))
8200               ;; and display the article.
8201               (gnus-summary-select-article nil nil nil number)
8202               (throw 'found t)))
8203           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8204
8205 (defun gnus-refer-article-methods ()
8206   "Return a list of referable methods."
8207   (cond
8208    ;; No method, so we default to current and native.
8209    ((null gnus-refer-article-method)
8210     (list gnus-current-select-method gnus-select-method))
8211    ;; Current.
8212    ((eq 'current gnus-refer-article-method)
8213     (list gnus-current-select-method))
8214    ;; List of select methods.
8215    ((not (and (symbolp (car gnus-refer-article-method))
8216               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8217     (let (out)
8218       (dolist (method gnus-refer-article-method)
8219         (push (if (eq 'current method)
8220                   gnus-current-select-method
8221                 method)
8222               out))
8223       (nreverse out)))
8224    ;; One single select method.
8225    (t
8226     (list gnus-refer-article-method))))
8227
8228 (defun gnus-summary-edit-parameters ()
8229   "Edit the group parameters of the current group."
8230   (interactive)
8231   (gnus-group-edit-group gnus-newsgroup-name 'params))
8232
8233 (defun gnus-summary-customize-parameters ()
8234   "Customize the group parameters of the current group."
8235   (interactive)
8236   (gnus-group-customize gnus-newsgroup-name))
8237
8238 (defun gnus-summary-enter-digest-group (&optional force)
8239   "Enter an nndoc group based on the current article.
8240 If FORCE, force a digest interpretation.  If not, try
8241 to guess what the document format is."
8242   (interactive "P")
8243   (let ((conf gnus-current-window-configuration))
8244     (save-window-excursion
8245       (save-excursion
8246         (let (gnus-article-prepare-hook
8247               gnus-display-mime-function
8248               gnus-break-pages)
8249           (gnus-summary-select-article))))
8250     (setq gnus-current-window-configuration conf)
8251     (let* ((name (format "%s-%d"
8252                          (gnus-group-prefixed-name
8253                           gnus-newsgroup-name (list 'nndoc ""))
8254                          (save-excursion
8255                            (set-buffer gnus-summary-buffer)
8256                            gnus-current-article)))
8257            (ogroup gnus-newsgroup-name)
8258            (params (append (gnus-info-params (gnus-get-info ogroup))
8259                            (list (cons 'to-group ogroup))
8260                            (list (cons 'parent-group ogroup))
8261                            (list (cons 'save-article-group ogroup))))
8262            (case-fold-search t)
8263            (buf (current-buffer))
8264            dig to-address)
8265       (save-excursion
8266         (set-buffer gnus-original-article-buffer)
8267         ;; Have the digest group inherit the main mail address of
8268         ;; the parent article.
8269         (when (setq to-address (or (gnus-fetch-field "reply-to")
8270                                    (gnus-fetch-field "from")))
8271           (setq params (append
8272                         (list (cons 'to-address
8273                                     (funcall gnus-decode-encoded-word-function
8274                                              to-address))))))
8275         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8276         (insert-buffer-substring gnus-original-article-buffer)
8277         ;; Remove lines that may lead nndoc to misinterpret the
8278         ;; document type.
8279         (narrow-to-region
8280          (goto-char (point-min))
8281          (or (search-forward "\n\n" nil t) (point)))
8282         (goto-char (point-min))
8283         (delete-matching-lines "^Path:\\|^From ")
8284         (widen))
8285       (unwind-protect
8286           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8287                     (gnus-newsgroup-ephemeral-ignored-charsets
8288                      gnus-newsgroup-ignored-charsets))
8289                 (gnus-group-read-ephemeral-group
8290                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8291                               (nndoc-article-type
8292                                ,(if force 'mbox 'guess)))
8293                  t nil nil nil
8294                  `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8295                                                         "ADAPT")))))
8296               ;; Make all postings to this group go to the parent group.
8297               (nconc (gnus-info-params (gnus-get-info name))
8298                      params)
8299             ;; Couldn't select this doc group.
8300             (switch-to-buffer buf)
8301             (gnus-set-global-variables)
8302             (gnus-configure-windows 'summary)
8303             (gnus-message 3 "Article couldn't be entered?"))
8304         (kill-buffer dig)))))
8305
8306 (defun gnus-summary-read-document (n)
8307   "Open a new group based on the current article(s).
8308 This will allow you to read digests and other similar
8309 documents as newsgroups.
8310 Obeys the standard process/prefix convention."
8311   (interactive "P")
8312   (let* ((articles (gnus-summary-work-articles n))
8313          (ogroup gnus-newsgroup-name)
8314          (params (append (gnus-info-params (gnus-get-info ogroup))
8315                          (list (cons 'to-group ogroup))))
8316          article group egroup groups vgroup)
8317     (while (setq article (pop articles))
8318       (setq group (format "%s-%d" gnus-newsgroup-name article))
8319       (gnus-summary-remove-process-mark article)
8320       (when (gnus-summary-display-article article)
8321         (save-excursion
8322           (with-temp-buffer
8323             (insert-buffer-substring gnus-original-article-buffer)
8324             ;; Remove some headers that may lead nndoc to make
8325             ;; the wrong guess.
8326             (message-narrow-to-head)
8327             (goto-char (point-min))
8328             (delete-matching-lines "^Path:\\|^From ")
8329             (widen)
8330             (if (setq egroup
8331                       (gnus-group-read-ephemeral-group
8332                        group `(nndoc ,group (nndoc-address ,(current-buffer))
8333                                      (nndoc-article-type guess))
8334                        t nil t))
8335                 (progn
8336             ;; Make all postings to this group go to the parent group.
8337                   (nconc (gnus-info-params (gnus-get-info egroup))
8338                          params)
8339                   (push egroup groups))
8340               ;; Couldn't select this doc group.
8341               (gnus-error 3 "Article couldn't be entered"))))))
8342     ;; Now we have selected all the documents.
8343     (cond
8344      ((not groups)
8345       (error "None of the articles could be interpreted as documents"))
8346      ((gnus-group-read-ephemeral-group
8347        (setq vgroup (format
8348                      "nnvirtual:%s-%s" gnus-newsgroup-name
8349                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
8350        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
8351        t
8352        (cons (current-buffer) 'summary)))
8353      (t
8354       (error "Couldn't select virtual nndoc group")))))
8355
8356 (defun gnus-summary-isearch-article (&optional regexp-p)
8357   "Do incremental search forward on the current article.
8358 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
8359   (interactive "P")
8360   (gnus-summary-select-article)
8361   (gnus-configure-windows 'article)
8362   (gnus-eval-in-buffer-window gnus-article-buffer
8363     (save-restriction
8364       (widen)
8365       (isearch-forward regexp-p))))
8366
8367 (defun gnus-summary-search-article-forward (regexp &optional backward)
8368   "Search for an article containing REGEXP forward.
8369 If BACKWARD, search backward instead."
8370   (interactive
8371    (list (read-string
8372           (format "Search article %s (regexp%s): "
8373                   (if current-prefix-arg "backward" "forward")
8374                   (if gnus-last-search-regexp
8375                       (concat ", default " gnus-last-search-regexp)
8376                     "")))
8377          current-prefix-arg))
8378   (if (string-equal regexp "")
8379       (setq regexp (or gnus-last-search-regexp ""))
8380     (setq gnus-last-search-regexp regexp)
8381     (setq gnus-article-before-search gnus-current-article))
8382   ;; Intentionally set gnus-last-article.
8383   (setq gnus-last-article gnus-article-before-search)
8384   (let ((gnus-last-article gnus-last-article))
8385     (if (gnus-summary-search-article regexp backward)
8386         (gnus-summary-show-thread)
8387       (error "Search failed: \"%s\"" regexp))))
8388
8389 (defun gnus-summary-search-article-backward (regexp)
8390   "Search for an article containing REGEXP backward."
8391   (interactive
8392    (list (read-string
8393           (format "Search article backward (regexp%s): "
8394                   (if gnus-last-search-regexp
8395                       (concat ", default " gnus-last-search-regexp)
8396                     "")))))
8397   (gnus-summary-search-article-forward regexp 'backward))
8398
8399 (defun gnus-summary-search-article (regexp &optional backward)
8400   "Search for an article containing REGEXP.
8401 Optional argument BACKWARD means do search for backward.
8402 `gnus-select-article-hook' is not called during the search."
8403   ;; We have to require this here to make sure that the following
8404   ;; dynamic binding isn't shadowed by autoloading.
8405   (require 'gnus-async)
8406   (require 'gnus-art)
8407   (let ((gnus-select-article-hook nil)  ;Disable hook.
8408         (gnus-article-prepare-hook nil)
8409         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
8410         (gnus-use-article-prefetch nil)
8411         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
8412         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
8413         (gnus-visual nil)
8414         (gnus-keep-backlog nil)
8415         (gnus-break-pages nil)
8416         (gnus-summary-display-arrow nil)
8417         (gnus-updated-mode-lines nil)
8418         (gnus-auto-center-summary nil)
8419         (sum (current-buffer))
8420         (gnus-display-mime-function nil)
8421         (found nil)
8422         point)
8423     (gnus-save-hidden-threads
8424       (gnus-summary-select-article)
8425       (set-buffer gnus-article-buffer)
8426       (goto-char (window-point (get-buffer-window (current-buffer))))
8427       (when backward
8428         (forward-line -1))
8429       (while (not found)
8430         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
8431         (if (if backward
8432                 (re-search-backward regexp nil t)
8433               (re-search-forward regexp nil t))
8434             ;; We found the regexp.
8435             (progn
8436               (setq found 'found)
8437               (beginning-of-line)
8438               (set-window-start
8439                (get-buffer-window (current-buffer))
8440                (point))
8441               (forward-line 1)
8442               (set-window-point
8443                (get-buffer-window (current-buffer))
8444                (point))
8445               (set-buffer sum)
8446               (setq point (point)))
8447           ;; We didn't find it, so we go to the next article.
8448           (set-buffer sum)
8449           (setq found 'not)
8450           (while (eq found 'not)
8451             (if (not (if backward (gnus-summary-find-prev)
8452                        (gnus-summary-find-next)))
8453                 ;; No more articles.
8454                 (setq found t)
8455               ;; Select the next article and adjust point.
8456               (unless (gnus-summary-article-sparse-p
8457                        (gnus-summary-article-number))
8458                 (setq found nil)
8459                 (gnus-summary-select-article)
8460                 (set-buffer gnus-article-buffer)
8461                 (widen)
8462                 (goto-char (if backward (point-max) (point-min))))))))
8463       (gnus-message 7 ""))
8464     ;; Return whether we found the regexp.
8465     (when (eq found 'found)
8466       (goto-char point)
8467       (gnus-summary-show-thread)
8468       (gnus-summary-goto-subject gnus-current-article)
8469       (gnus-summary-position-point)
8470       t)))
8471
8472 (defun gnus-find-matching-articles (header regexp)
8473   "Return a list of all articles that match REGEXP on HEADER.
8474 This search includes all articles in the current group that Gnus has
8475 fetched headers for, whether they are displayed or not."
8476   (let ((articles nil)
8477         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
8478         (case-fold-search t))
8479     (dolist (header gnus-newsgroup-headers)
8480       (when (string-match regexp (funcall func header))
8481         (push (mail-header-number header) articles)))
8482     (nreverse articles)))
8483
8484 (defun gnus-summary-find-matching (header regexp &optional backward unread
8485                                           not-case-fold not-matching)
8486   "Return a list of all articles that match REGEXP on HEADER.
8487 The search stars on the current article and goes forwards unless
8488 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
8489 If UNREAD is non-nil, only unread articles will
8490 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
8491 in the comparisons. If NOT-MATCHING, return a list of all articles that
8492 not match REGEXP on HEADER."
8493   (let ((case-fold-search (not not-case-fold))
8494         articles d func)
8495     (if (consp header)
8496         (if (eq (car header) 'extra)
8497             (setq func
8498                   `(lambda (h)
8499                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
8500                          "")))
8501           (error "%s is an invalid header" header))
8502       (unless (fboundp (intern (concat "mail-header-" header)))
8503         (error "%s is not a valid header" header))
8504       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
8505     (dolist (d (if (eq backward 'all)
8506                    gnus-newsgroup-data
8507                  (gnus-data-find-list
8508                   (gnus-summary-article-number)
8509                   (gnus-data-list backward))))
8510       (when (and (or (not unread)       ; We want all articles...
8511                      (gnus-data-unread-p d)) ; Or just unreads.
8512                  (vectorp (gnus-data-header d)) ; It's not a pseudo.
8513                  (if not-matching
8514                      (not (string-match
8515                            regexp
8516                            (funcall func (gnus-data-header d))))
8517                    (string-match regexp
8518                                  (funcall func (gnus-data-header d)))))
8519         (push (gnus-data-number d) articles))) ; Success!
8520     (nreverse articles)))
8521
8522 (defun gnus-summary-execute-command (header regexp command &optional backward)
8523   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
8524 If HEADER is an empty string (or nil), the match is done on the entire
8525 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
8526   (interactive
8527    (list (let ((completion-ignore-case t))
8528            (completing-read
8529             "Header name: "
8530             (mapcar (lambda (header) (list (format "%s" header)))
8531                     (append
8532                      '("Number" "Subject" "From" "Lines" "Date"
8533                        "Message-ID" "Xref" "References" "Body")
8534                      gnus-extra-headers))
8535             nil 'require-match))
8536          (read-string "Regexp: ")
8537          (read-key-sequence "Command: ")
8538          current-prefix-arg))
8539   (when (equal header "Body")
8540     (setq header ""))
8541   ;; Hidden thread subtrees must be searched as well.
8542   (gnus-summary-show-all-threads)
8543   ;; We don't want to change current point nor window configuration.
8544   (save-excursion
8545     (save-window-excursion
8546       (let (gnus-visual
8547             gnus-treat-strip-trailing-blank-lines
8548             gnus-treat-strip-leading-blank-lines
8549             gnus-treat-strip-multiple-blank-lines
8550             gnus-treat-hide-boring-headers
8551             gnus-treat-fold-newsgroups
8552             gnus-article-prepare-hook)
8553         (gnus-message 6 "Executing %s..." (key-description command))
8554         ;; We'd like to execute COMMAND interactively so as to give arguments.
8555         (gnus-execute header regexp
8556                       `(call-interactively ',(key-binding command))
8557                       backward)
8558         (gnus-message 6 "Executing %s...done" (key-description command))))))
8559
8560 (defun gnus-summary-beginning-of-article ()
8561   "Scroll the article back to the beginning."
8562   (interactive)
8563   (gnus-summary-select-article)
8564   (gnus-configure-windows 'article)
8565   (gnus-eval-in-buffer-window gnus-article-buffer
8566     (widen)
8567     (goto-char (point-min))
8568     (when gnus-break-pages
8569       (gnus-narrow-to-page))))
8570
8571 (defun gnus-summary-end-of-article ()
8572   "Scroll to the end of the article."
8573   (interactive)
8574   (gnus-summary-select-article)
8575   (gnus-configure-windows 'article)
8576   (gnus-eval-in-buffer-window gnus-article-buffer
8577     (widen)
8578     (goto-char (point-max))
8579     (recenter -3)
8580     (when gnus-break-pages
8581       (when (re-search-backward page-delimiter nil t)
8582         (narrow-to-region (match-end 0) (point-max)))
8583       (gnus-narrow-to-page))))
8584
8585 (defun gnus-summary-print-truncate-and-quote (string &optional len)
8586   "Truncate to LEN and quote all \"(\"'s in STRING."
8587   (gnus-replace-in-string (if (and len (> (length string) len))
8588                               (substring string 0 len)
8589                             string)
8590                           "[()]" "\\\\\\&"))
8591
8592 (defun gnus-summary-print-article (&optional filename n)
8593   "Generate and print a PostScript image of the process-marked (mail) articles.
8594
8595 If used interactively, print the current article if none are
8596 process-marked.  With prefix arg, prompt the user for the name of the
8597 file to save in.
8598
8599 When used from Lisp, accept two optional args FILENAME and N.  N means
8600 to print the next N articles.  If N is negative, print the N previous
8601 articles.  If N is nil and articles have been marked with the process
8602 mark, print these instead.
8603
8604 If the optional first argument FILENAME is nil, send the image to the
8605 printer.  If FILENAME is a string, save the PostScript image in a file with
8606 that name.  If FILENAME is a number, prompt the user for the name of the file
8607 to save in."
8608   (interactive (list (ps-print-preprint current-prefix-arg)))
8609   (dolist (article (gnus-summary-work-articles n))
8610     (gnus-summary-select-article nil nil 'pseudo article)
8611     (gnus-eval-in-buffer-window gnus-article-buffer
8612       (gnus-print-buffer))
8613     (gnus-summary-remove-process-mark article))
8614   (ps-despool filename))
8615
8616 (defun gnus-print-buffer ()
8617   (let ((buffer (generate-new-buffer " *print*")))
8618     (unwind-protect
8619         (progn
8620           (copy-to-buffer buffer (point-min) (point-max))
8621           (set-buffer buffer)
8622           (gnus-remove-text-with-property 'gnus-decoration)
8623           (when (gnus-visual-p 'article-highlight 'highlight)
8624             ;; Copy-to-buffer doesn't copy overlay.  So redo
8625             ;; highlight.
8626             (let ((gnus-article-buffer buffer))
8627               (gnus-article-highlight-citation t)
8628               (gnus-article-highlight-signature)
8629               (gnus-article-emphasize)
8630               (gnus-article-delete-invisible-text)))
8631           (let ((ps-left-header
8632                  (list
8633                   (concat "("
8634                           (gnus-summary-print-truncate-and-quote
8635                            (mail-header-subject gnus-current-headers)
8636                            66) ")")
8637                   (concat "("
8638                           (gnus-summary-print-truncate-and-quote
8639                            (mail-header-from gnus-current-headers)
8640                            45) ")")))
8641                 (ps-right-header
8642                  (list
8643                   "/pagenumberstring load"
8644                   (concat "("
8645                           (mail-header-date gnus-current-headers) ")"))))
8646             (gnus-run-hooks 'gnus-ps-print-hook)
8647             (save-excursion
8648               (if window-system
8649                   (ps-spool-buffer-with-faces)
8650                 (ps-spool-buffer)))))
8651       (kill-buffer buffer))))
8652
8653 (defun gnus-summary-show-article (&optional arg)
8654   "Force redisplaying of the current article.
8655 If ARG (the prefix) is a number, show the article with the charset
8656 defined in `gnus-summary-show-article-charset-alist', or the charset
8657 input.
8658 If ARG (the prefix) is non-nil and not a number, show the raw article
8659 without any article massaging functions being run.  Normally, the key
8660 strokes are `C-u g'."
8661   (interactive "P")
8662   (cond
8663    ((numberp arg)
8664     (gnus-summary-show-article t)
8665     (let ((gnus-newsgroup-charset
8666            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
8667                (mm-read-coding-system
8668                 "View as charset: " ;; actually it is coding system.
8669                 (save-excursion
8670                   (set-buffer gnus-article-buffer)
8671                   (mm-detect-coding-region (point) (point-max))))))
8672           (gnus-newsgroup-ignored-charsets 'gnus-all))
8673       (gnus-summary-select-article nil 'force)
8674       (let ((deps gnus-newsgroup-dependencies)
8675             head header lines)
8676         (save-excursion
8677           (set-buffer gnus-original-article-buffer)
8678           (save-restriction
8679             (message-narrow-to-head)
8680             (setq head (buffer-string))
8681             (goto-char (point-min))
8682             (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
8683               (goto-char (point-max))
8684               (widen)
8685               (setq lines (1- (count-lines (point) (point-max))))))
8686           (with-temp-buffer
8687             (insert (format "211 %d Article retrieved.\n"
8688                             (cdr gnus-article-current)))
8689             (insert head)
8690             (if lines (insert (format "Lines: %d\n" lines)))
8691             (insert ".\n")
8692             (let ((nntp-server-buffer (current-buffer)))
8693               (setq header (car (gnus-get-newsgroup-headers deps t))))))
8694         (gnus-data-set-header
8695          (gnus-data-find (cdr gnus-article-current))
8696          header)
8697         (gnus-summary-update-article-line
8698          (cdr gnus-article-current) header)
8699         (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
8700           (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
8701    ((not arg)
8702     ;; Select the article the normal way.
8703     (gnus-summary-select-article nil 'force))
8704    (t
8705     ;; We have to require this here to make sure that the following
8706     ;; dynamic binding isn't shadowed by autoloading.
8707     (require 'gnus-async)
8708     (require 'gnus-art)
8709     ;; Bind the article treatment functions to nil.
8710     (let ((gnus-have-all-headers t)
8711           gnus-article-prepare-hook
8712           gnus-article-decode-hook
8713           gnus-display-mime-function
8714           gnus-break-pages)
8715       ;; Destroy any MIME parts.
8716       (when (gnus-buffer-live-p gnus-article-buffer)
8717         (save-excursion
8718           (set-buffer gnus-article-buffer)
8719           (mm-destroy-parts gnus-article-mime-handles)
8720           ;; Set it to nil for safety reason.
8721           (setq gnus-article-mime-handle-alist nil)
8722           (setq gnus-article-mime-handles nil)))
8723       (gnus-summary-select-article nil 'force))))
8724   (gnus-summary-goto-subject gnus-current-article)
8725   (gnus-summary-position-point))
8726
8727 (defun gnus-summary-show-raw-article ()
8728   "Show the raw article without any article massaging functions being run."
8729   (interactive)
8730   (gnus-summary-show-article t))
8731
8732 (defun gnus-summary-verbose-headers (&optional arg)
8733   "Toggle permanent full header display.
8734 If ARG is a positive number, turn header display on.
8735 If ARG is a negative number, turn header display off."
8736   (interactive "P")
8737   (setq gnus-show-all-headers
8738         (cond ((or (not (numberp arg))
8739                    (zerop arg))
8740                (not gnus-show-all-headers))
8741               ((natnump arg)
8742                t)))
8743   (gnus-summary-show-article))
8744
8745 (defun gnus-summary-toggle-header (&optional arg)
8746   "Show the headers if they are hidden, or hide them if they are shown.
8747 If ARG is a positive number, show the entire header.
8748 If ARG is a negative number, hide the unwanted header lines."
8749   (interactive "P")
8750   (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
8751                      (get-buffer-window gnus-article-buffer t))))
8752     (with-current-buffer gnus-article-buffer
8753       (widen)
8754       (article-narrow-to-head)
8755       (let* ((buffer-read-only nil)
8756              (inhibit-point-motion-hooks t)
8757              (hidden (if (numberp arg)
8758                          (>= arg 0)
8759                        (gnus-article-hidden-text-p 'headers)))
8760              s e)
8761         (delete-region (point-min) (point-max))
8762         (with-current-buffer gnus-original-article-buffer
8763           (goto-char (setq s (point-min)))
8764           (setq e (if (search-forward "\n\n" nil t)
8765                       (1- (point))
8766                     (point-max))))
8767         (insert-buffer-substring gnus-original-article-buffer s e)
8768         (run-hooks 'gnus-article-decode-hook)
8769         (if hidden
8770             (let ((gnus-treat-hide-headers nil)
8771                   (gnus-treat-hide-boring-headers nil))
8772               (gnus-delete-wash-type 'headers)
8773               (gnus-treat-article 'head))
8774           (gnus-treat-article 'head))
8775         (widen)
8776         (if window
8777             (set-window-start window (goto-char (point-min))))
8778         (if gnus-break-pages
8779             (gnus-narrow-to-page)
8780           (when (gnus-visual-p 'page-marker)
8781             (let ((buffer-read-only nil))
8782               (gnus-remove-text-with-property 'gnus-prev)
8783               (gnus-remove-text-with-property 'gnus-next))))
8784         (gnus-set-mode-line 'article)))))
8785
8786 (defun gnus-summary-show-all-headers ()
8787   "Make all header lines visible."
8788   (interactive)
8789   (gnus-summary-toggle-header 1))
8790
8791 (defun gnus-summary-caesar-message (&optional arg)
8792   "Caesar rotate the current article by 13.
8793 The numerical prefix specifies how many places to rotate each letter
8794 forward."
8795   (interactive "P")
8796   (gnus-summary-select-article)
8797   (let ((mail-header-separator ""))
8798     (gnus-eval-in-buffer-window gnus-article-buffer
8799       (save-restriction
8800         (widen)
8801         (let ((start (window-start))
8802               buffer-read-only)
8803           (message-caesar-buffer-body arg)
8804           (set-window-start (get-buffer-window (current-buffer)) start))))))
8805
8806 (autoload 'unmorse-region "morse"
8807   "Convert morse coded text in region to ordinary ASCII text."
8808   t)
8809
8810 (defun gnus-summary-morse-message (&optional arg)
8811   "Morse decode the current article."
8812   (interactive "P")
8813   (gnus-summary-select-article)
8814   (let ((mail-header-separator ""))
8815     (gnus-eval-in-buffer-window gnus-article-buffer
8816       (save-excursion
8817         (save-restriction
8818           (widen)
8819           (let ((pos (window-start))
8820                 buffer-read-only)
8821             (goto-char (point-min))
8822             (when (message-goto-body)
8823               (gnus-narrow-to-body))
8824             (goto-char (point-min))
8825             (while (re-search-forward "·" (point-max) t)
8826               (replace-match "."))
8827             (unmorse-region (point-min) (point-max))
8828             (widen)
8829             (set-window-start (get-buffer-window (current-buffer)) pos)))))))
8830
8831 (defun gnus-summary-stop-page-breaking ()
8832   "Stop page breaking in the current article."
8833   (interactive)
8834   (gnus-summary-select-article)
8835   (gnus-eval-in-buffer-window gnus-article-buffer
8836     (widen)
8837     (when (gnus-visual-p 'page-marker)
8838       (let ((buffer-read-only nil))
8839         (gnus-remove-text-with-property 'gnus-prev)
8840         (gnus-remove-text-with-property 'gnus-next))
8841       (setq gnus-page-broken nil))))
8842
8843 (defun gnus-summary-move-article (&optional n to-newsgroup
8844                                             select-method action)
8845   "Move the current article to a different newsgroup.
8846 If N is a positive number, move the N next articles.
8847 If N is a negative number, move the N previous articles.
8848 If N is nil and any articles have been marked with the process mark,
8849 move those articles instead.
8850 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
8851 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
8852 re-spool using this method.
8853
8854 When called interactively with TO-NEWSGROUP being nil, the value of
8855 the variable `gnus-move-split-methods' is used for finding a default
8856 for the target newsgroup.
8857
8858 For this function to work, both the current newsgroup and the
8859 newsgroup that you want to move to have to support the `request-move'
8860 and `request-accept' functions.
8861
8862 ACTION can be either `move' (the default), `crosspost' or `copy'."
8863   (interactive "P")
8864   (unless action
8865     (setq action 'move))
8866   ;; Check whether the source group supports the required functions.
8867   (cond ((and (eq action 'move)
8868               (not (gnus-check-backend-function
8869                     'request-move-article gnus-newsgroup-name)))
8870          (error "The current group does not support article moving"))
8871         ((and (eq action 'crosspost)
8872               (not (gnus-check-backend-function
8873                     'request-replace-article gnus-newsgroup-name)))
8874          (error "The current group does not support article editing")))
8875   (let ((articles (gnus-summary-work-articles n))
8876         (prefix (if (gnus-check-backend-function
8877                      'request-move-article gnus-newsgroup-name)
8878                     (gnus-group-real-prefix gnus-newsgroup-name)
8879                   ""))
8880         (names '((move "Move" "Moving")
8881                  (copy "Copy" "Copying")
8882                  (crosspost "Crosspost" "Crossposting")))
8883         (copy-buf (save-excursion
8884                     (nnheader-set-temp-buffer " *copy article*")))
8885         art-group to-method new-xref article to-groups)
8886     (unless (assq action names)
8887       (error "Unknown action %s" action))
8888     ;; Read the newsgroup name.
8889     (when (and (not to-newsgroup)
8890                (not select-method))
8891       (if (and gnus-move-split-methods
8892                (not
8893                 (and (memq gnus-current-article articles)
8894                      (gnus-buffer-live-p gnus-original-article-buffer))))
8895           ;; When `gnus-move-split-methods' is non-nil, we have to
8896           ;; select an article to give `gnus-read-move-group-name' an
8897           ;; opportunity to suggest an appropriate default.  However,
8898           ;; we needn't render or mark the article.
8899           (let ((gnus-display-mime-function nil)
8900                 (gnus-article-prepare-hook nil)
8901                 (gnus-mark-article-hook nil))
8902             (gnus-summary-select-article nil nil nil (car articles))))
8903       (setq to-newsgroup
8904             (gnus-read-move-group-name
8905              (cadr (assq action names))
8906              (symbol-value (intern (format "gnus-current-%s-group" action)))
8907              articles prefix))
8908       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
8909     (setq to-method (or select-method
8910                         (gnus-server-to-method
8911                          (gnus-group-method to-newsgroup))))
8912     ;; Check the method we are to move this article to...
8913     (unless (gnus-check-backend-function
8914              'request-accept-article (car to-method))
8915       (error "%s does not support article copying" (car to-method)))
8916     (unless (gnus-check-server to-method)
8917       (error "Can't open server %s" (car to-method)))
8918     (gnus-message 6 "%s to %s: %s..."
8919                   (caddr (assq action names))
8920                   (or (car select-method) to-newsgroup) articles)
8921     (while articles
8922       (setq article (pop articles))
8923       (setq
8924        art-group
8925        (cond
8926         ;; Move the article.
8927         ((eq action 'move)
8928          ;; Remove this article from future suppression.
8929          (gnus-dup-unsuppress-article article)
8930          (gnus-request-move-article
8931           article                       ; Article to move
8932           gnus-newsgroup-name           ; From newsgroup
8933           (nth 1 (gnus-find-method-for-group
8934                   gnus-newsgroup-name)) ; Server
8935           (list 'gnus-request-accept-article
8936                 to-newsgroup (list 'quote select-method)
8937                 (not articles) t)       ; Accept form
8938           (not articles)))              ; Only save nov last time
8939         ;; Copy the article.
8940         ((eq action 'copy)
8941          (save-excursion
8942            (set-buffer copy-buf)
8943            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
8944              (gnus-request-accept-article
8945               to-newsgroup select-method (not articles) t))))
8946         ;; Crosspost the article.
8947         ((eq action 'crosspost)
8948          (let ((xref (message-tokenize-header
8949                       (mail-header-xref (gnus-summary-article-header article))
8950                       " ")))
8951            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
8952                                   ":" (number-to-string article)))
8953            (unless xref
8954              (setq xref (list (system-name))))
8955            (setq new-xref
8956                  (concat
8957                   (mapconcat 'identity
8958                              (delete "Xref:" (delete new-xref xref))
8959                              " ")
8960                   " " new-xref))
8961            (save-excursion
8962              (set-buffer copy-buf)
8963              ;; First put the article in the destination group.
8964              (gnus-request-article-this-buffer article gnus-newsgroup-name)
8965              (when (consp (setq art-group
8966                                 (gnus-request-accept-article
8967                                  to-newsgroup select-method (not articles))))
8968                (setq new-xref (concat new-xref " " (car art-group)
8969                                       ":"
8970                                       (number-to-string (cdr art-group))))
8971                ;; Now we have the new Xrefs header, so we insert
8972                ;; it and replace the new article.
8973                (nnheader-replace-header "Xref" new-xref)
8974                (gnus-request-replace-article
8975                 (cdr art-group) to-newsgroup (current-buffer))
8976                art-group))))))
8977       (cond
8978        ((not art-group)
8979         (gnus-message 1 "Couldn't %s article %s: %s"
8980                       (cadr (assq action names)) article
8981                       (nnheader-get-report (car to-method))))
8982        ((eq art-group 'junk)
8983         (when (eq action 'move)
8984           (gnus-summary-mark-article article gnus-canceled-mark)
8985           (gnus-message 4 "Deleted article %s" article)
8986           ;; run the delete hook
8987           (run-hook-with-args 'gnus-summary-article-delete-hook
8988                               action
8989                               (gnus-data-header
8990                                (assoc article (gnus-data-list nil)))
8991                               gnus-newsgroup-name nil
8992                               select-method)))
8993        (t
8994         (let* ((pto-group (gnus-group-prefixed-name
8995                            (car art-group) to-method))
8996                (info (gnus-get-info pto-group))
8997                (to-group (gnus-info-group info))
8998                to-marks)
8999           ;; Update the group that has been moved to.
9000           (when (and info
9001                      (memq action '(move copy)))
9002             (unless (member to-group to-groups)
9003               (push to-group to-groups))
9004
9005             (unless (memq article gnus-newsgroup-unreads)
9006               (push 'read to-marks)
9007               (gnus-info-set-read
9008                info (gnus-add-to-range (gnus-info-read info)
9009                                        (list (cdr art-group)))))
9010
9011             ;; See whether the article is to be put in the cache.
9012             (let ((marks (if (gnus-group-auto-expirable-p to-group)
9013                              gnus-article-mark-lists
9014                            (delete '(expirable . expire)
9015                                    (copy-sequence gnus-article-mark-lists))))
9016                   (to-article (cdr art-group)))
9017
9018               ;; Enter the article into the cache in the new group,
9019               ;; if that is required.
9020               (when gnus-use-cache
9021                 (gnus-cache-possibly-enter-article
9022                  to-group to-article
9023                  (memq article gnus-newsgroup-marked)
9024                  (memq article gnus-newsgroup-dormant)
9025                  (memq article gnus-newsgroup-unreads)))
9026
9027               (when gnus-preserve-marks
9028                 ;; Copy any marks over to the new group.
9029                 (when (and (equal to-group gnus-newsgroup-name)
9030                            (not (memq article gnus-newsgroup-unreads)))
9031                   ;; Mark this article as read in this group.
9032                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
9033                   (setcdr (gnus-active to-group) to-article)
9034                   (setcdr gnus-newsgroup-active to-article))
9035
9036                 (while marks
9037                   (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
9038                     (when (memq article (symbol-value
9039                                          (intern (format "gnus-newsgroup-%s"
9040                                                          (caar marks)))))
9041                       (push (cdar marks) to-marks)
9042                       ;; If the other group is the same as this group,
9043                       ;; then we have to add the mark to the list.
9044                       (when (equal to-group gnus-newsgroup-name)
9045                         (set (intern (format "gnus-newsgroup-%s" (caar marks)))
9046                              (cons to-article
9047                                    (symbol-value
9048                                     (intern (format "gnus-newsgroup-%s"
9049                                                     (caar marks)))))))
9050                       ;; Copy the marks to other group.
9051                       (gnus-add-marked-articles
9052                        to-group (cdar marks) (list to-article) info)))
9053                   (setq marks (cdr marks)))
9054
9055                 (gnus-request-set-mark
9056                  to-group (list (list (list to-article) 'add to-marks))))
9057
9058               (gnus-dribble-enter
9059                (concat "(gnus-group-set-info '"
9060                        (gnus-prin1-to-string (gnus-get-info to-group))
9061                        ")"))))
9062
9063           ;; Update the Xref header in this article to point to
9064           ;; the new crossposted article we have just created.
9065           (when (eq action 'crosspost)
9066             (save-excursion
9067               (set-buffer copy-buf)
9068               (gnus-request-article-this-buffer article gnus-newsgroup-name)
9069               (nnheader-replace-header "Xref" new-xref)
9070               (gnus-request-replace-article
9071                article gnus-newsgroup-name (current-buffer))))
9072
9073           ;; run the move/copy/crosspost/respool hook
9074           (run-hook-with-args 'gnus-summary-article-move-hook
9075                               action
9076                               (gnus-data-header
9077                                (assoc article (gnus-data-list nil)))
9078                               gnus-newsgroup-name
9079                               to-newsgroup
9080                               select-method))
9081
9082         ;;;!!!Why is this necessary?
9083         (set-buffer gnus-summary-buffer)
9084         
9085         (gnus-summary-goto-subject article)
9086         (when (eq action 'move)
9087           (gnus-summary-mark-article article gnus-canceled-mark))))
9088       (gnus-summary-remove-process-mark article))
9089     ;; Re-activate all groups that have been moved to.
9090     (save-excursion
9091       (set-buffer gnus-group-buffer)
9092       (let ((gnus-group-marked to-groups))
9093         (gnus-group-get-new-news-this-group nil t)))
9094
9095     (gnus-kill-buffer copy-buf)
9096     (gnus-summary-position-point)
9097     (gnus-set-mode-line 'summary)))
9098
9099 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9100   "Move the current article to a different newsgroup.
9101 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9102 When called interactively, if TO-NEWSGROUP is nil, use the value of
9103 the variable `gnus-move-split-methods' for finding a default target
9104 newsgroup.
9105 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9106 re-spool using this method."
9107   (interactive "P")
9108   (gnus-summary-move-article n to-newsgroup select-method 'copy))
9109
9110 (defun gnus-summary-crosspost-article (&optional n)
9111   "Crosspost the current article to some other group."
9112   (interactive "P")
9113   (gnus-summary-move-article n nil nil 'crosspost))
9114
9115 (defcustom gnus-summary-respool-default-method nil
9116   "Default method type for respooling an article.
9117 If nil, use to the current newsgroup method."
9118   :type 'symbol
9119   :group 'gnus-summary-mail)
9120
9121 (defcustom gnus-summary-display-while-building nil
9122   "If non-nil, show and update the summary buffer as it's being built.
9123 If the value is t, update the buffer after every line is inserted.  If
9124 the value is an integer (N), update the display every N lines."
9125   :group 'gnus-thread
9126   :type '(choice (const :tag "off" nil)
9127                  number
9128                  (const :tag "frequently" t)))
9129
9130 (defun gnus-summary-respool-article (&optional n method)
9131   "Respool the current article.
9132 The article will be squeezed through the mail spooling process again,
9133 which means that it will be put in some mail newsgroup or other
9134 depending on `nnmail-split-methods'.
9135 If N is a positive number, respool the N next articles.
9136 If N is a negative number, respool the N previous articles.
9137 If N is nil and any articles have been marked with the process mark,
9138 respool those articles instead.
9139
9140 Respooling can be done both from mail groups and \"real\" newsgroups.
9141 In the former case, the articles in question will be moved from the
9142 current group into whatever groups they are destined to.  In the
9143 latter case, they will be copied into the relevant groups."
9144   (interactive
9145    (list current-prefix-arg
9146          (let* ((methods (gnus-methods-using 'respool))
9147                 (methname
9148                  (symbol-name (or gnus-summary-respool-default-method
9149                                   (car (gnus-find-method-for-group
9150                                         gnus-newsgroup-name)))))
9151                 (method
9152                  (gnus-completing-read-with-default
9153                   methname "What backend do you want to use when respooling?"
9154                   methods nil t nil 'gnus-mail-method-history))
9155                 ms)
9156            (cond
9157             ((zerop (length (setq ms (gnus-servers-using-backend
9158                                       (intern method)))))
9159              (list (intern method) ""))
9160             ((= 1 (length ms))
9161              (car ms))
9162             (t
9163              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9164                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9165                            ms-alist))))))))
9166   (unless method
9167     (error "No method given for respooling"))
9168   (if (assoc (symbol-name
9169               (car (gnus-find-method-for-group gnus-newsgroup-name)))
9170              (gnus-methods-using 'respool))
9171       (gnus-summary-move-article n nil method)
9172     (gnus-summary-copy-article n nil method)))
9173
9174 (defun gnus-summary-import-article (file &optional edit)
9175   "Import an arbitrary file into a mail newsgroup."
9176   (interactive "fImport file: \nP")
9177   (let ((group gnus-newsgroup-name)
9178         (now (current-time))
9179         atts lines group-art)
9180     (unless (gnus-check-backend-function 'request-accept-article group)
9181       (error "%s does not support article importing" group))
9182     (or (file-readable-p file)
9183         (not (file-regular-p file))
9184         (error "Can't read %s" file))
9185     (save-excursion
9186       (set-buffer (gnus-get-buffer-create " *import file*"))
9187       (erase-buffer)
9188       (nnheader-insert-file-contents file)
9189       (goto-char (point-min))
9190       (if (nnheader-article-p)
9191           (save-restriction
9192             (goto-char (point-min))
9193             (search-forward "\n\n" nil t)
9194             (narrow-to-region (point-min) (1- (point)))
9195             (goto-char (point-min))
9196             (unless (re-search-forward "^date:" nil t)
9197               (goto-char (point-max))
9198               (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9199        ;; This doesn't look like an article, so we fudge some headers.
9200         (setq atts (file-attributes file)
9201               lines (count-lines (point-min) (point-max)))
9202         (insert "From: " (read-string "From: ") "\n"
9203                 "Subject: " (read-string "Subject: ") "\n"
9204                 "Date: " (message-make-date (nth 5 atts)) "\n"
9205                 "Message-ID: " (message-make-message-id) "\n"
9206                 "Lines: " (int-to-string lines) "\n"
9207                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9208       (setq group-art (gnus-request-accept-article group nil t))
9209       (kill-buffer (current-buffer)))
9210     (setq gnus-newsgroup-active (gnus-activate-group group))
9211     (forward-line 1)
9212     (gnus-summary-goto-article (cdr group-art) nil t)
9213     (when edit
9214       (gnus-summary-edit-article))))
9215
9216 (defun gnus-summary-create-article ()
9217   "Create an article in a mail newsgroup."
9218   (interactive)
9219   (let ((group gnus-newsgroup-name)
9220         (now (current-time))
9221         group-art)
9222     (unless (gnus-check-backend-function 'request-accept-article group)
9223       (error "%s does not support article importing" group))
9224     (save-excursion
9225       (set-buffer (gnus-get-buffer-create " *import file*"))
9226       (erase-buffer)
9227       (goto-char (point-min))
9228       ;; This doesn't look like an article, so we fudge some headers.
9229       (insert "From: " (read-string "From: ") "\n"
9230               "Subject: " (read-string "Subject: ") "\n"
9231               "Date: " (message-make-date now) "\n"
9232               "Message-ID: " (message-make-message-id) "\n")
9233       (setq group-art (gnus-request-accept-article group nil t))
9234       (kill-buffer (current-buffer)))
9235     (setq gnus-newsgroup-active (gnus-activate-group group))
9236     (forward-line 1)
9237     (gnus-summary-goto-article (cdr group-art) nil t)
9238     (gnus-summary-edit-article)))
9239
9240 (defun gnus-summary-article-posted-p ()
9241   "Say whether the current (mail) article is available from news as well.
9242 This will be the case if the article has both been mailed and posted."
9243   (interactive)
9244   (let ((id (mail-header-references (gnus-summary-article-header)))
9245         (gnus-override-method (car (gnus-refer-article-methods))))
9246     (if (gnus-request-head id "")
9247         (gnus-message 2 "The current message was found on %s"
9248                       gnus-override-method)
9249       (gnus-message 2 "The current message couldn't be found on %s"
9250                     gnus-override-method)
9251       nil)))
9252
9253 (defun gnus-summary-expire-articles (&optional now)
9254   "Expire all articles that are marked as expirable in the current group."
9255   (interactive)
9256   (when (and (not gnus-group-is-exiting-without-update-p)
9257              (gnus-check-backend-function
9258               'request-expire-articles gnus-newsgroup-name))
9259     ;; This backend supports expiry.
9260     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
9261            (expirable (if total
9262                           (progn
9263                             ;; We need to update the info for
9264                             ;; this group for `gnus-list-of-read-articles'
9265                             ;; to give us the right answer.
9266                             (gnus-run-hooks 'gnus-exit-group-hook)
9267                             (gnus-summary-update-info)
9268                             (gnus-list-of-read-articles gnus-newsgroup-name))
9269                         (setq gnus-newsgroup-expirable
9270                               (sort gnus-newsgroup-expirable '<))))
9271            (expiry-wait (if now 'immediate
9272                           (gnus-group-find-parameter
9273                            gnus-newsgroup-name 'expiry-wait)))
9274            (nnmail-expiry-target
9275             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
9276                 nnmail-expiry-target))
9277            es)
9278       (when expirable
9279         ;; There are expirable articles in this group, so we run them
9280         ;; through the expiry process.
9281         (gnus-message 6 "Expiring articles...")
9282         (unless (gnus-check-group gnus-newsgroup-name)
9283           (error "Can't open server for %s" gnus-newsgroup-name))
9284         ;; The list of articles that weren't expired is returned.
9285         (save-excursion
9286           (if expiry-wait
9287               (let ((nnmail-expiry-wait-function nil)
9288                     (nnmail-expiry-wait expiry-wait))
9289                 (setq es (gnus-request-expire-articles
9290                           expirable gnus-newsgroup-name)))
9291             (setq es (gnus-request-expire-articles
9292                       expirable gnus-newsgroup-name)))
9293           (unless total
9294             (setq gnus-newsgroup-expirable es))
9295           ;; We go through the old list of expirable, and mark all
9296           ;; really expired articles as nonexistent.
9297           (unless (eq es expirable) ;If nothing was expired, we don't mark.
9298             (let ((gnus-use-cache nil))
9299               (dolist (article expirable)
9300                 (when (and (not (memq article es))
9301                            (gnus-data-find article))
9302                   (gnus-summary-mark-article article gnus-canceled-mark)
9303                   (run-hook-with-args 'gnus-summary-article-expire-hook
9304                                       'delete
9305                                       (gnus-data-header
9306                                        (assoc article (gnus-data-list nil)))
9307                                       gnus-newsgroup-name
9308                                       nil
9309                                       nil))))))
9310         (gnus-message 6 "Expiring articles...done")))))
9311
9312 (defun gnus-summary-expire-articles-now ()
9313   "Expunge all expirable articles in the current group.
9314 This means that *all* articles that are marked as expirable will be
9315 deleted forever, right now."
9316   (interactive)
9317   (or gnus-expert-user
9318       (gnus-yes-or-no-p
9319        "Are you really, really, really sure you want to delete all these messages? ")
9320       (error "Phew!"))
9321   (gnus-summary-expire-articles t))
9322
9323 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
9324 (defun gnus-summary-delete-article (&optional n)
9325   "Delete the N next (mail) articles.
9326 This command actually deletes articles.  This is not a marking
9327 command.  The article will disappear forever from your life, never to
9328 return.
9329
9330 If N is negative, delete backwards.
9331 If N is nil and articles have been marked with the process mark,
9332 delete these instead.
9333
9334 If `gnus-novice-user' is non-nil you will be asked for
9335 confirmation before the articles are deleted."
9336   (interactive "P")
9337   (unless (gnus-check-backend-function 'request-expire-articles
9338                                        gnus-newsgroup-name)
9339     (error "The current newsgroup does not support article deletion"))
9340   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
9341     (error "Couldn't open server"))
9342   ;; Compute the list of articles to delete.
9343   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
9344         (nnmail-expiry-target 'delete)
9345         not-deleted)
9346     (if (and gnus-novice-user
9347              (not (gnus-yes-or-no-p
9348                    (format "Do you really want to delete %s forever? "
9349                            (if (> (length articles) 1)
9350                                (format "these %s articles" (length articles))
9351                              "this article")))))
9352         ()
9353       ;; Delete the articles.
9354       (setq not-deleted (gnus-request-expire-articles
9355                          articles gnus-newsgroup-name 'force))
9356       (while articles
9357         (gnus-summary-remove-process-mark (car articles))
9358         ;; The backend might not have been able to delete the article
9359         ;; after all.
9360         (unless (memq (car articles) not-deleted)
9361           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
9362         (let* ((article (car articles))
9363                (id (mail-header-id (gnus-data-header
9364                                     (assoc article (gnus-data-list nil))))))
9365           (run-hook-with-args 'gnus-summary-article-delete-hook
9366                               'delete id gnus-newsgroup-name nil
9367                               nil))
9368         (setq articles (cdr articles)))
9369       (when not-deleted
9370         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
9371     (gnus-summary-position-point)
9372     (gnus-set-mode-line 'summary)
9373     not-deleted))
9374
9375 (defun gnus-summary-edit-article (&optional arg)
9376   "Edit the current article.
9377 This will have permanent effect only in mail groups.
9378 If ARG is nil, edit the decoded articles.
9379 If ARG is 1, edit the raw articles.
9380 If ARG is 2, edit the raw articles even in read-only groups.
9381 If ARG is 3, edit the articles with the current handles.
9382 Otherwise, allow editing of articles even in read-only
9383 groups."
9384   (interactive "P")
9385   (let (force raw current-handles)
9386     (cond
9387      ((null arg))
9388      ((eq arg 1)
9389       (setq raw t))
9390      ((eq arg 2)
9391       (setq raw t
9392             force t))
9393      ((eq arg 3)
9394       (setq current-handles
9395             (and (gnus-buffer-live-p gnus-article-buffer)
9396                  (with-current-buffer gnus-article-buffer
9397                    (prog1
9398                        gnus-article-mime-handles
9399                      (setq gnus-article-mime-handles nil))))))
9400      (t
9401       (setq force t)))
9402     (when (and raw (not force)
9403                (member gnus-newsgroup-name '("nndraft:delayed"
9404                                              "nndraft:drafts"
9405                                              "nndraft:queue")))
9406       (error "Can't edit the raw article in group %s"
9407              gnus-newsgroup-name))
9408     (save-excursion
9409       (set-buffer gnus-summary-buffer)
9410       (let ((mail-parse-charset gnus-newsgroup-charset)
9411             (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
9412         (gnus-set-global-variables)
9413         (when (and (not force)
9414                    (gnus-group-read-only-p))
9415           (error "The current newsgroup does not support article editing"))
9416         (gnus-summary-show-article t)
9417         (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
9418           (with-current-buffer gnus-article-buffer
9419             (mm-enable-multibyte)))
9420         (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
9421             (setq raw t))
9422         (gnus-article-edit-article
9423          (if raw 'ignore
9424            `(lambda ()
9425               (let ((mbl mml-buffer-list))
9426                 (setq mml-buffer-list nil)
9427                 (mime-to-mml ,'current-handles)
9428                 (let ((mbl1 mml-buffer-list))
9429                   (setq mml-buffer-list mbl)
9430                   (set (make-local-variable 'mml-buffer-list) mbl1))
9431                 (gnus-make-local-hook 'kill-buffer-hook)
9432                 (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
9433          `(lambda (no-highlight)
9434             (let ((mail-parse-charset ',gnus-newsgroup-charset)
9435                   (message-options message-options)
9436                   (message-options-set-recipient)
9437                   (mail-parse-ignored-charsets
9438                    ',gnus-newsgroup-ignored-charsets))
9439               ,(if (not raw) '(progn
9440                                 (mml-to-mime)
9441                                 (mml-destroy-buffers)
9442                                 (remove-hook 'kill-buffer-hook
9443                                              'mml-destroy-buffers t)
9444                                 (kill-local-variable 'mml-buffer-list)))
9445               (gnus-summary-edit-article-done
9446                ,(or (mail-header-references gnus-current-headers) "")
9447                ,(gnus-group-read-only-p)
9448                ,gnus-summary-buffer no-highlight))))))))
9449
9450 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
9451
9452 (defun gnus-summary-edit-article-done (&optional references read-only buffer
9453                                                  no-highlight)
9454   "Make edits to the current article permanent."
9455   (interactive)
9456   (save-excursion
9457    ;; The buffer restriction contains the entire article if it exists.
9458     (when (article-goto-body)
9459       (let ((lines (count-lines (point) (point-max)))
9460             (length (- (point-max) (point)))
9461             (case-fold-search t)
9462             (body (copy-marker (point))))
9463         (goto-char (point-min))
9464         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
9465           (delete-region (match-beginning 1) (match-end 1))
9466           (insert (number-to-string length)))
9467         (goto-char (point-min))
9468         (when (re-search-forward
9469                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
9470           (delete-region (match-beginning 1) (match-end 1))
9471           (insert (number-to-string length)))
9472         (goto-char (point-min))
9473         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
9474           (delete-region (match-beginning 1) (match-end 1))
9475           (insert (number-to-string lines))))))
9476   ;; Replace the article.
9477   (let ((buf (current-buffer)))
9478     (with-temp-buffer
9479       (insert-buffer-substring buf)
9480
9481       (if (and (not read-only)
9482                (not (gnus-request-replace-article
9483                      (cdr gnus-article-current) (car gnus-article-current)
9484                      (current-buffer) t)))
9485           (error "Couldn't replace article")
9486         ;; Update the summary buffer.
9487         (if (and references
9488                  (equal (message-tokenize-header references " ")
9489                         (message-tokenize-header
9490                          (or (message-fetch-field "references") "") " ")))
9491             ;; We only have to update this line.
9492             (save-excursion
9493               (save-restriction
9494                 (message-narrow-to-head)
9495                 (let ((head (buffer-string))
9496                       header)
9497                   (with-temp-buffer
9498                     (insert (format "211 %d Article retrieved.\n"
9499                                     (cdr gnus-article-current)))
9500                     (insert head)
9501                     (insert ".\n")
9502                     (let ((nntp-server-buffer (current-buffer)))
9503                       (setq header (car (gnus-get-newsgroup-headers
9504                                          nil t))))
9505                     (save-excursion
9506                       (set-buffer gnus-summary-buffer)
9507                       (gnus-data-set-header
9508                        (gnus-data-find (cdr gnus-article-current))
9509                        header)
9510                       (gnus-summary-update-article-line
9511                        (cdr gnus-article-current) header)
9512                       (if (gnus-summary-goto-subject
9513                            (cdr gnus-article-current) nil t)
9514                           (gnus-summary-update-secondary-mark
9515                            (cdr gnus-article-current))))))))
9516           ;; Update threads.
9517           (set-buffer (or buffer gnus-summary-buffer))
9518           (gnus-summary-update-article (cdr gnus-article-current))
9519           (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9520               (gnus-summary-update-secondary-mark
9521                (cdr gnus-article-current))))
9522         ;; Prettify the article buffer again.
9523         (unless no-highlight
9524           (save-excursion
9525             (set-buffer gnus-article-buffer)
9526             ;;;!!! Fix this -- article should be rehighlighted.
9527             ;;;(gnus-run-hooks 'gnus-article-display-hook)
9528             (set-buffer gnus-original-article-buffer)
9529             (gnus-request-article
9530              (cdr gnus-article-current)
9531              (car gnus-article-current) (current-buffer))))
9532         ;; Prettify the summary buffer line.
9533         (when (gnus-visual-p 'summary-highlight 'highlight)
9534           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
9535
9536 (defun gnus-summary-edit-wash (key)
9537   "Perform editing command KEY in the article buffer."
9538   (interactive
9539    (list
9540     (progn
9541       (message "%s" (concat (this-command-keys) "- "))
9542       (read-char))))
9543   (message "")
9544   (gnus-summary-edit-article)
9545   (execute-kbd-macro (concat (this-command-keys) key))
9546   (gnus-article-edit-done))
9547
9548 ;;; Respooling
9549
9550 (defun gnus-summary-respool-query (&optional silent trace)
9551   "Query where the respool algorithm would put this article."
9552   (interactive)
9553   (let (gnus-mark-article-hook)
9554     (gnus-summary-select-article)
9555     (save-excursion
9556       (set-buffer gnus-original-article-buffer)
9557       (let ((groups (nnmail-article-group 'identity trace)))
9558         (unless silent
9559           (if groups
9560               (message "This message would go to %s"
9561                        (mapconcat 'car groups ", "))
9562             (message "This message would go to no groups"))
9563           groups)))))
9564
9565 (defun gnus-summary-respool-trace ()
9566   "Trace where the respool algorithm would put this article.
9567 Display a buffer showing all fancy splitting patterns which matched."
9568   (interactive)
9569   (gnus-summary-respool-query nil t))
9570
9571 ;; Summary marking commands.
9572
9573 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
9574   "Mark articles which has the same subject as read, and then select the next.
9575 If UNMARK is positive, remove any kind of mark.
9576 If UNMARK is negative, tick articles."
9577   (interactive "P")
9578   (when unmark
9579     (setq unmark (prefix-numeric-value unmark)))
9580   (let ((count
9581          (gnus-summary-mark-same-subject
9582           (gnus-summary-article-subject) unmark)))
9583     ;; Select next unread article.  If auto-select-same mode, should
9584     ;; select the first unread article.
9585     (gnus-summary-next-article t (and gnus-auto-select-same
9586                                       (gnus-summary-article-subject)))
9587     (gnus-message 7 "%d article%s marked as %s"
9588                   count (if (= count 1) " is" "s are")
9589                   (if unmark "unread" "read"))))
9590
9591 (defun gnus-summary-kill-same-subject (&optional unmark)
9592   "Mark articles which has the same subject as read.
9593 If UNMARK is positive, remove any kind of mark.
9594 If UNMARK is negative, tick articles."
9595   (interactive "P")
9596   (when unmark
9597     (setq unmark (prefix-numeric-value unmark)))
9598   (let ((count
9599          (gnus-summary-mark-same-subject
9600           (gnus-summary-article-subject) unmark)))
9601     ;; If marked as read, go to next unread subject.
9602     (when (null unmark)
9603       ;; Go to next unread subject.
9604       (gnus-summary-next-subject 1 t))
9605     (gnus-message 7 "%d articles are marked as %s"
9606                   count (if unmark "unread" "read"))))
9607
9608 (defun gnus-summary-mark-same-subject (subject &optional unmark)
9609   "Mark articles with same SUBJECT as read, and return marked number.
9610 If optional argument UNMARK is positive, remove any kinds of marks.
9611 If optional argument UNMARK is negative, mark articles as unread instead."
9612   (let ((count 1))
9613     (save-excursion
9614       (cond
9615        ((null unmark)                   ; Mark as read.
9616         (while (and
9617                 (progn
9618                   (gnus-summary-mark-article-as-read gnus-killed-mark)
9619                   (gnus-summary-show-thread) t)
9620                 (gnus-summary-find-subject subject))
9621           (setq count (1+ count))))
9622        ((> unmark 0)                    ; Tick.
9623         (while (and
9624                 (progn
9625                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
9626                   (gnus-summary-show-thread) t)
9627                 (gnus-summary-find-subject subject))
9628           (setq count (1+ count))))
9629        (t                               ; Mark as unread.
9630         (while (and
9631                 (progn
9632                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
9633                   (gnus-summary-show-thread) t)
9634                 (gnus-summary-find-subject subject))
9635           (setq count (1+ count)))))
9636       (gnus-set-mode-line 'summary)
9637       ;; Return the number of marked articles.
9638       count)))
9639
9640 (defun gnus-summary-mark-as-processable (n &optional unmark)
9641   "Set the process mark on the next N articles.
9642 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
9643 the process mark instead.  The difference between N and the actual
9644 number of articles marked is returned."
9645   (interactive "P")
9646   (if (and (null n) (gnus-region-active-p))
9647       (gnus-uu-mark-region (region-beginning) (region-end) unmark)
9648     (setq n (prefix-numeric-value n))
9649     (let ((backward (< n 0))
9650           (n (abs n)))
9651       (while (and
9652               (> n 0)
9653               (if unmark
9654                   (gnus-summary-remove-process-mark
9655                    (gnus-summary-article-number))
9656                 (gnus-summary-set-process-mark (gnus-summary-article-number)))
9657               (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
9658         (setq n (1- n)))
9659       (when (/= 0 n)
9660         (gnus-message 7 "No more articles"))
9661       (gnus-summary-recenter)
9662       (gnus-summary-position-point)
9663       n)))
9664
9665 (defun gnus-summary-unmark-as-processable (n)
9666   "Remove the process mark from the next N articles.
9667 If N is negative, unmark backward instead.  The difference between N and
9668 the actual number of articles unmarked is returned."
9669   (interactive "P")
9670   (gnus-summary-mark-as-processable n t))
9671
9672 (defun gnus-summary-unmark-all-processable ()
9673   "Remove the process mark from all articles."
9674   (interactive)
9675   (save-excursion
9676     (while gnus-newsgroup-processable
9677       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
9678   (gnus-summary-position-point))
9679
9680 (defun gnus-summary-add-mark (article type)
9681   "Mark ARTICLE with a mark of TYPE."
9682   (let ((vtype (car (assq type gnus-article-mark-lists)))
9683         var)
9684     (if (not vtype)
9685         (error "No such mark type: %s" type)
9686       (setq var (intern (format "gnus-newsgroup-%s" type)))
9687       (set var (cons article (symbol-value var)))
9688       (if (memq type '(processable cached replied forwarded recent saved))
9689           (gnus-summary-update-secondary-mark article)
9690         ;;; !!! This is bogus.  We should find out what primary
9691         ;;; !!! mark we want to set.
9692         (gnus-summary-update-mark gnus-del-mark 'unread)))))
9693
9694 (defun gnus-summary-mark-as-expirable (n)
9695   "Mark N articles forward as expirable.
9696 If N is negative, mark backward instead.  The difference between N and
9697 the actual number of articles marked is returned."
9698   (interactive "p")
9699   (gnus-summary-mark-forward n gnus-expirable-mark))
9700
9701 (defun gnus-summary-mark-as-spam (n)
9702   "Mark N articles forward as spam.
9703 If N is negative, mark backward instead.  The difference between N and
9704 the actual number of articles marked is returned."
9705   (interactive "p")
9706   (gnus-summary-mark-forward n gnus-spam-mark))
9707
9708 (defun gnus-summary-mark-article-as-replied (article)
9709   "Mark ARTICLE as replied to and update the summary line.
9710 ARTICLE can also be a list of articles."
9711   (interactive (list (gnus-summary-article-number)))
9712   (let ((articles (if (listp article) article (list article))))
9713     (dolist (article articles)
9714       (unless (numberp article)
9715         (error "%s is not a number" article))
9716       (push article gnus-newsgroup-replied)
9717       (let ((buffer-read-only nil))
9718         (when (gnus-summary-goto-subject article nil t)
9719           (gnus-summary-update-secondary-mark article))))))
9720
9721 (defun gnus-summary-mark-article-as-forwarded (article)
9722   "Mark ARTICLE as forwarded and update the summary line.
9723 ARTICLE can also be a list of articles."
9724   (let ((articles (if (listp article) article (list article))))
9725     (dolist (article articles)
9726       (push article gnus-newsgroup-forwarded)
9727       (let ((buffer-read-only nil))
9728         (when (gnus-summary-goto-subject article nil t)
9729           (gnus-summary-update-secondary-mark article))))))
9730
9731 (defun gnus-summary-set-bookmark (article)
9732   "Set a bookmark in current article."
9733   (interactive (list (gnus-summary-article-number)))
9734   (when (or (not (get-buffer gnus-article-buffer))
9735             (not gnus-current-article)
9736             (not gnus-article-current)
9737             (not (equal gnus-newsgroup-name (car gnus-article-current))))
9738     (error "No current article selected"))
9739   ;; Remove old bookmark, if one exists.
9740   (gnus-pull article gnus-newsgroup-bookmarks)
9741   ;; Set the new bookmark, which is on the form
9742   ;; (article-number . line-number-in-body).
9743   (push
9744    (cons article
9745          (save-excursion
9746            (set-buffer gnus-article-buffer)
9747            (count-lines
9748             (min (point)
9749                  (save-excursion
9750                    (article-goto-body)
9751                    (point)))
9752             (point))))
9753    gnus-newsgroup-bookmarks)
9754   (gnus-message 6 "A bookmark has been added to the current article."))
9755
9756 (defun gnus-summary-remove-bookmark (article)
9757   "Remove the bookmark from the current article."
9758   (interactive (list (gnus-summary-article-number)))
9759   ;; Remove old bookmark, if one exists.
9760   (if (not (assq article gnus-newsgroup-bookmarks))
9761       (gnus-message 6 "No bookmark in current article.")
9762     (gnus-pull article gnus-newsgroup-bookmarks)
9763     (gnus-message 6 "Removed bookmark.")))
9764
9765 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
9766 (defun gnus-summary-mark-as-dormant (n)
9767   "Mark N articles forward as dormant.
9768 If N is negative, mark backward instead.  The difference between N and
9769 the actual number of articles marked is returned."
9770   (interactive "p")
9771   (gnus-summary-mark-forward n gnus-dormant-mark))
9772
9773 (defun gnus-summary-set-process-mark (article)
9774   "Set the process mark on ARTICLE and update the summary line."
9775   (setq gnus-newsgroup-processable
9776         (cons article
9777               (delq article gnus-newsgroup-processable)))
9778   (when (gnus-summary-goto-subject article)
9779     (gnus-summary-show-thread)
9780     (gnus-summary-goto-subject article)
9781     (gnus-summary-update-secondary-mark article)))
9782
9783 (defun gnus-summary-remove-process-mark (article)
9784   "Remove the process mark from ARTICLE and update the summary line."
9785   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
9786   (when (gnus-summary-goto-subject article)
9787     (gnus-summary-show-thread)
9788     (gnus-summary-goto-subject article)
9789     (gnus-summary-update-secondary-mark article)))
9790
9791 (defun gnus-summary-set-saved-mark (article)
9792   "Set the process mark on ARTICLE and update the summary line."
9793   (push article gnus-newsgroup-saved)
9794   (when (gnus-summary-goto-subject article)
9795     (gnus-summary-update-secondary-mark article)))
9796
9797 (defun gnus-summary-mark-forward (n &optional mark no-expire)
9798   "Mark N articles as read forwards.
9799 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
9800 The difference between N and the actual number of articles marked is
9801 returned.
9802 If NO-EXPIRE, auto-expiry will be inhibited."
9803   (interactive "p")
9804   (gnus-summary-show-thread)
9805   (let ((backward (< n 0))
9806         (gnus-summary-goto-unread
9807          (and gnus-summary-goto-unread
9808               (not (eq gnus-summary-goto-unread 'never))
9809               (not (memq mark (list gnus-unread-mark gnus-spam-mark
9810                                     gnus-ticked-mark gnus-dormant-mark)))))
9811         (n (abs n))
9812         (mark (or mark gnus-del-mark)))
9813     (while (and (> n 0)
9814                 (gnus-summary-mark-article nil mark no-expire)
9815                 (zerop (gnus-summary-next-subject
9816                         (if backward -1 1)
9817                         (and gnus-summary-goto-unread
9818                              (not (eq gnus-summary-goto-unread 'never)))
9819                         t)))
9820       (setq n (1- n)))
9821     (when (/= 0 n)
9822       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9823     (gnus-summary-recenter)
9824     (gnus-summary-position-point)
9825     (gnus-set-mode-line 'summary)
9826     n))
9827
9828 (defun gnus-summary-mark-article-as-read (mark)
9829   "Mark the current article quickly as read with MARK."
9830   (let ((article (gnus-summary-article-number)))
9831     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9832     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9833     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
9834     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9835     (push (cons article mark) gnus-newsgroup-reads)
9836     ;; Possibly remove from cache, if that is used.
9837     (when gnus-use-cache
9838       (gnus-cache-enter-remove-article article))
9839     ;; Allow the backend to change the mark.
9840     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9841     ;; Check for auto-expiry.
9842     (when (and gnus-newsgroup-auto-expire
9843                (memq mark gnus-auto-expirable-marks))
9844       (setq mark gnus-expirable-mark)
9845       ;; Let the backend know about the mark change.
9846       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9847       (push article gnus-newsgroup-expirable))
9848     ;; Set the mark in the buffer.
9849     (gnus-summary-update-mark mark 'unread)
9850     t))
9851
9852 (defun gnus-summary-mark-article-as-unread (mark)
9853   "Mark the current article quickly as unread with MARK."
9854   (let* ((article (gnus-summary-article-number))
9855          (old-mark (gnus-summary-article-mark article)))
9856     ;; Allow the backend to change the mark.
9857     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9858     (if (eq mark old-mark)
9859         t
9860       (if (<= article 0)
9861           (progn
9862             (gnus-error 1 "Can't mark negative article numbers")
9863             nil)
9864         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9865         (setq gnus-newsgroup-spam-marked
9866               (delq article gnus-newsgroup-spam-marked))
9867         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9868         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
9869         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
9870         (cond ((= mark gnus-ticked-mark)
9871                (setq gnus-newsgroup-marked
9872                      (gnus-add-to-sorted-list gnus-newsgroup-marked
9873                                               article)))
9874               ((= mark gnus-spam-mark)
9875                (setq gnus-newsgroup-spam-marked
9876                      (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
9877                                               article)))
9878               ((= mark gnus-dormant-mark)
9879                (setq gnus-newsgroup-dormant
9880                      (gnus-add-to-sorted-list gnus-newsgroup-dormant
9881                                               article)))
9882               (t
9883                (setq gnus-newsgroup-unreads
9884                      (gnus-add-to-sorted-list gnus-newsgroup-unreads
9885                                               article))))
9886         (gnus-pull article gnus-newsgroup-reads)
9887
9888         ;; See whether the article is to be put in the cache.
9889         (and gnus-use-cache
9890              (vectorp (gnus-summary-article-header article))
9891              (save-excursion
9892                (gnus-cache-possibly-enter-article
9893                 gnus-newsgroup-name article
9894                 (= mark gnus-ticked-mark)
9895                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
9896
9897         ;; Fix the mark.
9898         (gnus-summary-update-mark mark 'unread)
9899         t))))
9900
9901 (defun gnus-summary-mark-article (&optional article mark no-expire)
9902   "Mark ARTICLE with MARK.  MARK can be any character.
9903 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
9904 `??' (dormant) and `?E' (expirable).
9905 If MARK is nil, then the default character `?r' is used.
9906 If ARTICLE is nil, then the article on the current line will be
9907 marked.
9908 If NO-EXPIRE, auto-expiry will be inhibited."
9909   ;; The mark might be a string.
9910   (when (stringp mark)
9911     (setq mark (aref mark 0)))
9912   ;; If no mark is given, then we check auto-expiring.
9913   (when (null mark)
9914     (setq mark gnus-del-mark))
9915   (when (and (not no-expire)
9916              gnus-newsgroup-auto-expire
9917              (memq mark gnus-auto-expirable-marks))
9918     (setq mark gnus-expirable-mark))
9919   (let ((article (or article (gnus-summary-article-number)))
9920         (old-mark (gnus-summary-article-mark article)))
9921     ;; Allow the backend to change the mark.
9922     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9923     (if (eq mark old-mark)
9924         t
9925       (unless article
9926         (error "No article on current line"))
9927       (if (not (if (or (= mark gnus-unread-mark)
9928                        (= mark gnus-ticked-mark)
9929                        (= mark gnus-spam-mark)
9930                        (= mark gnus-dormant-mark))
9931                    (gnus-mark-article-as-unread article mark)
9932                  (gnus-mark-article-as-read article mark)))
9933           t
9934         ;; See whether the article is to be put in the cache.
9935         (and gnus-use-cache
9936              (not (= mark gnus-canceled-mark))
9937              (vectorp (gnus-summary-article-header article))
9938              (save-excursion
9939                (gnus-cache-possibly-enter-article
9940                 gnus-newsgroup-name article
9941                 (= mark gnus-ticked-mark)
9942                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
9943
9944         (when (gnus-summary-goto-subject article nil t)
9945           (let ((buffer-read-only nil))
9946             (gnus-summary-show-thread)
9947             ;; Fix the mark.
9948             (gnus-summary-update-mark mark 'unread)
9949             t))))))
9950
9951 (defun gnus-summary-update-secondary-mark (article)
9952   "Update the secondary (read, process, cache) mark."
9953   (gnus-summary-update-mark
9954    (cond ((memq article gnus-newsgroup-processable)
9955           gnus-process-mark)
9956          ((memq article gnus-newsgroup-cached)
9957           gnus-cached-mark)
9958          ((memq article gnus-newsgroup-replied)
9959           gnus-replied-mark)
9960          ((memq article gnus-newsgroup-forwarded)
9961           gnus-forwarded-mark)
9962          ((memq article gnus-newsgroup-saved)
9963           gnus-saved-mark)
9964          ((memq article gnus-newsgroup-recent)
9965           gnus-recent-mark)
9966          ((memq article gnus-newsgroup-unseen)
9967           gnus-unseen-mark)
9968          (t gnus-no-mark))
9969    'replied)
9970   (when (gnus-visual-p 'summary-highlight 'highlight)
9971     (gnus-run-hooks 'gnus-summary-update-hook))
9972   t)
9973
9974 (defun gnus-summary-update-download-mark (article)
9975   "Update the download mark."
9976   (gnus-summary-update-mark
9977    (cond ((memq article gnus-newsgroup-undownloaded)
9978           gnus-undownloaded-mark)
9979          (gnus-newsgroup-agentized
9980           gnus-downloaded-mark)
9981          (t
9982           gnus-no-mark))
9983    'download)
9984   (gnus-summary-update-line t)
9985   t)
9986
9987 (defun gnus-summary-update-mark (mark type)
9988   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
9989         (buffer-read-only nil))
9990     (re-search-backward "[\n\r]" (point-at-bol) 'move-to-limit)
9991     (when forward
9992       (when (looking-at "\r")
9993         (incf forward))
9994       (when (<= (+ forward (point)) (point-max))
9995         ;; Go to the right position on the line.
9996         (goto-char (+ forward (point)))
9997         ;; Replace the old mark with the new mark.
9998         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
9999         ;; Optionally update the marks by some user rule.
10000         (when (eq type 'unread)
10001           (gnus-data-set-mark
10002            (gnus-data-find (gnus-summary-article-number)) mark)
10003           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
10004
10005 (defun gnus-mark-article-as-read (article &optional mark)
10006   "Enter ARTICLE in the pertinent lists and remove it from others."
10007   ;; Make the article expirable.
10008   (let ((mark (or mark gnus-del-mark)))
10009     (setq gnus-newsgroup-expirable
10010           (if (= mark gnus-expirable-mark)
10011               (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
10012             (delq article gnus-newsgroup-expirable)))
10013     ;; Remove from unread and marked lists.
10014     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10015     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10016     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10017     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10018     (push (cons article mark) gnus-newsgroup-reads)
10019     ;; Possibly remove from cache, if that is used.
10020     (when gnus-use-cache
10021       (gnus-cache-enter-remove-article article))
10022     t))
10023
10024 (defun gnus-mark-article-as-unread (article &optional mark)
10025   "Enter ARTICLE in the pertinent lists and remove it from others."
10026   (let ((mark (or mark gnus-ticked-mark)))
10027     (if (<= article 0)
10028         (progn
10029           (gnus-error 1 "Can't mark negative article numbers")
10030           nil)
10031       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
10032             gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
10033             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
10034             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
10035             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10036
10037       ;; Unsuppress duplicates?
10038       (when gnus-suppress-duplicates
10039         (gnus-dup-unsuppress-article article))
10040
10041       (cond ((= mark gnus-ticked-mark)
10042              (setq gnus-newsgroup-marked
10043                    (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
10044             ((= mark gnus-spam-mark)
10045              (setq gnus-newsgroup-spam-marked
10046                    (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10047                                             article)))
10048             ((= mark gnus-dormant-mark)
10049              (setq gnus-newsgroup-dormant
10050                    (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10051             (t
10052              (setq gnus-newsgroup-unreads
10053                    (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10054       (gnus-pull article gnus-newsgroup-reads)
10055       t)))
10056
10057 (defalias 'gnus-summary-mark-as-unread-forward
10058   'gnus-summary-tick-article-forward)
10059 (make-obsolete 'gnus-summary-mark-as-unread-forward
10060                'gnus-summary-tick-article-forward)
10061 (defun gnus-summary-tick-article-forward (n)
10062   "Tick N articles forwards.
10063 If N is negative, tick backwards instead.
10064 The difference between N and the number of articles ticked is returned."
10065   (interactive "p")
10066   (gnus-summary-mark-forward n gnus-ticked-mark))
10067
10068 (defalias 'gnus-summary-mark-as-unread-backward
10069   'gnus-summary-tick-article-backward)
10070 (make-obsolete 'gnus-summary-mark-as-unread-backward
10071                'gnus-summary-tick-article-backward)
10072 (defun gnus-summary-tick-article-backward (n)
10073   "Tick N articles backwards.
10074 The difference between N and the number of articles ticked is returned."
10075   (interactive "p")
10076   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10077
10078 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10079 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10080 (defun gnus-summary-tick-article (&optional article clear-mark)
10081   "Mark current article as unread.
10082 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10083 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10084   (interactive)
10085   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10086                                        gnus-ticked-mark)))
10087
10088 (defun gnus-summary-mark-as-read-forward (n)
10089   "Mark N articles as read forwards.
10090 If N is negative, mark backwards instead.
10091 The difference between N and the actual number of articles marked is
10092 returned."
10093   (interactive "p")
10094   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10095
10096 (defun gnus-summary-mark-as-read-backward (n)
10097   "Mark the N articles as read backwards.
10098 The difference between N and the actual number of articles marked is
10099 returned."
10100   (interactive "p")
10101   (gnus-summary-mark-forward
10102    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10103
10104 (defun gnus-summary-mark-as-read (&optional article mark)
10105   "Mark current article as read.
10106 ARTICLE specifies the article to be marked as read.
10107 MARK specifies a string to be inserted at the beginning of the line."
10108   (gnus-summary-mark-article article mark))
10109
10110 (defun gnus-summary-clear-mark-forward (n)
10111   "Clear marks from N articles forward.
10112 If N is negative, clear backward instead.
10113 The difference between N and the number of marks cleared is returned."
10114   (interactive "p")
10115   (gnus-summary-mark-forward n gnus-unread-mark))
10116
10117 (defun gnus-summary-clear-mark-backward (n)
10118   "Clear marks from N articles backward.
10119 The difference between N and the number of marks cleared is returned."
10120   (interactive "p")
10121   (gnus-summary-mark-forward (- n) gnus-unread-mark))
10122
10123 (defun gnus-summary-mark-unread-as-read ()
10124   "Intended to be used by `gnus-summary-mark-article-hook'."
10125   (when (memq gnus-current-article gnus-newsgroup-unreads)
10126     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10127
10128 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10129   "Intended to be used by `gnus-summary-mark-article-hook'."
10130   (let ((mark (gnus-summary-article-mark)))
10131     (when (or (gnus-unread-mark-p mark)
10132               (gnus-read-mark-p mark))
10133       (gnus-summary-mark-article gnus-current-article
10134                                  (or new-mark gnus-read-mark)))))
10135
10136 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10137   "Intended to be used by `gnus-summary-mark-article-hook'."
10138   (let ((mark (gnus-summary-article-mark)))
10139     (when (or (gnus-unread-mark-p mark)
10140               (gnus-read-mark-p mark))
10141       (gnus-summary-mark-article (gnus-summary-article-number)
10142                                  (or new-mark gnus-read-mark)))))
10143
10144 (defun gnus-summary-mark-unread-as-ticked ()
10145   "Intended to be used by `gnus-summary-mark-article-hook'."
10146   (when (memq gnus-current-article gnus-newsgroup-unreads)
10147     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10148
10149 (defun gnus-summary-mark-region-as-read (point mark all)
10150   "Mark all unread articles between point and mark as read.
10151 If given a prefix, mark all articles between point and mark as read,
10152 even ticked and dormant ones."
10153   (interactive "r\nP")
10154   (save-excursion
10155     (let (article)
10156       (goto-char point)
10157       (beginning-of-line)
10158       (while (and
10159               (< (point) mark)
10160               (progn
10161                 (when (or all
10162                           (memq (setq article (gnus-summary-article-number))
10163                                 gnus-newsgroup-unreads))
10164                   (gnus-summary-mark-article article gnus-del-mark))
10165                 t)
10166               (gnus-summary-find-next))))))
10167
10168 (defun gnus-summary-mark-below (score mark)
10169   "Mark articles with score less than SCORE with MARK."
10170   (interactive "P\ncMark: ")
10171   (setq score (if score
10172                   (prefix-numeric-value score)
10173                 (or gnus-summary-default-score 0)))
10174   (save-excursion
10175     (set-buffer gnus-summary-buffer)
10176     (goto-char (point-min))
10177     (while
10178         (progn
10179           (and (< (gnus-summary-article-score) score)
10180                (gnus-summary-mark-article nil mark))
10181           (gnus-summary-find-next)))))
10182
10183 (defun gnus-summary-kill-below (&optional score)
10184   "Mark articles with score below SCORE as read."
10185   (interactive "P")
10186   (gnus-summary-mark-below score gnus-killed-mark))
10187
10188 (defun gnus-summary-clear-above (&optional score)
10189   "Clear all marks from articles with score above SCORE."
10190   (interactive "P")
10191   (gnus-summary-mark-above score gnus-unread-mark))
10192
10193 (defun gnus-summary-tick-above (&optional score)
10194   "Tick all articles with score above SCORE."
10195   (interactive "P")
10196   (gnus-summary-mark-above score gnus-ticked-mark))
10197
10198 (defun gnus-summary-mark-above (score mark)
10199   "Mark articles with score over SCORE with MARK."
10200   (interactive "P\ncMark: ")
10201   (setq score (if score
10202                   (prefix-numeric-value score)
10203                 (or gnus-summary-default-score 0)))
10204   (save-excursion
10205     (set-buffer gnus-summary-buffer)
10206     (goto-char (point-min))
10207     (while (and (progn
10208                   (when (> (gnus-summary-article-score) score)
10209                     (gnus-summary-mark-article nil mark))
10210                   t)
10211                 (gnus-summary-find-next)))))
10212
10213 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10214 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10215 (defun gnus-summary-limit-include-expunged (&optional no-error)
10216   "Display all the hidden articles that were expunged for low scores."
10217   (interactive)
10218   (let ((buffer-read-only nil))
10219     (let ((scored gnus-newsgroup-scored)
10220           headers h)
10221       (while scored
10222         (unless (gnus-summary-article-header (caar scored))
10223           (and (setq h (gnus-number-to-header (caar scored)))
10224                (< (cdar scored) gnus-summary-expunge-below)
10225                (push h headers)))
10226         (setq scored (cdr scored)))
10227       (if (not headers)
10228           (when (not no-error)
10229             (error "No expunged articles hidden"))
10230         (goto-char (point-min))
10231         (push gnus-newsgroup-limit gnus-newsgroup-limits)
10232         (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
10233         (mapcar (lambda (x) (push (mail-header-number x)
10234                                   gnus-newsgroup-limit))
10235                 headers)
10236         (gnus-summary-prepare-unthreaded (nreverse headers))
10237         (goto-char (point-min))
10238         (gnus-summary-position-point)
10239         t))))
10240
10241 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
10242   "Mark all unread articles in this newsgroup as read.
10243 If prefix argument ALL is non-nil, ticked and dormant articles will
10244 also be marked as read.
10245 If QUIETLY is non-nil, no questions will be asked.
10246
10247 If TO-HERE is non-nil, it should be a point in the buffer.  All
10248 articles before (after, if REVERSE is set) this point will be marked
10249 as read.
10250
10251 Note that this function will only catch up the unread article
10252 in the current summary buffer limitation.
10253
10254 The number of articles marked as read is returned."
10255   (interactive "P")
10256   (prog1
10257       (save-excursion
10258         (when (or quietly
10259                   (not gnus-interactive-catchup) ;Without confirmation?
10260                   gnus-expert-user
10261                   (gnus-y-or-n-p
10262                    (if all
10263                        "Mark absolutely all articles as read? "
10264                      "Mark all unread articles as read? ")))
10265           (if (and not-mark
10266                    (not gnus-newsgroup-adaptive)
10267                    (not gnus-newsgroup-auto-expire)
10268                    (not gnus-suppress-duplicates)
10269                    (or (not gnus-use-cache)
10270                        (eq gnus-use-cache 'passive)))
10271               (progn
10272                 (when all
10273                   (setq gnus-newsgroup-marked nil
10274                         gnus-newsgroup-spam-marked nil
10275                         gnus-newsgroup-dormant nil))
10276                 (setq gnus-newsgroup-unreads
10277                       (gnus-sorted-nunion
10278                        (gnus-intersection gnus-newsgroup-unreads
10279                                           gnus-newsgroup-downloadable)
10280                        gnus-newsgroup-unfetched)))
10281             ;; We actually mark all articles as canceled, which we
10282             ;; have to do when using auto-expiry or adaptive scoring.
10283             (gnus-summary-show-all-threads)
10284             (if (and to-here reverse)
10285                 (progn
10286                   (goto-char to-here)
10287                   (gnus-summary-mark-current-read-and-unread-as-read
10288                    gnus-catchup-mark)
10289                   (while (gnus-summary-find-next (not all))
10290                     (gnus-summary-mark-article-as-read gnus-catchup-mark)))
10291               (when (gnus-summary-first-subject (not all))
10292                 (while (and
10293                         (if to-here (< (point) to-here) t)
10294                         (gnus-summary-mark-article-as-read gnus-catchup-mark)
10295                         (gnus-summary-find-next (not all))))))
10296             (gnus-set-mode-line 'summary))
10297           t))
10298     (gnus-summary-position-point)))
10299
10300 (defun gnus-summary-catchup-to-here (&optional all)
10301   "Mark all unticked articles before the current one as read.
10302 If ALL is non-nil, also mark ticked and dormant articles as read."
10303   (interactive "P")
10304   (save-excursion
10305     (gnus-save-hidden-threads
10306       (let ((beg (point)))
10307         ;; We check that there are unread articles.
10308         (when (or all (gnus-summary-find-prev))
10309           (gnus-summary-catchup all t beg)))))
10310   (gnus-summary-position-point))
10311
10312 (defun gnus-summary-catchup-from-here (&optional all)
10313   "Mark all unticked articles after (and including) the current one as read.
10314 If ALL is non-nil, also mark ticked and dormant articles as read."
10315   (interactive "P")
10316   (save-excursion
10317     (gnus-save-hidden-threads
10318       (let ((beg (point)))
10319         ;; We check that there are unread articles.
10320         (when (or all (gnus-summary-find-next))
10321           (gnus-summary-catchup all t beg nil t)))))
10322   (gnus-summary-position-point))
10323
10324 (defun gnus-summary-catchup-all (&optional quietly)
10325   "Mark all articles in this newsgroup as read.
10326 This command is dangerous.  Normally, you want \\[gnus-summary-catchup]
10327 instead, which marks only unread articles as read."
10328   (interactive "P")
10329   (gnus-summary-catchup t quietly))
10330
10331 (defun gnus-summary-catchup-and-exit (&optional all quietly)
10332   "Mark all unread articles in this group as read, then exit.
10333 If prefix argument ALL is non-nil, all articles are marked as read.
10334 If QUIETLY is non-nil, no questions will be asked."
10335   (interactive "P")
10336   (when (gnus-summary-catchup all quietly nil 'fast)
10337     ;; Select next newsgroup or exit.
10338     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
10339              (eq gnus-auto-select-next 'quietly))
10340         (gnus-summary-next-group nil)
10341       (gnus-summary-exit))))
10342
10343 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
10344   "Mark all articles in this newsgroup as read, and then exit.
10345 This command is dangerous.  Normally, you want \\[gnus-summary-catchup-and-exit]
10346 instead, which marks only unread articles as read."
10347   (interactive "P")
10348   (gnus-summary-catchup-and-exit t quietly))
10349
10350 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
10351   "Mark all articles in this group as read and select the next group.
10352 If given a prefix, mark all articles, unread as well as ticked, as
10353 read."
10354   (interactive "P")
10355   (save-excursion
10356     (gnus-summary-catchup all))
10357   (gnus-summary-next-group))
10358
10359 ;;;
10360 ;;; with article
10361 ;;;
10362
10363 (defmacro gnus-with-article (article &rest forms)
10364   "Select ARTICLE and perform FORMS in the original article buffer.
10365 Then replace the article with the result."
10366   `(progn
10367      ;; We don't want the article to be marked as read.
10368      (let (gnus-mark-article-hook)
10369        (gnus-summary-select-article t t nil ,article))
10370      (set-buffer gnus-original-article-buffer)
10371      ,@forms
10372      (if (not (gnus-check-backend-function
10373                'request-replace-article (car gnus-article-current)))
10374          (gnus-message 5 "Read-only group; not replacing")
10375        (unless (gnus-request-replace-article
10376                 ,article (car gnus-article-current)
10377                 (current-buffer) t)
10378          (error "Couldn't replace article")))
10379      ;; The cache and backlog have to be flushed somewhat.
10380      (when gnus-keep-backlog
10381        (gnus-backlog-remove-article
10382         (car gnus-article-current) (cdr gnus-article-current)))
10383      (when gnus-use-cache
10384        (gnus-cache-update-article
10385         (car gnus-article-current) (cdr gnus-article-current)))))
10386
10387 (put 'gnus-with-article 'lisp-indent-function 1)
10388 (put 'gnus-with-article 'edebug-form-spec '(form body))
10389
10390 ;; Thread-based commands.
10391
10392 (defun gnus-summary-articles-in-thread (&optional article)
10393   "Return a list of all articles in the current thread.
10394 If ARTICLE is non-nil, return all articles in the thread that starts
10395 with that article."
10396   (let* ((article (or article (gnus-summary-article-number)))
10397          (data (gnus-data-find-list article))
10398          (top-level (gnus-data-level (car data)))
10399          (top-subject
10400           (cond ((null gnus-thread-operation-ignore-subject)
10401                  (gnus-simplify-subject-re
10402                   (mail-header-subject (gnus-data-header (car data)))))
10403                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
10404                  (gnus-simplify-subject-fuzzy
10405                   (mail-header-subject (gnus-data-header (car data)))))
10406                 (t nil)))
10407          (end-point (save-excursion
10408                       (if (gnus-summary-go-to-next-thread)
10409                           (point) (point-max))))
10410          articles)
10411     (while (and data
10412                 (< (gnus-data-pos (car data)) end-point))
10413       (when (or (not top-subject)
10414                 (string= top-subject
10415                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
10416                              (gnus-simplify-subject-fuzzy
10417                               (mail-header-subject
10418                                (gnus-data-header (car data))))
10419                            (gnus-simplify-subject-re
10420                             (mail-header-subject
10421                              (gnus-data-header (car data)))))))
10422         (push (gnus-data-number (car data)) articles))
10423       (unless (and (setq data (cdr data))
10424                    (> (gnus-data-level (car data)) top-level))
10425         (setq data nil)))
10426     ;; Return the list of articles.
10427     (nreverse articles)))
10428
10429 (defun gnus-summary-rethread-current ()
10430   "Rethread the thread the current article is part of."
10431   (interactive)
10432   (let* ((gnus-show-threads t)
10433          (article (gnus-summary-article-number))
10434          (id (mail-header-id (gnus-summary-article-header)))
10435          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
10436     (unless id
10437       (error "No article on the current line"))
10438     (gnus-rebuild-thread id)
10439     (gnus-summary-goto-subject article)))
10440
10441 (defun gnus-summary-reparent-thread ()
10442   "Make the current article child of the marked (or previous) article.
10443
10444 Note that the re-threading will only work if `gnus-thread-ignore-subject'
10445 is non-nil or the Subject: of both articles are the same."
10446   (interactive)
10447   (unless (not (gnus-group-read-only-p))
10448     (error "The current newsgroup does not support article editing"))
10449   (unless (<= (length gnus-newsgroup-processable) 1)
10450     (error "No more than one article may be marked"))
10451   (save-window-excursion
10452     (let ((gnus-article-buffer " *reparent*")
10453           (current-article (gnus-summary-article-number))
10454           ;; First grab the marked article, otherwise one line up.
10455           (parent-article (if (not (null gnus-newsgroup-processable))
10456                               (car gnus-newsgroup-processable)
10457                             (save-excursion
10458                               (if (eq (forward-line -1) 0)
10459                                   (gnus-summary-article-number)
10460                                 (error "Beginning of summary buffer"))))))
10461       (unless (not (eq current-article parent-article))
10462         (error "An article may not be self-referential"))
10463       (let ((message-id (mail-header-id
10464                          (gnus-summary-article-header parent-article))))
10465         (unless (and message-id (not (equal message-id "")))
10466           (error "No message-id in desired parent"))
10467         (gnus-with-article current-article
10468           (save-restriction
10469             (goto-char (point-min))
10470             (message-narrow-to-head)
10471             (if (re-search-forward "^References: " nil t)
10472                 (progn
10473                   (re-search-forward "^[^ \t]" nil t)
10474                   (forward-line -1)
10475                   (end-of-line)
10476                   (insert " " message-id))
10477               (insert "References: " message-id "\n"))))
10478         (set-buffer gnus-summary-buffer)
10479         (gnus-summary-unmark-all-processable)
10480         (gnus-summary-update-article current-article)
10481         (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10482             (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
10483         (gnus-summary-rethread-current)
10484         (gnus-message 3 "Article %d is now the child of article %d"
10485                       current-article parent-article)))))
10486
10487 (defun gnus-summary-toggle-threads (&optional arg)
10488   "Toggle showing conversation threads.
10489 If ARG is positive number, turn showing conversation threads on."
10490   (interactive "P")
10491   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
10492     (setq gnus-show-threads
10493           (if (null arg) (not gnus-show-threads)
10494             (> (prefix-numeric-value arg) 0)))
10495     (gnus-summary-prepare)
10496     (gnus-summary-goto-subject current)
10497     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
10498     (gnus-summary-position-point)))
10499
10500 (defun gnus-summary-show-all-threads ()
10501   "Show all threads."
10502   (interactive)
10503   (save-excursion
10504     (let ((buffer-read-only nil))
10505       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
10506   (gnus-summary-position-point))
10507
10508 (defun gnus-summary-show-thread ()
10509   "Show thread subtrees.
10510 Returns nil if no thread was there to be shown."
10511   (interactive)
10512   (let ((buffer-read-only nil)
10513         (orig (point))
10514         (end (point-at-eol))
10515         ;; Leave point at bol
10516         (beg (progn (beginning-of-line) (point))))
10517     (prog1
10518         ;; Any hidden lines here?
10519         (search-forward "\r" end t)
10520       (subst-char-in-region beg end ?\^M ?\n t)
10521       (goto-char orig)
10522       (gnus-summary-position-point))))
10523
10524 (defun gnus-summary-maybe-hide-threads ()
10525   "If requested, hide the threads that should be hidden."
10526   (when (and gnus-show-threads
10527              gnus-thread-hide-subtree)
10528     (gnus-summary-hide-all-threads
10529      (if (or (consp gnus-thread-hide-subtree)
10530              (functionp gnus-thread-hide-subtree))
10531          (gnus-make-predicate gnus-thread-hide-subtree)
10532        nil))))
10533
10534 ;;; Hiding predicates.
10535
10536 (defun gnus-article-unread-p (header)
10537   (memq (mail-header-number header) gnus-newsgroup-unreads))
10538
10539 (defun gnus-article-unseen-p (header)
10540   (memq (mail-header-number header) gnus-newsgroup-unseen))
10541
10542 (defun gnus-map-articles (predicate articles)
10543   "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
10544   (apply 'gnus-or (mapcar predicate
10545                           (mapcar 'gnus-summary-article-header articles))))
10546
10547 (defun gnus-summary-hide-all-threads (&optional predicate)
10548   "Hide all thread subtrees.
10549 If PREDICATE is supplied, threads that satisfy this predicate
10550 will not be hidden."
10551   (interactive)
10552   (save-excursion
10553     (goto-char (point-min))
10554     (let ((end nil))
10555       (while (not end)
10556         (when (or (not predicate)
10557                   (gnus-map-articles
10558                    predicate (gnus-summary-article-children)))
10559             (gnus-summary-hide-thread))
10560         (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
10561   (gnus-summary-position-point))
10562
10563 (defun gnus-summary-hide-thread ()
10564   "Hide thread subtrees.
10565 If PREDICATE is supplied, threads that satisfy this predicate
10566 will not be hidden.
10567 Returns nil if no threads were there to be hidden."
10568   (interactive)
10569   (let ((buffer-read-only nil)
10570         (start (point))
10571         (article (gnus-summary-article-number)))
10572     (goto-char start)
10573     ;; Go forward until either the buffer ends or the subthread
10574     ;; ends.
10575     (when (and (not (eobp))
10576                (or (zerop (gnus-summary-next-thread 1 t))
10577                    (goto-char (point-max))))
10578       (prog1
10579           (if (and (> (point) start)
10580                    (search-backward "\n" start t))
10581               (progn
10582                 (subst-char-in-region start (point) ?\n ?\^M)
10583                 (gnus-summary-goto-subject article))
10584             (goto-char start)
10585             nil)))))
10586
10587 (defun gnus-summary-go-to-next-thread (&optional previous)
10588   "Go to the same level (or less) next thread.
10589 If PREVIOUS is non-nil, go to previous thread instead.
10590 Return the article number moved to, or nil if moving was impossible."
10591   (let ((level (gnus-summary-thread-level))
10592         (way (if previous -1 1))
10593         (beg (point)))
10594     (forward-line way)
10595     (while (and (not (eobp))
10596                 (< level (gnus-summary-thread-level)))
10597       (forward-line way))
10598     (if (eobp)
10599         (progn
10600           (goto-char beg)
10601           nil)
10602       (setq beg (point))
10603       (prog1
10604           (gnus-summary-article-number)
10605         (goto-char beg)))))
10606
10607 (defun gnus-summary-next-thread (n &optional silent)
10608   "Go to the same level next N'th thread.
10609 If N is negative, search backward instead.
10610 Returns the difference between N and the number of skips actually
10611 done.
10612
10613 If SILENT, don't output messages."
10614   (interactive "p")
10615   (let ((backward (< n 0))
10616         (n (abs n)))
10617     (while (and (> n 0)
10618                 (gnus-summary-go-to-next-thread backward))
10619       (decf n))
10620     (unless silent
10621       (gnus-summary-position-point))
10622     (when (and (not silent) (/= 0 n))
10623       (gnus-message 7 "No more threads"))
10624     n))
10625
10626 (defun gnus-summary-prev-thread (n)
10627   "Go to the same level previous N'th thread.
10628 Returns the difference between N and the number of skips actually
10629 done."
10630   (interactive "p")
10631   (gnus-summary-next-thread (- n)))
10632
10633 (defun gnus-summary-go-down-thread ()
10634   "Go down one level in the current thread."
10635   (let ((children (gnus-summary-article-children)))
10636     (when children
10637       (gnus-summary-goto-subject (car children)))))
10638
10639 (defun gnus-summary-go-up-thread ()
10640   "Go up one level in the current thread."
10641   (let ((parent (gnus-summary-article-parent)))
10642     (when parent
10643       (gnus-summary-goto-subject parent))))
10644
10645 (defun gnus-summary-down-thread (n)
10646   "Go down thread N steps.
10647 If N is negative, go up instead.
10648 Returns the difference between N and how many steps down that were
10649 taken."
10650   (interactive "p")
10651   (let ((up (< n 0))
10652         (n (abs n)))
10653     (while (and (> n 0)
10654                 (if up (gnus-summary-go-up-thread)
10655                   (gnus-summary-go-down-thread)))
10656       (setq n (1- n)))
10657     (gnus-summary-position-point)
10658     (when (/= 0 n)
10659       (gnus-message 7 "Can't go further"))
10660     n))
10661
10662 (defun gnus-summary-up-thread (n)
10663   "Go up thread N steps.
10664 If N is negative, go down instead.
10665 Returns the difference between N and how many steps down that were
10666 taken."
10667   (interactive "p")
10668   (gnus-summary-down-thread (- n)))
10669
10670 (defun gnus-summary-top-thread ()
10671   "Go to the top of the thread."
10672   (interactive)
10673   (while (gnus-summary-go-up-thread))
10674   (gnus-summary-article-number))
10675
10676 (defun gnus-summary-kill-thread (&optional unmark)
10677   "Mark articles under current thread as read.
10678 If the prefix argument is positive, remove any kinds of marks.
10679 If the prefix argument is negative, tick articles instead."
10680   (interactive "P")
10681   (when unmark
10682     (setq unmark (prefix-numeric-value unmark)))
10683   (let ((articles (gnus-summary-articles-in-thread)))
10684     (save-excursion
10685       ;; Expand the thread.
10686       (gnus-summary-show-thread)
10687       ;; Mark all the articles.
10688       (while articles
10689         (gnus-summary-goto-subject (car articles))
10690         (cond ((null unmark)
10691                (gnus-summary-mark-article-as-read gnus-killed-mark))
10692               ((> unmark 0)
10693                (gnus-summary-mark-article-as-unread gnus-unread-mark))
10694               (t
10695                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
10696         (setq articles (cdr articles))))
10697     ;; Hide killed subtrees.
10698     (and (null unmark)
10699          gnus-thread-hide-killed
10700          (gnus-summary-hide-thread))
10701     ;; If marked as read, go to next unread subject.
10702     (when (null unmark)
10703       ;; Go to next unread subject.
10704       (gnus-summary-next-subject 1 t)))
10705   (gnus-set-mode-line 'summary))
10706
10707 ;; Summary sorting commands
10708
10709 (defun gnus-summary-sort-by-number (&optional reverse)
10710   "Sort the summary buffer by article number.
10711 Argument REVERSE means reverse order."
10712   (interactive "P")
10713   (gnus-summary-sort 'number reverse))
10714
10715 (defun gnus-summary-sort-by-random (&optional reverse)
10716   "Randomize the order in the summary buffer.
10717 Argument REVERSE means to randomize in reverse order."
10718   (interactive "P")
10719   (gnus-summary-sort 'random reverse))
10720
10721 (defun gnus-summary-sort-by-author (&optional reverse)
10722   "Sort the summary buffer by author name alphabetically.
10723 If `case-fold-search' is non-nil, case of letters is ignored.
10724 Argument REVERSE means reverse order."
10725   (interactive "P")
10726   (gnus-summary-sort 'author reverse))
10727
10728 (defun gnus-summary-sort-by-subject (&optional reverse)
10729   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
10730 If `case-fold-search' is non-nil, case of letters is ignored.
10731 Argument REVERSE means reverse order."
10732   (interactive "P")
10733   (gnus-summary-sort 'subject reverse))
10734
10735 (defun gnus-summary-sort-by-date (&optional reverse)
10736   "Sort the summary buffer by date.
10737 Argument REVERSE means reverse order."
10738   (interactive "P")
10739   (gnus-summary-sort 'date reverse))
10740
10741 (defun gnus-summary-sort-by-score (&optional reverse)
10742   "Sort the summary buffer by score.
10743 Argument REVERSE means reverse order."
10744   (interactive "P")
10745   (gnus-summary-sort 'score reverse))
10746
10747 (defun gnus-summary-sort-by-lines (&optional reverse)
10748   "Sort the summary buffer by the number of lines.
10749 Argument REVERSE means reverse order."
10750   (interactive "P")
10751   (gnus-summary-sort 'lines reverse))
10752
10753 (defun gnus-summary-sort-by-chars (&optional reverse)
10754   "Sort the summary buffer by article length.
10755 Argument REVERSE means reverse order."
10756   (interactive "P")
10757   (gnus-summary-sort 'chars reverse))
10758
10759 (defun gnus-summary-sort-by-original (&optional reverse)
10760   "Sort the summary buffer using the default sorting method.
10761 Argument REVERSE means reverse order."
10762   (interactive "P")
10763   (let* ((buffer-read-only)
10764          (gnus-summary-prepare-hook nil))
10765     ;; We do the sorting by regenerating the threads.
10766     (gnus-summary-prepare)
10767     ;; Hide subthreads if needed.
10768     (gnus-summary-maybe-hide-threads)))
10769
10770 (defun gnus-summary-sort (predicate reverse)
10771   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
10772   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
10773          (article (intern (format "gnus-article-sort-by-%s" predicate)))
10774          (gnus-thread-sort-functions
10775           (if (not reverse)
10776               thread
10777             `(lambda (t1 t2)
10778                (,thread t2 t1))))
10779          (gnus-sort-gathered-threads-function
10780           gnus-thread-sort-functions)
10781          (gnus-article-sort-functions
10782           (if (not reverse)
10783               article
10784             `(lambda (t1 t2)
10785                (,article t2 t1))))
10786          (buffer-read-only)
10787          (gnus-summary-prepare-hook nil))
10788     ;; We do the sorting by regenerating the threads.
10789     (gnus-summary-prepare)
10790     ;; Hide subthreads if needed.
10791     (gnus-summary-maybe-hide-threads)))
10792
10793 ;; Summary saving commands.
10794
10795 (defun gnus-summary-save-article (&optional n not-saved)
10796   "Save the current article using the default saver function.
10797 If N is a positive number, save the N next articles.
10798 If N is a negative number, save the N previous articles.
10799 If N is nil and any articles have been marked with the process mark,
10800 save those articles instead.
10801 The variable `gnus-default-article-saver' specifies the saver function."
10802   (interactive "P")
10803   (let* ((articles (gnus-summary-work-articles n))
10804          (save-buffer (save-excursion
10805                         (nnheader-set-temp-buffer " *Gnus Save*")))
10806          (num (length articles))
10807          header file)
10808     (dolist (article articles)
10809       (setq header (gnus-summary-article-header article))
10810       (if (not (vectorp header))
10811           ;; This is a pseudo-article.
10812           (if (assq 'name header)
10813               (gnus-copy-file (cdr (assq 'name header)))
10814             (gnus-message 1 "Article %d is unsaveable" article))
10815         ;; This is a real article.
10816         (save-window-excursion
10817           (let ((gnus-display-mime-function nil)
10818                 (gnus-article-prepare-hook nil))
10819             (gnus-summary-select-article t nil nil article)))
10820         (save-excursion
10821           (set-buffer save-buffer)
10822           (erase-buffer)
10823           (insert-buffer-substring gnus-original-article-buffer))
10824         (setq file (gnus-article-save save-buffer file num))
10825         (gnus-summary-remove-process-mark article)
10826         (unless not-saved
10827           (gnus-summary-set-saved-mark article))))
10828     (gnus-kill-buffer save-buffer)
10829     (gnus-summary-position-point)
10830     (gnus-set-mode-line 'summary)
10831     n))
10832
10833 (defun gnus-summary-pipe-output (&optional arg headers)
10834   "Pipe the current article to a subprocess.
10835 If N is a positive number, pipe the N next articles.
10836 If N is a negative number, pipe the N previous articles.
10837 If N is nil and any articles have been marked with the process mark,
10838 pipe those articles instead.
10839 If HEADERS (the symbolic prefix), include the headers, too."
10840   (interactive (gnus-interactive "P\ny"))
10841   (require 'gnus-art)
10842   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)
10843         (gnus-save-all-headers (or headers gnus-save-all-headers)))
10844     (gnus-summary-save-article arg t))
10845   (let ((buffer (get-buffer "*Shell Command Output*")))
10846     (when (and buffer
10847                (not (zerop (buffer-size buffer))))
10848       (gnus-configure-windows 'pipe))))
10849
10850 (defun gnus-summary-save-article-mail (&optional arg)
10851   "Append the current article to an mail file.
10852 If N is a positive number, save the N next articles.
10853 If N is a negative number, save the N previous articles.
10854 If N is nil and any articles have been marked with the process mark,
10855 save those articles instead."
10856   (interactive "P")
10857   (require 'gnus-art)
10858   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
10859     (gnus-summary-save-article arg)))
10860
10861 (defun gnus-summary-save-article-rmail (&optional arg)
10862   "Append the current article to an rmail file.
10863 If N is a positive number, save the N next articles.
10864 If N is a negative number, save the N previous articles.
10865 If N is nil and any articles have been marked with the process mark,
10866 save those articles instead."
10867   (interactive "P")
10868   (require 'gnus-art)
10869   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
10870     (gnus-summary-save-article arg)))
10871
10872 (defun gnus-summary-save-article-file (&optional arg)
10873   "Append the current article to a file.
10874 If N is a positive number, save the N next articles.
10875 If N is a negative number, save the N previous articles.
10876 If N is nil and any articles have been marked with the process mark,
10877 save those articles instead."
10878   (interactive "P")
10879   (require 'gnus-art)
10880   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
10881     (gnus-summary-save-article arg)))
10882
10883 (defun gnus-summary-write-article-file (&optional arg)
10884   "Write the current article to a file, deleting the previous file.
10885 If N is a positive number, save the N next articles.
10886 If N is a negative number, save the N previous articles.
10887 If N is nil and any articles have been marked with the process mark,
10888 save those articles instead."
10889   (interactive "P")
10890   (require 'gnus-art)
10891   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
10892     (gnus-summary-save-article arg)))
10893
10894 (defun gnus-summary-save-article-body-file (&optional arg)
10895   "Append the current article body to a file.
10896 If N is a positive number, save the N next articles.
10897 If N is a negative number, save the N previous articles.
10898 If N is nil and any articles have been marked with the process mark,
10899 save those articles instead."
10900   (interactive "P")
10901   (require 'gnus-art)
10902   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
10903     (gnus-summary-save-article arg)))
10904
10905 (defun gnus-summary-muttprint (&optional arg)
10906   "Print the current article using Muttprint.
10907 If N is a positive number, save the N next articles.
10908 If N is a negative number, save the N previous articles.
10909 If N is nil and any articles have been marked with the process mark,
10910 save those articles instead."
10911   (interactive "P")
10912   (require 'gnus-art)
10913   (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
10914     (gnus-summary-save-article arg t)))
10915
10916 (defun gnus-summary-pipe-message (program)
10917   "Pipe the current article through PROGRAM."
10918   (interactive "sProgram: ")
10919   (gnus-summary-select-article)
10920   (let ((mail-header-separator ""))
10921     (gnus-eval-in-buffer-window gnus-article-buffer
10922       (save-restriction
10923         (widen)
10924         (let ((start (window-start))
10925               buffer-read-only)
10926           (message-pipe-buffer-body program)
10927           (set-window-start (get-buffer-window (current-buffer)) start))))))
10928
10929 (defun gnus-get-split-value (methods)
10930   "Return a value based on the split METHODS."
10931   (let (split-name method result match)
10932     (when methods
10933       (save-excursion
10934         (set-buffer gnus-original-article-buffer)
10935         (save-restriction
10936           (nnheader-narrow-to-headers)
10937           (while (and methods (not split-name))
10938             (goto-char (point-min))
10939             (setq method (pop methods))
10940             (setq match (car method))
10941             (when (cond
10942                    ((stringp match)
10943                     ;; Regular expression.
10944                     (ignore-errors
10945                       (re-search-forward match nil t)))
10946                    ((functionp match)
10947                     ;; Function.
10948                     (save-restriction
10949                       (widen)
10950                       (setq result (funcall match gnus-newsgroup-name))))
10951                    ((consp match)
10952                     ;; Form.
10953                     (save-restriction
10954                       (widen)
10955                       (setq result (eval match)))))
10956               (setq split-name (cdr method))
10957               (cond ((stringp result)
10958                      (push (expand-file-name
10959                             result gnus-article-save-directory)
10960                            split-name))
10961                     ((consp result)
10962                      (setq split-name (append result split-name)))))))))
10963     (nreverse split-name)))
10964
10965 (defun gnus-valid-move-group-p (group)
10966   (and (boundp group)
10967        (symbol-name group)
10968        (symbol-value group)
10969        (gnus-get-function (gnus-find-method-for-group
10970                            (symbol-name group)) 'request-accept-article t)))
10971
10972 (defun gnus-read-move-group-name (prompt default articles prefix)
10973   "Read a group name."
10974   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
10975          (minibuffer-confirm-incomplete nil) ; XEmacs
10976          (prom
10977           (format "%s %s to:"
10978                   prompt
10979                   (if (> (length articles) 1)
10980                       (format "these %d articles" (length articles))
10981                     "this article")))
10982          (to-newsgroup
10983           (cond
10984            ((null split-name)
10985             (gnus-completing-read-with-default
10986              default prom
10987              gnus-active-hashtb
10988              'gnus-valid-move-group-p
10989              nil prefix
10990              'gnus-group-history))
10991            ((= 1 (length split-name))
10992             (gnus-completing-read-with-default
10993              (car split-name) prom
10994              gnus-active-hashtb
10995              'gnus-valid-move-group-p
10996              nil nil
10997              'gnus-group-history))
10998            (t
10999             (gnus-completing-read-with-default
11000              nil prom
11001              (mapcar (lambda (el) (list el))
11002                      (nreverse split-name))
11003              nil nil nil
11004              'gnus-group-history))))
11005          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
11006     (when to-newsgroup
11007       (if (or (string= to-newsgroup "")
11008               (string= to-newsgroup prefix))
11009           (setq to-newsgroup default))
11010       (unless to-newsgroup
11011         (error "No group name entered"))
11012       (or (gnus-active to-newsgroup)
11013           (gnus-activate-group to-newsgroup nil nil to-method)
11014           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
11015                                      to-newsgroup))
11016               (or (and (gnus-request-create-group to-newsgroup to-method)
11017                        (gnus-activate-group
11018                         to-newsgroup nil nil to-method)
11019                        (gnus-subscribe-group to-newsgroup))
11020                   (error "Couldn't create group %s" to-newsgroup)))
11021           (error "No such group: %s" to-newsgroup)))
11022     to-newsgroup))
11023
11024 (defun gnus-summary-save-parts (type dir n &optional reverse)
11025   "Save parts matching TYPE to DIR.
11026 If REVERSE, save parts that do not match TYPE."
11027   (interactive
11028    (list (read-string "Save parts of type: "
11029                       (or (car gnus-summary-save-parts-type-history)
11030                           gnus-summary-save-parts-default-mime)
11031                       'gnus-summary-save-parts-type-history)
11032          (setq gnus-summary-save-parts-last-directory
11033                (read-file-name "Save to directory: "
11034                                gnus-summary-save-parts-last-directory
11035                                nil t))
11036          current-prefix-arg))
11037   (gnus-summary-iterate n
11038     (let ((gnus-display-mime-function nil)
11039           (gnus-inhibit-treatment t))
11040       (gnus-summary-select-article))
11041     (save-excursion
11042       (set-buffer gnus-article-buffer)
11043       (let ((handles (or gnus-article-mime-handles
11044                          (mm-dissect-buffer nil gnus-article-loose-mime)
11045                          (and gnus-article-emulate-mime
11046                               (mm-uu-dissect)))))
11047         (when handles
11048           (gnus-summary-save-parts-1 type dir handles reverse)
11049           (unless gnus-article-mime-handles ;; Don't destroy this case.
11050             (mm-destroy-parts handles)))))))
11051
11052 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11053   (if (stringp (car handle))
11054       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11055               (cdr handle))
11056     (when (if reverse
11057               (not (string-match type (mm-handle-media-type handle)))
11058             (string-match type (mm-handle-media-type handle)))
11059       (let ((file (expand-file-name
11060                    (gnus-map-function
11061                     mm-file-name-rewrite-functions
11062                     (file-name-nondirectory
11063                      (or
11064                       (mail-content-type-get
11065                        (mm-handle-disposition handle) 'filename)
11066                       (mail-content-type-get
11067                        (mm-handle-type handle) 'name)
11068                       (concat gnus-newsgroup-name
11069                               "." (number-to-string
11070                                    (cdr gnus-article-current))))))
11071                    dir)))
11072         (unless (file-exists-p file)
11073           (mm-save-part-to-file handle file))))))
11074
11075 ;; Summary extract commands
11076
11077 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
11078   (let ((buffer-read-only nil)
11079         (article (gnus-summary-article-number))
11080         after-article b e)
11081     (unless (gnus-summary-goto-subject article)
11082       (error "No such article: %d" article))
11083     (gnus-summary-position-point)
11084     ;; If all commands are to be bunched up on one line, we collect
11085     ;; them here.
11086     (unless gnus-view-pseudos-separately
11087       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
11088             files action)
11089         (while ps
11090           (setq action (cdr (assq 'action (car ps))))
11091           (setq files (list (cdr (assq 'name (car ps)))))
11092           (while (and ps (cdr ps)
11093                       (string= (or action "1")
11094                                (or (cdr (assq 'action (cadr ps))) "2")))
11095             (push (cdr (assq 'name (cadr ps))) files)
11096             (setcdr ps (cddr ps)))
11097           (when files
11098             (when (not (string-match "%s" action))
11099               (push " " files))
11100             (push " " files)
11101             (when (assq 'execute (car ps))
11102               (setcdr (assq 'execute (car ps))
11103                       (funcall (if (string-match "%s" action)
11104                                    'format 'concat)
11105                                action
11106                                (mapconcat
11107                                 (lambda (f)
11108                                   (if (equal f " ")
11109                                       f
11110                                     (shell-quote-argument f)))
11111                                 files " ")))))
11112           (setq ps (cdr ps)))))
11113     (if (and gnus-view-pseudos (not not-view))
11114         (while pslist
11115           (when (assq 'execute (car pslist))
11116             (gnus-execute-command (cdr (assq 'execute (car pslist)))
11117                                   (eq gnus-view-pseudos 'not-confirm)))
11118           (setq pslist (cdr pslist)))
11119       (save-excursion
11120         (while pslist
11121           (setq after-article (or (cdr (assq 'article (car pslist)))
11122                                   (gnus-summary-article-number)))
11123           (gnus-summary-goto-subject after-article)
11124           (forward-line 1)
11125           (setq b (point))
11126           (insert "    " (file-name-nondirectory
11127                           (cdr (assq 'name (car pslist))))
11128                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
11129           (setq e (point))
11130           (forward-line -1)             ; back to `b'
11131           (gnus-add-text-properties
11132            b (1- e) (list 'gnus-number gnus-reffed-article-number
11133                           gnus-mouse-face-prop gnus-mouse-face))
11134           (gnus-data-enter
11135            after-article gnus-reffed-article-number
11136            gnus-unread-mark b (car pslist) 0 (- e b))
11137           (setq gnus-newsgroup-unreads
11138                 (gnus-add-to-sorted-list gnus-newsgroup-unreads
11139                                          gnus-reffed-article-number))
11140           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
11141           (setq pslist (cdr pslist)))))))
11142
11143 (defun gnus-pseudos< (p1 p2)
11144   (let ((c1 (cdr (assq 'action p1)))
11145         (c2 (cdr (assq 'action p2))))
11146     (and c1 c2 (string< c1 c2))))
11147
11148 (defun gnus-request-pseudo-article (props)
11149   (cond ((assq 'execute props)
11150          (gnus-execute-command (cdr (assq 'execute props)))))
11151   (let ((gnus-current-article (gnus-summary-article-number)))
11152     (gnus-run-hooks 'gnus-mark-article-hook)))
11153
11154 (defun gnus-execute-command (command &optional automatic)
11155   (save-excursion
11156     (gnus-article-setup-buffer)
11157     (set-buffer gnus-article-buffer)
11158     (setq buffer-read-only nil)
11159     (let ((command (if automatic command
11160                      (read-string "Command: " (cons command 0)))))
11161       (erase-buffer)
11162       (insert "$ " command "\n\n")
11163       (if gnus-view-pseudo-asynchronously
11164           (start-process "gnus-execute" (current-buffer) shell-file-name
11165                          shell-command-switch command)
11166         (call-process shell-file-name nil t nil
11167                       shell-command-switch command)))))
11168
11169 ;; Summary kill commands.
11170
11171 (defun gnus-summary-edit-global-kill (article)
11172   "Edit the \"global\" kill file."
11173   (interactive (list (gnus-summary-article-number)))
11174   (gnus-group-edit-global-kill article))
11175
11176 (defun gnus-summary-edit-local-kill ()
11177   "Edit a local kill file applied to the current newsgroup."
11178   (interactive)
11179   (setq gnus-current-headers (gnus-summary-article-header))
11180   (gnus-group-edit-local-kill
11181    (gnus-summary-article-number) gnus-newsgroup-name))
11182
11183 ;;; Header reading.
11184
11185 (defun gnus-read-header (id &optional header)
11186   "Read the headers of article ID and enter them into the Gnus system."
11187   (let ((group gnus-newsgroup-name)
11188         (gnus-override-method
11189          (or
11190           gnus-override-method
11191           (and (gnus-news-group-p gnus-newsgroup-name)
11192                (car (gnus-refer-article-methods)))))
11193         where)
11194     ;; First we check to see whether the header in question is already
11195     ;; fetched.
11196     (if (stringp id)
11197         ;; This is a Message-ID.
11198         (setq header (or header (gnus-id-to-header id)))
11199       ;; This is an article number.
11200       (setq header (or header (gnus-summary-article-header id))))
11201     (if (and header
11202              (not (gnus-summary-article-sparse-p (mail-header-number header))))
11203         ;; We have found the header.
11204         header
11205       ;; If this is a sparse article, we have to nix out its
11206       ;; previous entry in the thread hashtb.
11207       (when (and header
11208                  (gnus-summary-article-sparse-p (mail-header-number header)))
11209         (let* ((parent (gnus-parent-id (mail-header-references header)))
11210                (thread (and parent (gnus-id-to-thread parent))))
11211           (when thread
11212             (delq (assq header thread) thread))))
11213       ;; We have to really fetch the header to this article.
11214       (save-excursion
11215         (set-buffer nntp-server-buffer)
11216         (when (setq where (gnus-request-head id group))
11217           (nnheader-fold-continuation-lines)
11218           (goto-char (point-max))
11219           (insert ".\n")
11220           (goto-char (point-min))
11221           (insert "211 ")
11222           (princ (cond
11223                   ((numberp id) id)
11224                   ((cdr where) (cdr where))
11225                   (header (mail-header-number header))
11226                   (t gnus-reffed-article-number))
11227                  (current-buffer))
11228           (insert " Article retrieved.\n"))
11229         (if (or (not where)
11230                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
11231             ()                          ; Malformed head.
11232           (unless (gnus-summary-article-sparse-p (mail-header-number header))
11233             (when (and (stringp id)
11234                        (not (string= (gnus-group-real-name group)
11235                                      (car where))))
11236               ;; If we fetched by Message-ID and the article came
11237               ;; from a different group, we fudge some bogus article
11238               ;; numbers for this article.
11239               (mail-header-set-number header gnus-reffed-article-number))
11240             (save-excursion
11241               (set-buffer gnus-summary-buffer)
11242               (decf gnus-reffed-article-number)
11243               (gnus-remove-header (mail-header-number header))
11244               (push header gnus-newsgroup-headers)
11245               (setq gnus-current-headers header)
11246               (push (mail-header-number header) gnus-newsgroup-limit)))
11247           header)))))
11248
11249 (defun gnus-remove-header (number)
11250   "Remove header NUMBER from `gnus-newsgroup-headers'."
11251   (if (and gnus-newsgroup-headers
11252            (= number (mail-header-number (car gnus-newsgroup-headers))))
11253       (pop gnus-newsgroup-headers)
11254     (let ((headers gnus-newsgroup-headers))
11255       (while (and (cdr headers)
11256                   (not (= number (mail-header-number (cadr headers)))))
11257         (pop headers))
11258       (when (cdr headers)
11259         (setcdr headers (cddr headers))))))
11260
11261 ;;;
11262 ;;; summary highlights
11263 ;;;
11264
11265 (defun gnus-highlight-selected-summary ()
11266   "Highlight selected article in summary buffer."
11267   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
11268   (when gnus-summary-selected-face
11269     (save-excursion
11270       (let* ((beg (point-at-bol))
11271              (end (point-at-eol))
11272              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
11273              (from (if (get-text-property beg gnus-mouse-face-prop)
11274                        beg
11275                      (or (next-single-property-change
11276                           beg gnus-mouse-face-prop nil end)
11277                          beg)))
11278              (to
11279               (if (= from end)
11280                   (- from 2)
11281                 (or (next-single-property-change
11282                      from gnus-mouse-face-prop nil end)
11283                     end))))
11284         ;; If no mouse-face prop on line we will have to = from = end,
11285         ;; so we highlight the entire line instead.
11286         (when (= (+ to 2) from)
11287           (setq from beg)
11288           (setq to end))
11289         (if gnus-newsgroup-selected-overlay
11290             ;; Move old overlay.
11291             (gnus-move-overlay
11292              gnus-newsgroup-selected-overlay from to (current-buffer))
11293           ;; Create new overlay.
11294           (gnus-overlay-put
11295            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
11296            'face gnus-summary-selected-face))))))
11297
11298 (defvar gnus-summary-highlight-line-cached nil)
11299 (defvar gnus-summary-highlight-line-trigger nil)
11300
11301 (defun gnus-summary-highlight-line-0 ()
11302   (if (and (eq gnus-summary-highlight-line-trigger
11303                gnus-summary-highlight)
11304            gnus-summary-highlight-line-cached)
11305       gnus-summary-highlight-line-cached
11306     (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
11307           gnus-summary-highlight-line-cached
11308           (let* ((cond (list 'cond))
11309                  (c cond)
11310                  (list gnus-summary-highlight))
11311             (while list
11312               (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
11313                               nil))
11314               (setq c (cdr c)
11315                     list (cdr list)))
11316             (gnus-byte-compile (list 'lambda nil cond))))))
11317
11318 (defun gnus-summary-highlight-line ()
11319   "Highlight current line according to `gnus-summary-highlight'."
11320   (let* ((beg (point-at-bol))
11321          (article (or (gnus-summary-article-number) gnus-current-article))
11322          (score (or (cdr (assq article
11323                                gnus-newsgroup-scored))
11324                     gnus-summary-default-score 0))
11325          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
11326          (inhibit-read-only t)
11327          (default gnus-summary-default-score)
11328          (default-high gnus-summary-default-high-score)
11329          (default-low gnus-summary-default-low-score)
11330          (uncached (and gnus-summary-use-undownloaded-faces
11331                         (memq article gnus-newsgroup-undownloaded))))
11332     (let ((face (funcall (gnus-summary-highlight-line-0))))
11333       (unless (eq face (get-text-property beg 'face))
11334         (gnus-put-text-property-excluding-characters-with-faces
11335          beg (point-at-eol) 'face
11336          (setq face (if (boundp face) (symbol-value face) face)))
11337         (when gnus-summary-highlight-line-function
11338           (funcall gnus-summary-highlight-line-function article face))))))
11339
11340 (defun gnus-update-read-articles (group unread &optional compute)
11341   "Update the list of read articles in GROUP.
11342 UNREAD is a sorted list."
11343   (let ((active (or gnus-newsgroup-active (gnus-active group)))
11344         (info (gnus-get-info group))
11345         (prev 1)
11346         read)
11347     (if (or (not info) (not active))
11348         ;; There is no info on this group if it was, in fact,
11349         ;; killed.  Gnus stores no information on killed groups, so
11350         ;; there's nothing to be done.
11351         ;; One could store the information somewhere temporarily,
11352         ;; perhaps...  Hmmm...
11353         ()
11354       ;; Remove any negative articles numbers.
11355       (while (and unread (< (car unread) 0))
11356         (setq unread (cdr unread)))
11357       ;; Remove any expired article numbers
11358       (while (and unread (< (car unread) (car active)))
11359         (setq unread (cdr unread)))
11360       ;; Compute the ranges of read articles by looking at the list of
11361       ;; unread articles.
11362       (while unread
11363         (when (/= (car unread) prev)
11364           (push (if (= prev (1- (car unread))) prev
11365                   (cons prev (1- (car unread))))
11366                 read))
11367         (setq prev (1+ (car unread)))
11368         (setq unread (cdr unread)))
11369       (when (<= prev (cdr active))
11370         (push (cons prev (cdr active)) read))
11371       (setq read (if (> (length read) 1) (nreverse read) read))
11372       (if compute
11373           read
11374         (save-excursion
11375           (let (setmarkundo)
11376             ;; Propagate the read marks to the backend.
11377             (when (gnus-check-backend-function 'request-set-mark group)
11378               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
11379                     (add (gnus-remove-from-range read (gnus-info-read info))))
11380                 (when (or add del)
11381                   (unless (gnus-check-group group)
11382                     (error "Can't open server for %s" group))
11383                   (gnus-request-set-mark
11384                    group (delq nil (list (if add (list add 'add '(read)))
11385                                          (if del (list del 'del '(read))))))
11386                   (setq setmarkundo
11387                         `(gnus-request-set-mark
11388                           ,group
11389                           ',(delq nil (list
11390                                        (if del (list del 'add '(read)))
11391                                        (if add (list add 'del '(read))))))))))
11392             (set-buffer gnus-group-buffer)
11393             (gnus-undo-register
11394               `(progn
11395                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
11396                  (gnus-info-set-read ',info ',(gnus-info-read info))
11397                  (gnus-get-unread-articles-in-group ',info
11398                                                     (gnus-active ,group))
11399                  (gnus-group-update-group ,group t)
11400                  ,setmarkundo))))
11401         ;; Enter this list into the group info.
11402         (gnus-info-set-read info read)
11403         ;; Set the number of unread articles in gnus-newsrc-hashtb.
11404         (gnus-get-unread-articles-in-group info (gnus-active group))
11405         t))))
11406
11407 (defun gnus-offer-save-summaries ()
11408   "Offer to save all active summary buffers."
11409   (let (buffers)
11410     ;; Go through all buffers and find all summaries.
11411     (dolist (buffer (buffer-list))
11412       (when (and (setq buffer (buffer-name buffer))
11413                  (string-match "Summary" buffer)
11414                  (save-excursion
11415                    (set-buffer buffer)
11416                    ;; We check that this is, indeed, a summary buffer.
11417                    (and (eq major-mode 'gnus-summary-mode)
11418                         ;; Also make sure this isn't bogus.
11419                         gnus-newsgroup-prepared
11420                         ;; Also make sure that this isn't a
11421                         ;; dead summary buffer.
11422                         (not gnus-dead-summary-mode))))
11423         (push buffer buffers)))
11424     ;; Go through all these summary buffers and offer to save them.
11425     (when buffers
11426       (save-excursion
11427         (map-y-or-n-p
11428          "Update summary buffer %s? "
11429          (lambda (buf)
11430            (switch-to-buffer buf)
11431            (gnus-summary-exit))
11432          buffers)))))
11433
11434 (defun gnus-summary-setup-default-charset ()
11435   "Setup newsgroup default charset."
11436   (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
11437       (setq gnus-newsgroup-charset nil)
11438     (let* ((ignored-charsets
11439             (or gnus-newsgroup-ephemeral-ignored-charsets
11440                 (append
11441                  (and gnus-newsgroup-name
11442                       (gnus-parameter-ignored-charsets gnus-newsgroup-name))
11443                  gnus-newsgroup-ignored-charsets))))
11444       (setq gnus-newsgroup-charset
11445             (or gnus-newsgroup-ephemeral-charset
11446                 (and gnus-newsgroup-name
11447                      (gnus-parameter-charset gnus-newsgroup-name))
11448                 gnus-default-charset))
11449       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
11450            ignored-charsets))))
11451
11452 ;;;
11453 ;;; Mime Commands
11454 ;;;
11455
11456 (defun gnus-summary-display-buttonized (&optional show-all-parts)
11457   "Display the current article buffer fully MIME-buttonized.
11458 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
11459 treated as multipart/mixed."
11460   (interactive "P")
11461   (require 'gnus-art)
11462   (let ((gnus-unbuttonized-mime-types nil)
11463         (gnus-mime-display-multipart-as-mixed show-all-parts))
11464     (gnus-summary-show-article)))
11465
11466 (defun gnus-summary-repair-multipart (article)
11467   "Add a Content-Type header to a multipart article without one."
11468   (interactive (list (gnus-summary-article-number)))
11469   (gnus-with-article article
11470     (message-narrow-to-head)
11471     (message-remove-header "Mime-Version")
11472     (goto-char (point-max))
11473     (insert "Mime-Version: 1.0\n")
11474     (widen)
11475     (when (search-forward "\n--" nil t)
11476       (let ((separator (buffer-substring (point) (point-at-eol))))
11477         (message-narrow-to-head)
11478         (message-remove-header "Content-Type")
11479         (goto-char (point-max))
11480         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
11481                         separator))
11482         (widen))))
11483   (let (gnus-mark-article-hook)
11484     (gnus-summary-select-article t t nil article)))
11485
11486 (defun gnus-summary-toggle-display-buttonized ()
11487   "Toggle the buttonizing of the article buffer."
11488   (interactive)
11489   (require 'gnus-art)
11490   (if (setq gnus-inhibit-mime-unbuttonizing
11491             (not gnus-inhibit-mime-unbuttonizing))
11492       (let ((gnus-unbuttonized-mime-types nil))
11493         (gnus-summary-show-article))
11494     (gnus-summary-show-article)))
11495
11496 ;;;
11497 ;;; Generic summary marking commands
11498 ;;;
11499
11500 (defvar gnus-summary-marking-alist
11501   '((read gnus-del-mark "d")
11502     (unread gnus-unread-mark "u")
11503     (ticked gnus-ticked-mark "!")
11504     (dormant gnus-dormant-mark "?")
11505     (expirable gnus-expirable-mark "e"))
11506   "An alist of names/marks/keystrokes.")
11507
11508 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
11509 (defvar gnus-summary-mark-map)
11510
11511 (defun gnus-summary-make-all-marking-commands ()
11512   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
11513   (dolist (elem gnus-summary-marking-alist)
11514     (apply 'gnus-summary-make-marking-command elem)))
11515
11516 (defun gnus-summary-make-marking-command (name mark keystroke)
11517   (let ((map (make-sparse-keymap)))
11518     (define-key gnus-summary-generic-mark-map keystroke map)
11519     (dolist (lway `((next "next" next nil "n")
11520                     (next-unread "next unread" next t "N")
11521                     (prev "previous" prev nil "p")
11522                     (prev-unread "previous unread" prev t "P")
11523                     (nomove "" nil nil ,keystroke)))
11524       (let ((func (gnus-summary-make-marking-command-1
11525                    mark (car lway) lway name)))
11526         (setq func (eval func))
11527         (define-key map (nth 4 lway) func)))))
11528
11529 (defun gnus-summary-make-marking-command-1 (mark way lway name)
11530   `(defun ,(intern
11531             (format "gnus-summary-put-mark-as-%s%s"
11532                     name (if (eq way 'nomove)
11533                              ""
11534                            (concat "-" (symbol-name way)))))
11535      (n)
11536      ,(format
11537        "Mark the current article as %s%s.
11538 If N, the prefix, then repeat N times.
11539 If N is negative, move in reverse order.
11540 The difference between N and the actual number of articles marked is
11541 returned."
11542        name (cadr lway))
11543      (interactive "p")
11544      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
11545
11546 (defun gnus-summary-generic-mark (n mark move unread)
11547   "Mark N articles with MARK."
11548   (unless (eq major-mode 'gnus-summary-mode)
11549     (error "This command can only be used in the summary buffer"))
11550   (gnus-summary-show-thread)
11551   (let ((nummove
11552          (cond
11553           ((eq move 'next) 1)
11554           ((eq move 'prev) -1)
11555           (t 0))))
11556     (if (zerop nummove)
11557         (setq n 1)
11558       (when (< n 0)
11559         (setq n (abs n)
11560               nummove (* -1 nummove))))
11561     (while (and (> n 0)
11562                 (gnus-summary-mark-article nil mark)
11563                 (zerop (gnus-summary-next-subject nummove unread t)))
11564       (setq n (1- n)))
11565     (when (/= 0 n)
11566       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
11567     (gnus-summary-recenter)
11568     (gnus-summary-position-point)
11569     (gnus-set-mode-line 'summary)
11570     n))
11571
11572 (defun gnus-summary-insert-articles (articles)
11573   (when (setq articles
11574               (gnus-sorted-difference articles
11575                                       (mapcar (lambda (h)
11576                                                 (mail-header-number h))
11577                                               gnus-newsgroup-headers)))
11578     (setq gnus-newsgroup-headers
11579           (gnus-merge 'list
11580                       gnus-newsgroup-headers
11581                       (gnus-fetch-headers articles)
11582                       'gnus-article-sort-by-number))
11583     ;; Suppress duplicates?
11584     (when gnus-suppress-duplicates
11585       (gnus-dup-suppress-articles))
11586
11587     ;; We might want to build some more threads first.
11588     (when (and gnus-fetch-old-headers
11589                (eq gnus-headers-retrieved-by 'nov))
11590       (if (eq gnus-fetch-old-headers 'invisible)
11591           (gnus-build-all-threads)
11592         (gnus-build-old-threads)))
11593     ;; Let the Gnus agent mark articles as read.
11594     (when gnus-agent
11595       (gnus-agent-get-undownloaded-list))
11596     ;; Remove list identifiers from subject
11597     (when gnus-list-identifiers
11598       (gnus-summary-remove-list-identifiers))
11599     ;; First and last article in this newsgroup.
11600     (when gnus-newsgroup-headers
11601       (setq gnus-newsgroup-begin
11602             (mail-header-number (car gnus-newsgroup-headers))
11603             gnus-newsgroup-end
11604             (mail-header-number
11605              (gnus-last-element gnus-newsgroup-headers))))
11606     (when gnus-use-scoring
11607       (gnus-possibly-score-headers))))
11608
11609 (defun gnus-summary-insert-old-articles (&optional all)
11610   "Insert all old articles in this group.
11611 If ALL is non-nil, already read articles become readable.
11612 If ALL is a number, fetch this number of articles."
11613   (interactive "P")
11614   (prog1
11615       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11616             older len)
11617         (setq older
11618               ;; Some nntp servers lie about their active range.  When
11619               ;; this happens, the active range can be in the millions.
11620               ;; Use a compressed range to avoid creating a huge list.
11621               (gnus-range-difference (list gnus-newsgroup-active) old))
11622         (setq len (gnus-range-length older))
11623         (cond
11624          ((null older) nil)
11625          ((numberp all)
11626           (if (< all len)
11627               (let ((older-range (nreverse older)))
11628                 (setq older nil)
11629
11630                 (while (> all 0)
11631                   (let* ((r (pop older-range))
11632                          (min (if (numberp r) r (car r)))
11633                          (max (if (numberp r) r (cdr r))))
11634                     (while (and (<= min max)
11635                                 (> all 0))
11636                       (push max older)
11637                       (setq all (1- all)
11638                             max (1- max))))))
11639             (setq older (gnus-uncompress-range older))))
11640          (all
11641           (setq older (gnus-uncompress-range older)))
11642          (t
11643           (when (and (numberp gnus-large-newsgroup)
11644                    (> len gnus-large-newsgroup))
11645               (let* ((cursor-in-echo-area nil)
11646                      (initial (gnus-parameter-large-newsgroup-initial
11647                                gnus-newsgroup-name))
11648                      (input
11649                       (read-string
11650                        (format
11651                         "How many articles from %s (%s %d): "
11652                         (gnus-limit-string
11653                          (gnus-group-decoded-name gnus-newsgroup-name) 35)
11654                         (if initial "max" "default")
11655                         len)
11656                        (if initial
11657                            (cons (number-to-string initial)
11658                                  0)))))
11659                 (unless (string-match "^[ \t]*$" input)
11660                   (setq all (string-to-number input))
11661                   (if (< all len)
11662                       (let ((older-range (nreverse older)))
11663                         (setq older nil)
11664
11665                         (while (> all 0)
11666                           (let* ((r (pop older-range))
11667                                  (min (if (numberp r) r (car r)))
11668                                  (max (if (numberp r) r (cdr r))))
11669                             (while (and (<= min max)
11670                                         (> all 0))
11671                               (push max older)
11672                               (setq all (1- all)
11673                                     max (1- max))))))))))
11674           (setq older (gnus-uncompress-range older))))
11675         (if (not older)
11676             (message "No old news.")
11677           (gnus-summary-insert-articles older)
11678           (gnus-summary-limit (gnus-sorted-nunion old older))))
11679     (gnus-summary-position-point)))
11680
11681 (defun gnus-summary-insert-new-articles ()
11682   "Insert all new articles in this group."
11683   (interactive)
11684   (prog1
11685       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11686             (old-active gnus-newsgroup-active)
11687             (nnmail-fetched-sources (list t))
11688             i new)
11689         (setq gnus-newsgroup-active
11690               (gnus-activate-group gnus-newsgroup-name 'scan))
11691         (setq i (cdr gnus-newsgroup-active))
11692         (while (> i (cdr old-active))
11693           (push i new)
11694           (decf i))
11695         (if (not new)
11696             (message "No gnus is bad news")
11697           (gnus-summary-insert-articles new)
11698           (setq gnus-newsgroup-unreads
11699                 (gnus-sorted-nunion gnus-newsgroup-unreads new))
11700           (gnus-summary-limit (gnus-sorted-nunion old new))))
11701     (gnus-summary-position-point)))
11702
11703 (gnus-summary-make-all-marking-commands)
11704
11705 (gnus-ems-redefine)
11706
11707 (provide 'gnus-sum)
11708
11709 (run-hooks 'gnus-sum-load-hook)
11710
11711 ;; Local Variables:
11712 ;; coding: iso-8859-1
11713 ;; End:
11714
11715 ;;; gnus-sum.el ends here