Synch to No Gnus 200410182302.
[elisp/gnus.git-] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Semi-gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;;         MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;;         Katsumi Yamaoka  <yamaoka@jpl.org>
8 ;; Keywords: mail, news, MIME
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 (eval-when-compile
32   (require 'cl)
33   (defvar tool-bar-map))
34
35 (require 'gnus)
36 (require 'gnus-group)
37 (require 'gnus-spec)
38 (require 'gnus-range)
39 (require 'gnus-int)
40 (require 'gnus-undo)
41 (require 'gnus-util)
42 (require 'nnoo)
43
44 (eval-when-compile
45   (require 'mime-play)
46   (require 'static))
47
48 (eval-and-compile
49   (autoload 'pgg-decrypt-region "pgg" nil t)
50   (autoload 'pgg-verify-region "pgg" nil t))
51
52 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
53 (autoload 'gnus-cache-write-active "gnus-cache")
54 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
55 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
56 (autoload 'gnus-pick-line-number "gnus-salt" nil t)
57 (autoload 'mm-uu-dissect "mm-uu")
58 (autoload 'gnus-article-outlook-deuglify-article "deuglify"
59   "Deuglify broken Outlook (Express) articles and redisplay."
60   t)
61 (autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
62 (autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
63 (autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
64
65 (defcustom gnus-kill-summary-on-exit t
66   "*If non-nil, kill the summary buffer when you exit from it.
67 If nil, the summary will become a \"*Dead Summary*\" buffer, and
68 it will be killed sometime later."
69   :group 'gnus-summary-exit
70   :type 'boolean)
71
72 (defcustom gnus-fetch-old-headers nil
73   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
74 If an unread article in the group refers to an older, already read (or
75 just marked as read) article, the old article will not normally be
76 displayed in the Summary buffer.  If this variable is t, Gnus
77 will attempt to grab the headers to the old articles, and thereby
78 build complete threads.  If it has the value `some', only enough
79 headers to connect otherwise loose threads will be displayed.  This
80 variable can also be a number.  In that case, no more than that number
81 of old headers will be fetched.  If it has the value `invisible', all
82 old headers will be fetched, but none will be displayed.
83
84 The server has to support NOV for any of this to work."
85   :group 'gnus-thread
86   :type '(choice (const :tag "off" nil)
87                  (const :tag "on" t)
88                  (const some)
89                  (const invisible)
90                  number
91                  (sexp :menu-tag "other" t)))
92
93 (defcustom gnus-refer-thread-limit 200
94   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
95 If t, fetch all the available old headers."
96   :group 'gnus-thread
97   :type '(choice number
98                  (sexp :menu-tag "other" t)))
99
100 (defcustom gnus-summary-make-false-root 'adopt
101   "*nil means that Gnus won't gather loose threads.
102 If the root of a thread has expired or been read in a previous
103 session, the information necessary to build a complete thread has been
104 lost.  Instead of having many small sub-threads from this original thread
105 scattered all over the summary buffer, Gnus can gather them.
106
107 If non-nil, Gnus will try to gather all loose sub-threads from an
108 original thread into one large thread.
109
110 If this variable is non-nil, it should be one of `none', `adopt',
111 `dummy' or `empty'.
112
113 If this variable is `none', Gnus will not make a false root, but just
114 present the sub-threads after another.
115 If this variable is `dummy', Gnus will create a dummy root that will
116 have all the sub-threads as children.
117 If this variable is `adopt', Gnus will make one of the \"children\"
118 the parent and mark all the step-children as such.
119 If this variable is `empty', the \"children\" are printed with empty
120 subject fields.  (Or rather, they will be printed with a string
121 given by the `gnus-summary-same-subject' variable.)"
122   :group 'gnus-thread
123   :type '(choice (const :tag "off" nil)
124                  (const none)
125                  (const dummy)
126                  (const adopt)
127                  (const empty)))
128
129 (defcustom gnus-summary-make-false-root-always nil
130   "Always make a false dummy root."
131   :version "21.4"
132   :group 'gnus-thread
133   :type 'boolean)
134
135 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
136   "*A regexp to match subjects to be excluded from loose thread gathering.
137 As loose thread gathering is done on subjects only, that means that
138 there can be many false gatherings performed.  By rooting out certain
139 common subjects, gathering might become saner."
140   :group 'gnus-thread
141   :type 'regexp)
142
143 (defcustom gnus-summary-gather-subject-limit nil
144   "*Maximum length of subject comparisons when gathering loose threads.
145 Use nil to compare full subjects.  Setting this variable to a low
146 number will help gather threads that have been corrupted by
147 newsreaders chopping off subject lines, but it might also mean that
148 unrelated articles that have subject that happen to begin with the
149 same few characters will be incorrectly gathered.
150
151 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
152 comparing subjects."
153   :group 'gnus-thread
154   :type '(choice (const :tag "off" nil)
155                  (const fuzzy)
156                  (sexp :menu-tag "on" t)))
157
158 (defcustom gnus-simplify-subject-functions nil
159   "List of functions taking a string argument that simplify subjects.
160 The functions are applied recursively.
161
162 Useful functions to put in this list include:
163 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
164 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
165   :group 'gnus-thread
166   :type '(repeat function))
167
168 (defcustom gnus-simplify-ignored-prefixes nil
169   "*Remove matches for this regexp from subject lines when simplifying fuzzily."
170   :group 'gnus-thread
171   :type '(choice (const :tag "off" nil)
172                  regexp))
173
174 (defcustom gnus-build-sparse-threads nil
175   "*If non-nil, fill in the gaps in threads.
176 If `some', only fill in the gaps that are needed to tie loose threads
177 together.  If `more', fill in all leaf nodes that Gnus can find.  If
178 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
179   :group 'gnus-thread
180   :type '(choice (const :tag "off" nil)
181                  (const some)
182                  (const more)
183                  (sexp :menu-tag "all" t)))
184
185 (defcustom gnus-summary-thread-gathering-function
186   'gnus-gather-threads-by-subject
187   "*Function used for gathering loose threads.
188 There are two pre-defined functions: `gnus-gather-threads-by-subject',
189 which only takes Subjects into consideration; and
190 `gnus-gather-threads-by-references', which compared the References
191 headers of the articles to find matches."
192   :group 'gnus-thread
193   :type '(radio (function-item gnus-gather-threads-by-subject)
194                 (function-item gnus-gather-threads-by-references)
195                 (function :tag "other")))
196
197 (defcustom gnus-summary-same-subject ""
198   "*String indicating that the current article has the same subject as the previous.
199 This variable will only be used if the value of
200 `gnus-summary-make-false-root' is `empty'."
201   :group 'gnus-summary-format
202   :type 'string)
203
204 (defcustom gnus-summary-goto-unread t
205   "*If t, many commands will go to the next unread article.
206 This applies to marking commands as well as other commands that
207 \"naturally\" select the next article, like, for instance, `SPC' at
208 the end of an article.
209
210 If nil, the marking commands do NOT go to the next unread article
211 \(they go to the next article instead).  If `never', commands that
212 usually go to the next unread article, will go to the next article,
213 whether it is read or not."
214   :group 'gnus-summary-marks
215   :link '(custom-manual "(gnus)Setting Marks")
216   :type '(choice (const :tag "off" nil)
217                  (const never)
218                  (sexp :menu-tag "on" t)))
219
220 (defcustom gnus-summary-default-score 0
221   "*Default article score level.
222 All scores generated by the score files will be added to this score.
223 If this variable is nil, scoring will be disabled."
224   :group 'gnus-score-default
225   :type '(choice (const :tag "disable")
226                  integer))
227
228 (defcustom gnus-summary-default-high-score 0
229   "*Default threshold for a high scored article.
230 An article will be highlighted as high scored if its score is greater
231 than this score."
232   :version "21.4"
233   :group 'gnus-score-default
234   :type 'integer)
235
236 (defcustom gnus-summary-default-low-score 0
237   "*Default threshold for a low scored article.
238 An article will be highlighted as low scored if its score is smaller
239 than this score."
240   :version "21.4"
241   :group 'gnus-score-default
242   :type 'integer)
243
244 (defcustom gnus-summary-zcore-fuzz 0
245   "*Fuzziness factor for the zcore in the summary buffer.
246 Articles with scores closer than this to `gnus-summary-default-score'
247 will not be marked."
248   :group 'gnus-summary-format
249   :type 'integer)
250
251 (defcustom gnus-simplify-subject-fuzzy-regexp nil
252   "*Strings to be removed when doing fuzzy matches.
253 This can either be a regular expression or list of regular expressions
254 that will be removed from subject strings if fuzzy subject
255 simplification is selected."
256   :group 'gnus-thread
257   :type '(repeat regexp))
258
259 (defcustom gnus-show-threads t
260   "*If non-nil, display threads in summary mode."
261   :group 'gnus-thread
262   :type 'boolean)
263
264 (defcustom gnus-thread-hide-subtree nil
265   "*If non-nil, hide all threads initially.
266 This can be a predicate specifier which says which threads to hide.
267 If threads are hidden, you have to run the command
268 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
269 to expose hidden threads."
270   :group 'gnus-thread
271   :type '(radio (sexp :format "Non-nil\n"
272                       :match (lambda (widget value)
273                                (not (or (consp value) (functionp value))))
274                       :value t)
275                 (const nil)
276                 (sexp :tag "Predicate specifier" :size 0)))
277
278 (defcustom gnus-thread-hide-killed t
279   "*If non-nil, hide killed threads automatically."
280   :group 'gnus-thread
281   :type 'boolean)
282
283 (defcustom gnus-thread-ignore-subject t
284   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
285 If nil, articles that have different subjects from their parents will
286 start separate threads."
287   :group 'gnus-thread
288   :type 'boolean)
289
290 (defcustom gnus-thread-operation-ignore-subject t
291   "*If non-nil, subjects will be ignored when doing thread commands.
292 This affects commands like `gnus-summary-kill-thread' and
293 `gnus-summary-lower-thread'.
294
295 If this variable is nil, articles in the same thread with different
296 subjects will not be included in the operation in question.  If this
297 variable is `fuzzy', only articles that have subjects that are fuzzily
298 equal will be included."
299   :group 'gnus-thread
300   :type '(choice (const :tag "off" nil)
301                  (const fuzzy)
302                  (sexp :tag "on" t)))
303
304 (defcustom gnus-thread-indent-level 4
305   "*Number that says how much each sub-thread should be indented."
306   :group 'gnus-thread
307   :type 'integer)
308
309 (defcustom gnus-auto-extend-newsgroup t
310   "*If non-nil, extend newsgroup forward and backward when requested."
311   :group 'gnus-summary-choose
312   :type 'boolean)
313
314 (defcustom gnus-auto-select-first t
315   "*If non-nil, select the article under point.
316 Which article this is is controlled by the `gnus-auto-select-subject'
317 variable.
318
319 If you want to prevent automatic selection of articles in some
320 newsgroups, set the variable to nil in `gnus-select-group-hook'."
321   :group 'gnus-group-select
322   :type '(choice (const :tag "none" nil)
323                  (sexp :menu-tag "first" t)))
324
325 (defcustom gnus-auto-select-subject 'unread
326   "*Says what subject to place under point when entering a group.
327
328 This variable can either be the symbols `first' (place point on the
329 first subject), `unread' (place point on the subject line of the first
330 unread article), `best' (place point on the subject line of the
331 higest-scored article), `unseen' (place point on the subject line of
332 the first unseen article), 'unseen-or-unread' (place point on the subject
333 line of the first unseen article or, if all article have been seen, on the
334 subject line of the first unread article), or a function to be called to
335 place point on some subject line."
336   :version "21.4"
337   :group 'gnus-group-select
338   :type '(choice (const best)
339                  (const unread)
340                  (const first)
341                  (const unseen)
342                  (const unseen-or-unread)))
343
344 (defcustom gnus-dont-select-after-jump-to-other-group nil
345   "If non-nil, don't select the first unread article after entering the
346 other group by the command `gnus-summary-jump-to-other-group'.  If nil,
347 it is depend on the value of `gnus-auto-select-first' whether to select
348 or not."
349   :group 'gnus-group-select
350   :type 'boolean)
351
352 (defcustom gnus-auto-select-next t
353   "*If non-nil, offer to go to the next group from the end of the previous.
354 If the value is t and the next newsgroup is empty, Gnus will exit
355 summary mode and go back to group mode.  If the value is neither nil
356 nor t, Gnus will select the following unread newsgroup.  In
357 particular, if the value is the symbol `quietly', the next unread
358 newsgroup will be selected without any confirmation, and if it is
359 `almost-quietly', the next group will be selected without any
360 confirmation if you are located on the last article in the group.
361 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
362 will go to the next group without confirmation."
363   :group 'gnus-summary-maneuvering
364   :type '(choice (const :tag "off" nil)
365                  (const quietly)
366                  (const almost-quietly)
367                  (const slightly-quietly)
368                  (sexp :menu-tag "on" t)))
369
370 (defcustom gnus-auto-select-same nil
371   "*If non-nil, select the next article with the same subject.
372 If there are no more articles with the same subject, go to
373 the first unread article."
374   :group 'gnus-summary-maneuvering
375   :type 'boolean)
376
377 (defcustom gnus-auto-goto-ignores 'unfetched
378   "*Says how to handle unfetched articles when maneuvering.
379
380 This variable can either be the symbols nil (maneuver to any
381 article), `undownloaded' (maneuvering while unplugged ignores articles
382 that have not been fetched), `always-undownloaded' (maneuvering always
383 ignores articles that have not been fetched), `unfetched' (maneuvering
384 ignores articles whose headers have not been fetched).
385
386 NOTE: The list of unfetched articles will always be nil when plugged
387 and, when unplugged, a subset of the undownloaded article list."
388   :version "21.4"
389   :group 'gnus-summary-maneuvering
390   :type '(choice (const :tag "None" nil)
391                  (const :tag "Undownloaded when unplugged" undownloaded)
392                  (const :tag "Undownloaded" always-undownloaded)
393                  (const :tag "Unfetched" unfetched)))
394
395 (defcustom gnus-summary-check-current nil
396   "*If non-nil, consider the current article when moving.
397 The \"unread\" movement commands will stay on the same line if the
398 current article is unread."
399   :group 'gnus-summary-maneuvering
400   :type 'boolean)
401
402 (defcustom gnus-auto-center-summary 2
403   "*If non-nil, always center the current summary buffer.
404 In particular, if `vertical' do only vertical recentering.  If non-nil
405 and non-`vertical', do both horizontal and vertical recentering."
406   :group 'gnus-summary-maneuvering
407   :type '(choice (const :tag "none" nil)
408                  (const vertical)
409                  (integer :tag "height")
410                  (sexp :menu-tag "both" t)))
411
412 (defvar gnus-auto-center-group t
413   "*If non-nil, always center the group buffer.")
414
415 (defcustom gnus-show-all-headers nil
416   "*If non-nil, don't hide any headers."
417   :group 'gnus-article-hiding
418   :group 'gnus-article-headers
419   :type 'boolean)
420
421 (defcustom gnus-summary-ignore-duplicates nil
422   "*If non-nil, ignore articles with identical Message-ID headers."
423   :group 'gnus-summary
424   :type 'boolean)
425
426 (defcustom gnus-single-article-buffer t
427   "*If non-nil, display all articles in the same buffer.
428 If nil, each group will get its own article buffer."
429   :group 'gnus-article-various
430   :type 'boolean)
431
432 (defcustom gnus-break-pages t
433   "*If non-nil, do page breaking on articles.
434 The page delimiter is specified by the `gnus-page-delimiter'
435 variable."
436   :group 'gnus-article-various
437   :type 'boolean)
438
439 (defcustom gnus-show-mime t
440   "*If non-nil, do mime processing of articles.
441 The articles will simply be fed to the function given by
442 `gnus-article-display-method-for-mime'."
443   :group 'gnus-article-mime
444   :type 'boolean)
445
446 (defcustom gnus-move-split-methods nil
447   "*Variable used to suggest where articles are to be moved to.
448 It uses the same syntax as the `gnus-split-methods' variable.
449 However, whereas `gnus-split-methods' specifies file names as targets,
450 this variable specifies group names."
451   :group 'gnus-summary-mail
452   :type '(repeat (choice (list :value (fun) function)
453                          (cons :value ("" "") regexp (repeat string))
454                          (sexp :value nil))))
455
456 (defcustom gnus-move-group-prefix-function 'gnus-group-real-prefix
457   "Function used to compute default prefix for article move/copy/etc prompts.
458 The function should take one argument, a group name, and return a
459 string with the suggested prefix."
460   :group 'gnus-summary-mail
461   :type 'function)
462
463 ;; FIXME: Although the custom type is `character' for the following variables,
464 ;; using multibyte characters (Latin-1, UTF-8) doesn't work.  -- rs
465
466 (defcustom gnus-unread-mark ?\ ;;;Whitespace
467   "*Mark used for unread articles."
468   :group 'gnus-summary-marks
469   :type 'character)
470
471 (defcustom gnus-ticked-mark ?!
472   "*Mark used for ticked articles."
473   :group 'gnus-summary-marks
474   :type 'character)
475
476 (defcustom gnus-dormant-mark ??
477   "*Mark used for dormant articles."
478   :group 'gnus-summary-marks
479   :type 'character)
480
481 (defcustom gnus-del-mark ?r
482   "*Mark used for del'd articles."
483   :group 'gnus-summary-marks
484   :type 'character)
485
486 (defcustom gnus-read-mark ?R
487   "*Mark used for read articles."
488   :group 'gnus-summary-marks
489   :type 'character)
490
491 (defcustom gnus-expirable-mark ?E
492   "*Mark used for expirable articles."
493   :group 'gnus-summary-marks
494   :type 'character)
495
496 (defcustom gnus-killed-mark ?K
497   "*Mark used for killed articles."
498   :group 'gnus-summary-marks
499   :type 'character)
500
501 (defcustom gnus-spam-mark ?$
502   "*Mark used for spam articles."
503   :group 'gnus-summary-marks
504   :type 'character)
505
506 (defcustom gnus-souped-mark ?F
507   "*Mark used for souped articles."
508   :group 'gnus-summary-marks
509   :type 'character)
510
511 (defcustom gnus-kill-file-mark ?X
512   "*Mark used for articles killed by kill files."
513   :group 'gnus-summary-marks
514   :type 'character)
515
516 (defcustom gnus-low-score-mark ?Y
517   "*Mark used for articles with a low score."
518   :group 'gnus-summary-marks
519   :type 'character)
520
521 (defcustom gnus-catchup-mark ?C
522   "*Mark used for articles that are caught up."
523   :group 'gnus-summary-marks
524   :type 'character)
525
526 (defcustom gnus-replied-mark ?A
527   "*Mark used for articles that have been replied to."
528   :group 'gnus-summary-marks
529   :type 'character)
530
531 (defcustom gnus-forwarded-mark ?F
532   "*Mark used for articles that have been forwarded."
533   :version "21.4"
534   :group 'gnus-summary-marks
535   :type 'character)
536
537 (defcustom gnus-recent-mark ?N
538   "*Mark used for articles that are recent."
539   :group 'gnus-summary-marks
540   :type 'character)
541
542 (defcustom gnus-cached-mark ?*
543   "*Mark used for articles that are in the cache."
544   :group 'gnus-summary-marks
545   :type 'character)
546
547 (defcustom gnus-saved-mark ?S
548   "*Mark used for articles that have been saved."
549   :group 'gnus-summary-marks
550   :type 'character)
551
552 (defcustom gnus-unseen-mark ?.
553   "*Mark used for articles that haven't been seen."
554   :version "21.4"
555   :group 'gnus-summary-marks
556   :type 'character)
557
558 (defcustom gnus-no-mark ?\ ;;;Whitespace
559   "*Mark used for articles that have no other secondary mark."
560   :version "21.4"
561   :group 'gnus-summary-marks
562   :type 'character)
563
564 (defcustom gnus-ancient-mark ?O
565   "*Mark used for ancient articles."
566   :group 'gnus-summary-marks
567   :type 'character)
568
569 (defcustom gnus-sparse-mark ?Q
570   "*Mark used for sparsely reffed articles."
571   :group 'gnus-summary-marks
572   :type 'character)
573
574 (defcustom gnus-canceled-mark ?G
575   "*Mark used for canceled articles."
576   :group 'gnus-summary-marks
577   :type 'character)
578
579 (defcustom gnus-duplicate-mark ?M
580   "*Mark used for duplicate articles."
581   :group 'gnus-summary-marks
582   :type 'character)
583
584 (defcustom gnus-undownloaded-mark ?-
585   "*Mark used for articles that weren't downloaded."
586   :group 'gnus-summary-marks
587   :type 'character)
588
589 (defcustom gnus-downloaded-mark ?+
590   "*Mark used for articles that were downloaded."
591   :group 'gnus-summary-marks
592   :type 'character)
593
594 (defcustom gnus-downloadable-mark ?%
595   "*Mark used for articles that are to be downloaded."
596   :group 'gnus-summary-marks
597   :type 'character)
598
599 (defcustom gnus-unsendable-mark ?=
600   "*Mark used for articles that won't be sent."
601   :group 'gnus-summary-marks
602   :type 'character)
603
604 (defcustom gnus-score-over-mark ?+
605   "*Score mark used for articles with high scores."
606   :group 'gnus-summary-marks
607   :type 'character)
608
609 (defcustom gnus-score-below-mark ?-
610   "*Score mark used for articles with low scores."
611   :group 'gnus-summary-marks
612   :type 'character)
613
614 (defcustom gnus-empty-thread-mark ?\ ;;;Whitespace
615   "*There is no thread under the article."
616   :group 'gnus-summary-marks
617   :type 'character)
618
619 (defcustom gnus-not-empty-thread-mark ?=
620   "*There is a thread under the article."
621   :group 'gnus-summary-marks
622   :type 'character)
623
624 (defcustom gnus-view-pseudo-asynchronously nil
625   "*If non-nil, Gnus will view pseudo-articles asynchronously."
626   :group 'gnus-extract-view
627   :type 'boolean)
628
629 (defcustom gnus-auto-expirable-marks
630   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
631         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
632         gnus-souped-mark gnus-duplicate-mark)
633   "*The list of marks converted into expiration if a group is auto-expirable."
634   :version "21.1"
635   :group 'gnus-summary
636   :type '(repeat character))
637
638 (defcustom gnus-inhibit-user-auto-expire t
639   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
640   :version "21.1"
641   :group 'gnus-summary
642   :type 'boolean)
643
644 (defcustom gnus-view-pseudos nil
645   "*If `automatic', pseudo-articles will be viewed automatically.
646 If `not-confirm', pseudos will be viewed automatically, and the user
647 will not be asked to confirm the command."
648   :group 'gnus-extract-view
649   :type '(choice (const :tag "off" nil)
650                  (const automatic)
651                  (const not-confirm)))
652
653 (defcustom gnus-view-pseudos-separately t
654   "*If non-nil, one pseudo-article will be created for each file to be viewed.
655 If nil, all files that use the same viewing command will be given as a
656 list of parameters to that command."
657   :group 'gnus-extract-view
658   :type 'boolean)
659
660 (defcustom gnus-insert-pseudo-articles t
661   "*If non-nil, insert pseudo-articles when decoding articles."
662   :group 'gnus-extract-view
663   :type 'boolean)
664
665 (defcustom gnus-summary-dummy-line-format
666   "   %(:                             :%) %S\n"
667   "*The format specification for the dummy roots in the summary buffer.
668 It works along the same lines as a normal formatting string,
669 with some simple extensions.
670
671 %S  The subject
672
673 General format specifiers can also be used.
674 See `(gnus)Formatting Variables'."
675   :link '(custom-manual "(gnus)Formatting Variables")
676   :group 'gnus-threading
677   :type 'string)
678
679 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
680   "*The format specification for the summary mode line.
681 It works along the same lines as a normal formatting string,
682 with some simple extensions:
683
684 %G  Group name
685 %p  Unprefixed group name
686 %A  Current article number
687 %z  Current article score
688 %V  Gnus version
689 %U  Number of unread articles in the group
690 %e  Number of unselected articles in the group
691 %Z  A string with unread/unselected article counts
692 %g  Shortish group name
693 %S  Subject of the current article
694 %u  User-defined spec
695 %s  Current score file name
696 %d  Number of dormant articles
697 %r  Number of articles that have been marked as read in this session
698 %E  Number of articles expunged by the score files"
699   :group 'gnus-summary-format
700   :type 'string)
701
702 (defcustom gnus-list-identifiers nil
703   "Regexp that matches list identifiers to be removed from subject.
704 This can also be a list of regexps."
705   :version "21.1"
706   :group 'gnus-summary-format
707   :group 'gnus-article-hiding
708   :type '(choice (const :tag "none" nil)
709                  (regexp :value ".*")
710                  (repeat :value (".*") regexp)))
711
712 (defcustom gnus-summary-mark-below 0
713   "*Mark all articles with a score below this variable as read.
714 This variable is local to each summary buffer and usually set by the
715 score file."
716   :group 'gnus-score-default
717   :type 'integer)
718
719 (defun gnus-widget-reversible-match (widget value)
720   "Ignoring WIDGET, convert VALUE to internal form.
721 VALUE should have the form `FOO' or `(not FOO)', where FOO is an symbol."
722   ;; (debug value)
723   (or (symbolp value)
724       (and (listp value)
725            (eq (length value) 2)
726            (eq (nth 0 value) 'not)
727            (symbolp (nth 1 value)))))
728
729 (defun gnus-widget-reversible-to-internal (widget value)
730   "Ignoring WIDGET, convert VALUE to internal form.
731 VALUE should have the form `FOO' or `(not FOO)', where FOO is an atom.
732 FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t)."
733   ;; (debug value)
734   (if (atom value)
735       (list value nil)
736     (list (nth 1 value) t)))
737
738 (defun gnus-widget-reversible-to-external (widget value)
739   "Ignoring WIDGET, convert VALUE to external form.
740 VALUE should have the form `(FOO nil)' or `(FOO t)', where FOO is an atom.
741 \(FOO  nil) is converted to FOO and (FOO t) is converted to (not FOO)."
742   ;; (debug value)
743   (if (nth 1 value)
744       (list 'not (nth 0 value))
745     (nth 0 value)))
746
747 (define-widget 'gnus-widget-reversible 'group
748   "A `group' that convert values."
749   :match 'gnus-widget-reversible-match
750   :value-to-internal 'gnus-widget-reversible-to-internal
751   :value-to-external 'gnus-widget-reversible-to-external)
752
753 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
754   "*List of functions used for sorting articles in the summary buffer.
755
756 Each function takes two articles and returns non-nil if the first
757 article should be sorted before the other.  If you use more than one
758 function, the primary sort function should be the last.  You should
759 probably always include `gnus-article-sort-by-number' in the list of
760 sorting functions -- preferably first.  Also note that sorting by date
761 is often much slower than sorting by number, and the sorting order is
762 very similar.  (Sorting by date means sorting by the time the message
763 was sent, sorting by number means sorting by arrival time.)
764
765 Each item can also be a list `(not F)' where F is a function;
766 this reverses the sort order.
767
768 Ready-made functions include `gnus-article-sort-by-number',
769 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
770 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
771 and `gnus-article-sort-by-score'.
772
773 When threading is turned on, the variable `gnus-thread-sort-functions'
774 controls how articles are sorted."
775   :group 'gnus-summary-sort
776   :type '(repeat (gnus-widget-reversible
777                   (choice (function-item gnus-article-sort-by-number)
778                           (function-item gnus-article-sort-by-author)
779                           (function-item gnus-article-sort-by-subject)
780                           (function-item gnus-article-sort-by-date)
781                           (function-item gnus-article-sort-by-score)
782                           (function-item gnus-article-sort-by-random)
783                           (function :tag "other"))
784                   (boolean :tag "Reverse order"))))
785
786
787 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
788   "*List of functions used for sorting threads in the summary buffer.
789 By default, threads are sorted by article number.
790
791 Each function takes two threads and returns non-nil if the first
792 thread should be sorted before the other.  If you use more than one
793 function, the primary sort function should be the last.  You should
794 probably always include `gnus-thread-sort-by-number' in the list of
795 sorting functions -- preferably first.  Also note that sorting by date
796 is often much slower than sorting by number, and the sorting order is
797 very similar.  (Sorting by date means sorting by the time the message
798 was sent, sorting by number means sorting by arrival time.)
799
800 Each list item can also be a list `(not F)' where F is a
801 function; this specifies reversed sort order.
802
803 Ready-made functions include `gnus-thread-sort-by-number',
804 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
805 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score',
806 `gnus-thread-sort-by-most-recent-number',
807 `gnus-thread-sort-by-most-recent-date',
808 `gnus-thread-sort-by-random', and
809 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function').
810
811 When threading is turned off, the variable
812 `gnus-article-sort-functions' controls how articles are sorted."
813   :group 'gnus-summary-sort
814   :type '(repeat 
815           (gnus-widget-reversible
816            (choice (function-item gnus-thread-sort-by-number)
817                    (function-item gnus-thread-sort-by-author)
818                    (function-item gnus-thread-sort-by-subject)
819                    (function-item gnus-thread-sort-by-date)
820                    (function-item gnus-thread-sort-by-score)
821                    (function-item gnus-thread-sort-by-most-recent-number)
822                    (function-item gnus-thread-sort-by-most-recent-date)
823                    (function-item gnus-thread-sort-by-random)
824                    (function-item gnus-thread-sort-by-total-score)
825                    (function :tag "other"))
826            (boolean :tag "Reverse order"))))
827
828 (defcustom gnus-thread-score-function '+
829   "*Function used for calculating the total score of a thread.
830
831 The function is called with the scores of the article and each
832 subthread and should then return the score of the thread.
833
834 Some functions you can use are `+', `max', or `min'."
835   :group 'gnus-summary-sort
836   :type 'function)
837
838 (defcustom gnus-summary-expunge-below nil
839   "All articles that have a score less than this variable will be expunged.
840 This variable is local to the summary buffers."
841   :group 'gnus-score-default
842   :type '(choice (const :tag "off" nil)
843                  integer))
844
845 (defcustom gnus-thread-expunge-below nil
846   "All threads that have a total score less than this variable will be expunged.
847 See `gnus-thread-score-function' for en explanation of what a
848 \"thread score\" is.
849
850 This variable is local to the summary buffers."
851   :group 'gnus-threading
852   :group 'gnus-score-default
853   :type '(choice (const :tag "off" nil)
854                  integer))
855
856 (defcustom gnus-summary-mode-hook nil
857   "*A hook for Gnus summary mode.
858 This hook is run before any variables are set in the summary buffer."
859   :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
860   :group 'gnus-summary-various
861   :type 'hook)
862
863 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
864 (when (featurep 'xemacs)
865   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
866   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
867   (add-hook 'gnus-summary-mode-hook
868             'gnus-xmas-switch-horizontal-scrollbar-off))
869
870 (defcustom gnus-summary-menu-hook nil
871   "*Hook run after the creation of the summary mode menu."
872   :group 'gnus-summary-visual
873   :type 'hook)
874
875 (defcustom gnus-summary-exit-hook nil
876   "*A hook called on exit from the summary buffer.
877 It will be called with point in the group buffer."
878   :group 'gnus-summary-exit
879   :type 'hook)
880
881 (defcustom gnus-summary-prepare-hook nil
882   "*A hook called after the summary buffer has been generated.
883 If you want to modify the summary buffer, you can use this hook."
884   :group 'gnus-summary-various
885   :type 'hook)
886
887 (defcustom gnus-summary-prepared-hook nil
888   "*A hook called as the last thing after the summary buffer has been generated."
889   :group 'gnus-summary-various
890   :type 'hook)
891
892 (defcustom gnus-summary-generate-hook nil
893   "*A hook run just before generating the summary buffer.
894 This hook is commonly used to customize threading variables and the
895 like."
896   :group 'gnus-summary-various
897   :type 'hook)
898
899 (defcustom gnus-select-group-hook nil
900   "*A hook called when a newsgroup is selected.
901
902 If you'd like to simplify subjects like the
903 `gnus-summary-next-same-subject' command does, you can use the
904 following hook:
905
906  (add-hook gnus-select-group-hook
907            (lambda ()
908              (mapcar (lambda (header)
909                        (mail-header-set-subject
910                         header
911                         (gnus-simplify-subject
912                          (mail-header-subject header) 're-only)))
913                      gnus-newsgroup-headers)))"
914   :group 'gnus-group-select
915   :type 'hook)
916
917 (defcustom gnus-select-article-hook nil
918   "*A hook called when an article is selected."
919   :group 'gnus-summary-choose
920   :options '(gnus-agent-fetch-selected-article)
921   :type 'hook)
922
923 (defcustom gnus-visual-mark-article-hook
924   (list 'gnus-highlight-selected-summary)
925   "*Hook run after selecting an article in the summary buffer.
926 It is meant to be used for highlighting the article in some way.  It
927 is not run if `gnus-visual' is nil."
928   :group 'gnus-summary-visual
929   :type 'hook)
930
931 (defcustom gnus-parse-headers-hook '(gnus-summary-inherit-default-charset)
932   "*A hook called before parsing the headers."
933   :group 'gnus-various
934   :type 'hook)
935
936 (defcustom gnus-exit-group-hook nil
937   "*A hook called when exiting summary mode.
938 This hook is not called from the non-updating exit commands like `Q'."
939   :group 'gnus-various
940   :type 'hook)
941
942 (defcustom gnus-summary-update-hook
943   (list 'gnus-summary-highlight-line)
944   "*A hook called when a summary line is changed.
945 The hook will not be called if `gnus-visual' is nil.
946
947 The default function `gnus-summary-highlight-line' will
948 highlight the line according to the `gnus-summary-highlight'
949 variable."
950   :group 'gnus-summary-visual
951   :type 'hook)
952
953 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
954   "*A hook called when an article is selected for the first time.
955 The hook is intended to mark an article as read (or unread)
956 automatically when it is selected."
957   :group 'gnus-summary-choose
958   :type 'hook)
959
960 (defcustom gnus-group-no-more-groups-hook nil
961   "*A hook run when returning to group mode having no more (unread) groups."
962   :group 'gnus-group-select
963   :type 'hook)
964
965 (defcustom gnus-ps-print-hook nil
966   "*A hook run before ps-printing something from Gnus."
967   :group 'gnus-summary
968   :type 'hook)
969
970 (defcustom gnus-summary-article-move-hook nil
971   "*A hook called after an article is moved, copied, respooled, or crossposted."
972   :group 'gnus-summary
973   :type 'hook)
974
975 (defcustom gnus-summary-article-delete-hook nil
976   "*A hook called after an article is deleted."
977   :group 'gnus-summary
978   :type 'hook)
979
980 (defcustom gnus-summary-article-expire-hook nil
981   "*A hook called after an article is expired."
982   :group 'gnus-summary
983   :type 'hook)
984
985 (defcustom gnus-summary-display-arrow
986   (and (fboundp 'display-graphic-p)
987        (display-graphic-p))
988   "*If non-nil, display an arrow highlighting the current article."
989   :version "21.4"
990   :group 'gnus-summary
991   :type 'boolean)
992
993 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
994   "Face used for highlighting the current article in the summary buffer."
995   :group 'gnus-summary-visual
996   :type 'face)
997
998 (defvar gnus-tmp-downloaded nil)
999
1000 (defcustom gnus-summary-highlight
1001   '(((eq mark gnus-canceled-mark)
1002      . gnus-summary-cancelled-face)
1003     ((and uncached (> score default-high))
1004      . gnus-summary-high-undownloaded-face)
1005     ((and uncached (< score default-low))
1006      . gnus-summary-low-undownloaded-face)
1007     (uncached
1008      . gnus-summary-normal-undownloaded-face)
1009     ((and (> score default-high)
1010           (or (eq mark gnus-dormant-mark)
1011               (eq mark gnus-ticked-mark)))
1012      . gnus-summary-high-ticked-face)
1013     ((and (< score default-low)
1014           (or (eq mark gnus-dormant-mark)
1015               (eq mark gnus-ticked-mark)))
1016      . gnus-summary-low-ticked-face)
1017     ((or (eq mark gnus-dormant-mark)
1018          (eq mark gnus-ticked-mark))
1019      . gnus-summary-normal-ticked-face)
1020     ((and (> score default-high) (eq mark gnus-ancient-mark))
1021      . gnus-summary-high-ancient-face)
1022     ((and (< score default-low) (eq mark gnus-ancient-mark))
1023      . gnus-summary-low-ancient-face)
1024     ((eq mark gnus-ancient-mark)
1025      . gnus-summary-normal-ancient-face)
1026     ((and (> score default-high) (eq mark gnus-unread-mark))
1027      . gnus-summary-high-unread-face)
1028     ((and (< score default-low) (eq mark gnus-unread-mark))
1029      . gnus-summary-low-unread-face)
1030     ((eq mark gnus-unread-mark)
1031      . gnus-summary-normal-unread-face)
1032     ((> score default-high)
1033      . gnus-summary-high-read-face)
1034     ((< score default-low)
1035      . gnus-summary-low-read-face)
1036     (t
1037      . gnus-summary-normal-read-face))
1038   "*Controls the highlighting of summary buffer lines.
1039
1040 A list of (FORM . FACE) pairs.  When deciding how a a particular
1041 summary line should be displayed, each form is evaluated.  The content
1042 of the face field after the first true form is used.  You can change
1043 how those summary lines are displayed, by editing the face field.
1044
1045 You can use the following variables in the FORM field.
1046
1047 score:        The article's score
1048 default:      The default article score.
1049 default-high: The default score for high scored articles.
1050 default-low:  The default score for low scored articles.
1051 below:        The score below which articles are automatically marked as read.
1052 mark:         The article's mark.
1053 uncached:     Non-nil if the article is uncached."
1054   :group 'gnus-summary-visual
1055   :type '(repeat (cons (sexp :tag "Form" nil)
1056                        face)))
1057
1058 (defcustom gnus-alter-header-function nil
1059   "Function called to allow alteration of article header structures.
1060 The function is called with one parameter, the article header vector,
1061 which it may alter in any way."
1062   :type '(choice (const :tag "None" nil)
1063                  function)
1064   :group 'gnus-summary)
1065
1066 (defvar gnus-decode-encoded-word-function
1067   (mime-find-field-decoder 'From 'nov)
1068   "Variable that says which function should be used to decode a string with encoded words.")
1069
1070 (defcustom gnus-extra-headers '(To Newsgroups)
1071   "*Extra headers to parse."
1072   :version "21.1"
1073   :group 'gnus-summary
1074   :type '(repeat symbol))
1075
1076 (defcustom gnus-ignored-from-addresses
1077   (and user-mail-address (regexp-quote user-mail-address))
1078   "*Regexp of From headers that may be suppressed in favor of To headers."
1079   :version "21.1"
1080   :group 'gnus-summary
1081   :type 'regexp)
1082
1083 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
1084   "List of charsets that should be ignored.
1085 When these charsets are used in the \"charset\" parameter, the
1086 default charset will be used instead."
1087   :version "21.1"
1088   :type '(repeat symbol)
1089   :group 'gnus-charset)
1090
1091 (gnus-define-group-parameter
1092  ignored-charsets
1093  :type list
1094  :function-document
1095  "Return the ignored charsets of GROUP."
1096  :variable gnus-group-ignored-charsets-alist
1097  :variable-default
1098  '(("alt\\.chinese\\.text" iso-8859-1))
1099  :variable-document
1100  "Alist of regexps (to match group names) and charsets that should be ignored.
1101 When these charsets are used in the \"charset\" parameter, the
1102 default charset will be used instead."
1103  :variable-group gnus-charset
1104  :variable-type '(repeat (cons (regexp :tag "Group")
1105                                (repeat symbol)))
1106  :parameter-type '(choice :tag "Ignored charsets"
1107                           :value nil
1108                           (repeat (symbol)))
1109  :parameter-document       "\
1110 List of charsets that should be ignored.
1111
1112 When these charsets are used in the \"charset\" parameter, the
1113 default charset will be used instead.")
1114
1115 (defcustom gnus-group-highlight-words-alist nil
1116   "Alist of group regexps and highlight regexps.
1117 This variable uses the same syntax as `gnus-emphasis-alist'."
1118   :version "21.1"
1119   :type '(repeat (cons (regexp :tag "Group")
1120                        (repeat (list (regexp :tag "Highlight regexp")
1121                                      (number :tag "Group for entire word" 0)
1122                                      (number :tag "Group for displayed part" 0)
1123                                      (symbol :tag "Face"
1124                                              gnus-emphasis-highlight-words)))))
1125   :group 'gnus-summary-visual)
1126
1127 (defcustom gnus-use-wheel nil
1128   "Use Intelli-mouse on summary movement"
1129   :type 'boolean
1130   :group 'gnus-summary-maneuvering)
1131
1132 (defcustom gnus-wheel-scroll-amount '(5 . 1)
1133   "Amount to scroll messages by spinning the mouse wheel.
1134 This is actually a cons cell, where the first item is the amount to scroll
1135 on a normal wheel event, and the second is the amount to scroll when the
1136 wheel is moved with the shift key depressed."
1137   :type '(cons (integer :tag "Shift") integer)
1138   :group 'gnus-summary-maneuvering)
1139
1140 (defcustom gnus-wheel-edge-resistance 2
1141   "How hard it should be to change the current article
1142 by moving the mouse over the edge of the article window."
1143   :type 'integer
1144   :group 'gnus-summary-maneuvering)
1145
1146 (defcustom gnus-summary-show-article-charset-alist
1147   nil
1148   "Alist of number and charset.
1149 The article will be shown with the charset corresponding to the
1150 numbered argument.
1151 For example: ((1 . cn-gb-2312) (2 . big5))."
1152   :version "21.1"
1153   :type '(repeat (cons (number :tag "Argument" 1)
1154                        (symbol :tag "Charset")))
1155   :group 'gnus-charset)
1156
1157 (defcustom gnus-preserve-marks t
1158   "Whether marks are preserved when moving, copying and respooling messages."
1159   :version "21.1"
1160   :type 'boolean
1161   :group 'gnus-summary-marks)
1162
1163 (defcustom gnus-alter-articles-to-read-function nil
1164   "Function to be called to alter the list of articles to be selected."
1165   :type '(choice (const nil) function)
1166   :group 'gnus-summary)
1167
1168 (defcustom gnus-orphan-score nil
1169   "*All orphans get this score added.  Set in the score file."
1170   :group 'gnus-score-default
1171   :type '(choice (const nil)
1172                  integer))
1173
1174 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1175   "*A regexp to match MIME parts when saving multiple parts of a
1176 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1177 This regexp will be used by default when prompting the user for which
1178 type of files to save."
1179   :group 'gnus-summary
1180   :type 'regexp)
1181
1182 (defcustom gnus-read-all-available-headers nil
1183   "Whether Gnus should parse all headers made available to it.
1184 This is mostly relevant for slow back ends where the user may
1185 wish to widen the summary buffer to include all headers
1186 that were fetched.  Say, for nnultimate groups."
1187   :version "21.4"
1188   :group 'gnus-summary
1189   :type '(choice boolean regexp))
1190
1191 (defcustom gnus-summary-muttprint-program "muttprint"
1192   "Command (and optional arguments) used to run Muttprint."
1193   :version "21.4"
1194   :group 'gnus-summary
1195   :type 'string)
1196
1197 (defcustom gnus-article-loose-mime t
1198   "If non-nil, don't require MIME-Version header.
1199 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1200 supply the MIME-Version header or deliberately strip it from the mail.
1201 If non-nil (the default), Gnus will treat some articles as MIME
1202 even if the MIME-Version header is missing."
1203   :version "21.4"
1204   :type 'boolean
1205   :group 'gnus-article-mime)
1206
1207 (defcustom gnus-article-emulate-mime t
1208   "If non-nil, use MIME emulation for uuencode and the like.
1209 This means that Gnus will search message bodies for text that look
1210 like uuencoded bits, yEncoded bits, and so on, and present that using
1211 the normal Gnus MIME machinery."
1212   :version "21.4"
1213   :type 'boolean
1214   :group 'gnus-article-mime)
1215
1216 ;;; Internal variables
1217
1218 (defvar gnus-summary-display-cache nil)
1219 (defvar gnus-article-mime-handles nil)
1220 (defvar gnus-article-decoded-p nil)
1221 (defvar gnus-article-charset nil)
1222 (defvar gnus-article-ignored-charsets nil)
1223 (defvar gnus-scores-exclude-files nil)
1224 (defvar gnus-page-broken nil)
1225
1226 (defvar gnus-original-article nil)
1227 (defvar gnus-article-internal-prepare-hook nil)
1228 (defvar gnus-newsgroup-process-stack nil)
1229
1230 (defvar gnus-thread-indent-array nil)
1231 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1232 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1233   "Function called to sort the articles within a thread after it has been gathered together.")
1234
1235 (defvar gnus-summary-save-parts-type-history nil)
1236 (defvar gnus-summary-save-parts-last-directory nil)
1237
1238 ;; Avoid highlighting in kill files.
1239 (defvar gnus-summary-inhibit-highlight nil)
1240 (defvar gnus-newsgroup-selected-overlay nil)
1241 (defvar gnus-inhibit-limiting nil)
1242 (defvar gnus-newsgroup-adaptive-score-file nil)
1243 (defvar gnus-current-score-file nil)
1244 (defvar gnus-current-move-group nil)
1245 (defvar gnus-current-copy-group nil)
1246 (defvar gnus-current-crosspost-group nil)
1247 (defvar gnus-newsgroup-display nil)
1248
1249 (defvar gnus-newsgroup-dependencies nil)
1250 (defvar gnus-newsgroup-adaptive nil)
1251 (defvar gnus-summary-display-article-function nil)
1252 (defvar gnus-summary-highlight-line-function nil
1253   "Function called after highlighting a summary line.")
1254
1255 (defvar gnus-summary-line-format-alist
1256   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1257     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1258     (?s gnus-tmp-subject-or-nil ?s)
1259     (?n gnus-tmp-name ?s)
1260     (?A (std11-address-string
1261          (car (mime-entity-read-field gnus-tmp-header 'From))) ?s)
1262     (?a (or (std11-full-name-string
1263              (car (mime-entity-read-field gnus-tmp-header 'From)))
1264             gnus-tmp-from) ?s)
1265     (?F gnus-tmp-from ?s)
1266     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1267     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1268     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1269     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1270     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1271     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1272     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1273     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1274     (?L gnus-tmp-lines ?s)
1275     (?O gnus-tmp-downloaded ?c)
1276     (?I gnus-tmp-indentation ?s)
1277     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1278     (?R gnus-tmp-replied ?c)
1279     (?\[ gnus-tmp-opening-bracket ?c)
1280     (?\] gnus-tmp-closing-bracket ?c)
1281     (?\> (make-string gnus-tmp-level ? ) ?s)
1282     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1283     (?i gnus-tmp-score ?d)
1284     (?z gnus-tmp-score-char ?c)
1285     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1286     (?U gnus-tmp-unread ?c)
1287     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1288         ?s)
1289     (?t (gnus-summary-number-of-articles-in-thread
1290          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1291         ?d)
1292     (?e (gnus-summary-number-of-articles-in-thread
1293          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1294         ?c)
1295     (?u gnus-tmp-user-defined ?s)
1296     (?P (gnus-pick-line-number) ?d)
1297     (?B gnus-tmp-thread-tree-header-string ?s)
1298     (user-date (gnus-user-date
1299                 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1300   "An alist of format specifications that can appear in summary lines.
1301 These are paired with what variables they correspond with, along with
1302 the type of the variable (string, integer, character, etc).")
1303
1304 (defvar gnus-summary-dummy-line-format-alist
1305   `((?S gnus-tmp-subject ?s)
1306     (?N gnus-tmp-number ?d)
1307     (?u gnus-tmp-user-defined ?s)))
1308
1309 (defvar gnus-summary-mode-line-format-alist
1310   `((?G gnus-tmp-group-name ?s)
1311     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1312     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1313     (?A gnus-tmp-article-number ?d)
1314     (?Z gnus-tmp-unread-and-unselected ?s)
1315     (?V gnus-version ?s)
1316     (?U gnus-tmp-unread-and-unticked ?d)
1317     (?S gnus-tmp-subject ?s)
1318     (?e gnus-tmp-unselected ?d)
1319     (?u gnus-tmp-user-defined ?s)
1320     (?d (length gnus-newsgroup-dormant) ?d)
1321     (?t (length gnus-newsgroup-marked) ?d)
1322     (?h (length gnus-newsgroup-spam-marked) ?d)
1323     (?r (length gnus-newsgroup-reads) ?d)
1324     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1325     (?E gnus-newsgroup-expunged-tally ?d)
1326     (?s (gnus-current-score-file-nondirectory) ?s)))
1327
1328 (defvar gnus-last-search-regexp nil
1329   "Default regexp for article search command.")
1330
1331 (defvar gnus-summary-search-article-matched-data nil
1332   "Last matched data of article search command.  It is the local variable
1333 in `gnus-article-buffer' which consists of the list of start position,
1334 end position and text.")
1335
1336 (defvar gnus-last-shell-command nil
1337   "Default shell command on article.")
1338
1339 (defvar gnus-newsgroup-agentized nil
1340   "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1341 (defvar gnus-newsgroup-begin nil)
1342 (defvar gnus-newsgroup-end nil)
1343 (defvar gnus-newsgroup-last-rmail nil)
1344 (defvar gnus-newsgroup-last-mail nil)
1345 (defvar gnus-newsgroup-last-folder nil)
1346 (defvar gnus-newsgroup-last-file nil)
1347 (defvar gnus-newsgroup-auto-expire nil)
1348 (defvar gnus-newsgroup-active nil)
1349
1350 (defvar gnus-newsgroup-data nil)
1351 (defvar gnus-newsgroup-data-reverse nil)
1352 (defvar gnus-newsgroup-limit nil)
1353 (defvar gnus-newsgroup-limits nil)
1354 (defvar gnus-summary-use-undownloaded-faces nil)
1355
1356 (defvar gnus-newsgroup-unreads nil
1357   "Sorted list of unread articles in the current newsgroup.")
1358
1359 (defvar gnus-newsgroup-unselected nil
1360   "Sorted list of unselected unread articles in the current newsgroup.")
1361
1362 (defvar gnus-newsgroup-reads nil
1363   "Alist of read articles and article marks in the current newsgroup.")
1364
1365 (defvar gnus-newsgroup-expunged-tally nil)
1366
1367 (defvar gnus-newsgroup-marked nil
1368   "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1369
1370 (defvar gnus-newsgroup-spam-marked nil
1371   "List of ranges of articles that have been marked as spam.")
1372
1373 (defvar gnus-newsgroup-killed nil
1374   "List of ranges of articles that have been through the scoring process.")
1375
1376 (defvar gnus-newsgroup-cached nil
1377   "Sorted list of articles that come from the article cache.")
1378
1379 (defvar gnus-newsgroup-saved nil
1380   "List of articles that have been saved.")
1381
1382 (defvar gnus-newsgroup-kill-headers nil)
1383
1384 (defvar gnus-newsgroup-replied nil
1385   "List of articles that have been replied to in the current newsgroup.")
1386
1387 (defvar gnus-newsgroup-forwarded nil
1388   "List of articles that have been forwarded in the current newsgroup.")
1389
1390 (defvar gnus-newsgroup-recent nil
1391   "List of articles that have are recent in the current newsgroup.")
1392
1393 (defvar gnus-newsgroup-expirable nil
1394   "Sorted list of articles in the current newsgroup that can be expired.")
1395
1396 (defvar gnus-newsgroup-processable nil
1397   "List of articles in the current newsgroup that can be processed.")
1398
1399 (defvar gnus-newsgroup-downloadable nil
1400   "Sorted list of articles in the current newsgroup that can be processed.")
1401
1402 (defvar gnus-newsgroup-unfetched nil
1403   "Sorted list of articles in the current newsgroup whose headers have
1404 not been fetched into the agent.
1405
1406 This list will always be a subset of gnus-newsgroup-undownloaded.")
1407
1408 (defvar gnus-newsgroup-undownloaded nil
1409   "List of articles in the current newsgroup that haven't been downloaded.")
1410
1411 (defvar gnus-newsgroup-unsendable nil
1412   "List of articles in the current newsgroup that won't be sent.")
1413
1414 (defvar gnus-newsgroup-bookmarks nil
1415   "List of articles in the current newsgroup that have bookmarks.")
1416
1417 (defvar gnus-newsgroup-dormant nil
1418   "Sorted list of dormant articles in the current newsgroup.")
1419
1420 (defvar gnus-newsgroup-unseen nil
1421   "List of unseen articles in the current newsgroup.")
1422
1423 (defvar gnus-newsgroup-seen nil
1424   "Range of seen articles in the current newsgroup.")
1425
1426 (defvar gnus-newsgroup-articles nil
1427   "List of articles in the current newsgroup.")
1428
1429 (defvar gnus-newsgroup-scored nil
1430   "List of scored articles in the current newsgroup.")
1431
1432 (defvar gnus-newsgroup-incorporated nil
1433   "List of incorporated articles in the current newsgroup.")
1434
1435 (defvar gnus-newsgroup-headers nil
1436   "List of article headers in the current newsgroup.")
1437
1438 (defvar gnus-newsgroup-threads nil)
1439
1440 (defvar gnus-newsgroup-prepared nil
1441   "Whether the current group has been prepared properly.")
1442
1443 (defvar gnus-newsgroup-ancient nil
1444   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1445
1446 (defvar gnus-newsgroup-sparse nil)
1447
1448 (defvar gnus-current-article nil)
1449 (defvar gnus-article-current nil)
1450 (defvar gnus-current-headers nil)
1451 (defvar gnus-have-all-headers nil)
1452 (defvar gnus-last-article nil)
1453 (defvar gnus-newsgroup-history nil)
1454 (defvar gnus-newsgroup-charset nil)
1455 (defvar gnus-newsgroup-ephemeral-charset nil)
1456 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1457
1458 (defvar gnus-article-before-search nil)
1459
1460 (defvar gnus-summary-local-variables
1461   '(gnus-newsgroup-name
1462     gnus-newsgroup-begin gnus-newsgroup-end
1463     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1464     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1465     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1466     gnus-newsgroup-unselected gnus-newsgroup-marked
1467     gnus-newsgroup-spam-marked
1468     gnus-newsgroup-reads gnus-newsgroup-saved
1469     gnus-newsgroup-replied gnus-newsgroup-forwarded
1470     gnus-newsgroup-recent
1471     gnus-newsgroup-expirable
1472     gnus-newsgroup-processable gnus-newsgroup-killed
1473     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1474     gnus-newsgroup-unfetched
1475     gnus-newsgroup-unsendable gnus-newsgroup-unseen
1476     gnus-newsgroup-seen gnus-newsgroup-articles
1477     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1478     gnus-newsgroup-headers gnus-newsgroup-threads
1479     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1480     gnus-current-article gnus-current-headers gnus-have-all-headers
1481     gnus-last-article gnus-article-internal-prepare-hook
1482     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1483     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1484     gnus-thread-expunge-below
1485     gnus-score-alist gnus-current-score-file
1486     (gnus-summary-expunge-below . global)
1487     (gnus-summary-mark-below . global)
1488     (gnus-orphan-score . global)
1489     gnus-newsgroup-active gnus-scores-exclude-files
1490     gnus-newsgroup-history gnus-newsgroup-ancient
1491     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1492     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1493     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1494     (gnus-newsgroup-expunged-tally . 0)
1495     gnus-cache-removable-articles gnus-newsgroup-cached
1496     gnus-newsgroup-data gnus-newsgroup-data-reverse
1497     gnus-newsgroup-limit gnus-newsgroup-limits
1498     gnus-newsgroup-charset gnus-newsgroup-display
1499     gnus-summary-use-undownloaded-faces
1500     gnus-newsgroup-incorporated)
1501   "Variables that are buffer-local to the summary buffers.")
1502
1503 (defvar gnus-newsgroup-variables nil
1504   "A list of variables that have separate values in different newsgroups.
1505 A list of newsgroup (summary buffer) local variables, or cons of
1506 variables and their default expressions to be evalled (when the default
1507 values are not nil), that should be made global while the summary buffer
1508 is active.
1509
1510 Note: The default expressions will be evaluated (using function `eval')
1511 before assignment to the local variable rather than just assigned to it.
1512 If the default expression is the symbol `global', that symbol will not
1513 be evaluated but the global value of the local variable will be used
1514 instead.
1515
1516 These variables can be used to set variables in the group parameters
1517 while still allowing them to affect operations done in other buffers.
1518 For example:
1519
1520 \(setq gnus-newsgroup-variables
1521      '(message-use-followup-to
1522        (gnus-visible-headers .
1523          \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1524 ")
1525
1526 ;; Byte-compiler warning.
1527 (eval-when-compile
1528   ;; Bind features so that require will believe that gnus-sum has
1529   ;; already been loaded (avoids infinite recursion)
1530   (let ((features (cons 'gnus-sum features)))
1531     ;; Several of the declarations in gnus-sum are needed to load the
1532     ;; following files. Right now, these definitions have been
1533     ;; compiled but not defined (evaluated).  We could either do a
1534     ;; eval-and-compile about all of the declarations or evaluate the
1535     ;; source file.
1536     (if (boundp 'gnus-newsgroup-variables)
1537         nil
1538       (load "gnus-sum.el" t t t))
1539     (require 'gnus)
1540     (require 'gnus-art)))
1541
1542 ;; Subject simplification.
1543
1544 (defun gnus-simplify-whitespace (str)
1545   "Remove excessive whitespace from STR."
1546   ;; Multiple spaces.
1547   (while (string-match "[ \t][ \t]+" str)
1548     (setq str (concat (substring str 0 (match-beginning 0))
1549                         " "
1550                         (substring str (match-end 0)))))
1551   ;; Leading spaces.
1552   (when (string-match "^[ \t]+" str)
1553     (setq str (substring str (match-end 0))))
1554   ;; Trailing spaces.
1555   (when (string-match "[ \t]+$" str)
1556     (setq str (substring str 0 (match-beginning 0))))
1557   str)
1558
1559 (defun gnus-simplify-all-whitespace (str)
1560   "Remove all whitespace from STR."
1561   (while (string-match "[ \t\n]+" str)
1562     (setq str (replace-match "" nil nil str)))
1563   str)
1564
1565 (defsubst gnus-simplify-subject-re (subject)
1566   "Remove \"Re:\" from subject lines."
1567   (if (string-match message-subject-re-regexp subject)
1568       (substring subject (match-end 0))
1569     subject))
1570
1571 (defun gnus-simplify-subject (subject &optional re-only)
1572   "Remove `Re:' and words in parentheses.
1573 If RE-ONLY is non-nil, strip leading `Re:'s only."
1574   (let ((case-fold-search t))           ;Ignore case.
1575     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1576     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1577       (setq subject (substring subject (match-end 0))))
1578     ;; Remove uninteresting prefixes.
1579     (when (and (not re-only)
1580                gnus-simplify-ignored-prefixes
1581                (string-match gnus-simplify-ignored-prefixes subject))
1582       (setq subject (substring subject (match-end 0))))
1583     ;; Remove words in parentheses from end.
1584     (unless re-only
1585       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1586         (setq subject (substring subject 0 (match-beginning 0)))))
1587     ;; Return subject string.
1588     subject))
1589
1590 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1591 ;; all whitespace.
1592 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1593   (goto-char (point-min))
1594   (while (re-search-forward regexp nil t)
1595     (replace-match (or newtext ""))))
1596
1597 (defun gnus-simplify-buffer-fuzzy ()
1598   "Simplify string in the buffer fuzzily.
1599 The string in the accessible portion of the current buffer is simplified.
1600 It is assumed to be a single-line subject.
1601 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1602 matter is removed.  Additional things can be deleted by setting
1603 `gnus-simplify-subject-fuzzy-regexp'."
1604   (let ((case-fold-search t)
1605         (modified-tick))
1606     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1607
1608     (while (not (eq modified-tick (buffer-modified-tick)))
1609       (setq modified-tick (buffer-modified-tick))
1610       (cond
1611        ((listp gnus-simplify-subject-fuzzy-regexp)
1612         (mapcar 'gnus-simplify-buffer-fuzzy-step
1613                 gnus-simplify-subject-fuzzy-regexp))
1614        (gnus-simplify-subject-fuzzy-regexp
1615         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1616       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1617       (gnus-simplify-buffer-fuzzy-step
1618        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1619       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1620
1621     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1622     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1623     (gnus-simplify-buffer-fuzzy-step " $")
1624     (gnus-simplify-buffer-fuzzy-step "^ +")))
1625
1626 (defun gnus-simplify-subject-fuzzy (subject)
1627   "Simplify a subject string fuzzily.
1628 See `gnus-simplify-buffer-fuzzy' for details."
1629   (save-excursion
1630     (gnus-set-work-buffer)
1631     (let ((case-fold-search t))
1632       ;; Remove uninteresting prefixes.
1633       (when (and gnus-simplify-ignored-prefixes
1634                  (string-match gnus-simplify-ignored-prefixes subject))
1635         (setq subject (substring subject (match-end 0))))
1636       (insert subject)
1637       (inline (gnus-simplify-buffer-fuzzy))
1638       (buffer-string))))
1639
1640 (defsubst gnus-simplify-subject-fully (subject)
1641   "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1642   (cond
1643    (gnus-simplify-subject-functions
1644     (gnus-map-function gnus-simplify-subject-functions subject))
1645    ((null gnus-summary-gather-subject-limit)
1646     (gnus-simplify-subject-re subject))
1647    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1648     (gnus-simplify-subject-fuzzy subject))
1649    ((numberp gnus-summary-gather-subject-limit)
1650     (gnus-limit-string (gnus-simplify-subject-re subject)
1651                        gnus-summary-gather-subject-limit))
1652    (t
1653     subject)))
1654
1655 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1656   "Check whether two subjects are equal.
1657 If optional argument SIMPLE-FIRST is t, first argument is already
1658 simplified."
1659   (cond
1660    ((null simple-first)
1661     (equal (gnus-simplify-subject-fully s1)
1662            (gnus-simplify-subject-fully s2)))
1663    (t
1664     (equal s1
1665            (gnus-simplify-subject-fully s2)))))
1666
1667 (defun gnus-summary-bubble-group ()
1668   "Increase the score of the current group.
1669 This is a handy function to add to `gnus-summary-exit-hook' to
1670 increase the score of each group you read."
1671   (gnus-group-add-score gnus-newsgroup-name))
1672
1673 \f
1674 ;;;
1675 ;;; Gnus summary mode
1676 ;;;
1677
1678 (put 'gnus-summary-mode 'mode-class 'special)
1679
1680 (defvar gnus-article-commands-menu)
1681
1682 ;; Non-orthogonal keys
1683
1684 (gnus-define-keys gnus-summary-mode-map
1685   " " gnus-summary-next-page
1686   "\177" gnus-summary-prev-page
1687   [delete] gnus-summary-prev-page
1688   [backspace] gnus-summary-prev-page
1689   "\r" gnus-summary-scroll-up
1690   "\M-\r" gnus-summary-scroll-down
1691   "n" gnus-summary-next-unread-article
1692   "p" gnus-summary-prev-unread-article
1693   "N" gnus-summary-next-article
1694   "P" gnus-summary-prev-article
1695   "\M-\C-n" gnus-summary-next-same-subject
1696   "\M-\C-p" gnus-summary-prev-same-subject
1697   "\M-n" gnus-summary-next-unread-subject
1698   "\M-p" gnus-summary-prev-unread-subject
1699   "." gnus-summary-first-unread-article
1700   "," gnus-summary-best-unread-article
1701   "\M-s" gnus-summary-search-article-forward
1702   "\M-r" gnus-summary-search-article-backward
1703   "<" gnus-summary-beginning-of-article
1704   ">" gnus-summary-end-of-article
1705   "j" gnus-summary-goto-article
1706   "^" gnus-summary-refer-parent-article
1707   "\M-^" gnus-summary-refer-article
1708   "u" gnus-summary-tick-article-forward
1709   "!" gnus-summary-tick-article-forward
1710   "U" gnus-summary-tick-article-backward
1711   "d" gnus-summary-mark-as-read-forward
1712   "D" gnus-summary-mark-as-read-backward
1713   "E" gnus-summary-mark-as-expirable
1714   "\M-u" gnus-summary-clear-mark-forward
1715   "\M-U" gnus-summary-clear-mark-backward
1716   "k" gnus-summary-kill-same-subject-and-select
1717   "\C-k" gnus-summary-kill-same-subject
1718   "\M-\C-k" gnus-summary-kill-thread
1719   "\M-\C-l" gnus-summary-lower-thread
1720   "e" gnus-summary-edit-article
1721   "#" gnus-summary-mark-as-processable
1722   "\M-#" gnus-summary-unmark-as-processable
1723   "\M-\C-t" gnus-summary-toggle-threads
1724   "\M-\C-s" gnus-summary-show-thread
1725   "\M-\C-h" gnus-summary-hide-thread
1726   "\M-\C-f" gnus-summary-next-thread
1727   "\M-\C-b" gnus-summary-prev-thread
1728   [(meta down)] gnus-summary-next-thread
1729   [(meta up)] gnus-summary-prev-thread
1730   "\M-\C-u" gnus-summary-up-thread
1731   "\M-\C-d" gnus-summary-down-thread
1732   "&" gnus-summary-execute-command
1733   "c" gnus-summary-catchup-and-exit
1734   "\C-w" gnus-summary-mark-region-as-read
1735   "\C-t" gnus-summary-toggle-truncation
1736   "?" gnus-summary-mark-as-dormant
1737   "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1738   "\C-c\C-s\C-n" gnus-summary-sort-by-number
1739   "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1740   "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1741   "\C-c\C-s\C-a" gnus-summary-sort-by-author
1742   "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1743   "\C-c\C-s\C-d" gnus-summary-sort-by-date
1744   "\C-c\C-s\C-i" gnus-summary-sort-by-score
1745   "\C-c\C-s\C-o" gnus-summary-sort-by-original
1746   "\C-c\C-s\C-r" gnus-summary-sort-by-random
1747   "=" gnus-summary-expand-window
1748   "\C-x\C-s" gnus-summary-reselect-current-group
1749   "\M-g" gnus-summary-rescan-group
1750   "w" gnus-summary-stop-page-breaking
1751   "\C-c\C-r" gnus-summary-caesar-message
1752   "\M-t" gnus-summary-toggle-mime
1753   "f" gnus-summary-followup
1754   "F" gnus-summary-followup-with-original
1755   "C" gnus-summary-cancel-article
1756   "r" gnus-summary-reply
1757   "R" gnus-summary-reply-with-original
1758   "\C-c\C-f" gnus-summary-mail-forward
1759   "o" gnus-summary-save-article
1760   "\C-o" gnus-summary-save-article-mail
1761   "|" gnus-summary-pipe-output
1762   "\M-k" gnus-summary-edit-local-kill
1763   "\M-K" gnus-summary-edit-global-kill
1764   ;; "V" gnus-version
1765   "\C-c\C-d" gnus-summary-describe-group
1766   "q" gnus-summary-exit
1767   "Q" gnus-summary-exit-no-update
1768   "\C-c\C-i" gnus-info-find-node
1769   gnus-mouse-2 gnus-mouse-pick-article
1770   "m" gnus-summary-mail-other-window
1771   "a" gnus-summary-post-news
1772   "i" gnus-summary-news-other-window
1773   "x" gnus-summary-limit-to-unread
1774   "s" gnus-summary-isearch-article
1775   "t" gnus-summary-toggle-header
1776   "g" gnus-summary-show-article
1777   "l" gnus-summary-goto-last-article
1778   "v" gnus-summary-preview-mime-message
1779   "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1780   "\C-d" gnus-summary-enter-digest-group
1781   "\M-\C-d" gnus-summary-read-document
1782   "\M-\C-e" gnus-summary-edit-parameters
1783   "\M-\C-a" gnus-summary-customize-parameters
1784   "\C-c\C-b" gnus-bug
1785   "\C-c\C-n" gnus-namazu-search
1786   "*" gnus-cache-enter-article
1787   "\M-*" gnus-cache-remove-article
1788   "\M-&" gnus-summary-universal-argument
1789   "\C-l" gnus-recenter
1790   "I" gnus-summary-increase-score
1791   "L" gnus-summary-lower-score
1792   "\M-i" gnus-symbolic-argument
1793   "h" gnus-summary-select-article-buffer
1794
1795   "V" gnus-summary-score-map
1796   "X" gnus-uu-extract-map
1797   "S" gnus-summary-send-map)
1798
1799   ;; Sort of orthogonal keymap
1800 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1801   "t" gnus-summary-tick-article-forward
1802   "!" gnus-summary-tick-article-forward
1803   "d" gnus-summary-mark-as-read-forward
1804   "r" gnus-summary-mark-as-read-forward
1805   "c" gnus-summary-clear-mark-forward
1806   " " gnus-summary-clear-mark-forward
1807   "e" gnus-summary-mark-as-expirable
1808   "x" gnus-summary-mark-as-expirable
1809   "?" gnus-summary-mark-as-dormant
1810   "b" gnus-summary-set-bookmark
1811   "B" gnus-summary-remove-bookmark
1812   "#" gnus-summary-mark-as-processable
1813   "\M-#" gnus-summary-unmark-as-processable
1814   "S" gnus-summary-limit-include-expunged
1815   "C" gnus-summary-catchup
1816   "H" gnus-summary-catchup-to-here
1817   "h" gnus-summary-catchup-from-here
1818   "\C-c" gnus-summary-catchup-all
1819   "k" gnus-summary-kill-same-subject-and-select
1820   "K" gnus-summary-kill-same-subject
1821   "P" gnus-uu-mark-map)
1822
1823 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1824   "c" gnus-summary-clear-above
1825   "u" gnus-summary-tick-above
1826   "m" gnus-summary-mark-above
1827   "k" gnus-summary-kill-below)
1828
1829 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1830   "/" gnus-summary-limit-to-subject
1831   "n" gnus-summary-limit-to-articles
1832   "w" gnus-summary-pop-limit
1833   "s" gnus-summary-limit-to-subject
1834   "a" gnus-summary-limit-to-author
1835   "u" gnus-summary-limit-to-unread
1836   "m" gnus-summary-limit-to-marks
1837   "M" gnus-summary-limit-exclude-marks
1838   "v" gnus-summary-limit-to-score
1839   "*" gnus-summary-limit-include-cached
1840   "D" gnus-summary-limit-include-dormant
1841   "T" gnus-summary-limit-include-thread
1842   "d" gnus-summary-limit-exclude-dormant
1843   "t" gnus-summary-limit-to-age
1844   "." gnus-summary-limit-to-unseen
1845   "x" gnus-summary-limit-to-extra
1846   "p" gnus-summary-limit-to-display-predicate
1847   "E" gnus-summary-limit-include-expunged
1848   "c" gnus-summary-limit-exclude-childless-dormant
1849   "C" gnus-summary-limit-mark-excluded-as-read
1850   "o" gnus-summary-insert-old-articles
1851   "N" gnus-summary-insert-new-articles
1852   "r" gnus-summary-limit-to-replied)
1853
1854 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1855   "n" gnus-summary-next-unread-article
1856   "p" gnus-summary-prev-unread-article
1857   "N" gnus-summary-next-article
1858   "P" gnus-summary-prev-article
1859   "\C-n" gnus-summary-next-same-subject
1860   "\C-p" gnus-summary-prev-same-subject
1861   "\M-n" gnus-summary-next-unread-subject
1862   "\M-p" gnus-summary-prev-unread-subject
1863   "f" gnus-summary-first-unread-article
1864   "b" gnus-summary-best-unread-article
1865   "j" gnus-summary-goto-article
1866   "g" gnus-summary-goto-subject
1867   "l" gnus-summary-goto-last-article
1868   "o" gnus-summary-pop-article)
1869
1870 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1871   "k" gnus-summary-kill-thread
1872   "l" gnus-summary-lower-thread
1873   "i" gnus-summary-raise-thread
1874   "T" gnus-summary-toggle-threads
1875   "t" gnus-summary-rethread-current
1876   "^" gnus-summary-reparent-thread
1877   "s" gnus-summary-show-thread
1878   "S" gnus-summary-show-all-threads
1879   "h" gnus-summary-hide-thread
1880   "H" gnus-summary-hide-all-threads
1881   "n" gnus-summary-next-thread
1882   "p" gnus-summary-prev-thread
1883   "u" gnus-summary-up-thread
1884   "o" gnus-summary-top-thread
1885   "d" gnus-summary-down-thread
1886   "#" gnus-uu-mark-thread
1887   "\M-#" gnus-uu-unmark-thread)
1888
1889 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1890   "g" gnus-summary-prepare
1891   "c" gnus-summary-insert-cached-articles
1892   "d" gnus-summary-insert-dormant-articles)
1893
1894 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1895   "c" gnus-summary-catchup-and-exit
1896   "C" gnus-summary-catchup-all-and-exit
1897   "E" gnus-summary-exit-no-update
1898   "J" gnus-summary-jump-to-other-group
1899   "Q" gnus-summary-exit
1900   "Z" gnus-summary-exit
1901   "n" gnus-summary-catchup-and-goto-next-group
1902   "R" gnus-summary-reselect-current-group
1903   "G" gnus-summary-rescan-group
1904   "N" gnus-summary-next-group
1905   "s" gnus-summary-save-newsrc
1906   "P" gnus-summary-prev-group)
1907
1908 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1909   " " gnus-summary-next-page
1910   "n" gnus-summary-next-page
1911   "\177" gnus-summary-prev-page
1912   [delete] gnus-summary-prev-page
1913   "p" gnus-summary-prev-page
1914   "\r" gnus-summary-scroll-up
1915   "\M-\r" gnus-summary-scroll-down
1916   "<" gnus-summary-beginning-of-article
1917   ">" gnus-summary-end-of-article
1918   "b" gnus-summary-beginning-of-article
1919   "e" gnus-summary-end-of-article
1920   "^" gnus-summary-refer-parent-article
1921   "r" gnus-summary-refer-parent-article
1922   "D" gnus-summary-enter-digest-group
1923   "R" gnus-summary-refer-references
1924   "T" gnus-summary-refer-thread
1925   "g" gnus-summary-show-article
1926   "s" gnus-summary-isearch-article
1927   "P" gnus-summary-print-article
1928   "M" gnus-mailing-list-insinuate
1929   "t" gnus-article-babel)
1930
1931 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1932   "b" gnus-article-add-buttons
1933   "B" gnus-article-add-buttons-to-head
1934   "o" gnus-article-treat-overstrike
1935   "e" gnus-article-emphasize
1936   "w" gnus-article-fill-cited-article
1937   "Q" gnus-article-fill-long-lines
1938   "C" gnus-article-capitalize-sentences
1939   "c" gnus-article-remove-cr
1940   "Z" gnus-article-decode-HZ
1941   "A" gnus-article-treat-ansi-sequences
1942   "h" gnus-article-wash-html
1943   "u" gnus-article-unsplit-urls
1944   "f" gnus-article-display-x-face
1945   "l" gnus-summary-stop-page-breaking
1946   "r" gnus-summary-caesar-message
1947   "m" gnus-summary-morse-message
1948   "t" gnus-summary-toggle-header
1949   "g" gnus-treat-smiley
1950   "v" gnus-summary-verbose-headers
1951   "m" gnus-summary-toggle-mime
1952   "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
1953   "p" gnus-article-verify-x-pgp-sig
1954   "d" gnus-article-treat-dumbquotes)
1955
1956 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
1957   ;; mnemonic: deuglif*Y*
1958   "u" gnus-article-outlook-unwrap-lines
1959   "a" gnus-article-outlook-repair-attribution
1960   "c" gnus-article-outlook-rearrange-citation
1961   "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
1962
1963 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1964   "a" gnus-article-hide
1965   "h" gnus-article-hide-headers
1966   "b" gnus-article-hide-boring-headers
1967   "s" gnus-article-hide-signature
1968   "c" gnus-article-hide-citation
1969   "C" gnus-article-hide-citation-in-followups
1970   "l" gnus-article-hide-list-identifiers
1971   "B" gnus-article-strip-banner
1972   "P" gnus-article-hide-pem
1973   "\C-c" gnus-article-hide-citation-maybe)
1974
1975 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1976   "a" gnus-article-highlight
1977   "h" gnus-article-highlight-headers
1978   "c" gnus-article-highlight-citation
1979   "s" gnus-article-highlight-signature)
1980
1981 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
1982   "f" gnus-article-treat-fold-headers
1983   "u" gnus-article-treat-unfold-headers
1984   "n" gnus-article-treat-fold-newsgroups)
1985
1986 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
1987   "x" gnus-article-display-x-face
1988   "d" gnus-article-display-face
1989   "s" gnus-treat-smiley
1990   "D" gnus-article-remove-images
1991   "f" gnus-treat-from-picon
1992   "m" gnus-treat-mail-picon
1993   "n" gnus-treat-newsgroups-picon)
1994
1995 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1996   "z" gnus-article-date-ut
1997   "u" gnus-article-date-ut
1998   "l" gnus-article-date-local
1999   "p" gnus-article-date-english
2000   "e" gnus-article-date-lapsed
2001   "o" gnus-article-date-original
2002   "i" gnus-article-date-iso8601
2003   "s" gnus-article-date-user)
2004
2005 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
2006   "t" gnus-article-remove-trailing-blank-lines
2007   "l" gnus-article-strip-leading-blank-lines
2008   "m" gnus-article-strip-multiple-blank-lines
2009   "a" gnus-article-strip-blank-lines
2010   "A" gnus-article-strip-all-blank-lines
2011   "s" gnus-article-strip-leading-space
2012   "e" gnus-article-strip-trailing-space
2013   "w" gnus-article-remove-leading-whitespace)
2014
2015 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
2016   "v" gnus-version
2017   "f" gnus-summary-fetch-faq
2018   "d" gnus-summary-describe-group
2019   "h" gnus-summary-describe-briefly
2020   "i" gnus-info-find-node
2021   "c" gnus-group-fetch-charter
2022   "C" gnus-group-fetch-control)
2023
2024 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
2025   "e" gnus-summary-expire-articles
2026   "\M-\C-e" gnus-summary-expire-articles-now
2027   "\177" gnus-summary-delete-article
2028   [delete] gnus-summary-delete-article
2029   [backspace] gnus-summary-delete-article
2030   "m" gnus-summary-move-article
2031   "r" gnus-summary-respool-article
2032   "w" gnus-summary-edit-article
2033   "c" gnus-summary-copy-article
2034   "B" gnus-summary-crosspost-article
2035   "q" gnus-summary-respool-query
2036   "t" gnus-summary-respool-trace
2037   "i" gnus-summary-import-article
2038   "I" gnus-summary-create-article
2039   "p" gnus-summary-article-posted-p)
2040
2041 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
2042   "o" gnus-summary-save-article
2043   "m" gnus-summary-save-article-mail
2044   "F" gnus-summary-write-article-file
2045   "r" gnus-summary-save-article-rmail
2046   "f" gnus-summary-save-article-file
2047   "b" gnus-summary-save-article-body-file
2048   "h" gnus-summary-save-article-folder
2049   "v" gnus-summary-save-article-vm
2050   "p" gnus-summary-pipe-output
2051   "P" gnus-summary-muttprint
2052   "s" gnus-soup-add-article)
2053
2054 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
2055   "b" gnus-summary-display-buttonized
2056   "m" gnus-summary-repair-multipart
2057   "v" gnus-article-view-part
2058   "o" gnus-article-save-part
2059   "c" gnus-article-copy-part
2060   "C" gnus-article-view-part-as-charset
2061   "e" gnus-article-view-part-externally
2062   "E" gnus-article-encrypt-body
2063   "i" gnus-article-inline-part
2064   "|" gnus-article-pipe-part)
2065
2066 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
2067   "p" gnus-summary-mark-as-processable
2068   "u" gnus-summary-unmark-as-processable
2069   "U" gnus-summary-unmark-all-processable
2070   "v" gnus-uu-mark-over
2071   "s" gnus-uu-mark-series
2072   "r" gnus-uu-mark-region
2073   "g" gnus-uu-unmark-region
2074   "R" gnus-uu-mark-by-regexp
2075   "G" gnus-uu-unmark-by-regexp
2076   "t" gnus-uu-mark-thread
2077   "T" gnus-uu-unmark-thread
2078   "a" gnus-uu-mark-all
2079   "b" gnus-uu-mark-buffer
2080   "S" gnus-uu-mark-sparse
2081   "k" gnus-summary-kill-process-mark
2082   "y" gnus-summary-yank-process-mark
2083   "w" gnus-summary-save-process-mark
2084   "i" gnus-uu-invert-processable)
2085
2086 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2087   ;;"x" gnus-uu-extract-any
2088   "m" gnus-summary-save-parts
2089   "u" gnus-uu-decode-uu
2090   "U" gnus-uu-decode-uu-and-save
2091   "s" gnus-uu-decode-unshar
2092   "S" gnus-uu-decode-unshar-and-save
2093   "o" gnus-uu-decode-save
2094   "O" gnus-uu-decode-save
2095   "b" gnus-uu-decode-binhex
2096   "B" gnus-uu-decode-binhex
2097   "p" gnus-uu-decode-postscript
2098   "P" gnus-uu-decode-postscript-and-save)
2099
2100 (gnus-define-keys
2101     (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2102   "u" gnus-uu-decode-uu-view
2103   "U" gnus-uu-decode-uu-and-save-view
2104   "s" gnus-uu-decode-unshar-view
2105   "S" gnus-uu-decode-unshar-and-save-view
2106   "o" gnus-uu-decode-save-view
2107   "O" gnus-uu-decode-save-view
2108   "b" gnus-uu-decode-binhex-view
2109   "B" gnus-uu-decode-binhex-view
2110   "p" gnus-uu-decode-postscript-view
2111   "P" gnus-uu-decode-postscript-and-save-view)
2112
2113 (defvar gnus-article-post-menu nil)
2114
2115 (defconst gnus-summary-menu-maxlen 20)
2116
2117 (defun gnus-summary-menu-split (menu)
2118   ;; If we have lots of elements, divide them into groups of 20
2119   ;; and make a pane (or submenu) for each one.
2120   (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2121       (let ((menu menu) sublists next
2122             (i 1))
2123         (while menu
2124           ;; Pull off the next gnus-summary-menu-maxlen elements
2125           ;; and make them the next element of sublist.
2126           (setq next (nthcdr gnus-summary-menu-maxlen menu))
2127           (if next
2128               (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2129                       nil))
2130           (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2131                                              (aref (car (last menu)) 0)) menu)
2132                                sublists))
2133           (setq i (1+ i))
2134           (setq menu next))
2135         (nreverse sublists))
2136     ;; Few elements--put them all in one pane.
2137     menu))
2138
2139 (defun gnus-summary-make-menu-bar ()
2140   (gnus-turn-off-edit-menu 'summary)
2141
2142   (unless (boundp 'gnus-summary-misc-menu)
2143
2144     (easy-menu-define
2145       gnus-summary-kill-menu gnus-summary-mode-map ""
2146       (cons
2147        "Score"
2148        (nconc
2149         (list
2150          ["Customize" gnus-score-customize t])
2151         (gnus-make-score-map 'increase)
2152         (gnus-make-score-map 'lower)
2153         '(("Mark"
2154            ["Kill below" gnus-summary-kill-below t]
2155            ["Mark above" gnus-summary-mark-above t]
2156            ["Tick above" gnus-summary-tick-above t]
2157            ["Clear above" gnus-summary-clear-above t])
2158           ["Current score" gnus-summary-current-score t]
2159           ["Set score" gnus-summary-set-score t]
2160           ["Switch current score file..." gnus-score-change-score-file t]
2161           ["Set mark below..." gnus-score-set-mark-below t]
2162           ["Set expunge below..." gnus-score-set-expunge-below t]
2163           ["Edit current score file" gnus-score-edit-current-scores t]
2164           ["Edit score file" gnus-score-edit-file t]
2165           ["Trace score" gnus-score-find-trace t]
2166           ["Find words" gnus-score-find-favourite-words t]
2167           ["Rescore buffer" gnus-summary-rescore t]
2168           ["Increase score..." gnus-summary-increase-score t]
2169           ["Lower score..." gnus-summary-lower-score t]))))
2170
2171     ;; Define both the Article menu in the summary buffer and the
2172     ;; equivalent Commands menu in the article buffer here for
2173     ;; consistency.
2174     (let ((innards
2175            `(("Hide"
2176               ["All" gnus-article-hide t]
2177               ["Headers" gnus-article-hide-headers t]
2178               ["Signature" gnus-article-hide-signature t]
2179               ["Citation" gnus-article-hide-citation t]
2180               ["List identifiers" gnus-article-hide-list-identifiers t]
2181               ["Banner" gnus-article-strip-banner t]
2182               ["Boring headers" gnus-article-hide-boring-headers t])
2183              ("Highlight"
2184               ["All" gnus-article-highlight t]
2185               ["Headers" gnus-article-highlight-headers t]
2186               ["Signature" gnus-article-highlight-signature t]
2187               ["Citation" gnus-article-highlight-citation t])
2188              ("Date"
2189               ["Local" gnus-article-date-local t]
2190               ["ISO8601" gnus-article-date-iso8601 t]
2191               ["UT" gnus-article-date-ut t]
2192               ["Original" gnus-article-date-original t]
2193               ["Lapsed" gnus-article-date-lapsed t]
2194               ["User-defined" gnus-article-date-user t])
2195              ("Display"
2196               ["Remove images" gnus-article-remove-images t]
2197               ["Toggle smiley" gnus-treat-smiley t]
2198               ["Show X-Face" gnus-article-display-x-face t]
2199               ["Show picons in From" gnus-treat-from-picon t]
2200               ["Show picons in mail headers" gnus-treat-mail-picon t]
2201               ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2202               ("View as different encoding"
2203                ,@(gnus-summary-menu-split
2204                   (mapcar
2205                    (lambda (cs)
2206                      ;; Since easymenu under Emacs doesn't allow
2207                      ;; lambda forms for menu commands, we should
2208                      ;; provide intern'ed function symbols.
2209                      (let ((command (intern (format "\
2210 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2211                        (fset command
2212                              `(lambda ()
2213                                 (interactive)
2214                                 (let ((gnus-summary-show-article-charset-alist
2215                                        '((1 . ,cs))))
2216                                   (gnus-summary-show-article 1))))
2217                        `[,(symbol-name cs) ,command t]))
2218                    (sort (if (fboundp 'coding-system-list)
2219                              (coding-system-list)
2220                            ;;(mapcar 'car mm-mime-mule-charset-alist)
2221                            )
2222                          'string<)))))
2223              ("Washing"
2224               ("Remove Blanks"
2225                ["Leading" gnus-article-strip-leading-blank-lines t]
2226                ["Multiple" gnus-article-strip-multiple-blank-lines t]
2227                ["Trailing" gnus-article-remove-trailing-blank-lines t]
2228                ["All of the above" gnus-article-strip-blank-lines t]
2229                ["All" gnus-article-strip-all-blank-lines t]
2230                ["Leading space" gnus-article-strip-leading-space t]
2231                ["Trailing space" gnus-article-strip-trailing-space t]
2232                ["Leading space in headers"
2233                 gnus-article-remove-leading-whitespace t])
2234               ["Overstrike" gnus-article-treat-overstrike t]
2235               ["Dumb quotes" gnus-article-treat-dumbquotes t]
2236               ["Emphasis" gnus-article-emphasize t]
2237               ["Word wrap" gnus-article-fill-cited-article t]
2238               ["Fill long lines" gnus-article-fill-long-lines t]
2239               ["Capitalize sentences" gnus-article-capitalize-sentences t]
2240               ["Remove CR" gnus-article-remove-cr t]
2241               ["Rot 13" gnus-summary-caesar-message
2242                ,@(if (featurep 'xemacs) '(t)
2243                    '(:help "\"Caesar rotate\" article by 13"))]
2244               ["Morse decode" gnus-summary-morse-message t]
2245               ["Unix pipe..." gnus-summary-pipe-message t]
2246               ["Add buttons" gnus-article-add-buttons t]
2247               ["Add buttons to head" gnus-article-add-buttons-to-head t]
2248               ["Stop page breaking" gnus-summary-stop-page-breaking t]
2249               ["Toggle MIME" gnus-summary-toggle-mime t]
2250               ["Verbose header" gnus-summary-verbose-headers t]
2251               ["Toggle header" gnus-summary-toggle-header t]
2252               ["Unfold headers" gnus-article-treat-unfold-headers t]
2253               ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2254               ["Html" gnus-article-wash-html t]
2255               ["Unsplit URLs" gnus-article-unsplit-urls t]
2256               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2257               ["Decode HZ" gnus-article-decode-HZ t]
2258               ["ANSI sequences" gnus-article-treat-ansi-sequences t]
2259               ("(Outlook) Deuglify"
2260                ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2261                ["Repair attribution" gnus-article-outlook-repair-attribution t]
2262                ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2263                ["Full (Outlook) deuglify"
2264                 gnus-article-outlook-deuglify-article t])
2265               )
2266              ("Output"
2267               ["Save in default format..." gnus-summary-save-article
2268                ,@(if (featurep 'xemacs) '(t)
2269                    '(:help "Save article using default method"))]
2270               ["Save in file..." gnus-summary-save-article-file
2271                ,@(if (featurep 'xemacs) '(t)
2272                    '(:help "Save article in file"))]
2273               ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2274               ["Save in MH folder..." gnus-summary-save-article-folder t]
2275               ["Save in VM folder..." gnus-summary-save-article-vm t]
2276               ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2277               ["Save body in file..." gnus-summary-save-article-body-file t]
2278               ["Pipe through a filter..." gnus-summary-pipe-output t]
2279               ["Add to SOUP packet" gnus-soup-add-article t]
2280               ["Print with Muttprint..." gnus-summary-muttprint t]
2281               ["Print" gnus-summary-print-article
2282                ,@(if (featurep 'xemacs) '(t)
2283                    '(:help "Generate and print a PostScript image"))])
2284              ("Copy, move,... (Backend)"
2285               ,@(if (featurep 'xemacs) nil
2286                   '(:help "Copying, moving, expiring articles..."))
2287               ["Respool article..." gnus-summary-respool-article t]
2288               ["Move article..." gnus-summary-move-article
2289                (gnus-check-backend-function
2290                 'request-move-article gnus-newsgroup-name)]
2291               ["Copy article..." gnus-summary-copy-article t]
2292               ["Crosspost article..." gnus-summary-crosspost-article
2293                (gnus-check-backend-function
2294                 'request-replace-article gnus-newsgroup-name)]
2295               ["Import file..." gnus-summary-import-article
2296                (gnus-check-backend-function
2297                 'request-accept-article gnus-newsgroup-name)]
2298               ["Create article..." gnus-summary-create-article
2299                (gnus-check-backend-function
2300                 'request-accept-article gnus-newsgroup-name)]
2301               ["Check if posted" gnus-summary-article-posted-p t]
2302               ["Edit article" gnus-summary-edit-article
2303                (not (gnus-group-read-only-p))]
2304               ["Delete article" gnus-summary-delete-article
2305                (gnus-check-backend-function
2306                 'request-expire-articles gnus-newsgroup-name)]
2307               ["Query respool" gnus-summary-respool-query t]
2308               ["Trace respool" gnus-summary-respool-trace t]
2309               ["Delete expirable articles" gnus-summary-expire-articles-now
2310                (gnus-check-backend-function
2311                 'request-expire-articles gnus-newsgroup-name)])
2312              ("Extract"
2313               ["Uudecode" gnus-uu-decode-uu
2314                ,@(if (featurep 'xemacs) '(t)
2315                    '(:help "Decode uuencoded article(s)"))]
2316               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2317               ["Unshar" gnus-uu-decode-unshar t]
2318               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2319               ["Save" gnus-uu-decode-save t]
2320               ["Binhex" gnus-uu-decode-binhex t]
2321               ["Postscript" gnus-uu-decode-postscript t])
2322              ("Cache"
2323               ["Enter article" gnus-cache-enter-article t]
2324               ["Remove article" gnus-cache-remove-article t])
2325              ["Translate" gnus-article-babel t]
2326              ["Select article buffer" gnus-summary-select-article-buffer t]
2327              ["Enter digest buffer" gnus-summary-enter-digest-group t]
2328              ["Isearch article..." gnus-summary-isearch-article t]
2329              ["Beginning of the article" gnus-summary-beginning-of-article t]
2330              ["End of the article" gnus-summary-end-of-article t]
2331              ["Fetch parent of article" gnus-summary-refer-parent-article t]
2332              ["Fetch referenced articles" gnus-summary-refer-references t]
2333              ["Fetch current thread" gnus-summary-refer-thread t]
2334              ["Fetch article with id..." gnus-summary-refer-article t]
2335              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2336              ["Redisplay" gnus-summary-show-article t]
2337              ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2338       (easy-menu-define
2339         gnus-summary-article-menu gnus-summary-mode-map ""
2340         (cons "Article" innards))
2341
2342       (if (not (keymapp gnus-summary-article-menu))
2343           (easy-menu-define
2344             gnus-article-commands-menu gnus-article-mode-map ""
2345             (cons "Commands" innards))
2346         ;; in Emacs, don't share menu.
2347         (setq gnus-article-commands-menu
2348               (copy-keymap gnus-summary-article-menu))
2349         (define-key gnus-article-mode-map [menu-bar commands]
2350           (cons "Commands" gnus-article-commands-menu))))
2351
2352     (easy-menu-define
2353       gnus-summary-thread-menu gnus-summary-mode-map ""
2354       '("Threads"
2355         ["Find all messages in thread" gnus-summary-refer-thread t]
2356         ["Toggle threading" gnus-summary-toggle-threads t]
2357         ["Hide threads" gnus-summary-hide-all-threads t]
2358         ["Show threads" gnus-summary-show-all-threads t]
2359         ["Hide thread" gnus-summary-hide-thread t]
2360         ["Show thread" gnus-summary-show-thread t]
2361         ["Go to next thread" gnus-summary-next-thread t]
2362         ["Go to previous thread" gnus-summary-prev-thread t]
2363         ["Go down thread" gnus-summary-down-thread t]
2364         ["Go up thread" gnus-summary-up-thread t]
2365         ["Top of thread" gnus-summary-top-thread t]
2366         ["Mark thread as read" gnus-summary-kill-thread t]
2367         ["Lower thread score" gnus-summary-lower-thread t]
2368         ["Raise thread score" gnus-summary-raise-thread t]
2369         ["Rethread current" gnus-summary-rethread-current t]))
2370
2371     (easy-menu-define
2372       gnus-summary-post-menu gnus-summary-mode-map ""
2373       `("Post"
2374         ["Send a message (mail or news)" gnus-summary-post-news
2375          ,@(if (featurep 'xemacs) '(t)
2376              '(:help "Compose a new message (mail or news)"))]
2377         ["Followup" gnus-summary-followup
2378          ,@(if (featurep 'xemacs) '(t)
2379              '(:help "Post followup to this article"))]
2380         ["Followup and yank" gnus-summary-followup-with-original
2381          ,@(if (featurep 'xemacs) '(t)
2382              '(:help "Post followup to this article, quoting its contents"))]
2383         ["Supersede article" gnus-summary-supersede-article t]
2384         ["Cancel article" gnus-summary-cancel-article
2385          ,@(if (featurep 'xemacs) '(t)
2386              '(:help "Cancel an article you posted"))]
2387         ["Reply" gnus-summary-reply t]
2388         ["Reply and yank" gnus-summary-reply-with-original t]
2389         ["Wide reply" gnus-summary-wide-reply t]
2390         ["Wide reply and yank" gnus-summary-wide-reply-with-original
2391          ,@(if (featurep 'xemacs) '(t)
2392              '(:help "Mail a reply, quoting this article"))]
2393         ["Very wide reply" gnus-summary-very-wide-reply t]
2394         ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2395          ,@(if (featurep 'xemacs) '(t)
2396              '(:help "Mail a very wide reply, quoting this article"))]
2397         ["Mail forward" gnus-summary-mail-forward t]
2398         ["Post forward" gnus-summary-post-forward t]
2399         ["Digest and mail" gnus-summary-digest-mail-forward t]
2400         ["Digest and post" gnus-summary-digest-post-forward t]
2401         ["Resend message" gnus-summary-resend-message t]
2402         ["Resend message edit" gnus-summary-resend-message-edit t]
2403         ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2404         ["Send a mail" gnus-summary-mail-other-window t]
2405         ["Create a local message" gnus-summary-news-other-window t]
2406         ["Uuencode and post" gnus-uu-post-news
2407          ,@(if (featurep 'xemacs) '(t)
2408              '(:help "Post a uuencoded article"))]
2409         ["Followup via news" gnus-summary-followup-to-mail t]
2410         ["Followup via news and yank"
2411          gnus-summary-followup-to-mail-with-original t]
2412         ;;("Draft"
2413         ;;["Send" gnus-summary-send-draft t]
2414         ;;["Send bounced" gnus-resend-bounced-mail t])
2415         ))
2416
2417     (cond
2418      ((not (keymapp gnus-summary-post-menu))
2419       (setq gnus-article-post-menu gnus-summary-post-menu))
2420      ((not gnus-article-post-menu)
2421       ;; Don't share post menu.
2422       (setq gnus-article-post-menu
2423             (copy-keymap gnus-summary-post-menu))))
2424     (define-key gnus-article-mode-map [menu-bar post]
2425       (cons "Post" gnus-article-post-menu))
2426
2427     (easy-menu-define
2428       gnus-summary-misc-menu gnus-summary-mode-map ""
2429       `("Gnus"
2430         ("Mark Read"
2431          ["Mark as read" gnus-summary-mark-as-read-forward t]
2432          ["Mark same subject and select"
2433           gnus-summary-kill-same-subject-and-select t]
2434          ["Mark same subject" gnus-summary-kill-same-subject t]
2435          ["Catchup" gnus-summary-catchup
2436           ,@(if (featurep 'xemacs) '(t)
2437               '(:help "Mark unread articles in this group as read"))]
2438          ["Catchup all" gnus-summary-catchup-all t]
2439          ["Catchup to here" gnus-summary-catchup-to-here t]
2440          ["Catchup from here" gnus-summary-catchup-from-here t]
2441          ["Catchup region" gnus-summary-mark-region-as-read
2442           (gnus-mark-active-p)]
2443          ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2444         ("Mark Various"
2445          ["Tick" gnus-summary-tick-article-forward t]
2446          ["Mark as dormant" gnus-summary-mark-as-dormant t]
2447          ["Remove marks" gnus-summary-clear-mark-forward t]
2448          ["Set expirable mark" gnus-summary-mark-as-expirable t]
2449          ["Set bookmark" gnus-summary-set-bookmark t]
2450          ["Remove bookmark" gnus-summary-remove-bookmark t])
2451         ("Limit to"
2452          ["Marks..." gnus-summary-limit-to-marks t]
2453          ["Subject..." gnus-summary-limit-to-subject t]
2454          ["Author..." gnus-summary-limit-to-author t]
2455          ["Age..." gnus-summary-limit-to-age t]
2456          ["Extra..." gnus-summary-limit-to-extra t]
2457          ["Score..." gnus-summary-limit-to-score t]
2458          ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2459          ["Unread" gnus-summary-limit-to-unread t]
2460          ["Unseen" gnus-summary-limit-to-unseen t]
2461          ["Replied" gnus-summary-limit-to-replied t]
2462          ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2463          ["Next articles" gnus-summary-limit-to-articles t]
2464          ["Pop limit" gnus-summary-pop-limit t]
2465          ["Show dormant" gnus-summary-limit-include-dormant t]
2466          ["Hide childless dormant"
2467           gnus-summary-limit-exclude-childless-dormant t]
2468          ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2469          ["Hide marked" gnus-summary-limit-exclude-marks t]
2470          ["Show expunged" gnus-summary-limit-include-expunged t])
2471         ("Process Mark"
2472          ["Set mark" gnus-summary-mark-as-processable t]
2473          ["Remove mark" gnus-summary-unmark-as-processable t]
2474          ["Remove all marks" gnus-summary-unmark-all-processable t]
2475          ["Invert marks" gnus-uu-invert-processable t]
2476          ["Mark above" gnus-uu-mark-over t]
2477          ["Mark series" gnus-uu-mark-series t]
2478          ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2479          ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2480          ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2481          ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2482          ["Mark all" gnus-uu-mark-all t]
2483          ["Mark buffer" gnus-uu-mark-buffer t]
2484          ["Mark sparse" gnus-uu-mark-sparse t]
2485          ["Mark thread" gnus-uu-mark-thread t]
2486          ["Unmark thread" gnus-uu-unmark-thread t]
2487          ("Process Mark Sets"
2488           ["Kill" gnus-summary-kill-process-mark t]
2489           ["Yank" gnus-summary-yank-process-mark
2490            gnus-newsgroup-process-stack]
2491           ["Save" gnus-summary-save-process-mark t]
2492           ["Run command on marked..." gnus-summary-universal-argument t]))
2493         ("Scroll article"
2494          ["Page forward" gnus-summary-next-page
2495           ,@(if (featurep 'xemacs) '(t)
2496               '(:help "Show next page of article"))]
2497          ["Page backward" gnus-summary-prev-page
2498           ,@(if (featurep 'xemacs) '(t)
2499               '(:help "Show previous page of article"))]
2500          ["Line forward" gnus-summary-scroll-up t])
2501         ("Move"
2502          ["Next unread article" gnus-summary-next-unread-article t]
2503          ["Previous unread article" gnus-summary-prev-unread-article t]
2504          ["Next article" gnus-summary-next-article t]
2505          ["Previous article" gnus-summary-prev-article t]
2506          ["Next unread subject" gnus-summary-next-unread-subject t]
2507          ["Previous unread subject" gnus-summary-prev-unread-subject t]
2508          ["Next article same subject" gnus-summary-next-same-subject t]
2509          ["Previous article same subject" gnus-summary-prev-same-subject t]
2510          ["First unread article" gnus-summary-first-unread-article t]
2511          ["Best unread article" gnus-summary-best-unread-article t]
2512          ["Go to subject number..." gnus-summary-goto-subject t]
2513          ["Go to article number..." gnus-summary-goto-article t]
2514          ["Go to the last article" gnus-summary-goto-last-article t]
2515          ["Pop article off history" gnus-summary-pop-article t])
2516         ("Sort"
2517          ["Sort by number" gnus-summary-sort-by-number t]
2518          ["Sort by author" gnus-summary-sort-by-author t]
2519          ["Sort by subject" gnus-summary-sort-by-subject t]
2520          ["Sort by date" gnus-summary-sort-by-date t]
2521          ["Sort by score" gnus-summary-sort-by-score t]
2522          ["Sort by lines" gnus-summary-sort-by-lines t]
2523          ["Sort by characters" gnus-summary-sort-by-chars t]
2524          ["Randomize" gnus-summary-sort-by-random t]
2525          ["Original sort" gnus-summary-sort-by-original t])
2526         ("Help"
2527          ["Fetch group FAQ" gnus-summary-fetch-faq t]
2528          ["Describe group" gnus-summary-describe-group t]
2529          ["Fetch charter" gnus-group-fetch-charter
2530           ,@(if (featurep 'xemacs) nil
2531               '(:help "Display the charter of the current group"))]
2532          ["Fetch control message" gnus-group-fetch-control
2533           ,@(if (featurep 'xemacs) nil
2534               '(:help "Display the archived control message for the current group"))]
2535          ["Read manual" gnus-info-find-node t])
2536         ("Modes"
2537          ["Pick and read" gnus-pick-mode t]
2538          ["Binary" gnus-binary-mode t])
2539         ("Regeneration"
2540          ["Regenerate" gnus-summary-prepare t]
2541          ["Insert cached articles" gnus-summary-insert-cached-articles t]
2542          ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2543          ["Toggle threading" gnus-summary-toggle-threads t])
2544         ["See old articles" gnus-summary-insert-old-articles t]
2545         ["See new articles" gnus-summary-insert-new-articles t]
2546         ["Filter articles..." gnus-summary-execute-command t]
2547         ["Run command on articles..." gnus-summary-universal-argument t]
2548         ["Search articles forward..." gnus-summary-search-article-forward t]
2549         ["Search articles backward..." gnus-summary-search-article-backward t]
2550         ["Toggle line truncation" gnus-summary-toggle-truncation t]
2551         ["Expand window" gnus-summary-expand-window t]
2552         ["Expire expirable articles" gnus-summary-expire-articles
2553          (gnus-check-backend-function
2554           'request-expire-articles gnus-newsgroup-name)]
2555         ["Edit local kill file" gnus-summary-edit-local-kill t]
2556         ["Edit main kill file" gnus-summary-edit-global-kill t]
2557         ["Edit group parameters" gnus-summary-edit-parameters t]
2558         ["Customize group parameters" gnus-summary-customize-parameters t]
2559         ["Send a bug report" gnus-bug t]
2560         ("Exit"
2561          ["Catchup and exit" gnus-summary-catchup-and-exit
2562           ,@(if (featurep 'xemacs) '(t)
2563               '(:help "Mark unread articles in this group as read, then exit"))]
2564          ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2565          ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2566          ["Exit group" gnus-summary-exit
2567           ,@(if (featurep 'xemacs) '(t)
2568               '(:help "Exit current group, return to group selection mode"))]
2569          ["Exit group without updating" gnus-summary-exit-no-update t]
2570          ["Exit and goto next group" gnus-summary-next-group t]
2571          ["Exit and goto prev group" gnus-summary-prev-group t]
2572          ["Reselect group" gnus-summary-reselect-current-group t]
2573          ["Rescan group" gnus-summary-rescan-group t]
2574          ["Update dribble" gnus-summary-save-newsrc t])))
2575
2576     (gnus-run-hooks 'gnus-summary-menu-hook)))
2577
2578 (defvar gnus-summary-tool-bar-map nil)
2579
2580 ;; Emacs 21 tool bar.  Should be no-op otherwise.
2581 (defun gnus-summary-make-tool-bar ()
2582   (if (and (fboundp 'tool-bar-add-item-from-menu)
2583            (default-value 'tool-bar-mode)
2584            (not gnus-summary-tool-bar-map))
2585       (setq gnus-summary-tool-bar-map
2586             (let ((tool-bar-map (make-sparse-keymap))
2587                   (load-path (mm-image-load-path)))
2588               (tool-bar-add-item-from-menu
2589                'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map)
2590               (tool-bar-add-item-from-menu
2591                'gnus-summary-next-unread "next-ur" gnus-summary-mode-map)
2592               (tool-bar-add-item-from-menu
2593                'gnus-summary-post-news "post" gnus-summary-mode-map)
2594               (tool-bar-add-item-from-menu
2595                'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map)
2596               (tool-bar-add-item-from-menu
2597                'gnus-summary-followup "followup" gnus-summary-mode-map)
2598               (tool-bar-add-item-from-menu
2599                'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map)
2600               (tool-bar-add-item-from-menu
2601                'gnus-summary-reply "reply" gnus-summary-mode-map)
2602               (tool-bar-add-item-from-menu
2603                'gnus-summary-caesar-message "rot13" gnus-summary-mode-map)
2604               (tool-bar-add-item-from-menu
2605                'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map)
2606               (tool-bar-add-item-from-menu
2607                'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map)
2608               (tool-bar-add-item-from-menu
2609                'gnus-summary-save-article "save-art" gnus-summary-mode-map)
2610               (tool-bar-add-item-from-menu
2611                'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2612               (tool-bar-add-item-from-menu
2613                'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2614               (tool-bar-add-item-from-menu
2615                'gnus-summary-catchup "catchup" gnus-summary-mode-map)
2616               (tool-bar-add-item-from-menu
2617                'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map)
2618               (tool-bar-add-item-from-menu
2619                'gnus-summary-exit "exit-summ" gnus-summary-mode-map)
2620               tool-bar-map)))
2621   (if gnus-summary-tool-bar-map
2622       (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
2623
2624 (defun gnus-score-set-default (var value)
2625   "A version of set that updates the GNU Emacs menu-bar."
2626   (set var value)
2627   ;; It is the message that forces the active status to be updated.
2628   (message ""))
2629
2630 (defun gnus-make-score-map (type)
2631   "Make a summary score map of type TYPE."
2632   (if t
2633       nil
2634     (let ((headers '(("author" "from" string)
2635                      ("subject" "subject" string)
2636                      ("article body" "body" string)
2637                      ("article head" "head" string)
2638                      ("xref" "xref" string)
2639                      ("extra header" "extra" string)
2640                      ("lines" "lines" number)
2641                      ("followups to author" "followup" string)))
2642           (types '((number ("less than" <)
2643                            ("greater than" >)
2644                            ("equal" =))
2645                    (string ("substring" s)
2646                            ("exact string" e)
2647                            ("fuzzy string" f)
2648                            ("regexp" r))))
2649           (perms '(("temporary" (current-time-string))
2650                    ("permanent" nil)
2651                    ("immediate" now)))
2652           header)
2653       (list
2654        (apply
2655         'nconc
2656         (list
2657          (if (eq type 'lower)
2658              "Lower score"
2659            "Increase score"))
2660         (let (outh)
2661           (while headers
2662             (setq header (car headers))
2663             (setq outh
2664                   (cons
2665                    (apply
2666                     'nconc
2667                     (list (car header))
2668                     (let ((ts (cdr (assoc (nth 2 header) types)))
2669                           outt)
2670                       (while ts
2671                         (setq outt
2672                               (cons
2673                                (apply
2674                                 'nconc
2675                                 (list (caar ts))
2676                                 (let ((ps perms)
2677                                       outp)
2678                                   (while ps
2679                                     (setq outp
2680                                           (cons
2681                                            (vector
2682                                             (caar ps)
2683                                             (list
2684                                              'gnus-summary-score-entry
2685                                              (nth 1 header)
2686                                              (if (or (string= (nth 1 header)
2687                                                               "head")
2688                                                      (string= (nth 1 header)
2689                                                               "body"))
2690                                                  ""
2691                                                (list 'gnus-summary-header
2692                                                      (nth 1 header)))
2693                                              (list 'quote (nth 1 (car ts)))
2694                                              (list 'gnus-score-delta-default
2695                                                    nil)
2696                                              (nth 1 (car ps))
2697                                              t)
2698                                             t)
2699                                            outp))
2700                                     (setq ps (cdr ps)))
2701                                   (list (nreverse outp))))
2702                                outt))
2703                         (setq ts (cdr ts)))
2704                       (list (nreverse outt))))
2705                    outh))
2706             (setq headers (cdr headers)))
2707           (list (nreverse outh))))))))
2708
2709 \f
2710
2711 (defun gnus-summary-mode (&optional group)
2712   "Major mode for reading articles.
2713
2714 All normal editing commands are switched off.
2715 \\<gnus-summary-mode-map>
2716 Each line in this buffer represents one article.  To read an
2717 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
2718 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2719 respectively.
2720
2721 You can also post articles and send mail from this buffer.  To
2722 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
2723 of an article, type `\\[gnus-summary-reply]'.
2724
2725 There are approx. one gazillion commands you can execute in this
2726 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2727
2728 The following commands are available:
2729
2730 \\{gnus-summary-mode-map}"
2731   (interactive)
2732   (kill-all-local-variables)
2733   (when (gnus-visual-p 'summary-menu 'menu)
2734     (gnus-summary-make-menu-bar)
2735     (gnus-summary-make-tool-bar))
2736   (gnus-summary-make-local-variables)
2737   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
2738     (gnus-summary-make-local-variables))
2739   (gnus-make-thread-indent-array)
2740   (gnus-simplify-mode-line)
2741   (setq major-mode 'gnus-summary-mode)
2742   (setq mode-name "Summary")
2743   (make-local-variable 'minor-mode-alist)
2744   (use-local-map gnus-summary-mode-map)
2745   (buffer-disable-undo)
2746   (setq buffer-read-only t              ;Disable modification
2747         show-trailing-whitespace nil)
2748   (setq truncate-lines t)
2749   (setq selective-display t)
2750   (setq selective-display-ellipses t)   ;Display `...'
2751   (gnus-summary-set-display-table)
2752   (gnus-set-default-directory)
2753   (setq gnus-newsgroup-name group)
2754   (unless (gnus-news-group-p group)
2755     (setq gnus-newsgroup-incorporated
2756           (nnmail-new-mail-numbers (gnus-group-real-name group))))
2757   (make-local-variable 'gnus-summary-line-format)
2758   (make-local-variable 'gnus-summary-line-format-spec)
2759   (make-local-variable 'gnus-summary-dummy-line-format)
2760   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2761   (make-local-variable 'gnus-summary-mark-positions)
2762   (gnus-make-local-hook 'pre-command-hook)
2763   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2764   (gnus-run-hooks 'gnus-summary-mode-hook)
2765   (turn-on-gnus-mailing-list-mode)
2766   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2767   (gnus-update-summary-mark-positions))
2768
2769 (defun gnus-summary-make-local-variables ()
2770   "Make all the local summary buffer variables."
2771   (let (global)
2772     (dolist (local gnus-summary-local-variables)
2773       (if (consp local)
2774           (progn
2775             (if (eq (cdr local) 'global)
2776                 ;; Copy the global value of the variable.
2777                 (setq global (symbol-value (car local)))
2778               ;; Use the value from the list.
2779               (setq global (eval (cdr local))))
2780             (set (make-local-variable (car local)) global))
2781         ;; Simple nil-valued local variable.
2782         (set (make-local-variable local) nil)))))
2783
2784 (defun gnus-summary-clear-local-variables ()
2785   (let ((locals gnus-summary-local-variables))
2786     (while locals
2787       (if (consp (car locals))
2788           (and (vectorp (caar locals))
2789                (set (caar locals) nil))
2790         (and (vectorp (car locals))
2791              (set (car locals) nil)))
2792       (setq locals (cdr locals)))))
2793
2794 ;; Summary data functions.
2795
2796 (defmacro gnus-data-number (data)
2797   `(car ,data))
2798
2799 (defmacro gnus-data-set-number (data number)
2800   `(setcar ,data ,number))
2801
2802 (defmacro gnus-data-mark (data)
2803   `(nth 1 ,data))
2804
2805 (defmacro gnus-data-set-mark (data mark)
2806   `(setcar (nthcdr 1 ,data) ,mark))
2807
2808 (defmacro gnus-data-pos (data)
2809   `(nth 2 ,data))
2810
2811 (defmacro gnus-data-set-pos (data pos)
2812   `(setcar (nthcdr 2 ,data) ,pos))
2813
2814 (defmacro gnus-data-header (data)
2815   `(nth 3 ,data))
2816
2817 (defmacro gnus-data-set-header (data header)
2818   `(setcar (nthcdr 3 ,data) ,header))
2819
2820 (defmacro gnus-data-level (data)
2821   `(nth 4 ,data))
2822
2823 (defmacro gnus-data-unread-p (data)
2824   `(= (nth 1 ,data) gnus-unread-mark))
2825
2826 (defmacro gnus-data-read-p (data)
2827   `(/= (nth 1 ,data) gnus-unread-mark))
2828
2829 (defmacro gnus-data-pseudo-p (data)
2830   `(consp (nth 3 ,data)))
2831
2832 (defmacro gnus-data-find (number)
2833   `(assq ,number gnus-newsgroup-data))
2834
2835 (defmacro gnus-data-find-list (number &optional data)
2836   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2837      (memq (assq ,number bdata)
2838            bdata)))
2839
2840 (defmacro gnus-data-make (number mark pos header level)
2841   `(list ,number ,mark ,pos ,header ,level))
2842
2843 (defun gnus-data-enter (after-article number mark pos header level offset)
2844   (let ((data (gnus-data-find-list after-article)))
2845     (unless data
2846       (error "No such article: %d" after-article))
2847     (setcdr data (cons (gnus-data-make number mark pos header level)
2848                        (cdr data)))
2849     (setq gnus-newsgroup-data-reverse nil)
2850     (gnus-data-update-list (cddr data) offset)))
2851
2852 (defun gnus-data-enter-list (after-article list &optional offset)
2853   (when list
2854     (let ((data (and after-article (gnus-data-find-list after-article)))
2855           (ilist list))
2856       (if (not (or data
2857                    after-article))
2858           (let ((odata gnus-newsgroup-data))
2859             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2860             (when offset
2861               (gnus-data-update-list odata offset)))
2862         ;; Find the last element in the list to be spliced into the main
2863         ;; list.
2864         (setq list (last list))
2865         (if (not data)
2866             (progn
2867               (setcdr list gnus-newsgroup-data)
2868               (setq gnus-newsgroup-data ilist)
2869               (when offset
2870                 (gnus-data-update-list (cdr list) offset)))
2871           (setcdr list (cdr data))
2872           (setcdr data ilist)
2873           (when offset
2874             (gnus-data-update-list (cdr list) offset))))
2875       (setq gnus-newsgroup-data-reverse nil))))
2876
2877 (defun gnus-data-remove (article &optional offset)
2878   (let ((data gnus-newsgroup-data))
2879     (if (= (gnus-data-number (car data)) article)
2880         (progn
2881           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2882                 gnus-newsgroup-data-reverse nil)
2883           (when offset
2884             (gnus-data-update-list gnus-newsgroup-data offset)))
2885       (while (cdr data)
2886         (when (= (gnus-data-number (cadr data)) article)
2887           (setcdr data (cddr data))
2888           (when offset
2889             (gnus-data-update-list (cdr data) offset))
2890           (setq data nil
2891                 gnus-newsgroup-data-reverse nil))
2892         (setq data (cdr data))))))
2893
2894 (defmacro gnus-data-list (backward)
2895   `(if ,backward
2896        (or gnus-newsgroup-data-reverse
2897            (setq gnus-newsgroup-data-reverse
2898                  (reverse gnus-newsgroup-data)))
2899      gnus-newsgroup-data))
2900
2901 (defun gnus-data-update-list (data offset)
2902   "Add OFFSET to the POS of all data entries in DATA."
2903   (setq gnus-newsgroup-data-reverse nil)
2904   (while data
2905     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2906     (setq data (cdr data))))
2907
2908 (defun gnus-summary-article-pseudo-p (article)
2909   "Say whether this article is a pseudo article or not."
2910   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2911
2912 (defmacro gnus-summary-article-sparse-p (article)
2913   "Say whether this article is a sparse article or not."
2914   `(memq ,article gnus-newsgroup-sparse))
2915
2916 (defmacro gnus-summary-article-ancient-p (article)
2917   "Say whether this article is a sparse article or not."
2918   `(memq ,article gnus-newsgroup-ancient))
2919
2920 (defun gnus-article-parent-p (number)
2921   "Say whether this article is a parent or not."
2922   (let ((data (gnus-data-find-list number)))
2923     (and (cdr data)                     ; There has to be an article after...
2924          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2925             (gnus-data-level (nth 1 data))))))
2926
2927 (defun gnus-article-children (number)
2928   "Return a list of all children to NUMBER."
2929   (let* ((data (gnus-data-find-list number))
2930          (level (gnus-data-level (car data)))
2931          children)
2932     (setq data (cdr data))
2933     (while (and data
2934                 (= (gnus-data-level (car data)) (1+ level)))
2935       (push (gnus-data-number (car data)) children)
2936       (setq data (cdr data)))
2937     children))
2938
2939 (defmacro gnus-summary-skip-intangible ()
2940   "If the current article is intangible, then jump to a different article."
2941   '(let ((to (get-text-property (point) 'gnus-intangible)))
2942      (and to (gnus-summary-goto-subject to))))
2943
2944 (defmacro gnus-summary-article-intangible-p ()
2945   "Say whether this article is intangible or not."
2946   '(get-text-property (point) 'gnus-intangible))
2947
2948 (defun gnus-article-read-p (article)
2949   "Say whether ARTICLE is read or not."
2950   (not (or (memq article gnus-newsgroup-marked)
2951            (memq article gnus-newsgroup-spam-marked)
2952            (memq article gnus-newsgroup-unreads)
2953            (memq article gnus-newsgroup-unselected)
2954            (memq article gnus-newsgroup-dormant))))
2955
2956 ;; Some summary mode macros.
2957
2958 (defmacro gnus-summary-article-number ()
2959   "The article number of the article on the current line.
2960 If there isn't an article number here, then we return the current
2961 article number."
2962   '(progn
2963      (gnus-summary-skip-intangible)
2964      (or (get-text-property (point) 'gnus-number)
2965          (gnus-summary-last-subject))))
2966
2967 (defmacro gnus-summary-article-header (&optional number)
2968   "Return the header of article NUMBER."
2969   `(gnus-data-header (gnus-data-find
2970                       ,(or number '(gnus-summary-article-number)))))
2971
2972 (defmacro gnus-summary-thread-level (&optional number)
2973   "Return the level of thread that starts with article NUMBER."
2974   `(if (and (eq gnus-summary-make-false-root 'dummy)
2975             (get-text-property (point) 'gnus-intangible))
2976        0
2977      (gnus-data-level (gnus-data-find
2978                        ,(or number '(gnus-summary-article-number))))))
2979
2980 (defmacro gnus-summary-article-mark (&optional number)
2981   "Return the mark of article NUMBER."
2982   `(gnus-data-mark (gnus-data-find
2983                     ,(or number '(gnus-summary-article-number)))))
2984
2985 (defmacro gnus-summary-article-pos (&optional number)
2986   "Return the position of the line of article NUMBER."
2987   `(gnus-data-pos (gnus-data-find
2988                    ,(or number '(gnus-summary-article-number)))))
2989
2990 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2991 (defmacro gnus-summary-article-subject (&optional number)
2992   "Return current subject string or nil if nothing."
2993   `(let ((headers
2994           ,(if number
2995                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2996              '(gnus-data-header (assq (gnus-summary-article-number)
2997                                       gnus-newsgroup-data)))))
2998      (and headers
2999           (vectorp headers)
3000           (mail-header-subject headers))))
3001
3002 (defmacro gnus-summary-article-score (&optional number)
3003   "Return current article score."
3004   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
3005                   gnus-newsgroup-scored))
3006        gnus-summary-default-score 0))
3007
3008 (defun gnus-summary-article-children (&optional number)
3009   "Return a list of article numbers that are children of article NUMBER."
3010   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
3011          (level (gnus-data-level (car data)))
3012          l children)
3013     (while (and (setq data (cdr data))
3014                 (> (setq l (gnus-data-level (car data))) level))
3015       (and (= (1+ level) l)
3016            (push (gnus-data-number (car data))
3017                  children)))
3018     (nreverse children)))
3019
3020 (defun gnus-summary-article-parent (&optional number)
3021   "Return the article number of the parent of article NUMBER."
3022   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
3023                                     (gnus-data-list t)))
3024          (level (gnus-data-level (car data))))
3025     (if (zerop level)
3026         ()                              ; This is a root.
3027       ;; We search until we find an article with a level less than
3028       ;; this one.  That function has to be the parent.
3029       (while (and (setq data (cdr data))
3030                   (not (< (gnus-data-level (car data)) level))))
3031       (and data (gnus-data-number (car data))))))
3032
3033 (defun gnus-unread-mark-p (mark)
3034   "Say whether MARK is the unread mark."
3035   (= mark gnus-unread-mark))
3036
3037 (defun gnus-read-mark-p (mark)
3038   "Say whether MARK is one of the marks that mark as read.
3039 This is all marks except unread, ticked, dormant, and expirable."
3040   (not (or (= mark gnus-unread-mark)
3041            (= mark gnus-ticked-mark)
3042            (= mark gnus-spam-mark)
3043            (= mark gnus-dormant-mark)
3044            (= mark gnus-expirable-mark))))
3045
3046 (defmacro gnus-article-mark (number)
3047   "Return the MARK of article NUMBER.
3048 This macro should only be used when computing the mark the \"first\"
3049 time; i.e., when generating the summary lines.  After that,
3050 `gnus-summary-article-mark' should be used to examine the
3051 marks of articles."
3052   `(cond
3053     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
3054     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
3055     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
3056     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
3057     ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
3058     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
3059     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
3060     (t (or (cdr (assq ,number gnus-newsgroup-reads))
3061            gnus-ancient-mark))))
3062
3063 ;; Saving hidden threads.
3064
3065 (defmacro gnus-save-hidden-threads (&rest forms)
3066   "Save hidden threads, eval FORMS, and restore the hidden threads."
3067   (let ((config (make-symbol "config")))
3068     `(let ((,config (gnus-hidden-threads-configuration)))
3069        (unwind-protect
3070            (save-excursion
3071              ,@forms)
3072          (gnus-restore-hidden-threads-configuration ,config)))))
3073 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3074 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3075
3076 (defun gnus-data-compute-positions ()
3077   "Compute the positions of all articles."
3078   (setq gnus-newsgroup-data-reverse nil)
3079   (let ((data gnus-newsgroup-data))
3080     (save-excursion
3081       (gnus-save-hidden-threads
3082         (gnus-summary-show-all-threads)
3083         (goto-char (point-min))
3084         (while data
3085           (while (get-text-property (point) 'gnus-intangible)
3086             (forward-line 1))
3087           (gnus-data-set-pos (car data) (+ (point) 3))
3088           (setq data (cdr data))
3089           (forward-line 1))))))
3090
3091 (defun gnus-hidden-threads-configuration ()
3092   "Return the current hidden threads configuration."
3093   (save-excursion
3094     (let (config)
3095       (goto-char (point-min))
3096       (while (search-forward "\r" nil t)
3097         (push (1- (point)) config))
3098       config)))
3099
3100 (defun gnus-restore-hidden-threads-configuration (config)
3101   "Restore hidden threads configuration from CONFIG."
3102   (save-excursion
3103     (let (point buffer-read-only)
3104       (while (setq point (pop config))
3105         (when (and (< point (point-max))
3106                    (goto-char point)
3107                    (eq (char-after) ?\n))
3108           (subst-char-in-region point (1+ point) ?\n ?\r))))))
3109
3110 ;; Various summary mode internalish functions.
3111
3112 (defun gnus-mouse-pick-article (e)
3113   (interactive "e")
3114   (mouse-set-point e)
3115   (gnus-summary-next-page nil t))
3116
3117 (defun gnus-summary-set-display-table ()
3118   "Change the display table.
3119 Odd characters have a tendency to mess
3120 up nicely formatted displays - we make all possible glyphs
3121 display only a single character."
3122
3123   ;; We start from the standard display table, if any.
3124   (let ((table (or (copy-sequence standard-display-table)
3125                    (make-display-table)))
3126         (i 32))
3127     ;; Nix out all the control chars...
3128     (while (>= (setq i (1- i)) 0)
3129       (aset table i [??]))
3130     ;; ... but not newline and cr, of course.  (cr is necessary for the
3131     ;; selective display).
3132     (aset table ?\n nil)
3133     (aset table ?\r nil)
3134     ;; We keep TAB as well.
3135     (aset table ?\t nil)
3136     ;; We nix out any glyphs over 126 that are not set already.
3137     (let ((i 256))
3138       (while (>= (setq i (1- i)) 127)
3139         ;; Only modify if the entry is nil.
3140         (unless (aref table i)
3141           (aset table i [??]))))
3142     (setq buffer-display-table table)))
3143
3144 (defun gnus-summary-set-article-display-arrow (pos)
3145   "Update the overlay arrow to point to line at position POS."
3146   (when (and gnus-summary-display-arrow
3147              (boundp 'overlay-arrow-position)
3148              (boundp 'overlay-arrow-string))
3149     (save-excursion
3150       (goto-char pos)
3151       (beginning-of-line)
3152       (unless overlay-arrow-position
3153         (setq overlay-arrow-position (make-marker)))
3154       (setq overlay-arrow-string "=>"
3155             overlay-arrow-position (set-marker overlay-arrow-position
3156                                                (point)
3157                                                (current-buffer))))))
3158
3159 (defun gnus-summary-setup-buffer (group)
3160   "Initialize summary buffer."
3161   (let ((buffer (gnus-summary-buffer-name group))
3162         (dead-name (concat "*Dead Summary "
3163                            (gnus-group-decoded-name group) "*")))
3164     ;; If a dead summary buffer exists, we kill it.
3165     (when (gnus-buffer-live-p dead-name)
3166       (gnus-kill-buffer dead-name))
3167     (if (get-buffer buffer)
3168         (progn
3169           (set-buffer buffer)
3170           (setq gnus-summary-buffer (current-buffer))
3171           (not gnus-newsgroup-prepared))
3172       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3173       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3174       (gnus-summary-mode group)
3175       (when gnus-carpal
3176         (gnus-carpal-setup-buffer 'summary))
3177       (unless gnus-single-article-buffer
3178         (make-local-variable 'gnus-article-buffer)
3179         (make-local-variable 'gnus-article-current)
3180         (make-local-variable 'gnus-original-article-buffer))
3181       (setq gnus-newsgroup-name group)
3182       ;; Set any local variables in the group parameters.
3183       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3184       t)))
3185
3186 (defun gnus-set-global-variables ()
3187   "Set the global equivalents of the buffer-local variables.
3188 They are set to the latest values they had.  These reflect the summary
3189 buffer that was in action when the last article was fetched."
3190   (when (eq major-mode 'gnus-summary-mode)
3191     (setq gnus-summary-buffer (current-buffer))
3192     (let ((name gnus-newsgroup-name)
3193           (marked gnus-newsgroup-marked)
3194           (spam gnus-newsgroup-spam-marked)
3195           (unread gnus-newsgroup-unreads)
3196           (headers gnus-current-headers)
3197           (data gnus-newsgroup-data)
3198           (summary gnus-summary-buffer)
3199           (article-buffer gnus-article-buffer)
3200           (original gnus-original-article-buffer)
3201           (gac gnus-article-current)
3202           (reffed gnus-reffed-article-number)
3203           (score-file gnus-current-score-file)
3204           (default-charset gnus-newsgroup-charset)
3205           vlist)
3206       (let ((locals gnus-newsgroup-variables))
3207         (while locals
3208           (if (consp (car locals))
3209               (push (eval (caar locals)) vlist)
3210             (push (eval (car locals)) vlist))
3211           (setq locals (cdr locals)))
3212         (setq vlist (nreverse vlist)))
3213       (with-current-buffer gnus-group-buffer
3214         (setq gnus-newsgroup-name name
3215               gnus-newsgroup-marked marked
3216               gnus-newsgroup-spam-marked spam
3217               gnus-newsgroup-unreads unread
3218               gnus-current-headers headers
3219               gnus-newsgroup-data data
3220               gnus-article-current gac
3221               gnus-summary-buffer summary
3222               gnus-article-buffer article-buffer
3223               gnus-original-article-buffer original
3224               gnus-reffed-article-number reffed
3225               gnus-current-score-file score-file
3226               gnus-newsgroup-charset default-charset)
3227         (let ((locals gnus-newsgroup-variables))
3228           (while locals
3229             (if (consp (car locals))
3230                 (set (caar locals) (pop vlist))
3231               (set (car locals) (pop vlist)))
3232             (setq locals (cdr locals))))
3233         ;; The article buffer also has local variables.
3234         (when (gnus-buffer-live-p gnus-article-buffer)
3235           (set-buffer gnus-article-buffer)
3236           (setq gnus-summary-buffer summary))))))
3237
3238 (defun gnus-summary-article-unread-p (article)
3239   "Say whether ARTICLE is unread or not."
3240   (memq article gnus-newsgroup-unreads))
3241
3242 (defun gnus-summary-first-article-p (&optional article)
3243   "Return whether ARTICLE is the first article in the buffer."
3244   (if (not (setq article (or article (gnus-summary-article-number))))
3245       nil
3246     (eq article (caar gnus-newsgroup-data))))
3247
3248 (defun gnus-summary-last-article-p (&optional article)
3249   "Return whether ARTICLE is the last article in the buffer."
3250   (if (not (setq article (or article (gnus-summary-article-number))))
3251       ;; All non-existent numbers are the last article.  :-)
3252       t
3253     (not (cdr (gnus-data-find-list article)))))
3254
3255 (defun gnus-make-thread-indent-array ()
3256   (let ((n 200))
3257     (unless (and gnus-thread-indent-array
3258                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
3259       (setq gnus-thread-indent-array (make-vector 201 "")
3260             gnus-thread-indent-array-level gnus-thread-indent-level)
3261       (while (>= n 0)
3262         (aset gnus-thread-indent-array n
3263               (make-string (* n gnus-thread-indent-level) ? ))
3264         (setq n (1- n))))))
3265
3266 (defun gnus-update-summary-mark-positions ()
3267   "Compute where the summary marks are to go."
3268   (save-excursion
3269     (when (gnus-buffer-exists-p gnus-summary-buffer)
3270       (set-buffer gnus-summary-buffer))
3271     (let ((gnus-replied-mark 129)
3272           (gnus-score-below-mark 130)
3273           (gnus-score-over-mark 130)
3274           (gnus-undownloaded-mark 131)
3275           (spec gnus-summary-line-format-spec)
3276           gnus-visual pos)
3277       (save-excursion
3278         (gnus-set-work-buffer)
3279         (let ((gnus-summary-line-format-spec spec)
3280               (gnus-newsgroup-downloadable '(0)))
3281           (gnus-summary-insert-line
3282            (make-full-mail-header 0 "" "nobody"
3283                                   "05 Apr 2001 23:33:09 +0400"
3284                                   "" "" 0 0 "" nil)
3285            0 nil t 128 t nil "" nil 1)
3286           (goto-char (point-min))
3287           (setq pos (list (cons 'unread
3288                                 (and (search-forward
3289                                       (string-as-multibyte "\200") nil t)
3290                                      (- (point) (point-min) 1)))))
3291           (goto-char (point-min))
3292           (push (cons 'replied (and (search-forward
3293                                      (string-as-multibyte "\201") nil t)
3294                                     (- (point) (point-min) 1)))
3295                 pos)
3296           (goto-char (point-min))
3297           (push (cons 'score (and (search-forward
3298                                    (string-as-multibyte "\202") nil t)
3299                                   (- (point) (point-min) 1)))
3300                 pos)
3301           (goto-char (point-min))
3302           (push (cons 'download (and (search-forward
3303                                       (string-as-multibyte "\203") nil t)
3304                                      (- (point) (point-min) 1)))
3305                 pos)))
3306       (setq gnus-summary-mark-positions pos))))
3307
3308 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3309   "Insert a dummy root in the summary buffer."
3310   (beginning-of-line)
3311   (gnus-add-text-properties
3312    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3313    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3314
3315 (defun gnus-summary-extract-address-component (from)
3316   (or (car (funcall gnus-extract-address-components from))
3317       from))
3318
3319 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3320   (let ((default-mime-charset (with-current-buffer gnus-summary-buffer
3321                                 default-mime-charset)))
3322     ;; Is it really necessary to do this next part for each summary line?
3323     ;; Luckily, doesn't seem to slow things down much.
3324     (or
3325      (and gnus-ignored-from-addresses
3326           (string-match gnus-ignored-from-addresses gnus-tmp-from)
3327           (let ((extra-headers (mail-header-extra header))
3328                 to
3329                 newsgroups)
3330             (cond
3331              ((setq to (cdr (assq 'To extra-headers)))
3332               (concat "-> "
3333                       (inline
3334                         (gnus-summary-extract-address-component
3335                          (funcall gnus-decode-encoded-word-function to)))))
3336              ((setq newsgroups (cdr (assq 'Newsgroups extra-headers)))
3337               (concat "=> " newsgroups)))))
3338      (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3339
3340 (defun gnus-summary-insert-line (gnus-tmp-header
3341                                  gnus-tmp-level gnus-tmp-current
3342                                  undownloaded gnus-tmp-unread gnus-tmp-replied
3343                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
3344                                  &optional gnus-tmp-dummy gnus-tmp-score
3345                                  gnus-tmp-process)
3346   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3347          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3348          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3349          (gnus-tmp-score-char
3350           (if (or (null gnus-summary-default-score)
3351                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3352                       gnus-summary-zcore-fuzz))
3353               ?\ ;;;Whitespace
3354             (if (< gnus-tmp-score gnus-summary-default-score)
3355                 gnus-score-below-mark gnus-score-over-mark)))
3356          (gnus-tmp-number (mail-header-number gnus-tmp-header))
3357          (gnus-tmp-replied
3358           (cond (gnus-tmp-process gnus-process-mark)
3359                 ((memq gnus-tmp-current gnus-newsgroup-cached)
3360                  gnus-cached-mark)
3361                 (gnus-tmp-replied gnus-replied-mark)
3362                 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3363                  gnus-forwarded-mark)
3364                 ((memq gnus-tmp-current gnus-newsgroup-saved)
3365                  gnus-saved-mark)
3366                 ((memq gnus-tmp-number gnus-newsgroup-recent)
3367                  gnus-recent-mark)
3368                 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3369                  gnus-unseen-mark)
3370                 (t gnus-no-mark)))
3371          (gnus-tmp-downloaded
3372           (cond (undownloaded
3373                  gnus-undownloaded-mark)
3374                 (gnus-newsgroup-agentized
3375                  gnus-downloaded-mark)
3376                 (t
3377                  gnus-no-mark)))
3378          (gnus-tmp-from (mail-header-from gnus-tmp-header))
3379          (gnus-tmp-name
3380           (cond
3381            ((string-match "<[^>]+> *$" gnus-tmp-from)
3382             (let ((beg (match-beginning 0)))
3383               (or (and (string-match "^\".+\"" gnus-tmp-from)
3384                        (substring gnus-tmp-from 1 (1- (match-end 0))))
3385                   (substring gnus-tmp-from 0 beg))))
3386            ((string-match "(.+)" gnus-tmp-from)
3387             (substring gnus-tmp-from
3388                        (1+ (match-beginning 0)) (1- (match-end 0))))
3389            (t gnus-tmp-from)))
3390          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3391          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3392          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3393          (buffer-read-only nil))
3394     (when (string= gnus-tmp-name "")
3395       (setq gnus-tmp-name gnus-tmp-from))
3396     (unless (numberp gnus-tmp-lines)
3397       (setq gnus-tmp-lines -1))
3398     (if (= gnus-tmp-lines -1)
3399         (setq gnus-tmp-lines "?")
3400       (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3401     (gnus-put-text-property-excluding-characters-with-faces
3402      (point)
3403      (progn (eval gnus-summary-line-format-spec) (point))
3404      'gnus-number gnus-tmp-number)
3405     (when (gnus-visual-p 'summary-highlight 'highlight)
3406       (forward-line -1)
3407       (gnus-run-hooks 'gnus-summary-update-hook)
3408       (forward-line 1))))
3409
3410 (defun gnus-summary-update-line (&optional dont-update)
3411   "Update summary line after change."
3412   (when (and gnus-summary-default-score
3413              (not gnus-summary-inhibit-highlight))
3414     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3415            (article (gnus-summary-article-number))
3416            (score (gnus-summary-article-score article)))
3417       (unless dont-update
3418         (if (and gnus-summary-mark-below
3419                  (< (gnus-summary-article-score)
3420                     gnus-summary-mark-below))
3421             ;; This article has a low score, so we mark it as read.
3422             (when (memq article gnus-newsgroup-unreads)
3423               (gnus-summary-mark-article-as-read gnus-low-score-mark))
3424           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3425             ;; This article was previously marked as read on account
3426             ;; of a low score, but now it has risen, so we mark it as
3427             ;; unread.
3428             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3429         (gnus-summary-update-mark
3430          (if (or (null gnus-summary-default-score)
3431                  (<= (abs (- score gnus-summary-default-score))
3432                      gnus-summary-zcore-fuzz))
3433              ?\ ;;;Whitespace
3434            (if (< score gnus-summary-default-score)
3435                gnus-score-below-mark gnus-score-over-mark))
3436          'score))
3437       ;; Do visual highlighting.
3438       (when (gnus-visual-p 'summary-highlight 'highlight)
3439         (gnus-run-hooks 'gnus-summary-update-hook)))))
3440
3441 (defvar gnus-tmp-new-adopts nil)
3442
3443 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3444   "Return the number of articles in THREAD.
3445 This may be 0 in some cases -- if none of the articles in
3446 the thread are to be displayed."
3447   (let* ((number
3448           ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3449           (cond
3450            ((not (listp thread))
3451             1)
3452            ((and (consp thread) (cdr thread))
3453             (apply
3454              '+ 1 (mapcar
3455                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
3456            ((null thread)
3457             1)
3458            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3459             1)
3460            (t 0))))
3461     (when (and level (zerop level) gnus-tmp-new-adopts)
3462       (incf number
3463             (apply '+ (mapcar
3464                        'gnus-summary-number-of-articles-in-thread
3465                        gnus-tmp-new-adopts))))
3466     (if char
3467         (if (> number 1) gnus-not-empty-thread-mark
3468           gnus-empty-thread-mark)
3469       number)))
3470
3471 (defsubst gnus-summary-line-message-size (head)
3472   "Return pretty-printed version of message size.
3473 This function is intended to be used in
3474 `gnus-summary-line-format-alist'."
3475   (let ((c (or (mail-header-chars head) -1)))
3476     (cond ((< c 0) "n/a")               ; chars not available
3477           ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3478           ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3479           ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3480           (t (format "%dM" (/ c (* 1024.0 1024)))))))
3481
3482
3483 (defun gnus-summary-set-local-parameters (group)
3484   "Go through the local params of GROUP and set all variable specs in that list."
3485   (let ((vars '(quit-config)))          ; Ignore quit-config.
3486     (dolist (elem (gnus-group-find-parameter group))
3487       (and (consp elem)                 ; Has to be a cons.
3488            (consp (cdr elem))           ; The cdr has to be a list.
3489            (symbolp (car elem))         ; Has to be a symbol in there.
3490            (not (memq (car elem) vars))
3491            (ignore-errors               ; So we set it.
3492              (push (car elem) vars)
3493              (make-local-variable (car elem))
3494              (set (car elem) (eval (nth 1 elem))))))))
3495
3496 (defun gnus-summary-read-group (group &optional show-all no-article
3497                                       kill-buffer no-display backward
3498                                       select-articles)
3499   "Start reading news in newsgroup GROUP.
3500 If SHOW-ALL is non-nil, already read articles are also listed.
3501 If NO-ARTICLE is non-nil, no article is selected initially.
3502 If NO-DISPLAY, don't generate a summary buffer."
3503   (let (result)
3504     (while (and group
3505                 (null (setq result
3506                             (let ((gnus-auto-select-next nil))
3507                               (or (gnus-summary-read-group-1
3508                                    group show-all no-article
3509                                    kill-buffer no-display
3510                                    select-articles)
3511                                   (setq show-all nil
3512                                         select-articles nil)))))
3513                 (eq gnus-auto-select-next 'quietly))
3514       (set-buffer gnus-group-buffer)
3515       ;; The entry function called above goes to the next
3516       ;; group automatically, so we go two groups back
3517       ;; if we are searching for the previous group.
3518       (when backward
3519         (gnus-group-prev-unread-group 2))
3520       (if (not (equal group (gnus-group-group-name)))
3521           (setq group (gnus-group-group-name))
3522         (setq group nil)))
3523     result))
3524
3525 (defun gnus-summary-jump-to-other-group (group &optional show-all)
3526   "Directly jump to the other GROUP from summary buffer.
3527 If SHOW-ALL is non-nil, already read articles are also listed."
3528   (interactive
3529    (if (eq gnus-summary-buffer (current-buffer))
3530        (list (completing-read
3531               "Group: " gnus-active-hashtb nil t
3532               (when (and gnus-newsgroup-name
3533                          (string-match "[.:][^.:]+$" gnus-newsgroup-name))
3534                 (substring gnus-newsgroup-name 0 (1+ (match-beginning 0))))
3535               'gnus-group-history)
3536              current-prefix-arg)
3537      (error "%s must be invoked from a gnus summary buffer." this-command)))
3538   (unless (or (zerop (length group))
3539               (and gnus-newsgroup-name
3540                    (string-equal gnus-newsgroup-name group)))
3541     (gnus-summary-exit)
3542     (gnus-summary-read-group group show-all
3543                              gnus-dont-select-after-jump-to-other-group)))
3544
3545 (defun gnus-summary-read-group-1 (group show-all no-article
3546                                         kill-buffer no-display
3547                                         &optional select-articles)
3548   ;; Killed foreign groups can't be entered.
3549   ;;  (when (and (not (gnus-group-native-p group))
3550   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
3551   ;;    (error "Dead non-native groups can't be entered"))
3552   (gnus-message 5 "Retrieving newsgroup: %s..."
3553                 (gnus-group-decoded-name group))
3554   (let* ((new-group (gnus-summary-setup-buffer group))
3555          (quit-config (gnus-group-quit-config group))
3556          (did-select (and new-group (gnus-select-newsgroup
3557                                      group show-all select-articles))))
3558     (cond
3559      ;; This summary buffer exists already, so we just select it.
3560      ((not new-group)
3561       (gnus-set-global-variables)
3562       (when kill-buffer
3563         (gnus-kill-or-deaden-summary kill-buffer))
3564       (gnus-configure-windows 'summary 'force)
3565       (gnus-set-mode-line 'summary)
3566       (gnus-summary-position-point)
3567       (message "")
3568       t)
3569      ;; We couldn't select this group.
3570      ((null did-select)
3571       (when (and (eq major-mode 'gnus-summary-mode)
3572                  (not (equal (current-buffer) kill-buffer)))
3573         (kill-buffer (current-buffer))
3574         (if (not quit-config)
3575             (progn
3576               ;; Update the info -- marks might need to be removed,
3577               ;; for instance.
3578               (gnus-summary-update-info)
3579               (set-buffer gnus-group-buffer)
3580               (gnus-group-jump-to-group group)
3581               (gnus-group-next-unread-group 1))
3582           (gnus-handle-ephemeral-exit quit-config)))
3583       (let ((grpinfo (gnus-get-info group)))
3584         (if (null (gnus-info-read grpinfo))
3585             (gnus-message 3 "Group %s contains no messages"
3586                           (gnus-group-decoded-name group))
3587           (gnus-message 3 "Can't select group")))
3588       nil)
3589      ;; The user did a `C-g' while prompting for number of articles,
3590      ;; so we exit this group.
3591      ((eq did-select 'quit)
3592       (and (eq major-mode 'gnus-summary-mode)
3593            (not (equal (current-buffer) kill-buffer))
3594            (kill-buffer (current-buffer)))
3595       (when kill-buffer
3596         (gnus-kill-or-deaden-summary kill-buffer))
3597       (if (not quit-config)
3598           (progn
3599             (set-buffer gnus-group-buffer)
3600             (gnus-group-jump-to-group group)
3601             (gnus-group-next-unread-group 1)
3602             (gnus-configure-windows 'group 'force))
3603         (gnus-handle-ephemeral-exit quit-config))
3604       ;; Finally signal the quit.
3605       (signal 'quit nil))
3606      ;; The group was successfully selected.
3607      (t
3608       (gnus-set-global-variables)
3609       ;; Save the active value in effect when the group was entered.
3610       (setq gnus-newsgroup-active
3611             (gnus-copy-sequence
3612              (gnus-active gnus-newsgroup-name)))
3613       ;; You can change the summary buffer in some way with this hook.
3614       (gnus-run-hooks 'gnus-select-group-hook)
3615       (gnus-update-format-specifications
3616        nil 'summary 'summary-mode 'summary-dummy)
3617       (gnus-update-summary-mark-positions)
3618       ;; Do score processing.
3619       (when gnus-use-scoring
3620         (gnus-possibly-score-headers))
3621       ;; Check whether to fill in the gaps in the threads.
3622       (when gnus-build-sparse-threads
3623         (gnus-build-sparse-threads))
3624       ;; Find the initial limit.
3625       (if show-all
3626           (let ((gnus-newsgroup-dormant nil))
3627             (gnus-summary-initial-limit show-all))
3628         (gnus-summary-initial-limit show-all))
3629       ;; Generate the summary buffer.
3630       (unless no-display
3631         (gnus-summary-prepare))
3632       (when gnus-use-trees
3633         (gnus-tree-open group)
3634         (setq gnus-summary-highlight-line-function
3635               'gnus-tree-highlight-article))
3636       ;; If the summary buffer is empty, but there are some low-scored
3637       ;; articles or some excluded dormants, we include these in the
3638       ;; buffer.
3639       (when (and (zerop (buffer-size))
3640                  (not no-display))
3641         (cond (gnus-newsgroup-dormant
3642                (gnus-summary-limit-include-dormant))
3643               ((and gnus-newsgroup-scored show-all)
3644                (gnus-summary-limit-include-expunged t))))
3645       ;; Function `gnus-apply-kill-file' must be called in this hook.
3646       (gnus-run-hooks 'gnus-apply-kill-hook)
3647       (if (and (zerop (buffer-size))
3648                (not no-display))
3649           (progn
3650             ;; This newsgroup is empty.
3651             (gnus-summary-catchup-and-exit nil t)
3652             (gnus-message 6 "No unread news")
3653             (when kill-buffer
3654               (gnus-kill-or-deaden-summary kill-buffer))
3655             ;; Return nil from this function.
3656             nil)
3657         ;; Hide conversation thread subtrees.  We cannot do this in
3658         ;; gnus-summary-prepare-hook since kill processing may not
3659         ;; work with hidden articles.
3660         (gnus-summary-maybe-hide-threads)
3661         (when kill-buffer
3662           (gnus-kill-or-deaden-summary kill-buffer))
3663         (gnus-summary-auto-select-subject)
3664         ;; Show first unread article if requested.
3665         (if (and (not no-article)
3666                  (not no-display)
3667                  gnus-newsgroup-unreads
3668                  gnus-auto-select-first)
3669             (progn
3670               (gnus-configure-windows 'summary)
3671               (let ((art (gnus-summary-article-number)))
3672                 (unless (and (not gnus-plugged)
3673                              (or (memq art gnus-newsgroup-undownloaded)
3674                                  (memq art gnus-newsgroup-downloadable)))
3675                   (gnus-summary-goto-article art))))
3676           ;; Don't select any articles.
3677           (gnus-summary-position-point)
3678           (gnus-configure-windows 'summary 'force)
3679           (gnus-set-mode-line 'summary))
3680         (when (and gnus-auto-center-group
3681                    (get-buffer-window gnus-group-buffer t))
3682           ;; Gotta use windows, because recenter does weird stuff if
3683           ;; the current buffer ain't the displayed window.
3684           (let ((owin (selected-window)))
3685             (select-window (get-buffer-window gnus-group-buffer t))
3686             (when (gnus-group-goto-group group)
3687               (recenter))
3688             (select-window owin)))
3689         ;; Mark this buffer as "prepared".
3690         (setq gnus-newsgroup-prepared t)
3691         (gnus-run-hooks 'gnus-summary-prepared-hook)
3692         (unless (gnus-ephemeral-group-p group)
3693           (gnus-group-update-group group))
3694         t)))))
3695
3696 (defun gnus-summary-auto-select-subject ()
3697   "Select the subject line on initial group entry."
3698   (goto-char (point-min))
3699   (cond
3700    ((eq gnus-auto-select-subject 'best)
3701     (gnus-summary-best-unread-subject))
3702    ((eq gnus-auto-select-subject 'unread)
3703     (gnus-summary-first-unread-subject))
3704    ((eq gnus-auto-select-subject 'unseen)
3705     (gnus-summary-first-unseen-subject))
3706    ((eq gnus-auto-select-subject 'unseen-or-unread)
3707     (gnus-summary-first-unseen-or-unread-subject))
3708    ((eq gnus-auto-select-subject 'first)
3709     ;; Do nothing.
3710     )
3711    ((functionp gnus-auto-select-subject)
3712     (funcall gnus-auto-select-subject))))
3713
3714 (defun gnus-summary-prepare ()
3715   "Generate the summary buffer."
3716   (interactive)
3717   (let ((buffer-read-only nil))
3718     (erase-buffer)
3719     (setq gnus-newsgroup-data nil
3720           gnus-newsgroup-data-reverse nil)
3721     (gnus-run-hooks 'gnus-summary-generate-hook)
3722     ;; Generate the buffer, either with threads or without.
3723     (when gnus-newsgroup-headers
3724       (gnus-summary-prepare-threads
3725        (if gnus-show-threads
3726            (gnus-sort-gathered-threads
3727             (funcall gnus-summary-thread-gathering-function
3728                      (gnus-sort-threads
3729                       (gnus-cut-threads (gnus-make-threads)))))
3730          ;; Unthreaded display.
3731          (gnus-sort-articles gnus-newsgroup-headers))))
3732     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
3733     ;; Call hooks for modifying summary buffer.
3734     (goto-char (point-min))
3735     (gnus-run-hooks 'gnus-summary-prepare-hook)))
3736
3737 (defsubst gnus-general-simplify-subject (subject)
3738   "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
3739   (setq subject
3740         (cond
3741          ;; Truncate the subject.
3742          (gnus-simplify-subject-functions
3743           (gnus-map-function gnus-simplify-subject-functions subject))
3744          ((numberp gnus-summary-gather-subject-limit)
3745           (setq subject (gnus-simplify-subject-re subject))
3746           (if (> (length subject) gnus-summary-gather-subject-limit)
3747               (substring subject 0 gnus-summary-gather-subject-limit)
3748             subject))
3749          ;; Fuzzily simplify it.
3750          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3751           (gnus-simplify-subject-fuzzy subject))
3752          ;; Just remove the leading "Re:".
3753          (t
3754           (gnus-simplify-subject-re subject))))
3755
3756   (if (and gnus-summary-gather-exclude-subject
3757            (string-match gnus-summary-gather-exclude-subject subject))
3758       nil                               ; This article shouldn't be gathered
3759     subject))
3760
3761 (defun gnus-summary-simplify-subject-query ()
3762   "Query where the respool algorithm would put this article."
3763   (interactive)
3764   (gnus-summary-select-article)
3765   (message "%s"
3766            (gnus-general-simplify-subject (gnus-summary-article-subject))))
3767
3768 (defun gnus-gather-threads-by-subject (threads)
3769   "Gather threads by looking at Subject headers."
3770   (if (not gnus-summary-make-false-root)
3771       threads
3772     (let ((hashtb (gnus-make-hashtable 1024))
3773           (prev threads)
3774           (result threads)
3775           subject hthread whole-subject)
3776       (while threads
3777         (setq subject (gnus-general-simplify-subject
3778                        (setq whole-subject (mail-header-subject
3779                                             (caar threads)))))
3780         (when subject
3781           (if (setq hthread (gnus-gethash subject hashtb))
3782               (progn
3783                 ;; We enter a dummy root into the thread, if we
3784                 ;; haven't done that already.
3785                 (unless (stringp (caar hthread))
3786                   (setcar hthread (list whole-subject (car hthread))))
3787                 ;; We add this new gathered thread to this gathered
3788                 ;; thread.
3789                 (setcdr (car hthread)
3790                         (nconc (cdar hthread) (list (car threads))))
3791                 ;; Remove it from the list of threads.
3792                 (setcdr prev (cdr threads))
3793                 (setq threads prev))
3794             ;; Enter this thread into the hash table.
3795             (gnus-sethash subject
3796                           (if gnus-summary-make-false-root-always
3797                               (progn
3798                                 ;; If you want a dummy root above all
3799                                 ;; threads...
3800                                 (setcar threads (list whole-subject
3801                                                       (car threads)))
3802                                 threads)
3803                             threads)
3804                           hashtb)))
3805         (setq prev threads)
3806         (setq threads (cdr threads)))
3807       result)))
3808
3809 (defun gnus-gather-threads-by-references (threads)
3810   "Gather threads by looking at References headers."
3811   (let ((idhashtb (gnus-make-hashtable 1024))
3812         (thhashtb (gnus-make-hashtable 1024))
3813         (prev threads)
3814         (result threads)
3815         ids references id gthread gid entered ref)
3816     (while threads
3817       (when (setq references (mail-header-references (caar threads)))
3818         (setq id (mail-header-id (caar threads))
3819               ids (inline (gnus-split-references references))
3820               entered nil)
3821         (while (setq ref (pop ids))
3822           (setq ids (delete ref ids))
3823           (if (not (setq gid (gnus-gethash ref idhashtb)))
3824               (progn
3825                 (gnus-sethash ref id idhashtb)
3826                 (gnus-sethash id threads thhashtb))
3827             (setq gthread (gnus-gethash gid thhashtb))
3828             (unless entered
3829               ;; We enter a dummy root into the thread, if we
3830               ;; haven't done that already.
3831               (unless (stringp (caar gthread))
3832                 (setcar gthread (list (mail-header-subject (caar gthread))
3833                                       (car gthread))))
3834               ;; We add this new gathered thread to this gathered
3835               ;; thread.
3836               (setcdr (car gthread)
3837                       (nconc (cdar gthread) (list (car threads)))))
3838             ;; Add it into the thread hash table.
3839             (gnus-sethash id gthread thhashtb)
3840             (setq entered t)
3841             ;; Remove it from the list of threads.
3842             (setcdr prev (cdr threads))
3843             (setq threads prev))))
3844       (setq prev threads)
3845       (setq threads (cdr threads)))
3846     result))
3847
3848 (defun gnus-sort-gathered-threads (threads)
3849   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3850   (let ((result threads))
3851     (while threads
3852       (when (stringp (caar threads))
3853         (setcdr (car threads)
3854                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3855       (setq threads (cdr threads)))
3856     result))
3857
3858 (defun gnus-thread-loop-p (root thread)
3859   "Say whether ROOT is in THREAD."
3860   (let ((stack (list thread))
3861         (infloop 0)
3862         th)
3863     (while (setq thread (pop stack))
3864       (setq th (cdr thread))
3865       (while (and th
3866                   (not (eq (caar th) root)))
3867         (pop th))
3868       (if th
3869           ;; We have found a loop.
3870           (let (ref-dep)
3871             (setcdr thread (delq (car th) (cdr thread)))
3872             (if (boundp (setq ref-dep (intern "none"
3873                                               gnus-newsgroup-dependencies)))
3874                 (setcdr (symbol-value ref-dep)
3875                         (nconc (cdr (symbol-value ref-dep))
3876                                (list (car th))))
3877               (set ref-dep (list nil (car th))))
3878             (setq infloop 1
3879                   stack nil))
3880         ;; Push all the subthreads onto the stack.
3881         (push (cdr thread) stack)))
3882     infloop))
3883
3884 (defun gnus-make-threads ()
3885   "Go through the dependency hashtb and find the roots.  Return all threads."
3886   (let (threads)
3887     (while (catch 'infloop
3888              (mapatoms
3889               (lambda (refs)
3890                 ;; Deal with self-referencing References loops.
3891                 (when (and (car (symbol-value refs))
3892                            (not (zerop
3893                                  (apply
3894                                   '+
3895                                   (mapcar
3896                                    (lambda (thread)
3897                                      (gnus-thread-loop-p
3898                                       (car (symbol-value refs)) thread))
3899                                    (cdr (symbol-value refs)))))))
3900                   (setq threads nil)
3901                   (throw 'infloop t))
3902                 (unless (car (symbol-value refs))
3903                   ;; These threads do not refer back to any other articles,
3904                   ;; so they're roots.
3905                   (setq threads (append (cdr (symbol-value refs)) threads))))
3906               gnus-newsgroup-dependencies)))
3907     threads))
3908
3909 ;; Build the thread tree.
3910 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3911   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3912
3913 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3914 if it was already present.
3915
3916 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3917 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3918 Message-IDs will be renamed to a unique Message-ID before being
3919 entered.
3920
3921 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3922   (let* ((id (mail-header-id header))
3923          (id-dep (and id (intern id dependencies)))
3924          parent-id ref ref-dep ref-header replaced)
3925     ;; Enter this `header' in the `dependencies' table.
3926     (cond
3927      ((not id-dep)
3928       (setq header nil))
3929      ;; The first two cases do the normal part: enter a new `header'
3930      ;; in the `dependencies' table.
3931      ((not (boundp id-dep))
3932       (set id-dep (list header)))
3933      ((null (car (symbol-value id-dep)))
3934       (setcar (symbol-value id-dep) header))
3935
3936      ;; From here the `header' was already present in the
3937      ;; `dependencies' table.
3938      (force-new
3939       ;; Overrides an existing entry;
3940       ;; just set the header part of the entry.
3941       (setcar (symbol-value id-dep) header)
3942       (setq replaced t))
3943
3944      ;; Renames the existing `header' to a unique Message-ID.
3945      ((not gnus-summary-ignore-duplicates)
3946       ;; An article with this Message-ID has already been seen.
3947       ;; We rename the Message-ID.
3948       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3949            (list header))
3950       (mail-header-set-id header id))
3951
3952      ;; The last case ignores an existing entry, except it adds any
3953      ;; additional Xrefs (in case the two articles came from different
3954      ;; servers.
3955      ;; Also sets `header' to `nil' meaning that the `dependencies'
3956      ;; table was *not* modified.
3957      (t
3958       (mail-header-set-xref
3959        (car (symbol-value id-dep))
3960        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3961                    "")
3962                (or (mail-header-xref header) "")))
3963       (setq header nil)))
3964
3965     (when (and header (not replaced))
3966       ;; First check that we are not creating a References loop.
3967       (setq parent-id (gnus-parent-id (mail-header-references header)))
3968       (setq ref parent-id)
3969       (while (and ref
3970                   (setq ref-dep (intern-soft ref dependencies))
3971                   (boundp ref-dep)
3972                   (setq ref-header (car (symbol-value ref-dep))))
3973         (if (string= id ref)
3974             ;; Yuk!  This is a reference loop.  Make the article be a
3975             ;; root article.
3976             (progn
3977               (mail-header-set-references (car (symbol-value id-dep)) "none")
3978               (setq ref nil)
3979               (setq parent-id nil))
3980           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3981       (setq ref-dep (intern (or parent-id "none") dependencies))
3982       (if (boundp ref-dep)
3983           (setcdr (symbol-value ref-dep)
3984                   (nconc (cdr (symbol-value ref-dep))
3985                          (list (symbol-value id-dep))))
3986         (set ref-dep (list nil (symbol-value id-dep)))))
3987     header))
3988
3989 (defun gnus-extract-message-id-from-in-reply-to (string)
3990   (if (string-match "<[^>]+>" string)
3991       (substring string (match-beginning 0) (match-end 0))
3992     nil))
3993
3994 (defun gnus-build-sparse-threads ()
3995   (let ((headers gnus-newsgroup-headers)
3996         (mail-parse-charset gnus-newsgroup-charset)
3997         (gnus-summary-ignore-duplicates t)
3998         header references generation relations
3999         subject child end new-child date)
4000     ;; First we create an alist of generations/relations, where
4001     ;; generations is how much we trust the relation, and the relation
4002     ;; is parent/child.
4003     (gnus-message 7 "Making sparse threads...")
4004     (save-excursion
4005       (nnheader-set-temp-buffer " *gnus sparse threads*")
4006       (while (setq header (pop headers))
4007         (when (and (setq references (mail-header-references header))
4008                    (not (string= references "")))
4009           (insert references)
4010           (setq child (mail-header-id header)
4011                 subject (mail-header-subject header)
4012                 date (mail-header-date header)
4013                 generation 0)
4014           (while (search-backward ">" nil t)
4015             (setq end (1+ (point)))
4016             (when (search-backward "<" nil t)
4017               (setq new-child (buffer-substring (point) end))
4018               (push (list (incf generation)
4019                           child (setq child new-child)
4020                           subject date)
4021                     relations)))
4022           (when child
4023             (push (list (1+ generation) child nil subject) relations))
4024           (erase-buffer)))
4025       (kill-buffer (current-buffer)))
4026     ;; Sort over trustworthiness.
4027     (mapcar
4028      (lambda (relation)
4029        (when (gnus-dependencies-add-header
4030               (make-full-mail-header-from-decoded-header
4031                gnus-reffed-article-number
4032                (nth 3 relation) "" (or (nth 4 relation) "")
4033                (nth 1 relation)
4034                (or (nth 2 relation) "") 0 0 "")
4035               gnus-newsgroup-dependencies nil)
4036          (push gnus-reffed-article-number gnus-newsgroup-limit)
4037          (push gnus-reffed-article-number gnus-newsgroup-sparse)
4038          (push (cons gnus-reffed-article-number gnus-sparse-mark)
4039                gnus-newsgroup-reads)
4040          (decf gnus-reffed-article-number)))
4041      (sort relations 'car-less-than-car))
4042     (gnus-message 7 "Making sparse threads...done")))
4043
4044 (defun gnus-build-old-threads ()
4045   ;; Look at all the articles that refer back to old articles, and
4046   ;; fetch the headers for the articles that aren't there.  This will
4047   ;; build complete threads - if the roots haven't been expired by the
4048   ;; server, that is.
4049   (let ((mail-parse-charset gnus-newsgroup-charset)
4050         id heads)
4051     (mapatoms
4052      (lambda (refs)
4053        (when (not (car (symbol-value refs)))
4054          (setq heads (cdr (symbol-value refs)))
4055          (while heads
4056            (if (memq (mail-header-number (caar heads))
4057                      gnus-newsgroup-dormant)
4058                (setq heads (cdr heads))
4059              (setq id (symbol-name refs))
4060              (while (and (setq id (gnus-build-get-header id))
4061                          (not (car (gnus-id-to-thread id)))))
4062              (setq heads nil)))))
4063      gnus-newsgroup-dependencies)))
4064
4065 (defsubst gnus-remove-odd-characters (string)
4066   "Translate STRING into something that doesn't contain weird characters."
4067   (mm-subst-char-in-string
4068    ?\r ?\-
4069    (mm-subst-char-in-string ?\n ?\- string t) t))
4070
4071 ;; This function has to be called with point after the article number
4072 ;; on the beginning of the line.
4073 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
4074   (let ((eol (point-at-eol))
4075         (buffer (current-buffer))
4076         header references in-reply-to)
4077
4078     ;; overview: [num subject from date id refs chars lines misc]
4079     (unwind-protect
4080         (progn
4081           (narrow-to-region (point) eol)
4082           (unless (eobp)
4083             (forward-char))
4084
4085           (setq header
4086                 (make-full-mail-header
4087                  number                         ; number
4088                  (nnheader-nov-field)           ; subject
4089                  (nnheader-nov-field)           ; from
4090                  (nnheader-nov-field)           ; date
4091                  (nnheader-nov-read-message-id number)  ; id
4092                  (setq references (nnheader-nov-field)) ; refs
4093                  (nnheader-nov-read-integer)    ; chars
4094                  (nnheader-nov-read-integer)    ; lines
4095                  (unless (eobp)
4096                    (if (looking-at "Xref: ")
4097                        (goto-char (match-end 0)))
4098                    (nnheader-nov-field))        ; Xref
4099                  (nnheader-nov-parse-extra))))  ; extra
4100
4101       (widen))
4102
4103     (when (and (string= references "")
4104                (setq in-reply-to (mail-header-extra header))
4105                (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4106       (mail-header-set-references
4107        header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4108
4109     (when gnus-alter-header-function
4110       (funcall gnus-alter-header-function header))
4111     (gnus-dependencies-add-header header dependencies force-new)))
4112
4113 (defun gnus-build-get-header (id)
4114   "Look through the buffer of NOV lines and find the header to ID.
4115 Enter this line into the dependencies hash table, and return
4116 the id of the parent article (if any)."
4117   (let ((deps gnus-newsgroup-dependencies)
4118         found header)
4119     (prog1
4120         (save-excursion
4121           (set-buffer nntp-server-buffer)
4122           (let ((case-fold-search nil))
4123             (goto-char (point-min))
4124             (while (and (not found)
4125                         (search-forward id nil t))
4126               (beginning-of-line)
4127               (setq found (looking-at
4128                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4129                                    (regexp-quote id))))
4130               (or found (beginning-of-line 2)))
4131             (when found
4132               (beginning-of-line)
4133               (and
4134                (setq header (gnus-nov-parse-line
4135                              (read (current-buffer)) deps))
4136                (gnus-parent-id (mail-header-references header))))))
4137       (when header
4138         (let ((number (mail-header-number header)))
4139           (push number gnus-newsgroup-limit)
4140           (push header gnus-newsgroup-headers)
4141           (if (memq number gnus-newsgroup-unselected)
4142               (progn
4143                 (setq gnus-newsgroup-unreads
4144                       (gnus-add-to-sorted-list gnus-newsgroup-unreads
4145                                                number))
4146                 (setq gnus-newsgroup-unselected
4147                       (delq number gnus-newsgroup-unselected)))
4148             (push number gnus-newsgroup-ancient)))))))
4149
4150 (defun gnus-build-all-threads ()
4151   "Read all the headers."
4152   (let ((gnus-summary-ignore-duplicates t)
4153         (mail-parse-charset gnus-newsgroup-charset)
4154         (dependencies gnus-newsgroup-dependencies)
4155         header article)
4156     (save-excursion
4157       (set-buffer nntp-server-buffer)
4158       (let ((case-fold-search nil))
4159         (goto-char (point-min))
4160         (while (not (eobp))
4161           (ignore-errors
4162             (setq article (read (current-buffer))
4163                   header (gnus-nov-parse-line article dependencies)))
4164           (when header
4165             (with-current-buffer gnus-summary-buffer
4166               (push header gnus-newsgroup-headers)
4167               (if (memq (setq article (mail-header-number header))
4168                         gnus-newsgroup-unselected)
4169                   (progn
4170                     (setq gnus-newsgroup-unreads
4171                           (gnus-add-to-sorted-list
4172                            gnus-newsgroup-unreads article))
4173                     (setq gnus-newsgroup-unselected
4174                           (delq article gnus-newsgroup-unselected)))
4175                 (push article gnus-newsgroup-ancient)))
4176             (forward-line 1)))))))
4177
4178 (defun gnus-summary-update-article-line (article header)
4179   "Update the line for ARTICLE using HEADER."
4180   (let* ((id (mail-header-id header))
4181          (thread (gnus-id-to-thread id)))
4182     (unless thread
4183       (error "Article in no thread"))
4184     ;; Update the thread.
4185     (setcar thread header)
4186     (gnus-summary-goto-subject article)
4187     (let* ((datal (gnus-data-find-list article))
4188            (data (car datal))
4189            (buffer-read-only nil)
4190            (level (gnus-summary-thread-level)))
4191       (gnus-delete-line)
4192       (let ((inserted (- (point)
4193                          (progn
4194                            (gnus-summary-insert-line
4195                             header level nil
4196                             (memq article gnus-newsgroup-undownloaded)
4197                             (gnus-article-mark article)
4198                             (memq article gnus-newsgroup-replied)
4199                             (memq article gnus-newsgroup-expirable)
4200                             ;; Only insert the Subject string when it's different
4201                             ;; from the previous Subject string.
4202                             (if (and
4203                                  gnus-show-threads
4204                                  (gnus-subject-equal
4205                                   (condition-case ()
4206                                       (mail-header-subject
4207                                        (gnus-data-header
4208                                         (cadr
4209                                          (gnus-data-find-list
4210                                           article
4211                                           (gnus-data-list t)))))
4212                                     ;; Error on the side of excessive subjects.
4213                                     (error ""))
4214                                   (mail-header-subject header)))
4215                                 ""
4216                               (mail-header-subject header))
4217                             nil (cdr (assq article gnus-newsgroup-scored))
4218                             (memq article gnus-newsgroup-processable))
4219                            (point)))))
4220         (when (cdr datal)
4221           (gnus-data-update-list
4222            (cdr datal)
4223            (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4224
4225 (defun gnus-summary-update-article (article &optional iheader)
4226   "Update ARTICLE in the summary buffer."
4227   (set-buffer gnus-summary-buffer)
4228   (let* ((header (gnus-summary-article-header article))
4229          (id (mail-header-id header))
4230          (data (gnus-data-find article))
4231          (thread (gnus-id-to-thread id))
4232          (references (mail-header-references header))
4233          (parent
4234           (gnus-id-to-thread
4235            (or (gnus-parent-id
4236                 (when (and references
4237                            (not (equal "" references)))
4238                   references))
4239                "none")))
4240          (buffer-read-only nil)
4241          (old (car thread)))
4242     (when thread
4243       (unless iheader
4244         (setcar thread nil)
4245         (when parent
4246           (delq thread parent)))
4247       (if (gnus-summary-insert-subject id header)
4248           ;; Set the (possibly) new article number in the data structure.
4249           (gnus-data-set-number data (gnus-id-to-article id))
4250         (setcar thread old)
4251         nil))))
4252
4253 (defun gnus-rebuild-thread (id &optional line)
4254   "Rebuild the thread containing ID.
4255 If LINE, insert the rebuilt thread starting on line LINE."
4256   (let ((buffer-read-only nil)
4257         old-pos current thread data)
4258     (if (not gnus-show-threads)
4259         (setq thread (list (car (gnus-id-to-thread id))))
4260       ;; Get the thread this article is part of.
4261       (setq thread (gnus-remove-thread id)))
4262     (setq old-pos (point-at-bol))
4263     (setq current (save-excursion
4264                     (and (re-search-backward "[\r\n]" nil t)
4265                          (gnus-summary-article-number))))
4266     ;; If this is a gathered thread, we have to go some re-gathering.
4267     (when (stringp (car thread))
4268       (let ((subject (car thread))
4269             roots thr)
4270         (setq thread (cdr thread))
4271         (while thread
4272           (unless (memq (setq thr (gnus-id-to-thread
4273                                    (gnus-root-id
4274                                     (mail-header-id (caar thread)))))
4275                         roots)
4276             (push thr roots))
4277           (setq thread (cdr thread)))
4278         ;; We now have all (unique) roots.
4279         (if (= (length roots) 1)
4280             ;; All the loose roots are now one solid root.
4281             (setq thread (car roots))
4282           (setq thread (cons subject (gnus-sort-threads roots))))))
4283     (let (threads)
4284       ;; We then insert this thread into the summary buffer.
4285       (when line
4286         (goto-char (point-min))
4287         (forward-line (1- line)))
4288       (let (gnus-newsgroup-data gnus-newsgroup-threads)
4289         (if gnus-show-threads
4290             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4291           (gnus-summary-prepare-unthreaded thread))
4292         (setq data (nreverse gnus-newsgroup-data))
4293         (setq threads gnus-newsgroup-threads))
4294       ;; We splice the new data into the data structure.
4295       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
4296       ;;!!! then we want to insert at the beginning of the buffer.
4297       ;;!!! That happens to be true with Gnus now, but that may
4298       ;;!!! change in the future.  Perhaps.
4299       (gnus-data-enter-list
4300        (if line nil current) data (- (point) old-pos))
4301       (setq gnus-newsgroup-threads
4302             (nconc threads gnus-newsgroup-threads))
4303       (gnus-data-compute-positions))))
4304
4305 (defun gnus-number-to-header (number)
4306   "Return the header for article NUMBER."
4307   (let ((headers gnus-newsgroup-headers))
4308     (while (and headers
4309                 (not (= number (mail-header-number (car headers)))))
4310       (pop headers))
4311     (when headers
4312       (car headers))))
4313
4314 (defun gnus-parent-headers (in-headers &optional generation)
4315   "Return the headers of the GENERATIONeth parent of HEADERS."
4316   (unless generation
4317     (setq generation 1))
4318   (let ((parent t)
4319         (headers in-headers)
4320         references)
4321     (while (and parent
4322                 (not (zerop generation))
4323                 (setq references (mail-header-references headers)))
4324       (setq headers (if (and references
4325                              (setq parent (gnus-parent-id references)))
4326                         (car (gnus-id-to-thread parent))
4327                       nil))
4328       (decf generation))
4329     (and (not (eq headers in-headers))
4330          headers)))
4331
4332 (defun gnus-id-to-thread (id)
4333   "Return the (sub-)thread where ID appears."
4334   (gnus-gethash id gnus-newsgroup-dependencies))
4335
4336 (defun gnus-id-to-article (id)
4337   "Return the article number of ID."
4338   (let ((thread (gnus-id-to-thread id)))
4339     (when (and thread
4340                (car thread))
4341       (mail-header-number (car thread)))))
4342
4343 (defun gnus-id-to-header (id)
4344   "Return the article headers of ID."
4345   (car (gnus-id-to-thread id)))
4346
4347 (defun gnus-article-displayed-root-p (article)
4348   "Say whether ARTICLE is a root(ish) article."
4349   (let ((level (gnus-summary-thread-level article))
4350         (refs (mail-header-references  (gnus-summary-article-header article)))
4351         particle)
4352     (cond
4353      ((null level) nil)
4354      ((zerop level) t)
4355      ((null refs) t)
4356      ((null (gnus-parent-id refs)) t)
4357      ((and (= 1 level)
4358            (null (setq particle (gnus-id-to-article
4359                                  (gnus-parent-id refs))))
4360            (null (gnus-summary-thread-level particle)))))))
4361
4362 (defun gnus-root-id (id)
4363   "Return the id of the root of the thread where ID appears."
4364   (let (last-id prev)
4365     (while (and id (setq prev (car (gnus-id-to-thread id))))
4366       (setq last-id id
4367             id (gnus-parent-id (mail-header-references prev))))
4368     last-id))
4369
4370 (defun gnus-articles-in-thread (thread)
4371   "Return the list of articles in THREAD."
4372   (cons (mail-header-number (car thread))
4373         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4374
4375 (defun gnus-remove-thread (id &optional dont-remove)
4376   "Remove the thread that has ID in it."
4377   (let (headers thread last-id)
4378     ;; First go up in this thread until we find the root.
4379     (setq last-id (gnus-root-id id)
4380           headers (message-flatten-list (gnus-id-to-thread last-id)))
4381     ;; We have now found the real root of this thread.  It might have
4382     ;; been gathered into some loose thread, so we have to search
4383     ;; through the threads to find the thread we wanted.
4384     (let ((threads gnus-newsgroup-threads)
4385           sub)
4386       (while threads
4387         (setq sub (car threads))
4388         (if (stringp (car sub))
4389             ;; This is a gathered thread, so we look at the roots
4390             ;; below it to find whether this article is in this
4391             ;; gathered root.
4392             (progn
4393               (setq sub (cdr sub))
4394               (while sub
4395                 (when (member (caar sub) headers)
4396                   (setq thread (car threads)
4397                         threads nil
4398                         sub nil))
4399                 (setq sub (cdr sub))))
4400           ;; It's an ordinary thread, so we check it.
4401           (when (eq (car sub) (car headers))
4402             (setq thread sub
4403                   threads nil)))
4404         (setq threads (cdr threads)))
4405       ;; If this article is in no thread, then it's a root.
4406       (if thread
4407           (unless dont-remove
4408             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4409         (setq thread (gnus-id-to-thread last-id)))
4410       (when thread
4411         (prog1
4412             thread                      ; We return this thread.
4413           (unless dont-remove
4414             (if (stringp (car thread))
4415                 (progn
4416                   ;; If we use dummy roots, then we have to remove the
4417                   ;; dummy root as well.
4418                   (when (eq gnus-summary-make-false-root 'dummy)
4419                     ;; We go to the dummy root by going to
4420                     ;; the first sub-"thread", and then one line up.
4421                     (gnus-summary-goto-article
4422                      (mail-header-number (caadr thread)))
4423                     (forward-line -1)
4424                     (gnus-delete-line)
4425                     (gnus-data-compute-positions))
4426                   (setq thread (cdr thread))
4427                   (while thread
4428                     (gnus-remove-thread-1 (car thread))
4429                     (setq thread (cdr thread))))
4430               (gnus-remove-thread-1 thread))))))))
4431
4432 (defun gnus-remove-thread-1 (thread)
4433   "Remove the thread THREAD recursively."
4434   (let ((number (mail-header-number (pop thread)))
4435         d)
4436     (setq thread (reverse thread))
4437     (while thread
4438       (gnus-remove-thread-1 (pop thread)))
4439     (when (setq d (gnus-data-find number))
4440       (goto-char (gnus-data-pos d))
4441       (gnus-summary-show-thread)
4442       (gnus-data-remove
4443        number
4444        (- (point-at-bol)
4445           (prog1
4446               (1+ (point-at-eol))
4447             (gnus-delete-line)))))))
4448
4449 (defun gnus-sort-threads-1 (threads func)
4450   (sort (mapcar (lambda (thread)
4451                   (cons (car thread)
4452                         (and (cdr thread)
4453                              (gnus-sort-threads-1 (cdr thread) func))))
4454                 threads) func))
4455
4456 (defun gnus-sort-threads (threads)
4457   "Sort THREADS."
4458   (if (not gnus-thread-sort-functions)
4459       threads
4460     (gnus-message 8 "Sorting threads...")
4461     (let ((max-lisp-eval-depth 5000))
4462       (prog1 (gnus-sort-threads-1
4463          threads
4464          (gnus-make-sort-function gnus-thread-sort-functions))
4465         (gnus-message 8 "Sorting threads...done")))))
4466
4467 (defun gnus-sort-articles (articles)
4468   "Sort ARTICLES."
4469   (when gnus-article-sort-functions
4470     (gnus-message 7 "Sorting articles...")
4471     (prog1
4472         (setq gnus-newsgroup-headers
4473               (sort articles (gnus-make-sort-function
4474                               gnus-article-sort-functions)))
4475       (gnus-message 7 "Sorting articles...done"))))
4476
4477 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4478 (defmacro gnus-thread-header (thread)
4479   "Return header of first article in THREAD.
4480 Note that THREAD must never, ever be anything else than a variable -
4481 using some other form will lead to serious barfage."
4482   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4483   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4484   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4485         (vector thread) 2))
4486
4487 (defsubst gnus-article-sort-by-number (h1 h2)
4488   "Sort articles by article number."
4489   (< (mail-header-number h1)
4490      (mail-header-number h2)))
4491
4492 (defun gnus-thread-sort-by-number (h1 h2)
4493   "Sort threads by root article number."
4494   (gnus-article-sort-by-number
4495    (gnus-thread-header h1) (gnus-thread-header h2)))
4496
4497 (defsubst gnus-article-sort-by-random (h1 h2)
4498   "Sort articles by article number."
4499   (zerop (random 2)))
4500
4501 (defun gnus-thread-sort-by-random (h1 h2)
4502   "Sort threads by root article number."
4503   (gnus-article-sort-by-random
4504    (gnus-thread-header h1) (gnus-thread-header h2)))
4505
4506 (defsubst gnus-article-sort-by-lines (h1 h2)
4507   "Sort articles by article Lines header."
4508   (< (mail-header-lines h1)
4509      (mail-header-lines h2)))
4510
4511 (defun gnus-thread-sort-by-lines (h1 h2)
4512   "Sort threads by root article Lines header."
4513   (gnus-article-sort-by-lines
4514    (gnus-thread-header h1) (gnus-thread-header h2)))
4515
4516 (defsubst gnus-article-sort-by-chars (h1 h2)
4517   "Sort articles by octet length."
4518   (< (mail-header-chars h1)
4519      (mail-header-chars h2)))
4520
4521 (defun gnus-thread-sort-by-chars (h1 h2)
4522   "Sort threads by root article octet length."
4523   (gnus-article-sort-by-chars
4524    (gnus-thread-header h1) (gnus-thread-header h2)))
4525
4526 (defsubst gnus-article-sort-by-author (h1 h2)
4527   "Sort articles by root author."
4528   (string-lessp
4529    (let ((addr (car (mime-entity-read-field h1 'From))))
4530      (or (std11-full-name-string addr)
4531          (std11-address-string addr)
4532          ""))
4533    (let ((addr (car (mime-entity-read-field h2 'From))))
4534      (or (std11-full-name-string addr)
4535          (std11-address-string addr)
4536          ""))
4537    ))
4538
4539 (defun gnus-thread-sort-by-author (h1 h2)
4540   "Sort threads by root author."
4541   (gnus-article-sort-by-author
4542    (gnus-thread-header h1)  (gnus-thread-header h2)))
4543
4544 (defsubst gnus-article-sort-by-subject (h1 h2)
4545   "Sort articles by root subject."
4546   (string-lessp
4547    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4548    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4549
4550 (defun gnus-thread-sort-by-subject (h1 h2)
4551   "Sort threads by root subject."
4552   (gnus-article-sort-by-subject
4553    (gnus-thread-header h1) (gnus-thread-header h2)))
4554
4555 (defsubst gnus-article-sort-by-date (h1 h2)
4556   "Sort articles by root article date."
4557   (time-less-p
4558    (gnus-date-get-time (mail-header-date h1))
4559    (gnus-date-get-time (mail-header-date h2))))
4560
4561 (defun gnus-thread-sort-by-date (h1 h2)
4562   "Sort threads by root article date."
4563   (gnus-article-sort-by-date
4564    (gnus-thread-header h1) (gnus-thread-header h2)))
4565
4566 (defsubst gnus-article-sort-by-score (h1 h2)
4567   "Sort articles by root article score.
4568 Unscored articles will be counted as having a score of zero."
4569   (> (or (cdr (assq (mail-header-number h1)
4570                     gnus-newsgroup-scored))
4571          gnus-summary-default-score 0)
4572      (or (cdr (assq (mail-header-number h2)
4573                     gnus-newsgroup-scored))
4574          gnus-summary-default-score 0)))
4575
4576 (defun gnus-thread-sort-by-score (h1 h2)
4577   "Sort threads by root article score."
4578   (gnus-article-sort-by-score
4579    (gnus-thread-header h1) (gnus-thread-header h2)))
4580
4581 (defun gnus-thread-sort-by-total-score (h1 h2)
4582   "Sort threads by the sum of all scores in the thread.
4583 Unscored articles will be counted as having a score of zero."
4584   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4585
4586 (defun gnus-thread-total-score (thread)
4587   ;; This function find the total score of THREAD.
4588   (cond
4589    ((null thread)
4590     0)
4591    ((consp thread)
4592     (if (stringp (car thread))
4593         (apply gnus-thread-score-function 0
4594                (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4595       (gnus-thread-total-score-1 thread)))
4596    (t
4597     (gnus-thread-total-score-1 (list thread)))))
4598
4599 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4600   "Sort threads such that the thread with the most recently arrived article comes first."
4601   (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4602
4603 (defun gnus-thread-highest-number (thread)
4604   "Return the highest article number in THREAD."
4605   (apply 'max (mapcar (lambda (header)
4606                         (mail-header-number header))
4607                       (message-flatten-list thread))))
4608
4609 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4610   "Sort threads such that the thread with the most recently dated article comes first."
4611   (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4612
4613 (defun gnus-thread-latest-date (thread)
4614   "Return the highest article date in THREAD."
4615   (let ((previous-time 0))
4616     (apply 'max
4617            (mapcar
4618             (lambda (header)
4619               (setq previous-time
4620                     (condition-case ()
4621                         (time-to-seconds (mail-header-parse-date
4622                                           (mail-header-date header)))
4623                       (error previous-time))))
4624             (sort
4625              (message-flatten-list thread)
4626              (lambda (h1 h2)
4627                (< (mail-header-number h1)
4628                   (mail-header-number h2))))))))
4629
4630 (defun gnus-thread-total-score-1 (root)
4631   ;; This function find the total score of the thread below ROOT.
4632   (setq root (car root))
4633   (apply gnus-thread-score-function
4634          (or (append
4635               (mapcar 'gnus-thread-total-score
4636                       (cdr (gnus-id-to-thread (mail-header-id root))))
4637               (when (> (mail-header-number root) 0)
4638                 (list (or (cdr (assq (mail-header-number root)
4639                                      gnus-newsgroup-scored))
4640                           gnus-summary-default-score 0))))
4641              (list gnus-summary-default-score)
4642              '(0))))
4643
4644 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
4645 (defvar gnus-tmp-prev-subject nil)
4646 (defvar gnus-tmp-false-parent nil)
4647 (defvar gnus-tmp-root-expunged nil)
4648 (defvar gnus-tmp-dummy-line nil)
4649
4650 (eval-when-compile (defvar gnus-tmp-header))
4651 (defun gnus-extra-header (type &optional header)
4652   "Return the extra header of TYPE."
4653   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
4654       ""))
4655
4656 (defvar gnus-tmp-thread-tree-header-string "")
4657
4658 (defcustom gnus-sum-thread-tree-root "> "
4659   "With %B spec, used for the root of a thread.
4660 If nil, use subject instead."
4661   :version "21.4"
4662   :type '(radio (const :format "%v  " nil) (string :size 0))
4663   :group 'gnus-thread)
4664 (defcustom gnus-sum-thread-tree-false-root "> "
4665   "With %B spec, used for a false root of a thread.
4666 If nil, use subject instead."
4667   :version "21.4"
4668   :type '(radio (const :format "%v  " nil) (string :size 0))
4669   :group 'gnus-thread)
4670 (defcustom gnus-sum-thread-tree-single-indent ""
4671   "With %B spec, used for a thread with just one message.
4672 If nil, use subject instead."
4673   :version "21.4"
4674   :type '(radio (const :format "%v  " nil) (string :size 0))
4675   :group 'gnus-thread)
4676 (defcustom gnus-sum-thread-tree-vertical "| "
4677   "With %B spec, used for drawing a vertical line."
4678   :version "21.4"
4679   :type 'string
4680   :group 'gnus-thread)
4681 (defcustom gnus-sum-thread-tree-indent "  "
4682   "With %B spec, used for indenting."
4683   :version "21.4"
4684   :type 'string
4685   :group 'gnus-thread)
4686 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
4687   "With %B spec, used for a leaf with brothers."
4688   :version "21.4"
4689   :type 'string
4690   :group 'gnus-thread)
4691 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
4692   "With %B spec, used for a leaf without brothers."
4693   :version "21.4"
4694   :type 'string
4695   :group 'gnus-thread)
4696
4697 (defun gnus-summary-prepare-threads (threads)
4698   "Prepare summary buffer from THREADS and indentation LEVEL.
4699 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
4700 or a straight list of headers."
4701   (gnus-message 7 "Generating summary...")
4702
4703   (setq gnus-newsgroup-threads threads)
4704   (beginning-of-line)
4705
4706   (let ((gnus-tmp-level 0)
4707         (default-score (or gnus-summary-default-score 0))
4708         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
4709         (building-line-count gnus-summary-display-while-building)
4710         (building-count (integerp gnus-summary-display-while-building))
4711         thread number subject stack state gnus-tmp-gathered beg-match
4712         new-roots gnus-tmp-new-adopts thread-end simp-subject
4713         gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
4714         gnus-tmp-replied gnus-tmp-subject-or-nil
4715         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
4716         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
4717         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
4718         tree-stack)
4719
4720     (setq gnus-tmp-prev-subject nil
4721           gnus-tmp-thread-tree-header-string "")
4722
4723     (if (vectorp (car threads))
4724         ;; If this is a straight (sic) list of headers, then a
4725         ;; threaded summary display isn't required, so we just create
4726         ;; an unthreaded one.
4727         (gnus-summary-prepare-unthreaded threads)
4728
4729       ;; Do the threaded display.
4730
4731       (if gnus-summary-display-while-building
4732           (switch-to-buffer (buffer-name)))
4733       (while (or threads stack gnus-tmp-new-adopts new-roots)
4734
4735         (if (and (= gnus-tmp-level 0)
4736                  (or (not stack)
4737                      (= (caar stack) 0))
4738                  (not gnus-tmp-false-parent)
4739                  (or gnus-tmp-new-adopts new-roots))
4740             (if gnus-tmp-new-adopts
4741                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
4742                       thread (list (car gnus-tmp-new-adopts))
4743                       gnus-tmp-header (caar thread)
4744                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
4745               (when new-roots
4746                 (setq thread (list (car new-roots))
4747                       gnus-tmp-header (caar thread)
4748                       new-roots (cdr new-roots))))
4749
4750           (if threads
4751               ;; If there are some threads, we do them before the
4752               ;; threads on the stack.
4753               (setq thread threads
4754                     gnus-tmp-header (caar thread))
4755             ;; There were no current threads, so we pop something off
4756             ;; the stack.
4757             (setq state (car stack)
4758                   gnus-tmp-level (car state)
4759                   tree-stack (cadr state)
4760                   thread (caddr state)
4761                   stack (cdr stack)
4762                   gnus-tmp-header (caar thread))))
4763
4764         (setq gnus-tmp-false-parent nil)
4765         (setq gnus-tmp-root-expunged nil)
4766         (setq thread-end nil)
4767
4768         (if (stringp gnus-tmp-header)
4769             ;; The header is a dummy root.
4770             (cond
4771              ((eq gnus-summary-make-false-root 'adopt)
4772               ;; We let the first article adopt the rest.
4773               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
4774                                                (cddar thread)))
4775               (setq gnus-tmp-gathered
4776                     (nconc (mapcar
4777                             (lambda (h) (mail-header-number (car h)))
4778                             (cddar thread))
4779                            gnus-tmp-gathered))
4780               (setq thread (cons (list (caar thread)
4781                                        (cadar thread))
4782                                  (cdr thread)))
4783               (setq gnus-tmp-level -1
4784                     gnus-tmp-false-parent t))
4785              ((eq gnus-summary-make-false-root 'empty)
4786               ;; We print adopted articles with empty subject fields.
4787               (setq gnus-tmp-gathered
4788                     (nconc (mapcar
4789                             (lambda (h) (mail-header-number (car h)))
4790                             (cddar thread))
4791                            gnus-tmp-gathered))
4792               (setq gnus-tmp-level -1))
4793              ((eq gnus-summary-make-false-root 'dummy)
4794               ;; We remember that we probably want to output a dummy
4795               ;; root.
4796               (setq gnus-tmp-dummy-line gnus-tmp-header)
4797               (setq gnus-tmp-prev-subject gnus-tmp-header))
4798              (t
4799               ;; We do not make a root for the gathered
4800               ;; sub-threads at all.
4801               (setq gnus-tmp-level -1)))
4802
4803           (setq number (mail-header-number gnus-tmp-header)
4804                 subject (mail-header-subject gnus-tmp-header)
4805                 simp-subject (gnus-simplify-subject-fully subject))
4806
4807           (cond
4808            ;; If the thread has changed subject, we might want to make
4809            ;; this subthread into a root.
4810            ((and (null gnus-thread-ignore-subject)
4811                  (not (zerop gnus-tmp-level))
4812                  gnus-tmp-prev-subject
4813                  (not (string= gnus-tmp-prev-subject simp-subject)))
4814             (setq new-roots (nconc new-roots (list (car thread)))
4815                   thread-end t
4816                   gnus-tmp-header nil))
4817            ;; If the article lies outside the current limit,
4818            ;; then we do not display it.
4819            ((not (memq number gnus-newsgroup-limit))
4820             (setq gnus-tmp-gathered
4821                   (nconc (mapcar
4822                           (lambda (h) (mail-header-number (car h)))
4823                           (cdar thread))
4824                          gnus-tmp-gathered))
4825             (setq gnus-tmp-new-adopts (if (cdar thread)
4826                                           (append gnus-tmp-new-adopts
4827                                                   (cdar thread))
4828                                         gnus-tmp-new-adopts)
4829                   thread-end t
4830                   gnus-tmp-header nil)
4831             (when (zerop gnus-tmp-level)
4832               (setq gnus-tmp-root-expunged t)))
4833            ;; Perhaps this article is to be marked as read?
4834            ((and gnus-summary-mark-below
4835                  (< (or (cdr (assq number gnus-newsgroup-scored))
4836                         default-score)
4837                     gnus-summary-mark-below)
4838                  ;; Don't touch sparse articles.
4839                  (not (gnus-summary-article-sparse-p number))
4840                  (not (gnus-summary-article-ancient-p number)))
4841             (setq gnus-newsgroup-unreads
4842                   (delq number gnus-newsgroup-unreads))
4843             (if gnus-newsgroup-auto-expire
4844                 (setq gnus-newsgroup-expirable
4845                       (gnus-add-to-sorted-list
4846                        gnus-newsgroup-expirable number))
4847               (push (cons number gnus-low-score-mark)
4848                     gnus-newsgroup-reads))))
4849
4850           (when gnus-tmp-header
4851             ;; We may have an old dummy line to output before this
4852             ;; article.
4853             (when (and gnus-tmp-dummy-line
4854                        (gnus-subject-equal
4855                         gnus-tmp-dummy-line
4856                         (mail-header-subject gnus-tmp-header)))
4857               (gnus-summary-insert-dummy-line
4858                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
4859               (setq gnus-tmp-dummy-line nil))
4860
4861             ;; Compute the mark.
4862             (setq gnus-tmp-unread (gnus-article-mark number))
4863
4864             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
4865                                   gnus-tmp-header gnus-tmp-level)
4866                   gnus-newsgroup-data)
4867
4868             ;; Actually insert the line.
4869             (setq
4870              gnus-tmp-subject-or-nil
4871              (cond
4872               ((and gnus-thread-ignore-subject
4873                     gnus-tmp-prev-subject
4874                     (not (string= gnus-tmp-prev-subject simp-subject)))
4875                subject)
4876               ((zerop gnus-tmp-level)
4877                (if (and (eq gnus-summary-make-false-root 'empty)
4878                         (memq number gnus-tmp-gathered)
4879                         gnus-tmp-prev-subject
4880                         (string= gnus-tmp-prev-subject simp-subject))
4881                    gnus-summary-same-subject
4882                  subject))
4883               (t gnus-summary-same-subject)))
4884             (if (and (eq gnus-summary-make-false-root 'adopt)
4885                      (= gnus-tmp-level 1)
4886                      (memq number gnus-tmp-gathered))
4887                 (setq gnus-tmp-opening-bracket ?\<
4888                       gnus-tmp-closing-bracket ?\>)
4889               (setq gnus-tmp-opening-bracket ?\[
4890                     gnus-tmp-closing-bracket ?\]))
4891             (setq
4892              gnus-tmp-indentation
4893              (aref gnus-thread-indent-array gnus-tmp-level)
4894              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4895              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4896                                 gnus-summary-default-score 0)
4897              gnus-tmp-score-char
4898              (if (or (null gnus-summary-default-score)
4899                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4900                          gnus-summary-zcore-fuzz))
4901                  ?\ ;;;Whitespace
4902                (if (< gnus-tmp-score gnus-summary-default-score)
4903                    gnus-score-below-mark gnus-score-over-mark))
4904              gnus-tmp-replied
4905              (cond ((memq number gnus-newsgroup-processable)
4906                     gnus-process-mark)
4907                    ((memq number gnus-newsgroup-cached)
4908                     gnus-cached-mark)
4909                    ((memq number gnus-newsgroup-replied)
4910                     gnus-replied-mark)
4911                    ((memq number gnus-newsgroup-forwarded)
4912                     gnus-forwarded-mark)
4913                    ((memq number gnus-newsgroup-saved)
4914                     gnus-saved-mark)
4915                    ((memq number gnus-newsgroup-recent)
4916                     gnus-recent-mark)
4917                    ((memq number gnus-newsgroup-unseen)
4918                     gnus-unseen-mark)
4919                    (t gnus-no-mark))
4920              gnus-tmp-downloaded
4921              (cond ((memq number gnus-newsgroup-undownloaded)
4922                     gnus-undownloaded-mark)
4923                    (gnus-newsgroup-agentized
4924                     gnus-downloaded-mark)
4925                    (t
4926                     gnus-no-mark))
4927              gnus-tmp-from (mail-header-from gnus-tmp-header)
4928              gnus-tmp-name
4929              (cond
4930               ((string-match "<[^>]+> *$" gnus-tmp-from)
4931                (setq beg-match (match-beginning 0))
4932                (or (and (string-match "^\".+\"" gnus-tmp-from)
4933                         (substring gnus-tmp-from 1 (1- (match-end 0))))
4934                    (substring gnus-tmp-from 0 beg-match)))
4935               ((string-match "(.+)" gnus-tmp-from)
4936                (substring gnus-tmp-from
4937                           (1+ (match-beginning 0)) (1- (match-end 0))))
4938               (t gnus-tmp-from))
4939
4940              ;; Do the %B string
4941              gnus-tmp-thread-tree-header-string
4942              (cond
4943               ((not gnus-show-threads) "")
4944               ((zerop gnus-tmp-level)
4945                (cond ((cdar thread)
4946                       (or gnus-sum-thread-tree-root subject))
4947                      (gnus-tmp-new-adopts
4948                       (or gnus-sum-thread-tree-false-root subject))
4949                      (t
4950                       (or gnus-sum-thread-tree-single-indent subject))))
4951               (t
4952                (concat (apply 'concat
4953                               (mapcar (lambda (item)
4954                                         (if (= item 1)
4955                                             gnus-sum-thread-tree-vertical
4956                                           gnus-sum-thread-tree-indent))
4957                                       (cdr (reverse tree-stack))))
4958                        (if (nth 1 thread)
4959                            gnus-sum-thread-tree-leaf-with-other
4960                          gnus-sum-thread-tree-single-leaf)))))
4961             (when (string= gnus-tmp-name "")
4962               (setq gnus-tmp-name gnus-tmp-from))
4963             (unless (numberp gnus-tmp-lines)
4964               (setq gnus-tmp-lines -1))
4965             (if (= gnus-tmp-lines -1)
4966                 (setq gnus-tmp-lines "?")
4967               (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
4968               (gnus-put-text-property
4969              (point)
4970              (progn (eval gnus-summary-line-format-spec) (point))
4971                'gnus-number number)
4972             (when gnus-visual-p
4973               (forward-line -1)
4974               (gnus-run-hooks 'gnus-summary-update-hook)
4975               (forward-line 1))
4976
4977             (setq gnus-tmp-prev-subject simp-subject)))
4978
4979         (when (nth 1 thread)
4980           (push (list (max 0 gnus-tmp-level)
4981                       (copy-sequence tree-stack)
4982                       (nthcdr 1 thread))
4983                 stack))
4984         (push (if (nth 1 thread) 1 0) tree-stack)
4985         (incf gnus-tmp-level)
4986         (setq threads (if thread-end nil (cdar thread)))
4987         (if gnus-summary-display-while-building
4988             (if building-count
4989                 (progn
4990                   ;; use a set frequency
4991                   (setq building-line-count (1- building-line-count))
4992                   (when (= building-line-count 0)
4993                     (sit-for 0)
4994                     (setq building-line-count
4995                           gnus-summary-display-while-building)))
4996               ;; always
4997               (sit-for 0)))
4998         (unless threads
4999           (setq gnus-tmp-level 0)))))
5000   (gnus-message 7 "Generating summary...done"))
5001
5002 (defun gnus-summary-prepare-unthreaded (headers)
5003   "Generate an unthreaded summary buffer based on HEADERS."
5004   (let (header number mark)
5005
5006     (beginning-of-line)
5007
5008     (while headers
5009       ;; We may have to root out some bad articles...
5010       (when (memq (setq number (mail-header-number
5011                                 (setq header (pop headers))))
5012                   gnus-newsgroup-limit)
5013         ;; Mark article as read when it has a low score.
5014         (when (and gnus-summary-mark-below
5015                    (< (or (cdr (assq number gnus-newsgroup-scored))
5016                           gnus-summary-default-score 0)
5017                       gnus-summary-mark-below)
5018                    (not (gnus-summary-article-ancient-p number)))
5019           (setq gnus-newsgroup-unreads
5020                 (delq number gnus-newsgroup-unreads))
5021           (if gnus-newsgroup-auto-expire
5022               (push number gnus-newsgroup-expirable)
5023             (push (cons number gnus-low-score-mark)
5024                   gnus-newsgroup-reads)))
5025
5026         (setq mark (gnus-article-mark number))
5027         (push (gnus-data-make number mark (1+ (point)) header 0)
5028               gnus-newsgroup-data)
5029         (gnus-summary-insert-line
5030          header 0 number
5031          (memq number gnus-newsgroup-undownloaded)
5032          mark (memq number gnus-newsgroup-replied)
5033          (memq number gnus-newsgroup-expirable)
5034          (mail-header-subject header) nil
5035          (cdr (assq number gnus-newsgroup-scored))
5036          (memq number gnus-newsgroup-processable))))))
5037
5038 (defun gnus-summary-remove-list-identifiers ()
5039   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
5040   (let ((regexp (if (consp gnus-list-identifiers)
5041                     (mapconcat 'identity gnus-list-identifiers " *\\|")
5042                   gnus-list-identifiers))
5043         changed subject)
5044     (when regexp
5045       (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
5046       (dolist (header gnus-newsgroup-headers)
5047         (setq subject (mail-header-subject header)
5048               changed nil)
5049         (while (string-match regexp subject)
5050           (setq subject
5051                 (concat (substring subject 0 (match-beginning 1))
5052                         (substring subject (match-end 0)))
5053                 changed t))
5054         (when changed
5055           (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
5056             (setq subject
5057                   (concat (substring subject 0 (match-beginning 1))
5058                           (substring subject (match-end 1)))))
5059           (mail-header-set-subject header subject))))))
5060
5061 (defun gnus-fetch-headers (articles)
5062   "Fetch headers of ARTICLES."
5063   (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
5064     (gnus-message 5 "Fetching headers for %s..." name)
5065     (prog1
5066         (if (eq 'nov
5067                 (setq gnus-headers-retrieved-by
5068                       (gnus-retrieve-headers
5069                        articles gnus-newsgroup-name
5070                        ;; We might want to fetch old headers, but
5071                        ;; not if there is only 1 article.
5072                        (and (or (and
5073                                  (not (eq gnus-fetch-old-headers 'some))
5074                                  (not (numberp gnus-fetch-old-headers)))
5075                                 (> (length articles) 1))
5076                             gnus-fetch-old-headers))))
5077             (gnus-get-newsgroup-headers-xover
5078              articles nil nil gnus-newsgroup-name t)
5079           (gnus-get-newsgroup-headers))
5080       (gnus-message 5 "Fetching headers for %s...done" name))))
5081
5082 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5083   "Select newsgroup GROUP.
5084 If READ-ALL is non-nil, all articles in the group are selected.
5085 If SELECT-ARTICLES, only select those articles from GROUP."
5086   (let* ((entry (gnus-group-entry group))
5087          ;;!!! Dirty hack; should be removed.
5088          (gnus-summary-ignore-duplicates
5089           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5090               t
5091             gnus-summary-ignore-duplicates))
5092          (info (nth 2 entry))
5093          articles fetched-articles cached)
5094
5095     (unless (gnus-check-server
5096              (set (make-local-variable 'gnus-current-select-method)
5097                   (gnus-find-method-for-group group)))
5098       (error "Couldn't open server"))
5099
5100     (or (and entry (not (eq (car entry) t))) ; Either it's active...
5101         (gnus-activate-group group)     ; Or we can activate it...
5102         (progn                          ; Or we bug out.
5103           (when (equal major-mode 'gnus-summary-mode)
5104             (gnus-kill-buffer (current-buffer)))
5105           (error "Couldn't activate group %s: %s"
5106                  group (gnus-status-message group))))
5107
5108     (unless (gnus-request-group group t)
5109       (when (equal major-mode 'gnus-summary-mode)
5110         (gnus-kill-buffer (current-buffer)))
5111       (error "Couldn't request group %s: %s"
5112              group (gnus-status-message group)))
5113
5114     (when gnus-agent
5115       (gnus-agent-possibly-alter-active group (gnus-active group) info)
5116       
5117       (setq gnus-summary-use-undownloaded-faces
5118             (gnus-agent-find-parameter
5119              group
5120              'agent-enable-undownloaded-faces)))
5121
5122     (setq gnus-newsgroup-name group
5123           gnus-newsgroup-unselected nil
5124           gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5125
5126     (let ((display (gnus-group-find-parameter group 'display)))
5127       (setq gnus-newsgroup-display
5128             (cond
5129              ((not (zerop (or (car-safe read-all) 0)))
5130               ;; The user entered the group with C-u SPC/RET, let's show
5131               ;; all articles.
5132               'gnus-not-ignore)
5133              ((eq display 'all)
5134               'gnus-not-ignore)
5135              ((arrayp display)
5136               (gnus-summary-display-make-predicate (mapcar 'identity display)))
5137              ((numberp display)
5138               ;; The following is probably the "correct" solution, but
5139               ;; it makes Gnus fetch all headers and then limit the
5140               ;; articles (which is slow), so instead we hack the
5141               ;; select-articles parameter instead. -- Simon Josefsson
5142               ;; <jas@kth.se>
5143               ;;
5144               ;; (gnus-byte-compile
5145               ;;  `(lambda () (> number ,(- (cdr (gnus-active group))
5146               ;;                         display)))))
5147               (setq select-articles
5148                     (gnus-uncompress-range
5149                      (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5150                              (if (> tmp 0)
5151                                  tmp
5152                                1))
5153                            (cdr (gnus-active group)))))
5154               nil)
5155              (t
5156               nil))))
5157
5158     (gnus-summary-setup-default-charset)
5159
5160     ;; Kludge to avoid having cached articles nixed out in virtual groups.
5161     (when (gnus-virtual-group-p group)
5162       (setq cached gnus-newsgroup-cached))
5163
5164     (setq gnus-newsgroup-unreads
5165           (gnus-sorted-ndifference
5166            (gnus-sorted-ndifference gnus-newsgroup-unreads
5167                                     gnus-newsgroup-marked)
5168            gnus-newsgroup-dormant))
5169
5170     (setq gnus-newsgroup-processable nil)
5171
5172     (gnus-update-read-articles group gnus-newsgroup-unreads)
5173
5174     ;; Adjust and set lists of article marks.
5175     (when info
5176       (gnus-adjust-marked-articles info))
5177     (if (setq articles select-articles)
5178         (setq gnus-newsgroup-unselected
5179               (gnus-sorted-difference gnus-newsgroup-unreads articles))
5180       (setq articles (gnus-articles-to-read group read-all)))
5181
5182     (cond
5183      ((null articles)
5184       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5185       'quit)
5186      ((eq articles 0) nil)
5187      (t
5188       ;; Init the dependencies hash table.
5189       (setq gnus-newsgroup-dependencies
5190             (gnus-make-hashtable (length articles)))
5191       (gnus-set-global-variables)
5192       ;; Retrieve the headers and read them in.
5193
5194       (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5195
5196       ;; Kludge to avoid having cached articles nixed out in virtual groups.
5197       (when cached
5198         (setq gnus-newsgroup-cached cached))
5199
5200       ;; Suppress duplicates?
5201       (when gnus-suppress-duplicates
5202         (gnus-dup-suppress-articles))
5203
5204       ;; Set the initial limit.
5205       (setq gnus-newsgroup-limit (copy-sequence articles))
5206       ;; Remove canceled articles from the list of unread articles.
5207       (setq fetched-articles
5208             (mapcar (lambda (headers) (mail-header-number headers))
5209                     gnus-newsgroup-headers))
5210       (setq gnus-newsgroup-articles fetched-articles)
5211       (setq gnus-newsgroup-unreads
5212             (gnus-sorted-nintersection
5213              gnus-newsgroup-unreads fetched-articles))
5214       (gnus-compute-unseen-list)
5215
5216       ;; Removed marked articles that do not exist.
5217       (gnus-update-missing-marks
5218        (gnus-sorted-difference articles fetched-articles))
5219       ;; We might want to build some more threads first.
5220       (when (and gnus-fetch-old-headers
5221                  (eq gnus-headers-retrieved-by 'nov))
5222         (if (eq gnus-fetch-old-headers 'invisible)
5223             (gnus-build-all-threads)
5224           (gnus-build-old-threads)))
5225       ;; Let the Gnus agent mark articles as read.
5226       (when gnus-agent
5227         (gnus-agent-get-undownloaded-list))
5228       ;; Remove list identifiers from subject
5229       (when gnus-list-identifiers
5230         (gnus-summary-remove-list-identifiers))
5231       ;; Check whether auto-expire is to be done in this group.
5232       (setq gnus-newsgroup-auto-expire
5233             (gnus-group-auto-expirable-p group))
5234       ;; Set up the article buffer now, if necessary.
5235       (unless gnus-single-article-buffer
5236         (gnus-article-setup-buffer))
5237       ;; First and last article in this newsgroup.
5238       (when gnus-newsgroup-headers
5239         (setq gnus-newsgroup-begin
5240               (mail-header-number (car gnus-newsgroup-headers))
5241               gnus-newsgroup-end
5242               (mail-header-number
5243                (gnus-last-element gnus-newsgroup-headers))))
5244       ;; GROUP is successfully selected.
5245       (or gnus-newsgroup-headers t)))))
5246
5247 (defun gnus-compute-unseen-list ()
5248   ;; The `seen' marks are treated specially.
5249   (if (not gnus-newsgroup-seen)
5250       (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5251     (setq gnus-newsgroup-unseen
5252           (gnus-inverse-list-range-intersection
5253            gnus-newsgroup-articles gnus-newsgroup-seen))))
5254
5255 (defun gnus-summary-display-make-predicate (display)
5256   (require 'gnus-agent)
5257   (when (= (length display) 1)
5258     (setq display (car display)))
5259   (unless gnus-summary-display-cache
5260     (dolist (elem (append '((unread . unread)
5261                             (read . read)
5262                             (unseen . unseen))
5263                           gnus-article-mark-lists))
5264       (push (cons (cdr elem)
5265                   (gnus-byte-compile
5266                    `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5267             gnus-summary-display-cache)))
5268   (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5269         (gnus-category-predicate-cache gnus-summary-display-cache))
5270     (gnus-get-predicate display)))
5271
5272 ;; Uses the dynamically bound `number' variable.
5273 (eval-when-compile
5274   (defvar number))
5275 (defun gnus-article-marked-p (type &optional article)
5276   (let ((article (or article number)))
5277     (cond
5278      ((eq type 'tick)
5279       (memq article gnus-newsgroup-marked))
5280      ((eq type 'spam)
5281       (memq article gnus-newsgroup-spam-marked))
5282      ((eq type 'unsend)
5283       (memq article gnus-newsgroup-unsendable))
5284      ((eq type 'undownload)
5285       (memq article gnus-newsgroup-undownloaded))
5286      ((eq type 'download)
5287       (memq article gnus-newsgroup-downloadable))
5288      ((eq type 'unread)
5289       (memq article gnus-newsgroup-unreads))
5290      ((eq type 'read)
5291       (memq article gnus-newsgroup-reads))
5292      ((eq type 'dormant)
5293       (memq article gnus-newsgroup-dormant) )
5294      ((eq type 'expire)
5295       (memq article gnus-newsgroup-expirable))
5296      ((eq type 'reply)
5297       (memq article gnus-newsgroup-replied))
5298      ((eq type 'killed)
5299       (memq article gnus-newsgroup-killed))
5300      ((eq type 'bookmark)
5301       (assq article gnus-newsgroup-bookmarks))
5302      ((eq type 'score)
5303       (assq article gnus-newsgroup-scored))
5304      ((eq type 'save)
5305       (memq article gnus-newsgroup-saved))
5306      ((eq type 'cache)
5307       (memq article gnus-newsgroup-cached))
5308      ((eq type 'forward)
5309       (memq article gnus-newsgroup-forwarded))
5310      ((eq type 'seen)
5311       (not (memq article gnus-newsgroup-unseen)))
5312      ((eq type 'recent)
5313       (memq article gnus-newsgroup-recent))
5314      (t t))))
5315
5316 (defun gnus-articles-to-read (group &optional read-all)
5317   "Find out what articles the user wants to read."
5318   (let* ((articles
5319           ;; Select all articles if `read-all' is non-nil, or if there
5320           ;; are no unread articles.
5321           (if (or read-all
5322                   (and (zerop (length gnus-newsgroup-marked))
5323                        (zerop (length gnus-newsgroup-unreads)))
5324                   ;; Fetch all if the predicate is non-nil.
5325                   gnus-newsgroup-display)
5326               ;; We want to select the headers for all the articles in
5327               ;; the group, so we select either all the active
5328               ;; articles in the group, or (if that's nil), the
5329               ;; articles in the cache.
5330               (or
5331                (gnus-uncompress-range (gnus-active group))
5332                (gnus-cache-articles-in-group group))
5333             ;; Select only the "normal" subset of articles.
5334             (gnus-sorted-nunion
5335              (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5336              gnus-newsgroup-unreads)))
5337          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5338          (scored (length scored-list))
5339          (number (length articles))
5340          (marked (+ (length gnus-newsgroup-marked)
5341                     (length gnus-newsgroup-dormant)))
5342          (select
5343           (cond
5344            ((numberp read-all)
5345             read-all)
5346            ((numberp gnus-newsgroup-display)
5347             gnus-newsgroup-display)
5348            (t
5349             (condition-case ()
5350                 (cond
5351                  ((and (or (<= scored marked) (= scored number))
5352                        (numberp gnus-large-newsgroup)
5353                        (> number gnus-large-newsgroup))
5354                   (let* ((cursor-in-echo-area nil)
5355                          (initial (gnus-parameter-large-newsgroup-initial
5356                                    gnus-newsgroup-name))
5357                          (input
5358                           (read-string
5359                            (format
5360                             "How many articles from %s (%s %d): "
5361                             (gnus-limit-string
5362                              (gnus-group-decoded-name gnus-newsgroup-name)
5363                              35)
5364                             (if initial "max" "default")
5365                             number)
5366                            (if initial
5367                                (cons (number-to-string initial)
5368                                      0)))))
5369                     (if (string-match "^[ \t]*$" input) number input)))
5370                  ((and (> scored marked) (< scored number)
5371                        (> (- scored number) 20))
5372                   (let ((input
5373                          (read-string
5374                           (format "%s %s (%d scored, %d total): "
5375                                   "How many articles from"
5376                                   (gnus-group-decoded-name group)
5377                                   scored number))))
5378                     (if (string-match "^[ \t]*$" input)
5379                         number input)))
5380                  (t number))
5381               (quit
5382                (message "Quit getting the articles to read")
5383                nil))))))
5384     (setq select (if (stringp select) (string-to-number select) select))
5385     (if (or (null select) (zerop select))
5386         select
5387       (if (and (not (zerop scored)) (<= (abs select) scored))
5388           (progn
5389             (setq articles (sort scored-list '<))
5390             (setq number (length articles)))
5391         (setq articles (copy-sequence articles)))
5392
5393       (when (< (abs select) number)
5394         (if (< select 0)
5395             ;; Select the N oldest articles.
5396             (setcdr (nthcdr (1- (abs select)) articles) nil)
5397           ;; Select the N most recent articles.
5398           (setq articles (nthcdr (- number select) articles))))
5399       (setq gnus-newsgroup-unselected
5400             (gnus-sorted-difference gnus-newsgroup-unreads articles))
5401       (when gnus-alter-articles-to-read-function
5402         (setq articles
5403               (sort
5404                (funcall gnus-alter-articles-to-read-function
5405                         gnus-newsgroup-name articles)
5406                '<)))
5407       articles)))
5408
5409 (defun gnus-killed-articles (killed articles)
5410   (let (out)
5411     (while articles
5412       (when (inline (gnus-member-of-range (car articles) killed))
5413         (push (car articles) out))
5414       (setq articles (cdr articles)))
5415     out))
5416
5417 (defun gnus-uncompress-marks (marks)
5418   "Uncompress the mark ranges in MARKS."
5419   (let ((uncompressed '(score bookmark))
5420         out)
5421     (while marks
5422       (if (memq (caar marks) uncompressed)
5423           (push (car marks) out)
5424         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5425       (setq marks (cdr marks)))
5426     out))
5427
5428 (defun gnus-article-mark-to-type (mark)
5429   "Return the type of MARK."
5430   (or (cadr (assq mark gnus-article-special-mark-lists))
5431       'list))
5432
5433 (defun gnus-article-unpropagatable-p (mark)
5434   "Return whether MARK should be propagated to back end."
5435   (memq mark gnus-article-unpropagated-mark-lists))
5436
5437 (defun gnus-adjust-marked-articles (info)
5438   "Set all article lists and remove all marks that are no longer valid."
5439   (let* ((marked-lists (gnus-info-marks info))
5440          (active (gnus-active (gnus-info-group info)))
5441          (min (car active))
5442          (max (cdr active))
5443          (types gnus-article-mark-lists)
5444          marks var articles article mark mark-type
5445          bgn end)
5446
5447     (dolist (marks marked-lists)
5448       (setq mark (car marks)
5449             mark-type (gnus-article-mark-to-type mark)
5450             var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5451
5452       ;; We set the variable according to the type of the marks list,
5453       ;; and then adjust the marks to a subset of the active articles.
5454       (cond
5455        ;; Adjust "simple" lists - compressed yet unsorted
5456        ((eq mark-type 'list)
5457         ;; Simultaneously uncompress and clip to active range
5458         ;; See gnus-uncompress-range for a description of possible marks
5459         (let (l lh)
5460           (if (not (cadr marks))
5461               (set var nil)
5462             (setq articles (if (numberp (cddr marks))
5463                                (list (cdr marks))
5464                              (cdr marks))
5465                   lh (cons nil nil)
5466                   l lh)
5467
5468             (while (setq article (pop articles))
5469               (cond ((consp article)
5470                      (setq bgn (max (car article) min)
5471                            end (min (cdr article) max))
5472                      (while (<= bgn end)
5473                        (setq l (setcdr l (cons bgn nil))
5474                              bgn (1+ bgn))))
5475                     ((and (<= min article)
5476                           (>= max article))
5477                      (setq l (setcdr l (cons article nil))))))
5478             (set var (cdr lh)))))
5479        ;; Adjust assocs.
5480        ((eq mark-type 'tuple)
5481         (set var (setq articles (cdr marks)))
5482         (when (not (listp (cdr (symbol-value var))))
5483           (set var (list (symbol-value var))))
5484         (when (not (listp (cdr articles)))
5485           (setq articles (list articles)))
5486         (while articles
5487           (when (or (not (consp (setq article (pop articles))))
5488                     (< (car article) min)
5489                     (> (car article) max))
5490             (set var (delq article (symbol-value var))))))
5491        ;; Adjust ranges (sloppily).
5492        ((eq mark-type 'range)
5493         (cond
5494          ((eq mark 'seen)
5495           ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5496           ;; It should be (seen (NUM1 . NUM2)).
5497           (when (numberp (cddr marks))
5498             (setcdr marks (list (cdr marks))))
5499           (setq articles (cdr marks))
5500           (while (and articles
5501                       (or (and (consp (car articles))
5502                                (> min (cdar articles)))
5503                           (and (numberp (car articles))
5504                                (> min (car articles)))))
5505             (pop articles))
5506           (set var articles))))))))
5507
5508 (defun gnus-update-missing-marks (missing)
5509   "Go through the list of MISSING articles and remove them from the mark lists."
5510   (when missing
5511     (let (var m)
5512       ;; Go through all types.
5513       (dolist (elem gnus-article-mark-lists)
5514         (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5515           (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5516           (when (symbol-value var)
5517             ;; This list has articles.  So we delete all missing
5518             ;; articles from it.
5519             (setq m missing)
5520             (while m
5521               (set var (delq (pop m) (symbol-value var))))))))))
5522
5523 (defun gnus-update-marks ()
5524   "Enter the various lists of marked articles into the newsgroup info list."
5525   (let ((types gnus-article-mark-lists)
5526         (info (gnus-get-info gnus-newsgroup-name))
5527         type list newmarked symbol delta-marks)
5528     (when info
5529       ;; Add all marks lists to the list of marks lists.
5530       (while (setq type (pop types))
5531         (setq list (symbol-value
5532                     (setq symbol
5533                           (intern (format "gnus-newsgroup-%s" (car type))))))
5534
5535         (when list
5536           ;; Get rid of the entries of the articles that have the
5537           ;; default score.
5538           (when (and (eq (cdr type) 'score)
5539                      gnus-save-score
5540                      list)
5541             (let* ((arts list)
5542                    (prev (cons nil list))
5543                    (all prev))
5544               (while arts
5545                 (if (or (not (consp (car arts)))
5546                         (= (cdar arts) gnus-summary-default-score))
5547                     (setcdr prev (cdr arts))
5548                   (setq prev arts))
5549                 (setq arts (cdr arts)))
5550               (setq list (cdr all)))))
5551
5552         (when (eq (cdr type) 'seen)
5553           (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5554
5555         (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5556           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5557
5558         (when (and (gnus-check-backend-function
5559                     'request-set-mark gnus-newsgroup-name)
5560                    (not (gnus-article-unpropagatable-p (cdr type))))
5561           (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5562                  (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5563                  (add (gnus-remove-from-range
5564                        (gnus-copy-sequence list) old)))
5565             (when add
5566               (push (list add 'add (list (cdr type))) delta-marks))
5567             (when del
5568               (push (list del 'del (list (cdr type))) delta-marks))))
5569
5570         (when list
5571           (push (cons (cdr type) list) newmarked)))
5572
5573       (when delta-marks
5574         (unless (gnus-check-group gnus-newsgroup-name)
5575           (error "Can't open server for %s" gnus-newsgroup-name))
5576         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5577
5578       ;; Enter these new marks into the info of the group.
5579       (if (nthcdr 3 info)
5580           (setcar (nthcdr 3 info) newmarked)
5581         ;; Add the marks lists to the end of the info.
5582         (when newmarked
5583           (setcdr (nthcdr 2 info) (list newmarked))))
5584
5585       ;; Cut off the end of the info if there's nothing else there.
5586       (let ((i 5))
5587         (while (and (> i 2)
5588                     (not (nth i info)))
5589           (when (nthcdr (decf i) info)
5590             (setcdr (nthcdr i info) nil)))))))
5591
5592 (defun gnus-set-mode-line (where)
5593   "Set the mode line of the article or summary buffers.
5594 If WHERE is `summary', the summary mode line format will be used."
5595   ;; Is this mode line one we keep updated?
5596   (when (and (memq where gnus-updated-mode-lines)
5597              (symbol-value
5598               (intern (format "gnus-%s-mode-line-format-spec" where))))
5599     (let (mode-string)
5600       (save-excursion
5601         ;; We evaluate this in the summary buffer since these
5602         ;; variables are buffer-local to that buffer.
5603         (set-buffer gnus-summary-buffer)
5604         ;; We bind all these variables that are used in the `eval' form
5605         ;; below.
5606         (let* ((mformat (symbol-value
5607                          (intern
5608                           (format "gnus-%s-mode-line-format-spec" where))))
5609                (gnus-tmp-group-name (gnus-group-decoded-name
5610                                      gnus-newsgroup-name))
5611                (gnus-tmp-article-number (or gnus-current-article 0))
5612                (gnus-tmp-unread gnus-newsgroup-unreads)
5613                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
5614                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
5615                (gnus-tmp-unread-and-unselected
5616                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
5617                             (zerop gnus-tmp-unselected))
5618                        "")
5619                       ((zerop gnus-tmp-unselected)
5620                        (format "{%d more}" gnus-tmp-unread-and-unticked))
5621                       (t (format "{%d(+%d) more}"
5622                                  gnus-tmp-unread-and-unticked
5623                                  gnus-tmp-unselected))))
5624                (gnus-tmp-subject
5625                 (if (and gnus-current-headers
5626                          (vectorp gnus-current-headers))
5627                     (gnus-mode-string-quote
5628                      (mail-header-subject gnus-current-headers))
5629                   ""))
5630                bufname-length max-len
5631                gnus-tmp-header);; passed as argument to any user-format-funcs
5632           (setq mode-string (eval mformat))
5633           (setq bufname-length (if (string-match "%b" mode-string)
5634                                    (- (length
5635                                        (buffer-name
5636                                         (if (eq where 'summary)
5637                                             nil
5638                                           (get-buffer gnus-article-buffer))))
5639                                       2)
5640                                  0))
5641           (setq max-len (max 4 (if gnus-mode-non-string-length
5642                                    (- (window-width)
5643                                       gnus-mode-non-string-length
5644                                       bufname-length)
5645                                  (length mode-string))))
5646           ;; We might have to chop a bit of the string off...
5647           (when (> (length mode-string) max-len)
5648             (setq mode-string
5649                   (concat (gnus-truncate-string mode-string (- max-len 3))
5650                           "...")))
5651           ;; Pad the mode string a bit.
5652           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
5653       ;; Update the mode line.
5654       (setq mode-line-buffer-identification
5655             (gnus-mode-line-buffer-identification (list mode-string)))
5656       (set-buffer-modified-p t))))
5657
5658 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
5659   "Go through the HEADERS list and add all Xrefs to a hash table.
5660 The resulting hash table is returned, or nil if no Xrefs were found."
5661   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
5662          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
5663          (xref-hashtb (gnus-make-hashtable))
5664          start group entry number xrefs header)
5665     (while headers
5666       (setq header (pop headers))
5667       (when (and (setq xrefs (mail-header-xref header))
5668                  (not (memq (setq number (mail-header-number header))
5669                             unreads)))
5670         (setq start 0)
5671         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
5672           (setq start (match-end 0))
5673           (setq group (if prefix
5674                           (concat prefix (substring xrefs (match-beginning 1)
5675                                                     (match-end 1)))
5676                         (substring xrefs (match-beginning 1) (match-end 1))))
5677           (setq number
5678                 (string-to-int (substring xrefs (match-beginning 2)
5679                                           (match-end 2))))
5680           (if (setq entry (gnus-gethash group xref-hashtb))
5681               (setcdr entry (cons number (cdr entry)))
5682             (gnus-sethash group (cons number nil) xref-hashtb)))))
5683     (and start xref-hashtb)))
5684
5685 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
5686   "Look through all the headers and mark the Xrefs as read."
5687   (let ((virtual (gnus-virtual-group-p from-newsgroup))
5688         name info xref-hashtb idlist method nth4)
5689     (save-excursion
5690       (set-buffer gnus-group-buffer)
5691       (when (setq xref-hashtb
5692                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
5693         (mapatoms
5694          (lambda (group)
5695            (unless (string= from-newsgroup (setq name (symbol-name group)))
5696              (setq idlist (symbol-value group))
5697              ;; Dead groups are not updated.
5698              (and (prog1
5699                       (setq info (gnus-get-info name))
5700                     (when (stringp (setq nth4 (gnus-info-method info)))
5701                       (setq nth4 (gnus-server-to-method nth4))))
5702                   ;; Only do the xrefs if the group has the same
5703                   ;; select method as the group we have just read.
5704                   (or (gnus-methods-equal-p
5705                        nth4 (gnus-find-method-for-group from-newsgroup))
5706                       virtual
5707                       (equal nth4 (setq method (gnus-find-method-for-group
5708                                                 from-newsgroup)))
5709                       (and (equal (car nth4) (car method))
5710                            (equal (nth 1 nth4) (nth 1 method))))
5711                   gnus-use-cross-reference
5712                   (or (not (eq gnus-use-cross-reference t))
5713                       virtual
5714                       ;; Only do cross-references on subscribed
5715                       ;; groups, if that is what is wanted.
5716                       (<= (gnus-info-level info) gnus-level-subscribed))
5717                   (gnus-group-make-articles-read name idlist))))
5718          xref-hashtb)))))
5719
5720 (defun gnus-compute-read-articles (group articles)
5721   (let* ((entry (gnus-group-entry group))
5722          (info (nth 2 entry))
5723          (active (gnus-active group))
5724          ninfo)
5725     (when entry
5726       ;; First peel off all invalid article numbers.
5727       (when active
5728         (let ((ids articles)
5729               id first)
5730           (while (setq id (pop ids))
5731             (when (and first (> id (cdr active)))
5732               ;; We'll end up in this situation in one particular
5733               ;; obscure situation.  If you re-scan a group and get
5734               ;; a new article that is cross-posted to a different
5735               ;; group that has not been re-scanned, you might get
5736               ;; crossposted article that has a higher number than
5737               ;; Gnus believes possible.  So we re-activate this
5738               ;; group as well.  This might mean doing the
5739               ;; crossposting thingy will *increase* the number
5740               ;; of articles in some groups.  Tsk, tsk.
5741               (setq active (or (gnus-activate-group group) active)))
5742             (when (or (> id (cdr active))
5743                       (< id (car active)))
5744               (setq articles (delq id articles))))))
5745       ;; If the read list is nil, we init it.
5746       (if (and active
5747                (null (gnus-info-read info))
5748                (> (car active) 1))
5749           (setq ninfo (cons 1 (1- (car active))))
5750         (setq ninfo (gnus-info-read info)))
5751       ;; Then we add the read articles to the range.
5752       (gnus-add-to-range
5753        ninfo (setq articles (sort articles '<))))))
5754
5755 (defun gnus-group-make-articles-read (group articles)
5756   "Update the info of GROUP to say that ARTICLES are read."
5757   (let* ((num 0)
5758          (entry (gnus-group-entry group))
5759          (info (nth 2 entry))
5760          (active (gnus-active group))
5761          range)
5762     (when entry
5763       (setq range (gnus-compute-read-articles group articles))
5764       (with-current-buffer gnus-group-buffer
5765         (gnus-undo-register
5766           `(progn
5767              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
5768              (gnus-info-set-read ',info ',(gnus-info-read info))
5769              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
5770              (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
5771              (gnus-group-update-group ,group t))))
5772       ;; Add the read articles to the range.
5773       (gnus-info-set-read info range)
5774       (gnus-request-set-mark group (list (list range 'add '(read))))
5775       ;; Then we have to re-compute how many unread
5776       ;; articles there are in this group.
5777       (when active
5778         (cond
5779          ((not range)
5780           (setq num (- (1+ (cdr active)) (car active))))
5781          ((not (listp (cdr range)))
5782           (setq num (- (cdr active) (- (1+ (cdr range))
5783                                        (car range)))))
5784          (t
5785           (while range
5786             (if (numberp (car range))
5787                 (setq num (1+ num))
5788               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
5789             (setq range (cdr range)))
5790           (setq num (- (cdr active) num))))
5791         ;; Update the number of unread articles.
5792         (setcar entry num)
5793         ;; Update the group buffer.
5794         (unless (gnus-ephemeral-group-p group)
5795           (gnus-group-update-group group t))))))
5796
5797 (defvar gnus-newsgroup-none-id 0)
5798
5799 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
5800   (let ((cur nntp-server-buffer)
5801         (dependencies
5802          (or dependencies
5803              (with-current-buffer gnus-summary-buffer
5804                gnus-newsgroup-dependencies)))
5805         headers id end ref number
5806         (mail-parse-charset gnus-newsgroup-charset)
5807         (mail-parse-ignored-charsets
5808          (save-excursion (condition-case nil
5809                              (set-buffer gnus-summary-buffer)
5810                            (error))
5811                          gnus-newsgroup-ignored-charsets)))
5812     (save-excursion
5813       (set-buffer nntp-server-buffer)
5814       ;; Translate all TAB characters into SPACE characters.
5815       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
5816       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5817       (ietf-drums-unfold-fws)
5818       (gnus-run-hooks 'gnus-parse-headers-hook)
5819       (let ((case-fold-search t)
5820             in-reply-to header p lines chars ctype)
5821         (goto-char (point-min))
5822         ;; Search to the beginning of the next header.  Error messages
5823         ;; do not begin with 2 or 3.
5824         (while (re-search-forward "^[23][0-9]+ " nil t)
5825           (setq id nil
5826                 ref nil)
5827           ;; This implementation of this function, with nine
5828           ;; search-forwards instead of the one re-search-forward and
5829           ;; a case (which basically was the old function) is actually
5830           ;; about twice as fast, even though it looks messier.  You
5831           ;; can't have everything, I guess.  Speed and elegance
5832           ;; doesn't always go hand in hand.
5833           (setq
5834            header
5835            (make-full-mail-header
5836             ;; Number.
5837             (prog1
5838                 (setq number (read cur))
5839               (end-of-line)
5840               (setq p (point))
5841               (narrow-to-region (point)
5842                                 (or (and (search-forward "\n.\n" nil t)
5843                                          (- (point) 2))
5844                                     (point))))
5845             ;; Subject.
5846             (progn
5847               (goto-char p)
5848               (if (search-forward "\nsubject:" nil t)
5849                   (nnheader-header-value)
5850                 "(none)"))
5851             ;; From.
5852             (progn
5853               (goto-char p)
5854               (if (search-forward "\nfrom:" nil t)
5855                   (nnheader-header-value)
5856                 "(nobody)"))
5857             ;; Date.
5858             (progn
5859               (goto-char p)
5860               (if (search-forward "\ndate:" nil t)
5861                   (nnheader-header-value) ""))
5862             ;; Message-ID.
5863             (progn
5864               (goto-char p)
5865               (setq id (if (re-search-forward
5866                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
5867                            ;; We do it this way to make sure the Message-ID
5868                            ;; is (somewhat) syntactically valid.
5869                            (buffer-substring (match-beginning 1)
5870                                              (match-end 1))
5871                          ;; If there was no message-id, we just fake one
5872                          ;; to make subsequent routines simpler.
5873                          (nnheader-generate-fake-message-id number))))
5874             ;; References.
5875             (progn
5876               (goto-char p)
5877               (if (search-forward "\nreferences:" nil t)
5878                   (progn
5879                     (setq end (point))
5880                     (prog1
5881                         (nnheader-header-value)
5882                       (setq ref
5883                             (buffer-substring
5884                              (progn
5885                                ;; (end-of-line)
5886                                (search-backward ">" end t)
5887                                (1+ (point)))
5888                              (progn
5889                                (search-backward "<" end t)
5890                                (point))))))
5891                 ;; Get the references from the in-reply-to header if there
5892                 ;; were no references and the in-reply-to header looks
5893                 ;; promising.
5894                 (if (and (search-forward "\nin-reply-to:" nil t)
5895                          (setq in-reply-to (nnheader-header-value))
5896                          (string-match "<[^>]+>" in-reply-to))
5897                     (let (ref2)
5898                       (setq ref (substring in-reply-to (match-beginning 0)
5899                                            (match-end 0)))
5900                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
5901                         (setq ref2 (substring in-reply-to (match-beginning 0)
5902                                               (match-end 0)))
5903                         (when (> (length ref2) (length ref))
5904                           (setq ref ref2)))
5905                       ref)
5906                   (setq ref nil))))
5907             ;; Chars.
5908             (progn
5909               (goto-char p)
5910               (if (search-forward "\nchars: " nil t)
5911                   (if (numberp (setq chars (ignore-errors (read cur))))
5912                       chars -1)
5913                 -1))
5914             ;; Lines.
5915             (progn
5916               (goto-char p)
5917               (if (search-forward "\nlines: " nil t)
5918                   (if (numberp (setq lines (ignore-errors (read cur))))
5919                       lines -1)
5920                 -1))
5921             ;; Xref.
5922             (progn
5923               (goto-char p)
5924               (and (search-forward "\nxref:" nil t)
5925                    (nnheader-header-value)))
5926             ;; Extra.
5927             (when gnus-extra-headers
5928               (let ((extra gnus-extra-headers)
5929                     out)
5930                 (while extra
5931                   (goto-char p)
5932                   (when (search-forward
5933                          (concat "\n" (symbol-name (car extra)) ":") nil t)
5934                     (push (cons (car extra) (nnheader-header-value)) out))
5935                   (pop extra))
5936                 out))))
5937           (goto-char p)
5938           (if (and (search-forward "\ncontent-type: " nil t)
5939                    (setq ctype (nnheader-header-value)))
5940               (mime-entity-set-content-type-internal
5941                header (mime-parse-Content-Type ctype)))
5942           (when (equal id ref)
5943             (setq ref nil))
5944
5945           (when gnus-alter-header-function
5946             (funcall gnus-alter-header-function header)
5947             (setq id (mail-header-id header)
5948                   ref (gnus-parent-id (mail-header-references header))))
5949
5950           (when (setq header
5951                       (gnus-dependencies-add-header
5952                        header dependencies force-new))
5953             (push header headers))
5954           (goto-char (point-max))
5955           (widen))
5956         (nreverse headers)))))
5957
5958 ;; Goes through the xover lines and returns a list of vectors
5959 (defun gnus-get-newsgroup-headers-xover (sequence &optional
5960                                                   force-new dependencies
5961                                                   group also-fetch-heads)
5962   "Parse the news overview data in the server buffer.
5963 Return a list of headers that match SEQUENCE (see
5964 `nntp-retrieve-headers')."
5965   ;; Get the Xref when the users reads the articles since most/some
5966   ;; NNTP servers do not include Xrefs when using XOVER.
5967   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
5968   (let ((mail-parse-charset gnus-newsgroup-charset)
5969         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
5970         (cur nntp-server-buffer)
5971         (dependencies (or dependencies gnus-newsgroup-dependencies))
5972         (allp (cond
5973                ((eq gnus-read-all-available-headers t)
5974                 t)
5975                ((stringp gnus-read-all-available-headers)
5976                 (string-match gnus-read-all-available-headers group))
5977                (t
5978                 nil)))
5979         number headers header)
5980     (save-excursion
5981       (set-buffer nntp-server-buffer)
5982       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5983       ;; Allow the user to mangle the headers before parsing them.
5984       (gnus-run-hooks 'gnus-parse-headers-hook)
5985       (goto-char (point-min))
5986       (gnus-parse-without-error
5987         (while (and (or sequence allp)
5988                     (not (eobp)))
5989           (setq number (read cur))
5990           (when (not allp)
5991             (while (and sequence
5992                         (< (car sequence) number))
5993               (setq sequence (cdr sequence))))
5994           (when (and (or allp
5995                          (and sequence
5996                               (eq number (car sequence))))
5997                      (progn
5998                        (setq sequence (cdr sequence))
5999                        (setq header (inline
6000                                       (gnus-nov-parse-line
6001                                        number dependencies force-new)))))
6002             (push header headers))
6003           (forward-line 1)))
6004       ;; A common bug in inn is that if you have posted an article and
6005       ;; then retrieves the active file, it will answer correctly --
6006       ;; the new article is included.  However, a NOV entry for the
6007       ;; article may not have been generated yet, so this may fail.
6008       ;; We work around this problem by retrieving the last few
6009       ;; headers using HEAD.
6010       (if (or (not also-fetch-heads)
6011               (not sequence))
6012           ;; We (probably) got all the headers.
6013           (nreverse headers)
6014         (let ((gnus-nov-is-evil t))
6015           (nconc
6016            (nreverse headers)
6017            (when (eq (gnus-retrieve-headers sequence group) 'headers)
6018              (gnus-get-newsgroup-headers))))))))
6019
6020 (defun gnus-article-get-xrefs ()
6021   "Fill in the Xref value in `gnus-current-headers', if necessary.
6022 This is meant to be called in `gnus-article-internal-prepare-hook'."
6023   (let ((headers (with-current-buffer gnus-summary-buffer
6024                    gnus-current-headers)))
6025     (or (not gnus-use-cross-reference)
6026         (not headers)
6027         (and (mail-header-xref headers)
6028              (not (string= (mail-header-xref headers) "")))
6029         (let ((case-fold-search t)
6030               xref)
6031           (save-restriction
6032             (nnheader-narrow-to-headers)
6033             (goto-char (point-min))
6034             (when (or (and (not (eobp))
6035                            (eq (downcase (char-after)) ?x)
6036                            (looking-at "Xref:"))
6037                       (search-forward "\nXref:" nil t))
6038               (goto-char (1+ (match-end 0)))
6039               (setq xref (buffer-substring (point) (point-at-eol)))
6040               (mail-header-set-xref headers xref)))))))
6041
6042 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
6043   "Find article ID and insert the summary line for that article.
6044 OLD-HEADER can either be a header or a line number to insert
6045 the subject line on."
6046   (let* ((line (and (numberp old-header) old-header))
6047          (old-header (and (vectorp old-header) old-header))
6048          (header (cond ((and old-header use-old-header)
6049                         old-header)
6050                        ((and (numberp id)
6051                              (gnus-number-to-header id))
6052                         (gnus-number-to-header id))
6053                        (t
6054                         (gnus-read-header id))))
6055          (number (and (numberp id) id))
6056          d)
6057     (when header
6058       ;; Rebuild the thread that this article is part of and go to the
6059       ;; article we have fetched.
6060       (when (and (not gnus-show-threads)
6061                  old-header)
6062         (when (and number
6063                    (setq d (gnus-data-find (mail-header-number old-header))))
6064           (goto-char (gnus-data-pos d))
6065           (gnus-data-remove
6066            number
6067            (- (point-at-bol)
6068               (prog1
6069                   (1+ (point-at-eol))
6070                 (gnus-delete-line))))))
6071       ;; Remove list identifiers from subject.
6072       (when gnus-list-identifiers
6073         (let ((gnus-newsgroup-headers (list header)))
6074           (gnus-summary-remove-list-identifiers)))
6075       (when old-header
6076         (mail-header-set-number header (mail-header-number old-header)))
6077       (setq gnus-newsgroup-sparse
6078             (delq (setq number (mail-header-number header))
6079                   gnus-newsgroup-sparse))
6080       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
6081       (push number gnus-newsgroup-limit)
6082       (gnus-rebuild-thread (mail-header-id header) line)
6083       (gnus-summary-goto-subject number nil t))
6084     (when (and (numberp number)
6085                (> number 0))
6086       ;; We have to update the boundaries even if we can't fetch the
6087       ;; article if ID is a number -- so that the next `P' or `N'
6088       ;; command will fetch the previous (or next) article even
6089       ;; if the one we tried to fetch this time has been canceled.
6090       (when (> number gnus-newsgroup-end)
6091         (setq gnus-newsgroup-end number))
6092       (when (< number gnus-newsgroup-begin)
6093         (setq gnus-newsgroup-begin number))
6094       (setq gnus-newsgroup-unselected
6095             (delq number gnus-newsgroup-unselected)))
6096     ;; Report back a success?
6097     (and header (mail-header-number header))))
6098
6099 ;;; Process/prefix in the summary buffer
6100
6101 (defun gnus-summary-work-articles (n)
6102   "Return a list of articles to be worked upon.
6103 The prefix argument, the list of process marked articles, and the
6104 current article will be taken into consideration."
6105   (save-excursion
6106     (set-buffer gnus-summary-buffer)
6107     (cond
6108      (n
6109       ;; A numerical prefix has been given.
6110       (setq n (prefix-numeric-value n))
6111       (let ((backward (< n 0))
6112             (n (abs (prefix-numeric-value n)))
6113             articles article)
6114         (save-excursion
6115           (while
6116               (and (> n 0)
6117                    (push (setq article (gnus-summary-article-number))
6118                          articles)
6119                    (if backward
6120                        (gnus-summary-find-prev nil article)
6121                      (gnus-summary-find-next nil article)))
6122             (decf n)))
6123         (nreverse articles)))
6124      ((and (gnus-region-active-p) (mark))
6125       (message "region active")
6126       ;; Work on the region between point and mark.
6127       (let ((max (max (point) (mark)))
6128             articles article)
6129         (save-excursion
6130           (goto-char (min (point) (mark)))
6131           (while
6132               (and
6133                (push (setq article (gnus-summary-article-number)) articles)
6134                (gnus-summary-find-next nil article)
6135                (< (point) max)))
6136           (nreverse articles))))
6137      (gnus-newsgroup-processable
6138       ;; There are process-marked articles present.
6139       ;; Save current state.
6140       (gnus-summary-save-process-mark)
6141       ;; Return the list.
6142       (reverse gnus-newsgroup-processable))
6143      (t
6144       ;; Just return the current article.
6145       (list (gnus-summary-article-number))))))
6146
6147 (defmacro gnus-summary-iterate (arg &rest forms)
6148   "Iterate over the process/prefixed articles and do FORMS.
6149 ARG is the interactive prefix given to the command.  FORMS will be
6150 executed with point over the summary line of the articles."
6151   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6152     `(let ((,articles (gnus-summary-work-articles ,arg)))
6153        (while ,articles
6154          (gnus-summary-goto-subject (car ,articles))
6155          ,@forms
6156          (pop ,articles)))))
6157
6158 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6159 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6160
6161 (defun gnus-summary-save-process-mark ()
6162   "Push the current set of process marked articles on the stack."
6163   (interactive)
6164   (push (copy-sequence gnus-newsgroup-processable)
6165         gnus-newsgroup-process-stack))
6166
6167 (defun gnus-summary-kill-process-mark ()
6168   "Push the current set of process marked articles on the stack and unmark."
6169   (interactive)
6170   (gnus-summary-save-process-mark)
6171   (gnus-summary-unmark-all-processable))
6172
6173 (defun gnus-summary-yank-process-mark ()
6174   "Pop the last process mark state off the stack and restore it."
6175   (interactive)
6176   (unless gnus-newsgroup-process-stack
6177     (error "Empty mark stack"))
6178   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6179
6180 (defun gnus-summary-process-mark-set (set)
6181   "Make SET into the current process marked articles."
6182   (gnus-summary-unmark-all-processable)
6183   (mapc 'gnus-summary-set-process-mark set))
6184
6185 ;;; Searching and stuff
6186
6187 (defun gnus-summary-search-group (&optional backward use-level)
6188   "Search for next unread newsgroup.
6189 If optional argument BACKWARD is non-nil, search backward instead."
6190   (save-excursion
6191     (set-buffer gnus-group-buffer)
6192     (when (gnus-group-search-forward
6193            backward nil (if use-level (gnus-group-group-level) nil))
6194       (gnus-group-group-name))))
6195
6196 (defun gnus-summary-best-group (&optional exclude-group)
6197   "Find the name of the best unread group.
6198 If EXCLUDE-GROUP, do not go to this group."
6199   (with-current-buffer gnus-group-buffer
6200     (save-excursion
6201       (gnus-group-best-unread-group exclude-group))))
6202
6203 (defun gnus-summary-find-next (&optional unread article backward)
6204   (if backward
6205       (gnus-summary-find-prev unread article)
6206     (let* ((dummy (gnus-summary-article-intangible-p))
6207            (article (or article (gnus-summary-article-number)))
6208            (data (gnus-data-find-list article))
6209            result)
6210       (when (and (not dummy)
6211                  (or (not gnus-summary-check-current)
6212                      (not unread)
6213                      (not (gnus-data-unread-p (car data)))))
6214         (setq data (cdr data)))
6215       (when (setq result
6216                   (if unread
6217                       (progn
6218                         (while data
6219                           (unless (memq (gnus-data-number (car data))
6220                                         (cond
6221                                          ((eq gnus-auto-goto-ignores
6222                                               'always-undownloaded)
6223                                           gnus-newsgroup-undownloaded)
6224                                          (gnus-plugged
6225                                           nil)
6226                                          ((eq gnus-auto-goto-ignores
6227                                               'unfetched)
6228                                           gnus-newsgroup-unfetched)
6229                                          ((eq gnus-auto-goto-ignores
6230                                               'undownloaded)
6231                                           gnus-newsgroup-undownloaded)))
6232                             (when (gnus-data-unread-p (car data))
6233                               (setq result (car data)
6234                                     data nil)))
6235                           (setq data (cdr data)))
6236                         result)
6237                     (car data)))
6238         (goto-char (gnus-data-pos result))
6239         (gnus-data-number result)))))
6240
6241 (defun gnus-summary-find-prev (&optional unread article)
6242   (let* ((eobp (eobp))
6243          (article (or article (gnus-summary-article-number)))
6244          (data (gnus-data-find-list article (gnus-data-list 'rev)))
6245          result)
6246     (when (and (not eobp)
6247                (or (not gnus-summary-check-current)
6248                    (not unread)
6249                    (not (gnus-data-unread-p (car data)))))
6250       (setq data (cdr data)))
6251     (when (setq result
6252                 (if unread
6253                     (progn
6254                       (while data
6255                         (unless (memq (gnus-data-number (car data))
6256                                       (cond
6257                                        ((eq gnus-auto-goto-ignores
6258                                             'always-undownloaded)
6259                                         gnus-newsgroup-undownloaded)
6260                                        (gnus-plugged
6261                                         nil)
6262                                        ((eq gnus-auto-goto-ignores
6263                                             'unfetched)
6264                                         gnus-newsgroup-unfetched)
6265                                        ((eq gnus-auto-goto-ignores
6266                                             'undownloaded)
6267                                         gnus-newsgroup-undownloaded)))
6268                           (when (gnus-data-unread-p (car data))
6269                             (setq result (car data)
6270                                   data nil)))
6271                         (setq data (cdr data)))
6272                       result)
6273                   (car data)))
6274       (goto-char (gnus-data-pos result))
6275       (gnus-data-number result))))
6276
6277 (defun gnus-summary-find-subject (subject &optional unread backward article)
6278   (let* ((simp-subject (gnus-simplify-subject-fully subject))
6279          (article (or article (gnus-summary-article-number)))
6280          (articles (gnus-data-list backward))
6281          (arts (gnus-data-find-list article articles))
6282          result)
6283     (when (or (not gnus-summary-check-current)
6284               (not unread)
6285               (not (gnus-data-unread-p (car arts))))
6286       (setq arts (cdr arts)))
6287     (while arts
6288       (and (or (not unread)
6289                (gnus-data-unread-p (car arts)))
6290            (vectorp (gnus-data-header (car arts)))
6291            (gnus-subject-equal
6292             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6293            (setq result (car arts)
6294                  arts nil))
6295       (setq arts (cdr arts)))
6296     (and result
6297          (goto-char (gnus-data-pos result))
6298          (gnus-data-number result))))
6299
6300 (defun gnus-summary-search-forward (&optional unread subject backward)
6301   "Search forward for an article.
6302 If UNREAD, look for unread articles.  If SUBJECT, look for
6303 articles with that subject.  If BACKWARD, search backward instead."
6304   (cond (subject (gnus-summary-find-subject subject unread backward))
6305         (backward (gnus-summary-find-prev unread))
6306         (t (gnus-summary-find-next unread))))
6307
6308 (defun gnus-recenter (&optional n)
6309   "Center point in window and redisplay frame.
6310 Also do horizontal recentering."
6311   (interactive "P")
6312   (when (and gnus-auto-center-summary
6313              (not (eq gnus-auto-center-summary 'vertical)))
6314     (gnus-horizontal-recenter))
6315   (recenter n))
6316
6317 (defun gnus-summary-recenter ()
6318   "Center point in the summary window.
6319 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6320 displayed, no centering will be performed."
6321   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6322   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
6323   (interactive)
6324   ;; The user has to want it.
6325   (when gnus-auto-center-summary
6326     (let* ((top (cond ((< (window-height) 4) 0)
6327                       ((< (window-height) 7) 1)
6328                       (t (if (numberp gnus-auto-center-summary)
6329                              gnus-auto-center-summary
6330                            (/ (1- (window-height)) 2)))))
6331            (height (1- (window-height)))
6332            (bottom (save-excursion (goto-char (point-max))
6333                                    (forward-line (- height))
6334                                    (point)))
6335            (window (get-buffer-window (current-buffer))))
6336       (when (get-buffer-window gnus-article-buffer)
6337         ;; Only do recentering when the article buffer is displayed,
6338         ;; Set the window start to either `bottom', which is the biggest
6339         ;; possible valid number, or the second line from the top,
6340         ;; whichever is the least.
6341         (let ((top-pos (save-excursion (forward-line (- top)) (point))))
6342           (if (> bottom top-pos)
6343               ;; Keep the second line from the top visible
6344               (set-window-start window top-pos t)
6345             ;; Try to keep the bottom line visible; if it's partially
6346             ;; obscured, either scroll one more line to make it fully
6347             ;; visible, or revert to using TOP-POS.
6348             (save-excursion
6349               (goto-char (point-max))
6350               (forward-line -1)
6351               (let ((last-line-start (point)))
6352                 (goto-char bottom)
6353                 (set-window-start window (point) t)
6354                 (when (not (pos-visible-in-window-p last-line-start window))
6355                   (forward-line 1)
6356                   (set-window-start window (min (point) top-pos) t)))))))
6357       ;; Do horizontal recentering while we're at it.
6358       (when (and (get-buffer-window (current-buffer) t)
6359                  (not (eq gnus-auto-center-summary 'vertical)))
6360         (let ((selected (selected-window)))
6361           (select-window (get-buffer-window (current-buffer) t))
6362           (gnus-summary-position-point)
6363           (gnus-horizontal-recenter)
6364           (select-window selected))))))
6365
6366 (defun gnus-summary-jump-to-group (newsgroup)
6367   "Move point to NEWSGROUP in group mode buffer."
6368   ;; Keep update point of group mode buffer if visible.
6369   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6370       (save-window-excursion
6371         ;; Take care of tree window mode.
6372         (when (get-buffer-window gnus-group-buffer)
6373           (pop-to-buffer gnus-group-buffer))
6374         (gnus-group-jump-to-group newsgroup))
6375     (save-excursion
6376       ;; Take care of tree window mode.
6377       (if (get-buffer-window gnus-group-buffer)
6378           (pop-to-buffer gnus-group-buffer)
6379         (set-buffer gnus-group-buffer))
6380       (gnus-group-jump-to-group newsgroup))))
6381
6382 ;; This function returns a list of article numbers based on the
6383 ;; difference between the ranges of read articles in this group and
6384 ;; the range of active articles.
6385 (defun gnus-list-of-unread-articles (group)
6386   (let* ((read (gnus-info-read (gnus-get-info group)))
6387          (active (or (gnus-active group) (gnus-activate-group group)))
6388          (last (cdr active))
6389          first nlast unread)
6390     ;; If none are read, then all are unread.
6391     (if (not read)
6392         (setq first (car active))
6393       ;; If the range of read articles is a single range, then the
6394       ;; first unread article is the article after the last read
6395       ;; article.  Sounds logical, doesn't it?
6396       (if (and (not (listp (cdr read)))
6397                (or (< (car read) (car active))
6398                    (progn (setq read (list read))
6399                           nil)))
6400           (setq first (max (car active) (1+ (cdr read))))
6401         ;; `read' is a list of ranges.
6402         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6403                                   (caar read)))
6404                   1)
6405           (setq first (car active)))
6406         (while read
6407           (when first
6408             (while (< first nlast)
6409               (setq unread (cons first unread)
6410                     first (1+ first))))
6411           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6412           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6413           (setq read (cdr read)))))
6414     ;; And add the last unread articles.
6415     (while (<= first last)
6416       (setq unread (cons first unread)
6417             first (1+ first)))
6418     ;; Return the list of unread articles.
6419     (delq 0 (nreverse unread))))
6420
6421 (defun gnus-list-of-read-articles (group)
6422   "Return a list of unread, unticked and non-dormant articles."
6423   (let* ((info (gnus-get-info group))
6424          (marked (gnus-info-marks info))
6425          (active (gnus-active group)))
6426     (and info active
6427          (gnus-list-range-difference
6428           (gnus-list-range-difference
6429            (gnus-sorted-complement
6430             (gnus-uncompress-range active)
6431             (gnus-list-of-unread-articles group))
6432            (cdr (assq 'dormant marked)))
6433           (cdr (assq 'tick marked))))))
6434
6435 ;; This function returns a sequence of article numbers based on the
6436 ;; difference between the ranges of read articles in this group and
6437 ;; the range of active articles.
6438 (defun gnus-sequence-of-unread-articles (group)
6439   (let* ((read (gnus-info-read (gnus-get-info group)))
6440          (active (or (gnus-active group) (gnus-activate-group group)))
6441          (last (cdr active))
6442          first nlast unread)
6443     ;; If none are read, then all are unread.
6444     (if (not read)
6445         (setq first (car active))
6446       ;; If the range of read articles is a single range, then the
6447       ;; first unread article is the article after the last read
6448       ;; article.  Sounds logical, doesn't it?
6449       (if (and (not (listp (cdr read)))
6450                (or (< (car read) (car active))
6451                    (progn (setq read (list read))
6452                           nil)))
6453           (setq first (max (car active) (1+ (cdr read))))
6454         ;; `read' is a list of ranges.
6455         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6456                                   (caar read)))
6457                   1)
6458           (setq first (car active)))
6459         (while read
6460           (when first
6461             (push (cons first nlast) unread))
6462           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6463           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6464           (setq read (cdr read)))))
6465     ;; And add the last unread articles.
6466     (cond ((< first last)
6467            (push (cons first last) unread))
6468           ((= first last)
6469            (push first unread)))
6470     ;; Return the sequence of unread articles.
6471     (delq 0 (nreverse unread))))
6472
6473 ;; Various summary commands
6474
6475 (defun gnus-summary-select-article-buffer ()
6476   "Reconfigure windows to show article buffer."
6477   (interactive)
6478   (if (not (gnus-buffer-live-p gnus-article-buffer))
6479       (error "There is no article buffer for this summary buffer")
6480     (gnus-configure-windows 'article)
6481     (select-window (get-buffer-window gnus-article-buffer))))
6482
6483 (defun gnus-summary-universal-argument (arg)
6484   "Perform any operation on all articles that are process/prefixed."
6485   (interactive "P")
6486   (let ((articles (gnus-summary-work-articles arg))
6487         func article)
6488     (if (eq
6489          (setq
6490           func
6491           (key-binding
6492            (read-key-sequence
6493             (substitute-command-keys
6494              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6495          'undefined)
6496         (gnus-error 1 "Undefined key")
6497       (save-excursion
6498         (while articles
6499           (gnus-summary-goto-subject (setq article (pop articles)))
6500           (let (gnus-newsgroup-processable)
6501             (command-execute func))
6502           (gnus-summary-remove-process-mark article)))))
6503   (gnus-summary-position-point))
6504
6505 (defun gnus-summary-toggle-truncation (&optional arg)
6506   "Toggle truncation of summary lines.
6507 With ARG, turn line truncation on if ARG is positive."
6508   (interactive "P")
6509   (setq truncate-lines
6510         (if (null arg) (not truncate-lines)
6511           (> (prefix-numeric-value arg) 0)))
6512   (redraw-display))
6513
6514 (defun gnus-summary-find-for-reselect ()
6515   "Return the number of an article to stay on across a reselect.
6516 The current article is considered, then following articles, then previous
6517 articles.  An article is sought which is not cancelled and isn't a temporary
6518 insertion from another group.  If there's no such then return a dummy 0."
6519   (let (found)
6520     (dolist (rev '(nil t))
6521       (unless found      ; don't demand the reverse list if we don't need it
6522         (let ((data (gnus-data-find-list
6523                      (gnus-summary-article-number) (gnus-data-list rev))))
6524           (while (and data (not found))
6525             (if (and (< 0 (gnus-data-number (car data)))
6526                      (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6527                 (setq found (gnus-data-number (car data))))
6528             (setq data (cdr data))))))
6529     (or found 0)))
6530
6531 (defun gnus-summary-reselect-current-group (&optional all rescan)
6532   "Exit and then reselect the current newsgroup.
6533 The prefix argument ALL means to select all articles."
6534   (interactive "P")
6535   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6536     (error "Ephemeral groups can't be reselected"))
6537   (let ((current-subject (gnus-summary-find-for-reselect))
6538         (group gnus-newsgroup-name))
6539     (setq gnus-newsgroup-begin nil)
6540     (gnus-summary-exit nil 'leave-hidden)
6541     ;; We have to adjust the point of group mode buffer because
6542     ;; point was moved to the next unread newsgroup by exiting.
6543     (gnus-summary-jump-to-group group)
6544     (when rescan
6545       (save-excursion
6546         (save-window-excursion
6547           ;; Don't show group contents.
6548           (set-window-start (selected-window) (point-max))
6549           (gnus-group-get-new-news-this-group 1))))
6550     (gnus-group-read-group all t)
6551     (gnus-summary-goto-subject current-subject nil t)))
6552
6553 (defun gnus-summary-rescan-group (&optional all)
6554   "Exit the newsgroup, ask for new articles, and select the newsgroup."
6555   (interactive "P")
6556   (gnus-summary-reselect-current-group all t))
6557
6558 (defun gnus-summary-update-info (&optional non-destructive)
6559   (save-excursion
6560     (let ((group gnus-newsgroup-name))
6561       (when group
6562         (when gnus-newsgroup-kill-headers
6563           (setq gnus-newsgroup-killed
6564                 (gnus-compress-sequence
6565                  (gnus-sorted-union
6566                   (gnus-list-range-intersection
6567                    gnus-newsgroup-unselected gnus-newsgroup-killed)
6568                   gnus-newsgroup-unreads)
6569                  t)))
6570         (unless (listp (cdr gnus-newsgroup-killed))
6571           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
6572         (let ((headers gnus-newsgroup-headers))
6573           ;; Set the new ranges of read articles.
6574           (with-current-buffer gnus-group-buffer
6575             (gnus-undo-force-boundary))
6576           (gnus-update-read-articles
6577            group (gnus-sorted-union
6578                   gnus-newsgroup-unreads gnus-newsgroup-unselected))
6579           ;; Set the current article marks.
6580           (let ((gnus-newsgroup-scored
6581                  (if (and (not gnus-save-score)
6582                           (not non-destructive))
6583                      nil
6584                    gnus-newsgroup-scored)))
6585             (save-excursion
6586               (gnus-update-marks)))
6587           ;; Do the cross-ref thing.
6588           (when gnus-use-cross-reference
6589             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
6590           ;; Do not switch windows but change the buffer to work.
6591           (set-buffer gnus-group-buffer)
6592           (unless (gnus-ephemeral-group-p group)
6593             (gnus-group-update-group group)))))))
6594
6595 (defun gnus-summary-save-newsrc (&optional force)
6596   "Save the current number of read/marked articles in the dribble buffer.
6597 The dribble buffer will then be saved.
6598 If FORCE (the prefix), also save the .newsrc file(s)."
6599   (interactive "P")
6600   (gnus-summary-update-info t)
6601   (if force
6602       (gnus-save-newsrc-file)
6603     (gnus-dribble-save)))
6604
6605 (defun gnus-summary-exit (&optional temporary leave-hidden)
6606   "Exit reading current newsgroup, and then return to group selection mode.
6607 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
6608   (interactive)
6609   (gnus-set-global-variables)
6610   (gnus-kill-save-kill-buffer)
6611   (gnus-async-halt-prefetch)
6612   (let* ((group gnus-newsgroup-name)
6613          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
6614          (gnus-group-is-exiting-p t)
6615          (mode major-mode)
6616          (group-point nil)
6617          (buf (current-buffer)))
6618     (unless quit-config
6619       ;; Do adaptive scoring, and possibly save score files.
6620       (when gnus-newsgroup-adaptive
6621         (gnus-score-adaptive))
6622       (when gnus-use-scoring
6623         (gnus-score-save)))
6624     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
6625     ;; If we have several article buffers, we kill them at exit.
6626     (unless gnus-single-article-buffer
6627       (gnus-kill-buffer gnus-original-article-buffer)
6628       (setq gnus-article-current nil))
6629     (when gnus-use-cache
6630       (gnus-cache-possibly-remove-articles)
6631       (gnus-cache-save-buffers))
6632     (gnus-async-prefetch-remove-group group)
6633     (when gnus-suppress-duplicates
6634       (gnus-dup-enter-articles))
6635     (when gnus-use-trees
6636       (gnus-tree-close group))
6637     (when gnus-use-cache
6638       (gnus-cache-write-active))
6639     ;; Remove entries for this group.
6640     (nnmail-purge-split-history (gnus-group-real-name group))
6641     ;; Make all changes in this group permanent.
6642     (unless quit-config
6643       (gnus-run-hooks 'gnus-exit-group-hook)
6644       (gnus-summary-update-info))
6645     (gnus-close-group group)
6646     ;; Make sure where we were, and go to next newsgroup.
6647     (set-buffer gnus-group-buffer)
6648     (unless quit-config
6649       (gnus-group-jump-to-group group))
6650     (gnus-run-hooks 'gnus-summary-exit-hook)
6651     (unless (or quit-config
6652                 ;; If this group has disappeared from the summary
6653                 ;; buffer, don't skip forwards.
6654                 (not (string= group (gnus-group-group-name))))
6655       (gnus-group-next-unread-group 1))
6656     (setq group-point (point))
6657     (if temporary
6658         nil                             ;Nothing to do.
6659       ;; If we have several article buffers, we kill them at exit.
6660       (unless gnus-single-article-buffer
6661         (gnus-kill-buffer gnus-article-buffer)
6662         (gnus-kill-buffer gnus-original-article-buffer)
6663         (setq gnus-article-current nil))
6664       (set-buffer buf)
6665       (if (not gnus-kill-summary-on-exit)
6666           (progn
6667             (gnus-deaden-summary)
6668             (setq mode nil))
6669         ;; We set all buffer-local variables to nil.  It is unclear why
6670         ;; this is needed, but if we don't, buffer-local variables are
6671         ;; not garbage-collected, it seems.  This would the lead to en
6672         ;; ever-growing Emacs.
6673         (gnus-summary-clear-local-variables)
6674         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6675           (gnus-summary-clear-local-variables))
6676         (when (get-buffer gnus-article-buffer)
6677           (bury-buffer gnus-article-buffer))
6678         ;; We clear the global counterparts of the buffer-local
6679         ;; variables as well, just to be on the safe side.
6680         (set-buffer gnus-group-buffer)
6681         (gnus-summary-clear-local-variables)
6682         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6683           (gnus-summary-clear-local-variables))
6684         ;; Return to group mode buffer.
6685         (when (eq mode 'gnus-summary-mode)
6686           (gnus-kill-buffer buf)))
6687       (setq gnus-current-select-method gnus-select-method)
6688       (if leave-hidden
6689           (set-buffer gnus-group-buffer)
6690         (pop-to-buffer gnus-group-buffer))
6691       (if (not quit-config)
6692           (progn
6693             (goto-char group-point)
6694             (unless leave-hidden
6695               (gnus-configure-windows 'group 'force))
6696             (unless (pos-visible-in-window-p)
6697               (forward-line (/ (static-if (featurep 'xemacs)
6698                                    (window-displayed-height)
6699                                  (1- (window-height)))
6700                                -2))
6701               (set-window-start (selected-window) (point))
6702               (goto-char group-point)))
6703         (gnus-handle-ephemeral-exit quit-config))
6704       ;; Clear the current group name.
6705       (unless quit-config
6706         (setq gnus-newsgroup-name nil)))))
6707
6708 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
6709 (defun gnus-summary-exit-no-update (&optional no-questions)
6710   "Quit reading current newsgroup without updating read article info."
6711   (interactive)
6712   (let* ((group gnus-newsgroup-name)
6713          (gnus-group-is-exiting-p t)
6714          (gnus-group-is-exiting-without-update-p t)
6715          (quit-config (gnus-group-quit-config group)))
6716     (when (or no-questions
6717               gnus-expert-user
6718               (gnus-y-or-n-p "Discard changes to this group and exit? "))
6719       (gnus-async-halt-prefetch)
6720       (run-hooks 'gnus-summary-prepare-exit-hook)
6721       ;; If we have several article buffers, we kill them at exit.
6722       (unless gnus-single-article-buffer
6723         (gnus-kill-buffer gnus-article-buffer)
6724         (gnus-kill-buffer gnus-original-article-buffer)
6725         (setq gnus-article-current nil))
6726       (if (not gnus-kill-summary-on-exit)
6727           (gnus-deaden-summary)
6728         (gnus-close-group group)
6729         (gnus-summary-clear-local-variables)
6730         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6731           (gnus-summary-clear-local-variables))
6732         (set-buffer gnus-group-buffer)
6733         (gnus-summary-clear-local-variables)
6734         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6735           (gnus-summary-clear-local-variables))
6736         (gnus-kill-buffer gnus-summary-buffer))
6737       (unless gnus-single-article-buffer
6738         (setq gnus-article-current nil))
6739       (when gnus-use-trees
6740         (gnus-tree-close group))
6741       (gnus-async-prefetch-remove-group group)
6742       (when (get-buffer gnus-article-buffer)
6743         (bury-buffer gnus-article-buffer))
6744       ;; Return to the group buffer.
6745       (gnus-configure-windows 'group 'force)
6746       ;; Clear the current group name.
6747       (setq gnus-newsgroup-name nil)
6748       (unless (gnus-ephemeral-group-p group)
6749         (gnus-group-update-group group))
6750       (when (equal (gnus-group-group-name) group)
6751         (gnus-group-next-unread-group 1))
6752       (when quit-config
6753         (gnus-handle-ephemeral-exit quit-config)))))
6754
6755 (defun gnus-handle-ephemeral-exit (quit-config)
6756   "Handle movement when leaving an ephemeral group.
6757 The state which existed when entering the ephemeral is reset."
6758   (if (not (buffer-name (car quit-config)))
6759       (gnus-configure-windows 'group 'force)
6760     (set-buffer (car quit-config))
6761     (cond ((eq major-mode 'gnus-summary-mode)
6762            (gnus-set-global-variables))
6763           ((eq major-mode 'gnus-article-mode)
6764            (save-excursion
6765              ;; The `gnus-summary-buffer' variable may point
6766              ;; to the old summary buffer when using a single
6767              ;; article buffer.
6768              (unless (gnus-buffer-live-p gnus-summary-buffer)
6769                (set-buffer gnus-group-buffer))
6770              (set-buffer gnus-summary-buffer)
6771              (gnus-set-global-variables))))
6772     (if (or (eq (cdr quit-config) 'article)
6773             (eq (cdr quit-config) 'pick))
6774         (progn
6775           ;; The current article may be from the ephemeral group
6776           ;; thus it is best that we reload this article
6777           ;;
6778           ;; If we're exiting from a large digest, this can be
6779           ;; extremely slow.  So, it's better not to reload it. -- jh.
6780           ;;(gnus-summary-show-article)
6781           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
6782               (gnus-configure-windows 'pick 'force)
6783             (gnus-configure-windows (cdr quit-config) 'force)))
6784       (gnus-configure-windows (cdr quit-config) 'force))
6785     (when (eq major-mode 'gnus-summary-mode)
6786       (gnus-summary-next-subject 1 nil t)
6787       (gnus-summary-recenter)
6788       (gnus-summary-position-point))))
6789
6790 (defun gnus-summary-preview-mime-message ()
6791   "MIME decode and play this message."
6792   (interactive)
6793   (let ((gnus-break-pages nil)
6794         (gnus-show-mime t))
6795     (gnus-summary-select-article gnus-show-all-headers t))
6796   (let ((w (get-buffer-window gnus-article-buffer)))
6797     (when w
6798       (select-window (get-buffer-window gnus-article-buffer)))))
6799
6800 ;;; Dead summaries.
6801
6802 (defvar gnus-dead-summary-mode-map nil)
6803
6804 (unless gnus-dead-summary-mode-map
6805   (setq gnus-dead-summary-mode-map (make-keymap))
6806   (suppress-keymap gnus-dead-summary-mode-map)
6807   (substitute-key-definition
6808    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
6809   (dolist (key '("\C-d" "\r" "\177" [delete]))
6810     (define-key gnus-dead-summary-mode-map
6811       key 'gnus-summary-wake-up-the-dead))
6812   (dolist (key '("q" "Q"))
6813     (define-key gnus-dead-summary-mode-map key 'bury-buffer)))
6814
6815 (defvar gnus-dead-summary-mode nil
6816   "Minor mode for Gnus summary buffers.")
6817
6818 (defun gnus-dead-summary-mode (&optional arg)
6819   "Minor mode for Gnus summary buffers."
6820   (interactive "P")
6821   (when (eq major-mode 'gnus-summary-mode)
6822     (make-local-variable 'gnus-dead-summary-mode)
6823     (setq gnus-dead-summary-mode
6824           (if (null arg) (not gnus-dead-summary-mode)
6825             (> (prefix-numeric-value arg) 0)))
6826     (when gnus-dead-summary-mode
6827       (add-minor-mode
6828        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
6829
6830 (defun gnus-deaden-summary ()
6831   "Make the current summary buffer into a dead summary buffer."
6832   ;; Kill any previous dead summary buffer.
6833   (when (and gnus-dead-summary
6834              (buffer-name gnus-dead-summary))
6835     (with-current-buffer gnus-dead-summary
6836       (when gnus-dead-summary-mode
6837         (kill-buffer (current-buffer)))))
6838   ;; Make this the current dead summary.
6839   (setq gnus-dead-summary (current-buffer))
6840   (gnus-dead-summary-mode 1)
6841   (let ((name (buffer-name)))
6842     (when (string-match "Summary" name)
6843       (rename-buffer
6844        (concat (substring name 0 (match-beginning 0)) "Dead "
6845                (substring name (match-beginning 0)))
6846        t)
6847       (bury-buffer))))
6848
6849 (defun gnus-kill-or-deaden-summary (buffer)
6850   "Kill or deaden the summary BUFFER."
6851   (save-excursion
6852     (when (and (buffer-name buffer)
6853                (not gnus-single-article-buffer))
6854       (with-current-buffer buffer
6855         (gnus-kill-buffer gnus-article-buffer)
6856         (gnus-kill-buffer gnus-original-article-buffer)))
6857     (cond
6858      ;; Kill the buffer.
6859      (gnus-kill-summary-on-exit
6860       (when (and gnus-use-trees
6861                  (gnus-buffer-exists-p buffer))
6862         (save-excursion
6863           (set-buffer buffer)
6864           (gnus-tree-close gnus-newsgroup-name)))
6865       (gnus-kill-buffer buffer))
6866      ;; Deaden the buffer.
6867      ((gnus-buffer-exists-p buffer)
6868       (save-excursion
6869         (set-buffer buffer)
6870         (gnus-deaden-summary))))))
6871
6872 (defun gnus-summary-wake-up-the-dead (&rest args)
6873   "Wake up the dead summary buffer."
6874   (interactive)
6875   (gnus-dead-summary-mode -1)
6876   (let ((name (buffer-name)))
6877     (when (string-match "Dead " name)
6878       (rename-buffer
6879        (concat (substring name 0 (match-beginning 0))
6880                (substring name (match-end 0)))
6881        t)))
6882   (gnus-message 3 "This dead summary is now alive again"))
6883
6884 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
6885 (defun gnus-summary-fetch-faq (&optional faq-dir)
6886   "Fetch the FAQ for the current group.
6887 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
6888 in."
6889   (interactive
6890    (list
6891     (when current-prefix-arg
6892       (completing-read
6893        "FAQ dir: " (and (listp gnus-group-faq-directory)
6894                         (mapcar 'list
6895                                 gnus-group-faq-directory))))))
6896   (let (gnus-faq-buffer)
6897     (when (setq gnus-faq-buffer
6898                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
6899       (gnus-configure-windows 'summary-faq))))
6900
6901 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
6902 (defun gnus-summary-describe-group (&optional force)
6903   "Describe the current newsgroup."
6904   (interactive "P")
6905   (gnus-group-describe-group force gnus-newsgroup-name))
6906
6907 (defun gnus-summary-describe-briefly ()
6908   "Describe summary mode commands briefly."
6909   (interactive)
6910   (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")))
6911
6912 ;; Walking around group mode buffer from summary mode.
6913
6914 (defun gnus-summary-next-group (&optional no-article target-group backward)
6915   "Exit current newsgroup and then select next unread newsgroup.
6916 If prefix argument NO-ARTICLE is non-nil, no article is selected
6917 initially.  If TARGET-GROUP, go to this group.  If BACKWARD, go to
6918 previous group instead."
6919   (interactive "P")
6920   ;; Stop pre-fetching.
6921   (gnus-async-halt-prefetch)
6922   (let ((current-group gnus-newsgroup-name)
6923         (current-buffer (current-buffer))
6924         entered)
6925     ;; First we semi-exit this group to update Xrefs and all variables.
6926     ;; We can't do a real exit, because the window conf must remain
6927     ;; the same in case the user is prompted for info, and we don't
6928     ;; want the window conf to change before that...
6929     (gnus-summary-exit t)
6930     (while (not entered)
6931       ;; Then we find what group we are supposed to enter.
6932       (set-buffer gnus-group-buffer)
6933       (gnus-group-jump-to-group current-group)
6934       (setq target-group
6935             (or target-group
6936                 (if (eq gnus-keep-same-level 'best)
6937                     (gnus-summary-best-group gnus-newsgroup-name)
6938                   (gnus-summary-search-group backward gnus-keep-same-level))))
6939       (if (not target-group)
6940           ;; There are no further groups, so we return to the group
6941           ;; buffer.
6942           (progn
6943             (gnus-message 5 "Returning to the group buffer")
6944             (setq entered t)
6945             (when (gnus-buffer-live-p current-buffer)
6946               (set-buffer current-buffer)
6947               (gnus-summary-exit))
6948             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
6949         ;; We try to enter the target group.
6950         (gnus-group-jump-to-group target-group)
6951         (let ((unreads (gnus-group-group-unread)))
6952           (if (and (or (eq t unreads)
6953                        (and unreads (not (zerop unreads))))
6954                    (gnus-summary-read-group
6955                     target-group nil no-article
6956                     (and (buffer-name current-buffer) current-buffer)
6957                     nil backward))
6958               (setq entered t)
6959             (setq current-group target-group
6960                   target-group nil)))))))
6961
6962 (defun gnus-summary-prev-group (&optional no-article)
6963   "Exit current newsgroup and then select previous unread newsgroup.
6964 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
6965   (interactive "P")
6966   (gnus-summary-next-group no-article nil t))
6967
6968 ;; Walking around summary lines.
6969
6970 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
6971   "Go to the first subject satisfying any non-nil constraint.
6972 If UNREAD is non-nil, the article should be unread.
6973 If UNDOWNLOADED is non-nil, the article should be undownloaded.
6974 If UNSEEN is non-nil, the article should be unseen.
6975 Returns the article selected or nil if there are no matching articles."
6976   (interactive "P")
6977   (cond
6978    ;; Empty summary.
6979    ((null gnus-newsgroup-data)
6980     (gnus-message 3 "No articles in the group")
6981     nil)
6982    ;; Pick the first article.
6983    ((not (or unread undownloaded unseen))
6984     (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
6985     (gnus-data-number (car gnus-newsgroup-data)))
6986    ;; Find the first unread article.
6987    (t
6988     (let ((data gnus-newsgroup-data))
6989       (while (and data
6990                   (let ((num (gnus-data-number (car data))))
6991                     (or (memq num gnus-newsgroup-unfetched)
6992                         (not (or (and unread
6993                                       (memq num gnus-newsgroup-unreads))
6994                                  (and undownloaded
6995                                       (memq num gnus-newsgroup-undownloaded))
6996                                  (and unseen
6997                                       (memq num gnus-newsgroup-unseen)))))))
6998         (setq data (cdr data)))
6999       (prog1
7000           (if data
7001               (progn
7002                 (goto-char (gnus-data-pos (car data)))
7003                 (gnus-data-number (car data)))
7004             (gnus-message 3 "No more%s articles"
7005                           (let* ((r (when unread " unread"))
7006                                  (d (when undownloaded " undownloaded"))
7007                                  (s (when unseen " unseen"))
7008                                  (l (delq nil (list r d s))))
7009                             (cond ((= 3 (length l))
7010                                    (concat r "," d ", or" s))
7011                                   ((= 2 (length l))
7012                                    (concat (car l) ", or" (cadr l)))
7013                                   ((= 1 (length l))
7014                                    (car l))
7015                                   (t
7016                                    ""))))
7017             nil
7018             )
7019         (gnus-summary-position-point))))))
7020
7021 (defun gnus-summary-next-subject (n &optional unread dont-display)
7022   "Go to next N'th summary line.
7023 If N is negative, go to the previous N'th subject line.
7024 If UNREAD is non-nil, only unread articles are selected.
7025 The difference between N and the actual number of steps taken is
7026 returned."
7027   (interactive "p")
7028   (let ((backward (< n 0))
7029         (n (abs n)))
7030     (while (and (> n 0)
7031                 (if backward
7032                     (gnus-summary-find-prev unread)
7033                   (gnus-summary-find-next unread)))
7034       (unless (zerop (setq n (1- n)))
7035         (gnus-summary-show-thread)))
7036     (when (/= 0 n)
7037       (gnus-message 7 "No more%s articles"
7038                     (if unread " unread" "")))
7039     (unless dont-display
7040       (gnus-summary-recenter)
7041       (gnus-summary-position-point))
7042     n))
7043
7044 (defun gnus-summary-next-unread-subject (n)
7045   "Go to next N'th unread summary line."
7046   (interactive "p")
7047   (gnus-summary-next-subject n t))
7048
7049 (defun gnus-summary-prev-subject (n &optional unread)
7050   "Go to previous N'th summary line.
7051 If optional argument UNREAD is non-nil, only unread article is selected."
7052   (interactive "p")
7053   (gnus-summary-next-subject (- n) unread))
7054
7055 (defun gnus-summary-prev-unread-subject (n)
7056   "Go to previous N'th unread summary line."
7057   (interactive "p")
7058   (gnus-summary-next-subject (- n) t))
7059
7060 (defun gnus-summary-goto-subjects (articles)
7061   "Insert the subject header for ARTICLES in the current buffer."
7062   (save-excursion
7063     (dolist (article articles)
7064       (gnus-summary-goto-subject article t)))
7065   (gnus-summary-limit (append articles gnus-newsgroup-limit))
7066   (gnus-summary-position-point))
7067  
7068 (defun gnus-summary-goto-subject (article &optional force silent)
7069   "Go the subject line of ARTICLE.
7070 If FORCE, also allow jumping to articles not currently shown."
7071   (interactive "nArticle number: ")
7072   (unless (numberp article)
7073     (error "Article %s is not a number" article))
7074   (let ((b (point))
7075         (data (gnus-data-find article)))
7076     ;; We read in the article if we have to.
7077     (and (not data)
7078          force
7079          (gnus-summary-insert-subject
7080           article
7081           (if (or (numberp force) (vectorp force)) force)
7082           t)
7083          (setq data (gnus-data-find article)))
7084     (goto-char b)
7085     (if (not data)
7086         (progn
7087           (unless silent
7088             (gnus-message 3 "Can't find article %d" article))
7089           nil)
7090       (let ((pt (gnus-data-pos data)))
7091         (goto-char pt)
7092         (gnus-summary-set-article-display-arrow pt))
7093       (gnus-summary-position-point)
7094       article)))
7095
7096 ;; Walking around summary lines with displaying articles.
7097
7098 (defun gnus-summary-expand-window (&optional arg)
7099   "Make the summary buffer take up the entire Emacs frame.
7100 Given a prefix, will force an `article' buffer configuration."
7101   (interactive "P")
7102   (if arg
7103       (gnus-configure-windows 'article 'force)
7104     (gnus-configure-windows 'summary 'force)))
7105
7106 (defun gnus-summary-display-article (article &optional all-header)
7107   "Display ARTICLE in article buffer."
7108   (when (gnus-buffer-live-p gnus-article-buffer)
7109     (with-current-buffer gnus-article-buffer
7110       (set-buffer-multibyte t)))
7111   (gnus-set-global-variables)
7112   (when (gnus-buffer-live-p gnus-article-buffer)
7113     (with-current-buffer gnus-article-buffer
7114       (setq gnus-article-charset gnus-newsgroup-charset)
7115       (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7116       (set-buffer-multibyte t)))
7117   (if (null article)
7118       nil
7119     (prog1
7120         (if gnus-summary-display-article-function
7121             (funcall gnus-summary-display-article-function article all-header)
7122           (gnus-article-prepare article all-header))
7123       (with-current-buffer gnus-article-buffer
7124         (set (make-local-variable 'gnus-summary-search-article-matched-data)
7125              nil))
7126       (gnus-run-hooks 'gnus-select-article-hook)
7127       (when (and gnus-current-article
7128                  (not (zerop gnus-current-article)))
7129         (gnus-summary-goto-subject gnus-current-article))
7130       (gnus-summary-recenter)
7131       (when (and gnus-use-trees gnus-show-threads)
7132         (gnus-possibly-generate-tree article)
7133         (gnus-highlight-selected-tree article))
7134       ;; Successfully display article.
7135       (gnus-article-set-window-start
7136        (cdr (assq article gnus-newsgroup-bookmarks))))))
7137
7138 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7139   "Select the current article.
7140 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
7141 non-nil, the article will be re-fetched even if it already present in
7142 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
7143 be displayed."
7144   ;; Make sure we are in the summary buffer to work around bbdb bug.
7145   (unless (eq major-mode 'gnus-summary-mode)
7146     (set-buffer gnus-summary-buffer))
7147   (let ((article (or article (gnus-summary-article-number)))
7148         (all-headers (not (not all-headers))) ;Must be T or NIL.
7149         gnus-summary-display-article-function)
7150     (and (not pseudo)
7151          (gnus-summary-article-pseudo-p article)
7152          (error "This is a pseudo-article"))
7153     (save-excursion
7154       (set-buffer gnus-summary-buffer)
7155       (if (or (and gnus-single-article-buffer
7156                    (or (null gnus-current-article)
7157                        (null gnus-article-current)
7158                        (null (get-buffer gnus-article-buffer))
7159                        (not (eq article (cdr gnus-article-current)))
7160                        (not (equal (car gnus-article-current)
7161                                    gnus-newsgroup-name))))
7162               (and (not gnus-single-article-buffer)
7163                    (or (null gnus-current-article)
7164                        (not (eq gnus-current-article article))))
7165               force)
7166           ;; The requested article is different from the current article.
7167           (progn
7168             (gnus-summary-display-article article all-headers)
7169             (gnus-article-set-window-start
7170              (cdr (assq article gnus-newsgroup-bookmarks)))
7171             article)
7172         'old))))
7173
7174 (defun gnus-summary-force-verify-and-decrypt ()
7175   "Display buttons for signed/encrypted parts and verify/decrypt them."
7176   (interactive)
7177   (let ((mm-verify-option 'known)
7178         (mm-decrypt-option 'known)
7179         (gnus-article-emulate-mime t)
7180         (gnus-buttonized-mime-types (append (list "multipart/signed"
7181                                                   "multipart/encrypted")
7182                                             gnus-buttonized-mime-types)))
7183     (gnus-summary-select-article nil 'force)))
7184
7185 (defun gnus-summary-set-current-mark (&optional current-mark)
7186   "Obsolete function."
7187   nil)
7188
7189 (defun gnus-summary-next-article (&optional unread subject backward push)
7190   "Select the next article.
7191 If UNREAD, only unread articles are selected.
7192 If SUBJECT, only articles with SUBJECT are selected.
7193 If BACKWARD, the previous article is selected instead of the next."
7194   (interactive "P")
7195   (cond
7196    ;; Is there such an article?
7197    ((and (gnus-summary-search-forward unread subject backward)
7198          (or (gnus-summary-display-article (gnus-summary-article-number))
7199              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7200     (gnus-summary-position-point))
7201    ;; If not, we try the first unread, if that is wanted.
7202    ((and subject
7203          gnus-auto-select-same
7204          (gnus-summary-first-unread-article))
7205     (gnus-summary-position-point)
7206     (gnus-message 6 "Wrapped"))
7207    ;; Try to get next/previous article not displayed in this group.
7208    ((and gnus-auto-extend-newsgroup
7209          (not unread) (not subject))
7210     (gnus-summary-goto-article
7211      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7212      nil (count-lines (point-min) (point))))
7213    ;; Go to next/previous group.
7214    (t
7215     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7216       (gnus-summary-jump-to-group gnus-newsgroup-name))
7217     (let ((cmd last-command-char)
7218           (point
7219            (with-current-buffer gnus-group-buffer
7220              (point)))
7221           (group
7222            (if (eq gnus-keep-same-level 'best)
7223                (gnus-summary-best-group gnus-newsgroup-name)
7224              (gnus-summary-search-group backward gnus-keep-same-level))))
7225       ;; For some reason, the group window gets selected.  We change
7226       ;; it back.
7227       (select-window (get-buffer-window (current-buffer)))
7228       ;; Select next unread newsgroup automagically.
7229       (cond
7230        ((or (not gnus-auto-select-next)
7231             (not cmd))
7232         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7233        ((or (eq gnus-auto-select-next 'quietly)
7234             (and (eq gnus-auto-select-next 'slightly-quietly)
7235                  push)
7236             (and (eq gnus-auto-select-next 'almost-quietly)
7237                  (gnus-summary-last-article-p)))
7238         ;; Select quietly.
7239         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7240             (gnus-summary-exit)
7241           (gnus-message 7 "No more%s articles (%s)..."
7242                         (if unread " unread" "")
7243                         (if group (concat "selecting " group)
7244                           "exiting"))
7245           (gnus-summary-next-group nil group backward)))
7246        (t
7247         (when (gnus-key-press-event-p last-input-event)
7248           (gnus-summary-walk-group-buffer
7249            gnus-newsgroup-name cmd unread backward point))))))))
7250
7251 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7252   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7253                       (?\C-p (gnus-group-prev-unread-group 1))))
7254         (cursor-in-echo-area t)
7255         keve key group ended prompt)
7256     (save-excursion
7257       (set-buffer gnus-group-buffer)
7258       (goto-char start)
7259       (setq group
7260             (if (eq gnus-keep-same-level 'best)
7261                 (gnus-summary-best-group gnus-newsgroup-name)
7262               (gnus-summary-search-group backward gnus-keep-same-level))))
7263     (while (not ended)
7264       (setq prompt
7265             (format
7266              "No more%s articles%s " (if unread " unread" "")
7267              (if (and group
7268                       (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7269                  (format " (Type %s for %s [%s])"
7270                          (single-key-description cmd) group
7271                          (gnus-group-unread group))
7272                (format " (Type %s to exit %s)"
7273                        (single-key-description cmd)
7274                        gnus-newsgroup-name))))
7275       ;; Confirm auto selection.
7276       (setq key (car (setq keve (gnus-read-event-char prompt)))
7277             ended t)
7278       (cond
7279        ((assq key keystrokes)
7280         (let ((obuf (current-buffer)))
7281           (switch-to-buffer gnus-group-buffer)
7282           (when group
7283             (gnus-group-jump-to-group group))
7284           (eval (cadr (assq key keystrokes)))
7285           (setq group (gnus-group-group-name))
7286           (switch-to-buffer obuf))
7287         (setq ended nil))
7288        ((equal key cmd)
7289         (if (or (not group)
7290                 (gnus-ephemeral-group-p gnus-newsgroup-name))
7291             (gnus-summary-exit)
7292           (gnus-summary-next-group nil group backward)))
7293        (t
7294         (push (cdr keve) unread-command-events))))))
7295
7296 (defun gnus-summary-next-unread-article ()
7297   "Select unread article after current one."
7298   (interactive)
7299   (gnus-summary-next-article
7300    (or (not (eq gnus-summary-goto-unread 'never))
7301        (gnus-summary-last-article-p (gnus-summary-article-number)))
7302    (and gnus-auto-select-same
7303         (gnus-summary-article-subject))))
7304
7305 (defun gnus-summary-prev-article (&optional unread subject)
7306   "Select the article after the current one.
7307 If UNREAD is non-nil, only unread articles are selected."
7308   (interactive "P")
7309   (gnus-summary-next-article unread subject t))
7310
7311 (defun gnus-summary-prev-unread-article ()
7312   "Select unread article before current one."
7313   (interactive)
7314   (gnus-summary-prev-article
7315    (or (not (eq gnus-summary-goto-unread 'never))
7316        (gnus-summary-first-article-p (gnus-summary-article-number)))
7317    (and gnus-auto-select-same
7318         (gnus-summary-article-subject))))
7319
7320 (defun gnus-summary-next-page (&optional lines circular stop)
7321   "Show next page of the selected article.
7322 If at the end of the current article, select the next article.
7323 LINES says how many lines should be scrolled up.
7324
7325 If CIRCULAR is non-nil, go to the start of the article instead of
7326 selecting the next article when reaching the end of the current
7327 article.
7328
7329 If STOP is non-nil, just stop when reaching the end of the message.
7330
7331 Also see the variable `gnus-article-skip-boring'."
7332   (interactive "P")
7333   (setq gnus-summary-buffer (current-buffer))
7334   (gnus-set-global-variables)
7335   (let ((article (gnus-summary-article-number))
7336         (article-window (get-buffer-window gnus-article-buffer t))
7337         endp)
7338     ;; If the buffer is empty, we have no article.
7339     (unless article
7340       (error "No article to select"))
7341     (gnus-configure-windows 'article)
7342     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7343         (if (and (eq gnus-summary-goto-unread 'never)
7344                  (not (gnus-summary-last-article-p article)))
7345             (gnus-summary-next-article)
7346           (gnus-summary-next-unread-article))
7347       (if (or (null gnus-current-article)
7348               (null gnus-article-current)
7349               (/= article (cdr gnus-article-current))
7350               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7351           ;; Selected subject is different from current article's.
7352           (gnus-summary-display-article article)
7353         (when article-window
7354           (gnus-eval-in-buffer-window gnus-article-buffer
7355             (setq endp (or (gnus-article-next-page lines)
7356                            (gnus-article-only-boring-p))))
7357           (when endp
7358             (cond (stop
7359                    (gnus-message 3 "End of message"))
7360                   (circular
7361                    (gnus-summary-beginning-of-article))
7362                   (lines
7363                    (gnus-message 3 "End of message"))
7364                   ((null lines)
7365                    (if (and (eq gnus-summary-goto-unread 'never)
7366                             (not (gnus-summary-last-article-p article)))
7367                        (gnus-summary-next-article)
7368                      (gnus-summary-next-unread-article))))))))
7369     (gnus-summary-recenter)
7370     (gnus-summary-position-point)))
7371
7372 (defun gnus-summary-prev-page (&optional lines move)
7373   "Show previous page of selected article.
7374 Argument LINES specifies lines to be scrolled down.
7375 If MOVE, move to the previous unread article if point is at
7376 the beginning of the buffer."
7377   (interactive "P")
7378   (let ((article (gnus-summary-article-number))
7379         (article-window (get-buffer-window gnus-article-buffer t))
7380         endp)
7381     (gnus-configure-windows 'article)
7382     (if (or (null gnus-current-article)
7383             (null gnus-article-current)
7384             (/= article (cdr gnus-article-current))
7385             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7386         ;; Selected subject is different from current article's.
7387         (gnus-summary-display-article article)
7388       (gnus-summary-recenter)
7389       (when article-window
7390         (gnus-eval-in-buffer-window gnus-article-buffer
7391           (setq endp (gnus-article-prev-page lines)))
7392         (when (and move endp)
7393           (cond (lines
7394                  (gnus-message 3 "Beginning of message"))
7395                 ((null lines)
7396                  (if (and (eq gnus-summary-goto-unread 'never)
7397                           (not (gnus-summary-first-article-p article)))
7398                      (gnus-summary-prev-article)
7399                    (gnus-summary-prev-unread-article))))))))
7400   (gnus-summary-position-point))
7401
7402 (defun gnus-summary-prev-page-or-article (&optional lines)
7403   "Show previous page of selected article.
7404 Argument LINES specifies lines to be scrolled down.
7405 If at the beginning of the article, go to the next article."
7406   (interactive "P")
7407   (gnus-summary-prev-page lines t))
7408
7409 (defun gnus-summary-scroll-up (lines)
7410   "Scroll up (or down) one line current article.
7411 Argument LINES specifies lines to be scrolled up (or down if negative)."
7412   (interactive "p")
7413   (gnus-configure-windows 'article)
7414   (gnus-summary-show-thread)
7415   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7416     (gnus-eval-in-buffer-window gnus-article-buffer
7417       (cond ((> lines 0)
7418              (when (gnus-article-next-page lines)
7419                (gnus-message 3 "End of message")))
7420             ((< lines 0)
7421              (gnus-article-prev-page (- lines))))))
7422   (gnus-summary-recenter)
7423   (gnus-summary-position-point))
7424
7425 (defun gnus-summary-scroll-down (lines)
7426   "Scroll down (or up) one line current article.
7427 Argument LINES specifies lines to be scrolled down (or up if negative)."
7428   (interactive "p")
7429   (gnus-summary-scroll-up (- lines)))
7430
7431 (defun gnus-summary-next-same-subject ()
7432   "Select next article which has the same subject as current one."
7433   (interactive)
7434   (gnus-summary-next-article nil (gnus-summary-article-subject)))
7435
7436 (defun gnus-summary-prev-same-subject ()
7437   "Select previous article which has the same subject as current one."
7438   (interactive)
7439   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7440
7441 (defun gnus-summary-next-unread-same-subject ()
7442   "Select next unread article which has the same subject as current one."
7443   (interactive)
7444   (gnus-summary-next-article t (gnus-summary-article-subject)))
7445
7446 (defun gnus-summary-prev-unread-same-subject ()
7447   "Select previous unread article which has the same subject as current one."
7448   (interactive)
7449   (gnus-summary-prev-article t (gnus-summary-article-subject)))
7450
7451 (defun gnus-summary-first-unread-article ()
7452   "Select the first unread article.
7453 Return nil if there are no unread articles."
7454   (interactive)
7455   (prog1
7456       (when (gnus-summary-first-subject t)
7457         (gnus-summary-show-thread)
7458         (gnus-summary-first-subject t)
7459         (gnus-summary-display-article (gnus-summary-article-number)))
7460     (gnus-summary-position-point)))
7461
7462 (defun gnus-summary-first-unread-subject ()
7463   "Place the point on the subject line of the first unread article.
7464 Return nil if there are no unread articles."
7465   (interactive)
7466   (prog1
7467       (when (gnus-summary-first-subject t)
7468         (gnus-summary-show-thread)
7469         (gnus-summary-first-subject t))
7470     (gnus-summary-position-point)))
7471
7472 (defun gnus-summary-first-unseen-subject ()
7473   "Place the point on the subject line of the first unseen article.
7474 Return nil if there are no unseen articles."
7475   (interactive)
7476   (prog1
7477       (when (gnus-summary-first-subject nil nil t)
7478         (gnus-summary-show-thread)
7479         (gnus-summary-first-subject nil nil t))
7480     (gnus-summary-position-point)))
7481
7482 (defun gnus-summary-first-unseen-or-unread-subject ()
7483   "Place the point on the subject line of the first unseen article or,
7484 if all article have been seen, on the subject line of the first unread
7485 article."
7486   (interactive)
7487   (prog1
7488       (unless (when (gnus-summary-first-subject nil nil t)
7489                 (gnus-summary-show-thread)
7490                 (gnus-summary-first-subject nil nil t))
7491         (when (gnus-summary-first-subject t)
7492           (gnus-summary-show-thread)
7493           (gnus-summary-first-subject t)))
7494     (gnus-summary-position-point)))
7495
7496 (defun gnus-summary-first-article ()
7497   "Select the first article.
7498 Return nil if there are no articles."
7499   (interactive)
7500   (prog1
7501       (when (gnus-summary-first-subject)
7502         (gnus-summary-show-thread)
7503         (gnus-summary-first-subject)
7504         (gnus-summary-display-article (gnus-summary-article-number)))
7505     (gnus-summary-position-point)))
7506
7507 (defun gnus-summary-best-unread-article (&optional arg)
7508   "Select the unread article with the highest score.
7509 If given a prefix argument, select the next unread article that has a
7510 score higher than the default score."
7511   (interactive "P")
7512   (let ((article (if arg
7513                      (gnus-summary-better-unread-subject)
7514                    (gnus-summary-best-unread-subject))))
7515     (if article
7516         (gnus-summary-goto-article article)
7517       (error "No unread articles"))))
7518
7519 (defun gnus-summary-best-unread-subject ()
7520   "Select the unread subject with the highest score."
7521   (interactive)
7522   (let ((best -1000000)
7523         (data gnus-newsgroup-data)
7524         article score)
7525     (while data
7526       (and (gnus-data-unread-p (car data))
7527            (> (setq score
7528                     (gnus-summary-article-score (gnus-data-number (car data))))
7529               best)
7530            (setq best score
7531                  article (gnus-data-number (car data))))
7532       (setq data (cdr data)))
7533     (when article
7534       (gnus-summary-goto-subject article))
7535     (gnus-summary-position-point)
7536     article))
7537
7538 (defun gnus-summary-better-unread-subject ()
7539   "Select the first unread subject that has a score over the default score."
7540   (interactive)
7541   (let ((data gnus-newsgroup-data)
7542         article score)
7543     (while (and (setq article (gnus-data-number (car data)))
7544                 (or (gnus-data-read-p (car data))
7545                     (not (> (gnus-summary-article-score article)
7546                             gnus-summary-default-score))))
7547       (setq data (cdr data)))
7548     (when article
7549       (gnus-summary-goto-subject article))
7550     (gnus-summary-position-point)
7551     article))
7552
7553 (defun gnus-summary-last-subject ()
7554   "Go to the last displayed subject line in the group."
7555   (let ((article (gnus-data-number (car (gnus-data-list t)))))
7556     (when article
7557       (gnus-summary-goto-subject article))))
7558
7559 (defun gnus-summary-goto-article (article &optional all-headers force)
7560   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7561 If ALL-HEADERS is non-nil, no header lines are hidden.
7562 If FORCE, go to the article even if it isn't displayed.  If FORCE
7563 is a number, it is the line the article is to be displayed on."
7564   (interactive
7565    (list
7566     (completing-read
7567      "Article number or Message-ID: "
7568      (mapcar (lambda (number) (list (int-to-string number)))
7569              gnus-newsgroup-limit))
7570     current-prefix-arg
7571     t))
7572   (prog1
7573       (if (and (stringp article)
7574                (string-match "@\\|%40" article))
7575           (gnus-summary-refer-article article)
7576         (when (stringp article)
7577           (setq article (string-to-number article)))
7578         (if (gnus-summary-goto-subject article force)
7579             (gnus-summary-display-article article all-headers)
7580           (gnus-message 4 "Couldn't go to article %s" article) nil))
7581     (gnus-summary-position-point)))
7582
7583 (defun gnus-summary-goto-last-article ()
7584   "Go to the previously read article."
7585   (interactive)
7586   (prog1
7587       (when gnus-last-article
7588         (gnus-summary-goto-article gnus-last-article nil t))
7589     (gnus-summary-position-point)))
7590
7591 (defun gnus-summary-pop-article (number)
7592   "Pop one article off the history and go to the previous.
7593 NUMBER articles will be popped off."
7594   (interactive "p")
7595   (let (to)
7596     (setq gnus-newsgroup-history
7597           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
7598     (if to
7599         (gnus-summary-goto-article (car to) nil t)
7600       (error "Article history empty")))
7601   (gnus-summary-position-point))
7602
7603 ;; Summary commands and functions for limiting the summary buffer.
7604
7605 (defun gnus-summary-limit-to-articles (n)
7606   "Limit the summary buffer to the next N articles.
7607 If not given a prefix, use the process marked articles instead."
7608   (interactive "P")
7609   (prog1
7610       (let ((articles (gnus-summary-work-articles n)))
7611         (setq gnus-newsgroup-processable nil)
7612         (gnus-summary-limit articles))
7613     (gnus-summary-position-point)))
7614
7615 (defun gnus-summary-pop-limit (&optional total)
7616   "Restore the previous limit.
7617 If given a prefix, remove all limits."
7618   (interactive "P")
7619   (when total
7620     (setq gnus-newsgroup-limits
7621           (list (mapcar (lambda (h) (mail-header-number h))
7622                         gnus-newsgroup-headers))))
7623   (unless gnus-newsgroup-limits
7624     (error "No limit to pop"))
7625   (prog1
7626       (gnus-summary-limit nil 'pop)
7627     (gnus-summary-position-point)))
7628
7629 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
7630   "Limit the summary buffer to articles that have subjects that match a regexp.
7631 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
7632   (interactive
7633    (list (read-string (if current-prefix-arg
7634                           "Exclude subject (regexp): "
7635                         "Limit to subject (regexp): "))
7636          nil current-prefix-arg))
7637   (unless header
7638     (setq header "subject"))
7639   (when (not (equal "" subject))
7640     (prog1
7641         (let ((articles (gnus-summary-find-matching
7642                          (or header "subject") subject 'all nil nil
7643                          not-matching)))
7644           (unless articles
7645             (error "Found no matches for \"%s\"" subject))
7646           (gnus-summary-limit articles))
7647       (gnus-summary-position-point))))
7648
7649 (defun gnus-summary-limit-to-author (from &optional not-matching)
7650   "Limit the summary buffer to articles that have authors that match a regexp.
7651 If NOT-MATCHING, excluding articles that have authors that match a regexp."
7652   (interactive
7653    (list (read-string (if current-prefix-arg
7654                           "Exclude author (regexp): "
7655                         "Limit to author (regexp): "))
7656          current-prefix-arg))
7657   (gnus-summary-limit-to-subject from "from" not-matching))
7658
7659 (defun gnus-summary-limit-to-age (age &optional younger-p)
7660   "Limit the summary buffer to articles that are older than (or equal) AGE days.
7661 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
7662 articles that are younger than AGE days."
7663   (interactive
7664    (let ((younger current-prefix-arg)
7665          (days-got nil)
7666          days)
7667      (while (not days-got)
7668        (setq days (if younger
7669                       (read-string "Limit to articles younger than (in days, older when negative): ")
7670                     (read-string
7671                      "Limit to articles older than (in days, younger when negative): ")))
7672        (when (> (length days) 0)
7673          (setq days (read days)))
7674        (if (numberp days)
7675            (progn
7676              (setq days-got t)
7677              (when (< days 0)
7678                (setq younger (not younger))
7679                (setq days (* days -1))))
7680          (message "Please enter a number.")
7681          (sleep-for 1)))
7682      (list days younger)))
7683   (prog1
7684       (let ((data gnus-newsgroup-data)
7685             (cutoff (days-to-time age))
7686             articles d date is-younger)
7687         (while (setq d (pop data))
7688           (when (and (vectorp (gnus-data-header d))
7689                      (setq date (mail-header-date (gnus-data-header d))))
7690             (setq is-younger (time-less-p
7691                               (time-since (condition-case ()
7692                                               (date-to-time date)
7693                                             (error '(0 0))))
7694                               cutoff))
7695             (when (if younger-p
7696                       is-younger
7697                     (not is-younger))
7698               (push (gnus-data-number d) articles))))
7699         (gnus-summary-limit (nreverse articles)))
7700     (gnus-summary-position-point)))
7701
7702 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
7703   "Limit the summary buffer to articles that match an 'extra' header."
7704   (interactive
7705    (let ((header
7706           (intern
7707            (gnus-completing-read-with-default
7708             (symbol-name (car gnus-extra-headers))
7709             (if current-prefix-arg
7710                 "Exclude extra header:"
7711               "Limit extra header:")
7712             (mapcar (lambda (x)
7713                       (cons (symbol-name x) x))
7714                     gnus-extra-headers)
7715             nil
7716             t))))
7717      (list header
7718            (read-string (format "%s header %s (regexp): "
7719                                 (if current-prefix-arg "Exclude" "Limit to")
7720                                 header))
7721            current-prefix-arg)))
7722   (when (not (equal "" regexp))
7723     (prog1
7724         (let ((articles (gnus-summary-find-matching
7725                          (cons 'extra header) regexp 'all nil nil
7726                          not-matching)))
7727           (unless articles
7728             (error "Found no matches for \"%s\"" regexp))
7729           (gnus-summary-limit articles))
7730       (gnus-summary-position-point))))
7731
7732 (defun gnus-summary-limit-to-display-predicate ()
7733   "Limit the summary buffer to the predicated in the `display' group parameter."
7734   (interactive)
7735   (unless gnus-newsgroup-display
7736     (error "There is no `display' group parameter"))
7737   (let (articles)
7738     (dolist (number gnus-newsgroup-articles)
7739       (when (funcall gnus-newsgroup-display)
7740         (push number articles)))
7741     (gnus-summary-limit articles))
7742   (gnus-summary-position-point))
7743
7744 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7745 (make-obsolete
7746  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7747
7748 (defun gnus-summary-limit-to-unread (&optional all)
7749   "Limit the summary buffer to articles that are not marked as read.
7750 If ALL is non-nil, limit strictly to unread articles."
7751   (interactive "P")
7752   (if all
7753       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
7754     (gnus-summary-limit-to-marks
7755      ;; Concat all the marks that say that an article is read and have
7756      ;; those removed.
7757      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
7758            gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
7759            gnus-low-score-mark gnus-expirable-mark
7760            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
7761            gnus-duplicate-mark gnus-souped-mark)
7762      'reverse)))
7763
7764 (defun gnus-summary-limit-to-replied (&optional unreplied)
7765   "Limit the summary buffer to replied articles.
7766 If UNREPLIED (the prefix), limit to unreplied articles."
7767   (interactive "P")
7768   (if unreplied
7769       (gnus-summary-limit
7770        (gnus-set-difference gnus-newsgroup-articles
7771         gnus-newsgroup-replied))
7772     (gnus-summary-limit gnus-newsgroup-replied))
7773   (gnus-summary-position-point))
7774
7775 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
7776 (make-obsolete 'gnus-summary-delete-marked-with
7777                'gnus-summary-limit-exclude-marks)
7778
7779 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
7780   "Exclude articles that are marked with MARKS (e.g. \"DK\").
7781 If REVERSE, limit the summary buffer to articles that are marked
7782 with MARKS.  MARKS can either be a string of marks or a list of marks.
7783 Returns how many articles were removed."
7784   (interactive "sMarks: ")
7785   (gnus-summary-limit-to-marks marks t))
7786
7787 (defun gnus-summary-limit-to-marks (marks &optional reverse)
7788   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
7789 If REVERSE (the prefix), limit the summary buffer to articles that are
7790 not marked with MARKS.  MARKS can either be a string of marks or a
7791 list of marks.
7792 Returns how many articles were removed."
7793   (interactive "sMarks: \nP")
7794   (prog1
7795       (let ((data gnus-newsgroup-data)
7796             (marks (if (listp marks) marks
7797                      (append marks nil))) ; Transform to list.
7798             articles)
7799         (while data
7800           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
7801                   (memq (gnus-data-mark (car data)) marks))
7802             (push (gnus-data-number (car data)) articles))
7803           (setq data (cdr data)))
7804         (gnus-summary-limit articles))
7805     (gnus-summary-position-point)))
7806
7807 (defun gnus-summary-limit-to-score (score)
7808   "Limit to articles with score at or above SCORE."
7809   (interactive "NLimit to articles with score of at least: ")
7810   (let ((data gnus-newsgroup-data)
7811         articles)
7812     (while data
7813       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
7814                 score)
7815         (push (gnus-data-number (car data)) articles))
7816       (setq data (cdr data)))
7817     (prog1
7818         (gnus-summary-limit articles)
7819       (gnus-summary-position-point))))
7820
7821 (defun gnus-summary-limit-to-unseen ()
7822   "Limit to unseen articles."
7823   (interactive)
7824   (prog1
7825       (gnus-summary-limit gnus-newsgroup-unseen)
7826     (gnus-summary-position-point)))
7827
7828 (defun gnus-summary-limit-include-thread (id)
7829   "Display all the hidden articles that is in the thread with ID in it.
7830 When called interactively, ID is the Message-ID of the current
7831 article."
7832   (interactive (list (mail-header-id (gnus-summary-article-header))))
7833   (let ((articles (gnus-articles-in-thread
7834                    (gnus-id-to-thread (gnus-root-id id)))))
7835     (prog1
7836         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7837       (gnus-summary-limit-include-matching-articles
7838        "subject"
7839        (regexp-quote (gnus-simplify-subject-re
7840                       (mail-header-subject (gnus-id-to-header id)))))
7841       (gnus-summary-position-point))))
7842
7843 (defun gnus-summary-limit-include-matching-articles (header regexp)
7844   "Display all the hidden articles that have HEADERs that match REGEXP."
7845   (interactive (list (read-string "Match on header: ")
7846                      (read-string "Regexp: ")))
7847   (let ((articles (gnus-find-matching-articles header regexp)))
7848     (prog1
7849         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7850       (gnus-summary-position-point))))
7851
7852 (defun gnus-summary-insert-dormant-articles ()
7853   "Insert all the dormant articles for this group into the current buffer."
7854   (interactive)
7855   (let ((gnus-verbose (max 6 gnus-verbose)))
7856     (if (not gnus-newsgroup-dormant)
7857         (gnus-message 3 "No cached articles for this group")
7858       (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
7859
7860 (defun gnus-summary-limit-include-dormant ()
7861   "Display all the hidden articles that are marked as dormant.
7862 Note that this command only works on a subset of the articles currently
7863 fetched for this group."
7864   (interactive)
7865   (unless gnus-newsgroup-dormant
7866     (error "There are no dormant articles in this group"))
7867   (prog1
7868       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
7869     (gnus-summary-position-point)))
7870
7871 (defun gnus-summary-limit-exclude-dormant ()
7872   "Hide all dormant articles."
7873   (interactive)
7874   (prog1
7875       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
7876     (gnus-summary-position-point)))
7877
7878 (defun gnus-summary-limit-exclude-childless-dormant ()
7879   "Hide all dormant articles that have no children."
7880   (interactive)
7881   (let ((data (gnus-data-list t))
7882         articles d children)
7883     ;; Find all articles that are either not dormant or have
7884     ;; children.
7885     (while (setq d (pop data))
7886       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
7887                 (and (setq children
7888                            (gnus-article-children (gnus-data-number d)))
7889                      (let (found)
7890                        (while children
7891                          (when (memq (car children) articles)
7892                            (setq children nil
7893                                  found t))
7894                          (pop children))
7895                        found)))
7896         (push (gnus-data-number d) articles)))
7897     ;; Do the limiting.
7898     (prog1
7899         (gnus-summary-limit articles)
7900       (gnus-summary-position-point))))
7901
7902 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
7903   "Mark all unread excluded articles as read.
7904 If ALL, mark even excluded ticked and dormants as read."
7905   (interactive "P")
7906   (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
7907   (let ((articles (gnus-sorted-ndifference
7908                    (sort
7909                     (mapcar (lambda (h) (mail-header-number h))
7910                             gnus-newsgroup-headers)
7911                     '<)
7912                    gnus-newsgroup-limit))
7913         article)
7914     (setq gnus-newsgroup-unreads
7915           (gnus-sorted-intersection gnus-newsgroup-unreads
7916                                     gnus-newsgroup-limit))
7917     (if all
7918         (setq gnus-newsgroup-dormant nil
7919               gnus-newsgroup-marked nil
7920               gnus-newsgroup-reads
7921               (nconc
7922                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
7923                gnus-newsgroup-reads))
7924       (while (setq article (pop articles))
7925         (unless (or (memq article gnus-newsgroup-dormant)
7926                     (memq article gnus-newsgroup-marked))
7927           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
7928
7929 (defun gnus-summary-limit (articles &optional pop)
7930   (if pop
7931       ;; We pop the previous limit off the stack and use that.
7932       (setq articles (car gnus-newsgroup-limits)
7933             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
7934     ;; We use the new limit, so we push the old limit on the stack.
7935     (push gnus-newsgroup-limit gnus-newsgroup-limits))
7936   ;; Set the limit.
7937   (setq gnus-newsgroup-limit articles)
7938   (let ((total (length gnus-newsgroup-data))
7939         (data (gnus-data-find-list (gnus-summary-article-number)))
7940         (gnus-summary-mark-below nil)   ; Inhibit this.
7941         found)
7942     ;; This will do all the work of generating the new summary buffer
7943     ;; according to the new limit.
7944     (gnus-summary-prepare)
7945     ;; Hide any threads, possibly.
7946     (gnus-summary-maybe-hide-threads)
7947     ;; Try to return to the article you were at, or one in the
7948     ;; neighborhood.
7949     (when data
7950       ;; We try to find some article after the current one.
7951       (while data
7952         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
7953           (setq data nil
7954                 found t))
7955         (setq data (cdr data))))
7956     (unless found
7957       ;; If there is no data, that means that we were after the last
7958       ;; article.  The same goes when we can't find any articles
7959       ;; after the current one.
7960       (goto-char (point-max))
7961       (gnus-summary-find-prev))
7962     (gnus-set-mode-line 'summary)
7963     ;; We return how many articles were removed from the summary
7964     ;; buffer as a result of the new limit.
7965     (- total (length gnus-newsgroup-data))))
7966
7967 (defsubst gnus-invisible-cut-children (threads)
7968   (let ((num 0))
7969     (while threads
7970       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
7971         (incf num))
7972       (pop threads))
7973     (< num 2)))
7974
7975 (defsubst gnus-cut-thread (thread)
7976   "Go forwards in the thread until we find an article that we want to display."
7977   (when (or (eq gnus-fetch-old-headers 'some)
7978             (eq gnus-fetch-old-headers 'invisible)
7979             (numberp gnus-fetch-old-headers)
7980             (eq gnus-build-sparse-threads 'some)
7981             (eq gnus-build-sparse-threads 'more))
7982     ;; Deal with old-fetched headers and sparse threads.
7983     (while (and
7984             thread
7985             (or
7986              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
7987              (gnus-summary-article-ancient-p
7988               (mail-header-number (car thread))))
7989             (if (or (<= (length (cdr thread)) 1)
7990                     (eq gnus-fetch-old-headers 'invisible))
7991                 (setq gnus-newsgroup-limit
7992                       (delq (mail-header-number (car thread))
7993                             gnus-newsgroup-limit)
7994                       thread (cadr thread))
7995               (when (gnus-invisible-cut-children (cdr thread))
7996                 (let ((th (cdr thread)))
7997                   (while th
7998                     (if (memq (mail-header-number (caar th))
7999                               gnus-newsgroup-limit)
8000                         (setq thread (car th)
8001                               th nil)
8002                       (setq th (cdr th))))))))))
8003   thread)
8004
8005 (defun gnus-cut-threads (threads)
8006   "Cut off all uninteresting articles from the beginning of THREADS."
8007   (when (or (eq gnus-fetch-old-headers 'some)
8008             (eq gnus-fetch-old-headers 'invisible)
8009             (numberp gnus-fetch-old-headers)
8010             (eq gnus-build-sparse-threads 'some)
8011             (eq gnus-build-sparse-threads 'more))
8012     (let ((th threads))
8013       (while th
8014         (setcar th (gnus-cut-thread (car th)))
8015         (setq th (cdr th)))))
8016   ;; Remove nixed out threads.
8017   (delq nil threads))
8018
8019 (defun gnus-summary-initial-limit (&optional show-if-empty)
8020   "Figure out what the initial limit is supposed to be on group entry.
8021 This entails weeding out unwanted dormants, low-scored articles,
8022 fetch-old-headers verbiage, and so on."
8023   ;; Most groups have nothing to remove.
8024   (if (or gnus-inhibit-limiting
8025           (and (null gnus-newsgroup-dormant)
8026                (eq gnus-newsgroup-display 'gnus-not-ignore)
8027                (not (eq gnus-fetch-old-headers 'some))
8028                (not (numberp gnus-fetch-old-headers))
8029                (not (eq gnus-fetch-old-headers 'invisible))
8030                (null gnus-summary-expunge-below)
8031                (not (eq gnus-build-sparse-threads 'some))
8032                (not (eq gnus-build-sparse-threads 'more))
8033                (null gnus-thread-expunge-below)
8034                (not gnus-use-nocem)))
8035       ()                                ; Do nothing.
8036     (push gnus-newsgroup-limit gnus-newsgroup-limits)
8037     (setq gnus-newsgroup-limit nil)
8038     (mapatoms
8039      (lambda (node)
8040        (unless (car (symbol-value node))
8041          ;; These threads have no parents -- they are roots.
8042          (let ((nodes (cdr (symbol-value node)))
8043                thread)
8044            (while nodes
8045              (if (and gnus-thread-expunge-below
8046                       (< (gnus-thread-total-score (car nodes))
8047                          gnus-thread-expunge-below))
8048                  (gnus-expunge-thread (pop nodes))
8049                (setq thread (pop nodes))
8050                (gnus-summary-limit-children thread))))))
8051      gnus-newsgroup-dependencies)
8052     ;; If this limitation resulted in an empty group, we might
8053     ;; pop the previous limit and use it instead.
8054     (when (and (not gnus-newsgroup-limit)
8055                show-if-empty)
8056       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
8057     gnus-newsgroup-limit))
8058
8059 (defun gnus-summary-limit-children (thread)
8060   "Return 1 if this subthread is visible and 0 if it is not."
8061   ;; First we get the number of visible children to this thread.  This
8062   ;; is done by recursing down the thread using this function, so this
8063   ;; will really go down to a leaf article first, before slowly
8064   ;; working its way up towards the root.
8065   (when thread
8066     (let* ((max-lisp-eval-depth 5000)
8067            (children
8068            (if (cdr thread)
8069                (apply '+ (mapcar 'gnus-summary-limit-children
8070                                  (cdr thread)))
8071              0))
8072           (number (mail-header-number (car thread)))
8073           score)
8074       (if (and
8075            (not (memq number gnus-newsgroup-marked))
8076            (or
8077             ;; If this article is dormant and has absolutely no visible
8078             ;; children, then this article isn't visible.
8079             (and (memq number gnus-newsgroup-dormant)
8080                  (zerop children))
8081             ;; If this is "fetch-old-headered" and there is no
8082             ;; visible children, then we don't want this article.
8083             (and (or (eq gnus-fetch-old-headers 'some)
8084                      (numberp gnus-fetch-old-headers))
8085                  (gnus-summary-article-ancient-p number)
8086                  (zerop children))
8087             ;; If this is "fetch-old-headered" and `invisible', then
8088             ;; we don't want this article.
8089             (and (eq gnus-fetch-old-headers 'invisible)
8090                  (gnus-summary-article-ancient-p number))
8091             ;; If this is a sparsely inserted article with no children,
8092             ;; we don't want it.
8093             (and (eq gnus-build-sparse-threads 'some)
8094                  (gnus-summary-article-sparse-p number)
8095                  (zerop children))
8096             ;; If we use expunging, and this article is really
8097             ;; low-scored, then we don't want this article.
8098             (when (and gnus-summary-expunge-below
8099                        (< (setq score
8100                                 (or (cdr (assq number gnus-newsgroup-scored))
8101                                     gnus-summary-default-score))
8102                           gnus-summary-expunge-below))
8103               ;; We increase the expunge-tally here, but that has
8104               ;; nothing to do with the limits, really.
8105               (incf gnus-newsgroup-expunged-tally)
8106               ;; We also mark as read here, if that's wanted.
8107               (when (and gnus-summary-mark-below
8108                          (< score gnus-summary-mark-below))
8109                 (setq gnus-newsgroup-unreads
8110                       (delq number gnus-newsgroup-unreads))
8111                 (if gnus-newsgroup-auto-expire
8112                     (push number gnus-newsgroup-expirable)
8113                   (push (cons number gnus-low-score-mark)
8114                         gnus-newsgroup-reads)))
8115               t)
8116             ;; Do the `display' group parameter.
8117             (and gnus-newsgroup-display
8118                  (not (funcall gnus-newsgroup-display)))
8119             ;; Check NoCeM things.
8120             (when (and gnus-use-nocem
8121                        (gnus-nocem-unwanted-article-p
8122                         (mail-header-id (car thread))))
8123               (setq gnus-newsgroup-unreads
8124                     (delq number gnus-newsgroup-unreads))
8125               t)))
8126           ;; Nope, invisible article.
8127           0
8128         ;; Ok, this article is to be visible, so we add it to the limit
8129         ;; and return 1.
8130         (push number gnus-newsgroup-limit)
8131         1))))
8132
8133 (defun gnus-expunge-thread (thread)
8134   "Mark all articles in THREAD as read."
8135   (let* ((number (mail-header-number (car thread))))
8136     (incf gnus-newsgroup-expunged-tally)
8137     ;; We also mark as read here, if that's wanted.
8138     (setq gnus-newsgroup-unreads
8139           (delq number gnus-newsgroup-unreads))
8140     (if gnus-newsgroup-auto-expire
8141         (push number gnus-newsgroup-expirable)
8142       (push (cons number gnus-low-score-mark)
8143             gnus-newsgroup-reads)))
8144   ;; Go recursively through all subthreads.
8145   (mapcar 'gnus-expunge-thread (cdr thread)))
8146
8147 ;; Summary article oriented commands
8148
8149 (defun gnus-summary-refer-parent-article (n)
8150   "Refer parent article N times.
8151 If N is negative, go to ancestor -N instead.
8152 The difference between N and the number of articles fetched is returned."
8153   (interactive "p")
8154   (let ((skip 1)
8155         error header ref)
8156     (when (not (natnump n))
8157       (setq skip (abs n)
8158             n 1))
8159     (while (and (> n 0)
8160                 (not error))
8161       (setq header (gnus-summary-article-header))
8162       (if (and (eq (mail-header-number header)
8163                    (cdr gnus-article-current))
8164                (equal gnus-newsgroup-name
8165                       (car gnus-article-current)))
8166           ;; If we try to find the parent of the currently
8167           ;; displayed article, then we take a look at the actual
8168           ;; References header, since this is slightly more
8169           ;; reliable than the References field we got from the
8170           ;; server.
8171           (save-excursion
8172             (set-buffer gnus-original-article-buffer)
8173             (nnheader-narrow-to-headers)
8174             (unless (setq ref (message-fetch-field "references"))
8175               (when (setq ref (message-fetch-field "in-reply-to"))
8176                 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8177             (widen))
8178         (setq ref
8179               ;; It's not the current article, so we take a bet on
8180               ;; the value we got from the server.
8181               (mail-header-references header)))
8182       (if (and ref
8183                (not (equal ref "")))
8184           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8185             (gnus-message 1 "Couldn't find parent"))
8186         (gnus-message 1 "No references in article %d"
8187                       (gnus-summary-article-number))
8188         (setq error t))
8189       (decf n))
8190     (gnus-summary-position-point)
8191     n))
8192
8193 (defun gnus-summary-refer-references ()
8194   "Fetch all articles mentioned in the References header.
8195 Return the number of articles fetched."
8196   (interactive)
8197   (let ((ref (mail-header-references (gnus-summary-article-header)))
8198         (current (gnus-summary-article-number))
8199         (n 0))
8200     (if (or (not ref)
8201             (equal ref ""))
8202         (error "No References in the current article")
8203       ;; For each Message-ID in the References header...
8204       (while (string-match "<[^>]*>" ref)
8205         (incf n)
8206         ;; ... fetch that article.
8207         (gnus-summary-refer-article
8208          (prog1 (match-string 0 ref)
8209            (setq ref (substring ref (match-end 0))))))
8210       (gnus-summary-goto-subject current)
8211       (gnus-summary-position-point)
8212       n)))
8213
8214 (defun gnus-summary-refer-thread (&optional limit)
8215   "Fetch all articles in the current thread.
8216 If LIMIT (the numerical prefix), fetch that many old headers instead
8217 of what's specified by the `gnus-refer-thread-limit' variable."
8218   (interactive "P")
8219   (let ((id (mail-header-id (gnus-summary-article-header)))
8220         (limit (if limit (prefix-numeric-value limit)
8221                  gnus-refer-thread-limit)))
8222     (unless (eq gnus-fetch-old-headers 'invisible)
8223       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8224       ;; Retrieve the headers and read them in.
8225       (if (eq (if (numberp limit)
8226                   (gnus-retrieve-headers
8227                    (list (min
8228                           (+ (mail-header-number
8229                               (gnus-summary-article-header))
8230                              limit)
8231                           gnus-newsgroup-end))
8232                    gnus-newsgroup-name (* limit 2))
8233                 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8234                 ;; headers.
8235                 (gnus-retrieve-headers (list gnus-newsgroup-end)
8236                                        gnus-newsgroup-name limit))
8237               'nov)
8238           (gnus-build-all-threads)
8239         (error "Can't fetch thread from back ends that don't support NOV"))
8240       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8241     (gnus-summary-limit-include-thread id)))
8242
8243 (defun gnus-summary-refer-article (message-id)
8244   "Fetch an article specified by MESSAGE-ID."
8245   (interactive "sMessage-ID: ")
8246   (when (and (stringp message-id)
8247              (not (zerop (length message-id))))
8248     (setq message-id (gnus-replace-in-string message-id " " ""))
8249     ;; Construct the correct Message-ID if necessary.
8250     ;; Suggested by tale@pawl.rpi.edu.
8251     (unless (string-match "^<" message-id)
8252       (setq message-id (concat "<" message-id)))
8253     (unless (string-match ">$" message-id)
8254       (setq message-id (concat message-id ">")))
8255     ;; People often post MIDs from URLs, so unhex it:
8256     (unless (string-match "@" message-id)
8257       (setq message-id (gnus-url-unhex-string message-id)))
8258     (let* ((header (gnus-id-to-header message-id))
8259            (sparse (and header
8260                         (gnus-summary-article-sparse-p
8261                          (mail-header-number header))
8262                         (memq (mail-header-number header)
8263                               gnus-newsgroup-limit)))
8264            number)
8265       (cond
8266        ;; If the article is present in the buffer we just go to it.
8267        ((and header
8268              (or (not (gnus-summary-article-sparse-p
8269                        (mail-header-number header)))
8270                  sparse))
8271         (prog1
8272             (gnus-summary-goto-article
8273              (mail-header-number header) nil t)
8274           (when sparse
8275             (gnus-summary-update-article (mail-header-number header)))))
8276        (t
8277         ;; We fetch the article.
8278         (catch 'found
8279           (dolist (gnus-override-method (gnus-refer-article-methods))
8280             (when (and (gnus-check-server gnus-override-method)
8281                        ;; Fetch the header,
8282                        (setq number (gnus-summary-insert-subject message-id)))
8283               ;; and display the article.
8284               (gnus-summary-select-article nil nil nil number)
8285               (throw 'found t)))
8286           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8287
8288 (defun gnus-refer-article-methods ()
8289   "Return a list of referable methods."
8290   (cond
8291    ;; No method, so we default to current and native.
8292    ((null gnus-refer-article-method)
8293     (list gnus-current-select-method gnus-select-method))
8294    ;; Current.
8295    ((eq 'current gnus-refer-article-method)
8296     (list gnus-current-select-method))
8297    ;; List of select methods.
8298    ((not (and (symbolp (car gnus-refer-article-method))
8299               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8300     (let (out)
8301       (dolist (method gnus-refer-article-method)
8302         (push (if (eq 'current method)
8303                   gnus-current-select-method
8304                 method)
8305               out))
8306       (nreverse out)))
8307    ;; One single select method.
8308    (t
8309     (list gnus-refer-article-method))))
8310
8311 (defun gnus-summary-edit-parameters ()
8312   "Edit the group parameters of the current group."
8313   (interactive)
8314   (gnus-group-edit-group gnus-newsgroup-name 'params))
8315
8316 (defun gnus-summary-customize-parameters ()
8317   "Customize the group parameters of the current group."
8318   (interactive)
8319   (gnus-group-customize gnus-newsgroup-name))
8320
8321 (defun gnus-summary-enter-digest-group (&optional force)
8322   "Enter an nndoc group based on the current article.
8323 If FORCE, force a digest interpretation.  If not, try
8324 to guess what the document format is."
8325   (interactive "P")
8326   (let ((conf gnus-current-window-configuration))
8327     (save-window-excursion
8328       (save-excursion
8329         (let (gnus-article-prepare-hook
8330               gnus-display-mime-function
8331               gnus-break-pages)
8332           (gnus-summary-select-article))))
8333     (setq gnus-current-window-configuration conf)
8334     (let* ((name (format "%s-%d"
8335                          (gnus-group-prefixed-name
8336                           gnus-newsgroup-name (list 'nndoc ""))
8337                          (with-current-buffer gnus-summary-buffer
8338                            gnus-current-article)))
8339            (ogroup gnus-newsgroup-name)
8340            (params (append (gnus-info-params (gnus-get-info ogroup))
8341                            (list (cons 'to-group ogroup))
8342                            (list (cons 'parent-group ogroup))
8343                            (list (cons 'save-article-group ogroup))))
8344            (case-fold-search t)
8345            (buf (current-buffer))
8346            dig to-address)
8347       (save-excursion
8348         (set-buffer gnus-original-article-buffer)
8349         ;; Have the digest group inherit the main mail address of
8350         ;; the parent article.
8351         (when (setq to-address (or (gnus-fetch-field "reply-to")
8352                                    (gnus-fetch-field "from")))
8353           (setq params (append
8354                         (list (cons 'to-address
8355                                     (funcall gnus-decode-encoded-word-function
8356                                              to-address))))))
8357         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8358         (insert-buffer-substring gnus-original-article-buffer)
8359         ;; Remove lines that may lead nndoc to misinterpret the
8360         ;; document type.
8361         (narrow-to-region
8362          (goto-char (point-min))
8363          (or (search-forward "\n\n" nil t) (point)))
8364         (goto-char (point-min))
8365         (delete-matching-lines "^Path:\\|^From ")
8366         (widen))
8367       (unwind-protect
8368           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8369                     (gnus-newsgroup-ephemeral-ignored-charsets
8370                      gnus-newsgroup-ignored-charsets))
8371                 (gnus-group-read-ephemeral-group
8372                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8373                               (nndoc-article-type
8374                                ,(if force 'mbox 'guess)))
8375                  t nil nil nil
8376                  `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8377                                                         "ADAPT")))))
8378               ;; Make all postings to this group go to the parent group.
8379               (nconc (gnus-info-params (gnus-get-info name))
8380                      params)
8381             ;; Couldn't select this doc group.
8382             (switch-to-buffer buf)
8383             (gnus-set-global-variables)
8384             (gnus-configure-windows 'summary)
8385             (gnus-message 3 "Article couldn't be entered?"))
8386         (kill-buffer dig)))))
8387
8388 (defun gnus-summary-read-document (n)
8389   "Open a new group based on the current article(s).
8390 This will allow you to read digests and other similar
8391 documents as newsgroups.
8392 Obeys the standard process/prefix convention."
8393   (interactive "P")
8394   (let* ((ogroup gnus-newsgroup-name)
8395          (params (append (gnus-info-params (gnus-get-info ogroup))
8396                          (list (cons 'to-group ogroup))))
8397          group egroup groups vgroup)
8398     (dolist (article (gnus-summary-work-articles n))
8399       (setq group (format "%s-%d" gnus-newsgroup-name article))
8400       (gnus-summary-remove-process-mark article)
8401       (when (gnus-summary-display-article article)
8402         (save-excursion
8403           (with-temp-buffer
8404             (insert-buffer-substring gnus-original-article-buffer)
8405             ;; Remove some headers that may lead nndoc to make
8406             ;; the wrong guess.
8407             (message-narrow-to-head)
8408             (goto-char (point-min))
8409             (delete-matching-lines "^Path:\\|^From ")
8410             (widen)
8411             (if (setq egroup
8412                       (gnus-group-read-ephemeral-group
8413                        group `(nndoc ,group (nndoc-address ,(current-buffer))
8414                                      (nndoc-article-type guess))
8415                        t nil t))
8416                 (progn
8417                   ;; Make all postings to this group go to the parent group.
8418                   (nconc (gnus-info-params (gnus-get-info egroup))
8419                          params)
8420                   (push egroup groups))
8421               ;; Couldn't select this doc group.
8422               (gnus-error 3 "Article couldn't be entered"))))))
8423     ;; Now we have selected all the documents.
8424     (cond
8425      ((not groups)
8426       (error "None of the articles could be interpreted as documents"))
8427      ((gnus-group-read-ephemeral-group
8428        (setq vgroup (format
8429                      "nnvirtual:%s-%s" gnus-newsgroup-name
8430                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
8431        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
8432        t
8433        (cons (current-buffer) 'summary)))
8434      (t
8435       (error "Couldn't select virtual nndoc group")))))
8436
8437 (defun gnus-summary-isearch-article (&optional regexp-p)
8438   "Do incremental search forward on the current article.
8439 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
8440   (interactive "P")
8441   (let* ((gnus-inhibit-treatment t)
8442          (old (gnus-summary-select-article)))
8443     (gnus-configure-windows 'article)
8444     (gnus-eval-in-buffer-window gnus-article-buffer
8445       (save-restriction
8446         (widen)
8447         (when (eq 'old old)
8448           (gnus-article-show-all-headers))
8449         (goto-char (point-min))
8450         (isearch-forward regexp-p)))))
8451
8452 (defun gnus-summary-search-article-forward (regexp &optional backward)
8453   "Search for an article containing REGEXP forward.
8454 If BACKWARD, search backward instead."
8455   (interactive
8456    (list (read-string
8457           (format "Search article %s (regexp%s): "
8458                   (if current-prefix-arg "backward" "forward")
8459                   (if gnus-last-search-regexp
8460                       (concat ", default " gnus-last-search-regexp)
8461                     "")))
8462          current-prefix-arg))
8463   (if (string-equal regexp "")
8464       (setq regexp (or gnus-last-search-regexp ""))
8465     (setq gnus-last-search-regexp regexp)
8466     (setq gnus-article-before-search gnus-current-article))
8467   ;; Intentionally set gnus-last-article.
8468   (setq gnus-last-article gnus-article-before-search)
8469   (let ((gnus-last-article gnus-last-article))
8470     (if (gnus-summary-search-article regexp backward)
8471         (gnus-summary-show-thread)
8472       (signal 'search-failed (list regexp)))))
8473
8474 (defun gnus-summary-search-article-backward (regexp)
8475   "Search for an article containing REGEXP backward."
8476   (interactive
8477    (list (read-string
8478           (format "Search article backward (regexp%s): "
8479                   (if gnus-last-search-regexp
8480                       (concat ", default " gnus-last-search-regexp)
8481                     "")))))
8482   (gnus-summary-search-article-forward regexp 'backward))
8483
8484 (eval-when-compile
8485   (defmacro gnus-summary-search-article-position-point (regexp backward)
8486     "Dehighlight the last matched text and goto the beginning position."
8487     (` (if (and gnus-summary-search-article-matched-data
8488                 (let ((text (caddr gnus-summary-search-article-matched-data))
8489                       (inhibit-read-only t)
8490                       buffer-read-only)
8491                   (delete-region
8492                    (goto-char (car gnus-summary-search-article-matched-data))
8493                    (cadr gnus-summary-search-article-matched-data))
8494                   (insert text)
8495                   (string-match (, regexp) text)))
8496            (if (, backward) (beginning-of-line) (end-of-line))
8497          (goto-char (if (, backward) (point-max) (point-min))))))
8498
8499   (defmacro gnus-summary-search-article-highlight-goto-x-face (opoint)
8500     "Place point where X-Face image is displayed."
8501     (if (featurep 'xemacs)
8502         (` (let ((end (if (search-forward "\n\n" nil t)
8503                           (goto-char (1- (point)))
8504                         (point-min)))
8505                  extent)
8506              (or (search-backward "\n\n" nil t) (goto-char (point-min)))
8507              (unless (and (re-search-forward "^From:" end t)
8508                           (setq extent (extent-at (point)))
8509                           (extent-begin-glyph extent))
8510                (goto-char (, opoint)))))
8511       (` (let ((end (if (search-forward "\n\n" nil t)
8512                         (goto-char (1- (point)))
8513                       (point-min)))
8514                (start (or (search-backward "\n\n" nil t) (point-min))))
8515            (goto-char
8516             (or (text-property-any start end 'x-face-image t);; x-face-e21
8517                 (text-property-any start end 'x-face-mule-bitmap-image t)
8518                 (, opoint)))))))
8519
8520   (defmacro gnus-summary-search-article-highlight-matched-text
8521     (backward treated x-face)
8522     "Highlight matched text in the function `gnus-summary-search-article'."
8523     (` (let ((start (set-marker (make-marker) (match-beginning 0)))
8524              (end (set-marker (make-marker) (match-end 0)))
8525              (inhibit-read-only t)
8526              buffer-read-only)
8527          (unless treated
8528            (let ((,@
8529                   (let ((items (mapcar 'car gnus-treatment-function-alist)))
8530                     (mapcar
8531                      (lambda (item) (setq items (delq item items)))
8532                      '(gnus-treat-buttonize
8533                        gnus-treat-fill-article
8534                        gnus-treat-fill-long-lines
8535                        gnus-treat-emphasize
8536                        gnus-treat-highlight-headers
8537                        gnus-treat-highlight-citation
8538                        gnus-treat-highlight-signature
8539                        gnus-treat-overstrike
8540                        gnus-treat-display-x-face
8541                        gnus-treat-buttonize-head
8542                        gnus-treat-decode-article-as-default-mime-charset))
8543                     (static-if (featurep 'xemacs)
8544                         items
8545                       (cons '(x-face-mule-delete-x-face-field
8546                               (quote never))
8547                             items))))
8548                  (gnus-treat-display-x-face
8549                   (when (, x-face) gnus-treat-display-x-face)))
8550              (gnus-article-prepare-mime-display)))
8551          (goto-char (if (, backward) start end))
8552          (when (, x-face)
8553            (gnus-summary-search-article-highlight-goto-x-face (point)))
8554          (setq gnus-summary-search-article-matched-data
8555                (list start end (buffer-substring start end)))
8556          (unless (eq start end);; matched text has been deleted. :-<
8557            (put-text-property start end 'face
8558                               (or (find-face 'isearch)
8559                                   'secondary-selection))))))
8560   )
8561
8562 (defun gnus-summary-search-article (regexp &optional backward)
8563   "Search for an article containing REGEXP.
8564 Optional argument BACKWARD means do search for backward.
8565 `gnus-select-article-hook' is not called during the search."
8566   ;; We have to require this here to make sure that the following
8567   ;; dynamic binding isn't shadowed by autoloading.
8568   (require 'gnus-async)
8569   (require 'gnus-art)
8570   (let ((gnus-select-article-hook nil)  ;Disable hook.
8571         (gnus-article-prepare-hook nil)
8572         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
8573         (gnus-use-article-prefetch nil)
8574         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
8575         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
8576         (gnus-visual nil)
8577         (gnus-keep-backlog nil)
8578         (gnus-break-pages nil)
8579         (gnus-summary-display-arrow nil)
8580         (gnus-updated-mode-lines nil)
8581         (gnus-auto-center-summary nil)
8582         (sum (current-buffer))
8583         (found nil)
8584         point treated)
8585     (gnus-save-hidden-threads
8586       (static-if (featurep 'xemacs)
8587           (let ((gnus-inhibit-treatment t))
8588             (setq treated (eq 'old (gnus-summary-select-article)))
8589             (when (and treated
8590                        (not (and (gnus-buffer-live-p gnus-article-buffer)
8591                                  (window-live-p (get-buffer-window
8592                                                  gnus-article-buffer t)))))
8593               (gnus-summary-select-article nil t)
8594               (setq treated nil)))
8595         (let ((gnus-inhibit-treatment t)
8596               (x-face-mule-delete-x-face-field 'never))
8597           (setq treated (eq 'old (gnus-summary-select-article)))
8598           (when (and treated
8599                      (not
8600                       (and (gnus-buffer-live-p gnus-article-buffer)
8601                            (window-live-p (get-buffer-window
8602                                            gnus-article-buffer t))
8603                            (or (not (string-match "^\\^X-Face:" regexp))
8604                                (with-current-buffer gnus-article-buffer
8605                                  gnus-summary-search-article-matched-data)))))
8606             (gnus-summary-select-article nil t)
8607             (setq treated nil))))
8608       (set-buffer gnus-article-buffer)
8609       (widen)
8610       (if treated
8611           (progn
8612             (gnus-article-show-all-headers)
8613             (gnus-summary-search-article-position-point regexp backward))
8614         (goto-char (if backward (point-max) (point-min))))
8615       (while (not found)
8616         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
8617         (if (if backward
8618                 (re-search-backward regexp nil t)
8619               (re-search-forward regexp nil t))
8620             ;; We found the regexp.
8621             (progn
8622               (gnus-summary-search-article-highlight-matched-text
8623                backward treated (string-match "^\\^X-Face:" regexp))
8624               (setq found 'found)
8625               (forward-line
8626                (/ (- 2 (window-height
8627                         (get-buffer-window gnus-article-buffer t)))
8628                   2))
8629               (set-window-start
8630                (get-buffer-window (current-buffer))
8631                (point))
8632               (set-buffer sum)
8633               (setq point (point)))
8634           ;; We didn't find it, so we go to the next article.
8635           (set-buffer sum)
8636           (setq found 'not)
8637           (while (eq found 'not)
8638             (if (not (if backward (gnus-summary-find-prev)
8639                        (gnus-summary-find-next)))
8640                 ;; No more articles.
8641                 (setq found t)
8642               ;; Select the next article and adjust point.
8643               (unless (gnus-summary-article-sparse-p
8644                        (gnus-summary-article-number))
8645                 (setq found nil)
8646                 (let ((gnus-inhibit-treatment t))
8647                   (gnus-summary-select-article))
8648                 (setq treated nil)
8649                 (set-buffer gnus-article-buffer)
8650                 (widen)
8651                 (goto-char (if backward (point-max) (point-min))))))))
8652       (gnus-message 7 ""))
8653     ;; Return whether we found the regexp.
8654     (when (eq found 'found)
8655       (goto-char point)
8656       (gnus-summary-show-thread)
8657       (gnus-summary-goto-subject gnus-current-article)
8658       (gnus-summary-position-point)
8659       t)))
8660
8661 (defun gnus-find-matching-articles (header regexp)
8662   "Return a list of all articles that match REGEXP on HEADER.
8663 This search includes all articles in the current group that Gnus has
8664 fetched headers for, whether they are displayed or not."
8665   (let ((articles nil)
8666         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
8667         (case-fold-search t))
8668     (dolist (header gnus-newsgroup-headers)
8669       (when (string-match regexp (funcall func header))
8670         (push (mail-header-number header) articles)))
8671     (nreverse articles)))
8672
8673 (defun gnus-summary-find-matching (header regexp &optional backward unread
8674                                           not-case-fold not-matching)
8675   "Return a list of all articles that match REGEXP on HEADER.
8676 The search stars on the current article and goes forwards unless
8677 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
8678 If UNREAD is non-nil, only unread articles will
8679 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
8680 in the comparisons. If NOT-MATCHING, return a list of all articles that
8681 not match REGEXP on HEADER."
8682   (let ((case-fold-search (not not-case-fold))
8683         articles d func)
8684     (if (consp header)
8685         (if (eq (car header) 'extra)
8686             (setq func
8687                   `(lambda (h)
8688                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
8689                          "")))
8690           (error "%s is an invalid header" header))
8691       (unless (fboundp (intern (concat "mail-header-" header)))
8692         (error "%s is not a valid header" header))
8693       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
8694     (dolist (d (if (eq backward 'all)
8695                    gnus-newsgroup-data
8696                  (gnus-data-find-list
8697                   (gnus-summary-article-number)
8698                   (gnus-data-list backward))))
8699       (when (and (or (not unread)       ; We want all articles...
8700                      (gnus-data-unread-p d)) ; Or just unreads.
8701                  (vectorp (gnus-data-header d)) ; It's not a pseudo.
8702                  (if not-matching
8703                      (not (string-match
8704                            regexp
8705                            (funcall func (gnus-data-header d))))
8706                    (string-match regexp
8707                                  (funcall func (gnus-data-header d)))))
8708         (push (gnus-data-number d) articles))) ; Success!
8709     (nreverse articles)))
8710
8711 (defun gnus-summary-execute-command (header regexp command &optional backward)
8712   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
8713 If HEADER is an empty string (or nil), the match is done on the entire
8714 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
8715   (interactive
8716    (list (let ((completion-ignore-case t))
8717            (completing-read
8718             "Header name: "
8719             (mapcar (lambda (header) (list (format "%s" header)))
8720                     (append
8721                      '("Number" "Subject" "From" "Lines" "Date"
8722                        "Message-ID" "Xref" "References" "Body")
8723                      gnus-extra-headers))
8724             nil 'require-match))
8725          (read-string "Regexp: ")
8726          (read-key-sequence "Command: ")
8727          current-prefix-arg))
8728   (when (equal header "Body")
8729     (setq header ""))
8730   ;; Hidden thread subtrees must be searched as well.
8731   (gnus-summary-show-all-threads)
8732   ;; We don't want to change current point nor window configuration.
8733   (save-excursion
8734     (save-window-excursion
8735       (let (gnus-visual
8736             gnus-treat-strip-trailing-blank-lines
8737             gnus-treat-strip-leading-blank-lines
8738             gnus-treat-strip-multiple-blank-lines
8739             gnus-treat-hide-boring-headers
8740             gnus-treat-fold-newsgroups
8741             gnus-article-prepare-hook)
8742         (gnus-message 6 "Executing %s..." (key-description command))
8743         ;; We'd like to execute COMMAND interactively so as to give arguments.
8744         (gnus-execute header regexp
8745                       `(call-interactively ',(key-binding command))
8746                       backward)
8747         (gnus-message 6 "Executing %s...done" (key-description command))))))
8748
8749 (defun gnus-summary-beginning-of-article ()
8750   "Scroll the article back to the beginning."
8751   (interactive)
8752   (gnus-summary-select-article)
8753   (gnus-configure-windows 'article)
8754   (gnus-eval-in-buffer-window gnus-article-buffer
8755     (widen)
8756     (goto-char (point-min))
8757     (when gnus-break-pages
8758       (gnus-narrow-to-page))))
8759
8760 (defun gnus-summary-end-of-article ()
8761   "Scroll to the end of the article."
8762   (interactive)
8763   (gnus-summary-select-article)
8764   (gnus-configure-windows 'article)
8765   (gnus-eval-in-buffer-window gnus-article-buffer
8766     (widen)
8767     (goto-char (point-max))
8768     (recenter -3)
8769     (when gnus-break-pages
8770       (when (re-search-backward page-delimiter nil t)
8771         (narrow-to-region (match-end 0) (point-max)))
8772       (gnus-narrow-to-page))))
8773
8774 (defun gnus-summary-print-truncate-and-quote (string &optional len)
8775   "Truncate to LEN and quote all \"(\"'s in STRING."
8776   (gnus-replace-in-string (if (and len (> (length string) len))
8777                               (substring string 0 len)
8778                             string)
8779                           "[()]" "\\\\\\&"))
8780
8781 (defun gnus-summary-print-article (&optional filename n)
8782   "Generate and print a PostScript image of the process-marked (mail) articles.
8783
8784 If used interactively, print the current article if none are
8785 process-marked.  With prefix arg, prompt the user for the name of the
8786 file to save in.
8787
8788 When used from Lisp, accept two optional args FILENAME and N.  N means
8789 to print the next N articles.  If N is negative, print the N previous
8790 articles.  If N is nil and articles have been marked with the process
8791 mark, print these instead.
8792
8793 If the optional first argument FILENAME is nil, send the image to the
8794 printer.  If FILENAME is a string, save the PostScript image in a file with
8795 that name.  If FILENAME is a number, prompt the user for the name of the file
8796 to save in."
8797   (interactive (list (ps-print-preprint current-prefix-arg)))
8798   (dolist (article (gnus-summary-work-articles n))
8799     (gnus-summary-select-article nil nil 'pseudo article)
8800     (gnus-eval-in-buffer-window gnus-article-buffer
8801       (gnus-print-buffer))
8802     (gnus-summary-remove-process-mark article))
8803   (ps-despool filename))
8804
8805 (defun gnus-print-buffer ()
8806   (let ((buffer (generate-new-buffer " *print*")))
8807     (unwind-protect
8808         (progn
8809           (copy-to-buffer buffer (point-min) (point-max))
8810           (set-buffer buffer)
8811           (gnus-remove-text-with-property 'gnus-decoration)
8812           (when (gnus-visual-p 'article-highlight 'highlight)
8813             ;; Copy-to-buffer doesn't copy overlay.  So redo
8814             ;; highlight.
8815             (let ((gnus-article-buffer buffer))
8816               (gnus-article-highlight-citation t)
8817               (gnus-article-highlight-signature)
8818               (gnus-article-emphasize)
8819               (gnus-article-delete-invisible-text)))
8820           (let ((ps-left-header
8821                  (list
8822                   (concat "("
8823                           (gnus-summary-print-truncate-and-quote
8824                            (mail-header-subject gnus-current-headers)
8825                            66) ")")
8826                   (concat "("
8827                           (gnus-summary-print-truncate-and-quote
8828                            (mail-header-from gnus-current-headers)
8829                            45) ")")))
8830                 (ps-right-header
8831                  (list
8832                   "/pagenumberstring load"
8833                   (concat "("
8834                           (mail-header-date gnus-current-headers) ")"))))
8835             (gnus-run-hooks 'gnus-ps-print-hook)
8836             (save-excursion
8837               (if window-system
8838                   (ps-spool-buffer-with-faces)
8839                 (ps-spool-buffer)))))
8840       (kill-buffer buffer))))
8841
8842 (defun gnus-summary-show-article (&optional arg)
8843   "Force redisplaying of the current article.
8844 If ARG (the prefix) is a number, show the article with the charset
8845 defined in `gnus-summary-show-article-charset-alist', or the charset
8846 input.
8847 If ARG (the prefix) is non-nil and not a number, show the raw article
8848 without any article massaging functions being run.  Normally, the key
8849 strokes are `C-u g'."
8850   (interactive "P")
8851   (cond
8852    ((numberp arg)
8853     (gnus-summary-show-article t)
8854     (let* ((gnus-newsgroup-charset
8855             (or (cdr (assq arg gnus-summary-show-article-charset-alist))
8856                 (mm-read-coding-system
8857                  "View as charset: " ;; actually it is coding system.
8858                  (with-current-buffer gnus-article-buffer
8859                    (mm-detect-coding-region (point) (point-max))))))
8860            (default-mime-charset gnus-newsgroup-charset)
8861            (gnus-newsgroup-ignored-charsets 'gnus-all))
8862       (gnus-summary-select-article nil 'force)
8863       (let ((deps gnus-newsgroup-dependencies)
8864             head header lines)
8865         (save-excursion
8866           (set-buffer gnus-original-article-buffer)
8867           (save-restriction
8868             (message-narrow-to-head)
8869             (setq head (buffer-string))
8870             (goto-char (point-min))
8871             (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
8872               (goto-char (point-max))
8873               (widen)
8874               (setq lines (1- (count-lines (point) (point-max))))))
8875           (with-temp-buffer
8876             (insert (format "211 %d Article retrieved.\n"
8877                             (cdr gnus-article-current)))
8878             (insert head)
8879             (if lines (insert (format "Lines: %d\n" lines)))
8880             (insert ".\n")
8881             (let ((nntp-server-buffer (current-buffer)))
8882               (setq header (car (gnus-get-newsgroup-headers deps t))))))
8883         (gnus-data-set-header
8884          (gnus-data-find (cdr gnus-article-current))
8885          header)
8886         (gnus-summary-update-article-line
8887          (cdr gnus-article-current) header)
8888         (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
8889           (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
8890    ((not arg)
8891     ;; Select the article the normal way.
8892     (gnus-summary-select-article nil 'force))
8893    (t
8894     ;; We have to require this here to make sure that the following
8895     ;; dynamic binding isn't shadowed by autoloading.
8896     (require 'gnus-async)
8897     (require 'gnus-art)
8898     ;; Bind the article treatment functions to nil.
8899     (let ((gnus-have-all-headers t)
8900           gnus-article-prepare-hook
8901           gnus-article-decode-hook
8902           gnus-break-pages
8903           gnus-show-mime
8904           (gnus-inhibit-treatment t))
8905       (gnus-summary-select-article nil 'force))))
8906   (gnus-summary-goto-subject gnus-current-article)
8907   (gnus-summary-position-point))
8908
8909 (defun gnus-summary-show-raw-article ()
8910   "Show the raw article without any article massaging functions being run."
8911   (interactive)
8912   (gnus-summary-show-article t))
8913
8914 (defun gnus-summary-verbose-headers (&optional arg)
8915   "Toggle permanent full header display.
8916 If ARG is a positive number, turn header display on.
8917 If ARG is a negative number, turn header display off."
8918   (interactive "P")
8919   (setq gnus-show-all-headers
8920         (cond ((or (not (numberp arg))
8921                    (zerop arg))
8922                (not gnus-show-all-headers))
8923               ((natnump arg)
8924                t)))
8925   (gnus-summary-show-article))
8926
8927 (defun gnus-summary-toggle-header (&optional arg)
8928   "Show the headers if they are hidden, or hide them if they are shown.
8929 If ARG is a positive number, show the entire header.
8930 If ARG is a negative number, hide the unwanted header lines."
8931   (interactive "P")
8932   (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
8933                      (get-buffer-window gnus-article-buffer t))))
8934     (with-current-buffer gnus-article-buffer
8935       (widen)
8936       (article-narrow-to-head)
8937       (let* ((buffer-read-only nil)
8938              (inhibit-point-motion-hooks t)
8939              (hidden (if (numberp arg)
8940                          (>= arg 0)
8941                        (or (not (looking-at "[^ \t\n]+:"))
8942                            (gnus-article-hidden-text-p 'headers))))
8943              s e)
8944         (delete-region (point-min) (point-max))
8945         (with-current-buffer gnus-original-article-buffer
8946           (goto-char (setq s (point-min)))
8947           (setq e (if (search-forward "\n\n" nil t)
8948                       (1- (point))
8949                     (point-max))))
8950         (insert-buffer-substring gnus-original-article-buffer s e)
8951         ;; In T-gnus, gnus-article-decode-hook doesn't contain
8952         ;; article-decode-encoded-words by default.
8953         (article-decode-encoded-words)
8954         (run-hooks 'gnus-article-decode-hook)
8955         (if hidden
8956             (let ((gnus-treat-hide-headers nil)
8957                   (gnus-treat-hide-boring-headers nil))
8958               (gnus-delete-wash-type 'headers)
8959               (gnus-treat-article 'head))
8960           (gnus-treat-article 'head))
8961         (widen)
8962         (if window
8963             (set-window-start window (goto-char (point-min))))
8964         (if gnus-break-pages
8965             (gnus-narrow-to-page)
8966           (when (gnus-visual-p 'page-marker)
8967             (let ((buffer-read-only nil))
8968               (gnus-remove-text-with-property 'gnus-prev)
8969               (gnus-remove-text-with-property 'gnus-next))))
8970         (gnus-set-mode-line 'article)))))
8971
8972 (defun gnus-summary-show-all-headers ()
8973   "Make all header lines visible."
8974   (interactive)
8975   (gnus-summary-toggle-header 1))
8976
8977 (defun gnus-summary-toggle-mime (&optional arg)
8978   "Toggle MIME processing.
8979 If ARG is a positive number, turn MIME processing on."
8980   (interactive "P")
8981   (setq gnus-show-mime
8982         (if (null arg)
8983             (not gnus-show-mime)
8984           (> (prefix-numeric-value arg) 0)))
8985   (gnus-summary-select-article t 'force))
8986
8987 (defun gnus-summary-caesar-message (&optional arg)
8988   "Caesar rotate the current article by 13.
8989 The numerical prefix specifies how many places to rotate each letter
8990 forward."
8991   (interactive "P")
8992   (gnus-summary-select-article)
8993   (let ((mail-header-separator ""))
8994     (gnus-eval-in-buffer-window gnus-article-buffer
8995       (save-restriction
8996         (widen)
8997         (let ((start (window-start))
8998               buffer-read-only)
8999           (message-caesar-buffer-body arg)
9000           (set-window-start (get-buffer-window (current-buffer)) start))))))
9001
9002 (autoload 'unmorse-region "morse"
9003   "Convert morse coded text in region to ordinary ASCII text."
9004   t)
9005
9006 (defun gnus-summary-morse-message (&optional arg)
9007   "Morse decode the current article."
9008   (interactive "P")
9009   (gnus-summary-select-article)
9010   (let ((mail-header-separator ""))
9011     (gnus-eval-in-buffer-window gnus-article-buffer
9012       (save-excursion
9013         (save-restriction
9014           (widen)
9015           (let ((pos (window-start))
9016                 buffer-read-only)
9017             (goto-char (point-min))
9018             (when (message-goto-body)
9019               (gnus-narrow-to-body))
9020             (goto-char (point-min))
9021             (while (search-forward "·" (point-max) t)
9022               (replace-match "."))
9023             (unmorse-region (point-min) (point-max))
9024             (widen)
9025             (set-window-start (get-buffer-window (current-buffer)) pos)))))))
9026
9027 (defun gnus-summary-stop-page-breaking ()
9028   "Stop page breaking in the current article."
9029   (interactive)
9030   (gnus-summary-select-article)
9031   (gnus-eval-in-buffer-window gnus-article-buffer
9032     (widen)
9033     (when (gnus-visual-p 'page-marker)
9034       (let ((buffer-read-only nil))
9035         (gnus-remove-text-with-property 'gnus-prev)
9036         (gnus-remove-text-with-property 'gnus-next))
9037       (setq gnus-page-broken nil))))
9038
9039 (defun gnus-summary-move-article (&optional n to-newsgroup
9040                                             select-method action)
9041   "Move the current article to a different newsgroup.
9042 If N is a positive number, move the N next articles.
9043 If N is a negative number, move the N previous articles.
9044 If N is nil and any articles have been marked with the process mark,
9045 move those articles instead.
9046 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9047 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9048 re-spool using this method.
9049
9050 When called interactively with TO-NEWSGROUP being nil, the value of
9051 the variable `gnus-move-split-methods' is used for finding a default
9052 for the target newsgroup.
9053
9054 For this function to work, both the current newsgroup and the
9055 newsgroup that you want to move to have to support the `request-move'
9056 and `request-accept' functions.
9057
9058 ACTION can be either `move' (the default), `crosspost' or `copy'."
9059   (interactive "P")
9060   (unless action
9061     (setq action 'move))
9062   ;; Check whether the source group supports the required functions.
9063   (cond ((and (eq action 'move)
9064               (not (gnus-check-backend-function
9065                     'request-move-article gnus-newsgroup-name)))
9066          (error "The current group does not support article moving"))
9067         ((and (eq action 'crosspost)
9068               (not (gnus-check-backend-function
9069                     'request-replace-article gnus-newsgroup-name)))
9070          (error "The current group does not support article editing")))
9071   (let ((articles (gnus-summary-work-articles n))
9072         (prefix (if (gnus-check-backend-function
9073                      'request-move-article gnus-newsgroup-name)
9074                     (funcall gnus-move-group-prefix-function
9075                              gnus-newsgroup-name)
9076                   ""))
9077         (names '((move "Move" "Moving")
9078                  (copy "Copy" "Copying")
9079                  (crosspost "Crosspost" "Crossposting")))
9080         (copy-buf (save-excursion
9081                     (nnheader-set-temp-buffer " *copy article*")))
9082         art-group to-method new-xref article to-groups)
9083     (unless (assq action names)
9084       (error "Unknown action %s" action))
9085     ;; Read the newsgroup name.
9086     (when (and (not to-newsgroup)
9087                (not select-method))
9088       (if (and gnus-move-split-methods
9089                (not
9090                 (and (memq gnus-current-article articles)
9091                      (gnus-buffer-live-p gnus-original-article-buffer))))
9092           ;; When `gnus-move-split-methods' is non-nil, we have to
9093           ;; select an article to give `gnus-read-move-group-name' an
9094           ;; opportunity to suggest an appropriate default.  However,
9095           ;; we needn't render or mark the article.
9096           (let ((gnus-display-mime-function nil)
9097                 (gnus-article-prepare-hook nil)
9098                 (gnus-mark-article-hook nil))
9099             (gnus-summary-select-article nil nil nil (car articles))))
9100       (setq to-newsgroup
9101             (gnus-read-move-group-name
9102              (cadr (assq action names))
9103              (symbol-value (intern (format "gnus-current-%s-group" action)))
9104              articles prefix))
9105       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
9106     (setq to-method (or select-method
9107                         (gnus-server-to-method
9108                          (gnus-group-method to-newsgroup))))
9109     ;; Check the method we are to move this article to...
9110     (unless (gnus-check-backend-function
9111              'request-accept-article (car to-method))
9112       (error "%s does not support article copying" (car to-method)))
9113     (unless (gnus-check-server to-method)
9114       (error "Can't open server %s" (car to-method)))
9115     (gnus-message 6 "%s to %s: %s..."
9116                   (caddr (assq action names))
9117                   (or (car select-method) to-newsgroup) articles)
9118     (while articles
9119       (setq article (pop articles))
9120       (setq
9121        art-group
9122        (cond
9123         ;; Move the article.
9124         ((eq action 'move)
9125          ;; Remove this article from future suppression.
9126          (gnus-dup-unsuppress-article article)
9127          (gnus-request-move-article
9128           article                       ; Article to move
9129           gnus-newsgroup-name           ; From newsgroup
9130           (nth 1 (gnus-find-method-for-group
9131                   gnus-newsgroup-name)) ; Server
9132           (list 'gnus-request-accept-article
9133                 to-newsgroup (list 'quote select-method)
9134                 (not articles) t)       ; Accept form
9135           (not articles)))              ; Only save nov last time
9136         ;; Copy the article.
9137         ((eq action 'copy)
9138          (save-excursion
9139            (set-buffer copy-buf)
9140            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
9141              (save-restriction
9142                (nnheader-narrow-to-headers)
9143                (dolist (hdr gnus-copy-article-ignored-headers)
9144                  (message-remove-header hdr t)))
9145              (gnus-request-accept-article
9146               to-newsgroup select-method (not articles) t))))
9147         ;; Crosspost the article.
9148         ((eq action 'crosspost)
9149          (let ((xref (message-tokenize-header
9150                       (mail-header-xref (gnus-summary-article-header article))
9151                       " ")))
9152            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
9153                                   ":" (number-to-string article)))
9154            (unless xref
9155              (setq xref (list (system-name))))
9156            (setq new-xref
9157                  (concat
9158                   (mapconcat 'identity
9159                              (delete "Xref:" (delete new-xref xref))
9160                              " ")
9161                   " " new-xref))
9162            (save-excursion
9163              (set-buffer copy-buf)
9164              ;; First put the article in the destination group.
9165              (gnus-request-article-this-buffer article gnus-newsgroup-name)
9166              (when (consp (setq art-group
9167                                 (gnus-request-accept-article
9168                                  to-newsgroup select-method (not articles))))
9169                (setq new-xref (concat new-xref " " (car art-group)
9170                                       ":"
9171                                       (number-to-string (cdr art-group))))
9172                ;; Now we have the new Xrefs header, so we insert
9173                ;; it and replace the new article.
9174                (nnheader-replace-header "Xref" new-xref)
9175                (gnus-request-replace-article
9176                 (cdr art-group) to-newsgroup (current-buffer))
9177                art-group))))))
9178       (cond
9179        ((not art-group)
9180         (gnus-message 1 "Couldn't %s article %s: %s"
9181                       (cadr (assq action names)) article
9182                       (nnheader-get-report (car to-method))))
9183        ((eq art-group 'junk)
9184         (when (eq action 'move)
9185           (gnus-summary-mark-article article gnus-canceled-mark)
9186           (gnus-message 4 "Deleted article %s" article)
9187           ;; run the delete hook
9188           (run-hook-with-args 'gnus-summary-article-delete-hook
9189                               action
9190                               (gnus-data-header
9191                                (assoc article (gnus-data-list nil)))
9192                               gnus-newsgroup-name nil
9193                               select-method)))
9194        (t
9195         (let* ((pto-group (gnus-group-prefixed-name
9196                            (car art-group) to-method))
9197                (info (gnus-get-info pto-group))
9198                (to-group (gnus-info-group info))
9199                to-marks)
9200           ;; Update the group that has been moved to.
9201           (when (and info
9202                      (memq action '(move copy)))
9203             (unless (member to-group to-groups)
9204               (push to-group to-groups))
9205
9206             (unless (memq article gnus-newsgroup-unreads)
9207               (push 'read to-marks)
9208               (gnus-info-set-read
9209                info (gnus-add-to-range (gnus-info-read info)
9210                                        (list (cdr art-group)))))
9211
9212             ;; See whether the article is to be put in the cache.
9213             (let ((marks (if (gnus-group-auto-expirable-p to-group)
9214                              gnus-article-mark-lists
9215                            (delete '(expirable . expire)
9216                                    (copy-sequence gnus-article-mark-lists))))
9217                   (to-article (cdr art-group)))
9218
9219               ;; Enter the article into the cache in the new group,
9220               ;; if that is required.
9221               (when gnus-use-cache
9222                 (gnus-cache-possibly-enter-article
9223                  to-group to-article
9224                  (let ((header (copy-sequence
9225                                 (gnus-summary-article-header article))))
9226                    (mail-header-set-number header to-article)
9227                    header)
9228                  (memq article gnus-newsgroup-marked)
9229                  (memq article gnus-newsgroup-dormant)
9230                  (memq article gnus-newsgroup-unreads)))
9231
9232               (when gnus-preserve-marks
9233                 ;; Copy any marks over to the new group.
9234                 (when (and (equal to-group gnus-newsgroup-name)
9235                            (not (memq article gnus-newsgroup-unreads)))
9236                   ;; Mark this article as read in this group.
9237                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
9238                   (setcdr (gnus-active to-group) to-article)
9239                   (setcdr gnus-newsgroup-active to-article))
9240
9241                 (while marks
9242                   (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
9243                     (when (memq article (symbol-value
9244                                          (intern (format "gnus-newsgroup-%s"
9245                                                          (caar marks)))))
9246                       (push (cdar marks) to-marks)
9247                       ;; If the other group is the same as this group,
9248                       ;; then we have to add the mark to the list.
9249                       (when (equal to-group gnus-newsgroup-name)
9250                         (set (intern (format "gnus-newsgroup-%s" (caar marks)))
9251                              (cons to-article
9252                                    (symbol-value
9253                                     (intern (format "gnus-newsgroup-%s"
9254                                                     (caar marks)))))))
9255                       ;; Copy the marks to other group.
9256                       (gnus-add-marked-articles
9257                        to-group (cdar marks) (list to-article) info)))
9258                   (setq marks (cdr marks)))
9259
9260                 (gnus-request-set-mark
9261                  to-group (list (list (list to-article) 'add to-marks))))
9262
9263               (gnus-dribble-enter
9264                (concat "(gnus-group-set-info '"
9265                        (gnus-prin1-to-string (gnus-get-info to-group))
9266                        ")"))))
9267
9268           ;; Update the Xref header in this article to point to
9269           ;; the new crossposted article we have just created.
9270           (when (eq action 'crosspost)
9271             (save-excursion
9272               (set-buffer copy-buf)
9273               (gnus-request-article-this-buffer article gnus-newsgroup-name)
9274               (nnheader-replace-header "Xref" new-xref)
9275               (gnus-request-replace-article
9276                article gnus-newsgroup-name (current-buffer))))
9277
9278           ;; run the move/copy/crosspost/respool hook
9279           (run-hook-with-args 'gnus-summary-article-move-hook
9280                               action
9281                               (gnus-data-header
9282                                (assoc article (gnus-data-list nil)))
9283                               gnus-newsgroup-name
9284                               to-newsgroup
9285                               select-method))
9286
9287         ;;;!!!Why is this necessary?
9288         (set-buffer gnus-summary-buffer)
9289         
9290         (gnus-summary-goto-subject article)
9291         (when (eq action 'move)
9292           (gnus-summary-mark-article article gnus-canceled-mark))))
9293       (gnus-summary-remove-process-mark article))
9294     ;; Re-activate all groups that have been moved to.
9295     (save-excursion
9296       (set-buffer gnus-group-buffer)
9297       (let ((gnus-group-marked to-groups))
9298         (gnus-group-get-new-news-this-group nil t)))
9299
9300     (gnus-kill-buffer copy-buf)
9301     (gnus-summary-position-point)
9302     (gnus-set-mode-line 'summary)))
9303
9304 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9305   "Copy the current article to some other group.
9306 If TO-NEWSGROUP is string, do not prompt for a newsgroup to copy to.
9307 When called interactively, if TO-NEWSGROUP is nil, use the value of
9308 the variable `gnus-move-split-methods' for finding a default target
9309 newsgroup.
9310 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9311 re-spool using this method."
9312   (interactive "P")
9313   (gnus-summary-move-article n to-newsgroup select-method 'copy))
9314
9315 (defun gnus-summary-crosspost-article (&optional n)
9316   "Crosspost the current article to some other group."
9317   (interactive "P")
9318   (gnus-summary-move-article n nil nil 'crosspost))
9319
9320 (defcustom gnus-summary-respool-default-method nil
9321   "Default method type for respooling an article.
9322 If nil, use to the current newsgroup method."
9323   :type 'symbol
9324   :group 'gnus-summary-mail)
9325
9326 (defcustom gnus-summary-display-while-building nil
9327   "If non-nil, show and update the summary buffer as it's being built.
9328 If the value is t, update the buffer after every line is inserted.  If
9329 the value is an integer (N), update the display every N lines."
9330   :group 'gnus-thread
9331   :type '(choice (const :tag "off" nil)
9332                  number
9333                  (const :tag "frequently" t)))
9334
9335 (defun gnus-summary-respool-article (&optional n method)
9336   "Respool the current article.
9337 The article will be squeezed through the mail spooling process again,
9338 which means that it will be put in some mail newsgroup or other
9339 depending on `nnmail-split-methods'.
9340 If N is a positive number, respool the N next articles.
9341 If N is a negative number, respool the N previous articles.
9342 If N is nil and any articles have been marked with the process mark,
9343 respool those articles instead.
9344
9345 Respooling can be done both from mail groups and \"real\" newsgroups.
9346 In the former case, the articles in question will be moved from the
9347 current group into whatever groups they are destined to.  In the
9348 latter case, they will be copied into the relevant groups."
9349   (interactive
9350    (list current-prefix-arg
9351          (let* ((methods (gnus-methods-using 'respool))
9352                 (methname
9353                  (symbol-name (or gnus-summary-respool-default-method
9354                                   (car (gnus-find-method-for-group
9355                                         gnus-newsgroup-name)))))
9356                 (method
9357                  (gnus-completing-read-with-default
9358                   methname "What backend do you want to use when respooling?"
9359                   methods nil t nil 'gnus-mail-method-history))
9360                 ms)
9361            (cond
9362             ((zerop (length (setq ms (gnus-servers-using-backend
9363                                       (intern method)))))
9364              (list (intern method) ""))
9365             ((= 1 (length ms))
9366              (car ms))
9367             (t
9368              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9369                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9370                            ms-alist))))))))
9371   (unless method
9372     (error "No method given for respooling"))
9373   (if (assoc (symbol-name
9374               (car (gnus-find-method-for-group gnus-newsgroup-name)))
9375              (gnus-methods-using 'respool))
9376       (gnus-summary-move-article n nil method)
9377     (gnus-summary-copy-article n nil method)))
9378
9379 (defun gnus-summary-import-article (file &optional edit)
9380   "Import an arbitrary file into a mail newsgroup."
9381   (interactive "fImport file: \nP")
9382   (let ((group gnus-newsgroup-name)
9383         (now (current-time))
9384         atts lines group-art)
9385     (unless (gnus-check-backend-function 'request-accept-article group)
9386       (error "%s does not support article importing" group))
9387     (or (file-readable-p file)
9388         (not (file-regular-p file))
9389         (error "Can't read %s" file))
9390     (save-excursion
9391       (set-buffer (gnus-get-buffer-create " *import file*"))
9392       (erase-buffer)
9393       (nnheader-insert-file-contents file)
9394       (goto-char (point-min))
9395       (if (nnheader-article-p)
9396           (save-restriction
9397             (goto-char (point-min))
9398             (search-forward "\n\n" nil t)
9399             (narrow-to-region (point-min) (1- (point)))
9400             (goto-char (point-min))
9401             (unless (re-search-forward "^date:" nil t)
9402               (goto-char (point-max))
9403               (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9404         ;; This doesn't look like an article, so we fudge some headers.
9405         (setq atts (file-attributes file)
9406               lines (count-lines (point-min) (point-max)))
9407         (insert "From: " (read-string "From: ") "\n"
9408                 "Subject: " (read-string "Subject: ") "\n"
9409                 "Date: " (message-make-date (nth 5 atts)) "\n"
9410                 "Message-ID: " (message-make-message-id) "\n"
9411                 "Lines: " (int-to-string lines) "\n"
9412                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9413       (setq group-art (gnus-request-accept-article group nil t))
9414       (kill-buffer (current-buffer)))
9415     (setq gnus-newsgroup-active (gnus-activate-group group))
9416     (forward-line 1)
9417     (gnus-summary-goto-article (cdr group-art) nil t)
9418     (when edit
9419       (gnus-summary-edit-article))))
9420
9421 (defun gnus-summary-create-article ()
9422   "Create an article in a mail newsgroup."
9423   (interactive)
9424   (let ((group gnus-newsgroup-name)
9425         (now (current-time))
9426         group-art)
9427     (unless (gnus-check-backend-function 'request-accept-article group)
9428       (error "%s does not support article importing" group))
9429     (save-excursion
9430       (set-buffer (gnus-get-buffer-create " *import file*"))
9431       (erase-buffer)
9432       (goto-char (point-min))
9433       ;; This doesn't look like an article, so we fudge some headers.
9434       (insert "From: " (read-string "From: ") "\n"
9435               "Subject: " (read-string "Subject: ") "\n"
9436               "Date: " (message-make-date now) "\n"
9437               "Message-ID: " (message-make-message-id) "\n")
9438       (setq group-art (gnus-request-accept-article group nil t))
9439       (kill-buffer (current-buffer)))
9440     (setq gnus-newsgroup-active (gnus-activate-group group))
9441     (forward-line 1)
9442     (gnus-summary-goto-article (cdr group-art) nil t)
9443     (gnus-summary-edit-article)))
9444
9445 (defun gnus-summary-article-posted-p ()
9446   "Say whether the current (mail) article is available from news as well.
9447 This will be the case if the article has both been mailed and posted."
9448   (interactive)
9449   (let ((id (mail-header-references (gnus-summary-article-header)))
9450         (gnus-override-method (car (gnus-refer-article-methods))))
9451     (if (gnus-request-head id "")
9452         (gnus-message 2 "The current message was found on %s"
9453                       gnus-override-method)
9454       (gnus-message 2 "The current message couldn't be found on %s"
9455                     gnus-override-method)
9456       nil)))
9457
9458 (defun gnus-summary-expire-articles (&optional now)
9459   "Expire all articles that are marked as expirable in the current group."
9460   (interactive)
9461   (when (and (not gnus-group-is-exiting-without-update-p)
9462              (gnus-check-backend-function
9463               'request-expire-articles gnus-newsgroup-name))
9464     ;; This backend supports expiry.
9465     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
9466            (expirable (if total
9467                           (progn
9468                             ;; We need to update the info for
9469                             ;; this group for `gnus-list-of-read-articles'
9470                             ;; to give us the right answer.
9471                             (gnus-run-hooks 'gnus-exit-group-hook)
9472                             (gnus-summary-update-info)
9473                             (gnus-list-of-read-articles gnus-newsgroup-name))
9474                         (setq gnus-newsgroup-expirable
9475                               (sort gnus-newsgroup-expirable '<))))
9476            (expiry-wait (if now 'immediate
9477                           (gnus-group-find-parameter
9478                            gnus-newsgroup-name 'expiry-wait)))
9479            (nnmail-expiry-target
9480             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
9481                 nnmail-expiry-target))
9482            es)
9483       (when expirable
9484         ;; There are expirable articles in this group, so we run them
9485         ;; through the expiry process.
9486         (gnus-message 6 "Expiring articles...")
9487         (unless (gnus-check-group gnus-newsgroup-name)
9488           (error "Can't open server for %s" gnus-newsgroup-name))
9489         ;; The list of articles that weren't expired is returned.
9490         (save-excursion
9491           (if expiry-wait
9492               (let ((nnmail-expiry-wait-function nil)
9493                     (nnmail-expiry-wait expiry-wait))
9494                 (setq es (gnus-request-expire-articles
9495                           expirable gnus-newsgroup-name)))
9496             (setq es (gnus-request-expire-articles
9497                       expirable gnus-newsgroup-name)))
9498           (unless total
9499             (setq gnus-newsgroup-expirable es))
9500           ;; We go through the old list of expirable, and mark all
9501           ;; really expired articles as nonexistent.
9502           (unless (eq es expirable)     ;If nothing was expired, we don't mark.
9503             (let ((gnus-use-cache nil))
9504               (dolist (article expirable)
9505                 (when (and (not (memq article es))
9506                            (gnus-data-find article))
9507                   (gnus-summary-mark-article article gnus-canceled-mark)
9508                   (run-hook-with-args 'gnus-summary-article-expire-hook
9509                                       'delete
9510                                       (gnus-data-header
9511                                        (assoc article (gnus-data-list nil)))
9512                                       gnus-newsgroup-name
9513                                       nil
9514                                       nil))))))
9515         (gnus-message 6 "Expiring articles...done")))))
9516
9517 (defun gnus-summary-expire-articles-now ()
9518   "Expunge all expirable articles in the current group.
9519 This means that *all* articles that are marked as expirable will be
9520 deleted forever, right now."
9521   (interactive)
9522   (or gnus-expert-user
9523       (gnus-yes-or-no-p
9524        "Are you really, really, really sure you want to delete all these messages? ")
9525       (error "Phew!"))
9526   (gnus-summary-expire-articles t))
9527
9528 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
9529 (defun gnus-summary-delete-article (&optional n)
9530   "Delete the N next (mail) articles.
9531 This command actually deletes articles.  This is not a marking
9532 command.  The article will disappear forever from your life, never to
9533 return.
9534
9535 If N is negative, delete backwards.
9536 If N is nil and articles have been marked with the process mark,
9537 delete these instead.
9538
9539 If `gnus-novice-user' is non-nil you will be asked for
9540 confirmation before the articles are deleted."
9541   (interactive "P")
9542   (unless (gnus-check-backend-function 'request-expire-articles
9543                                        gnus-newsgroup-name)
9544     (error "The current newsgroup does not support article deletion"))
9545   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
9546     (error "Couldn't open server"))
9547   ;; Compute the list of articles to delete.
9548   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
9549         (nnmail-expiry-target 'delete)
9550         not-deleted)
9551     (if (and gnus-novice-user
9552              (not (gnus-yes-or-no-p
9553                    (format "Do you really want to delete %s forever? "
9554                            (if (> (length articles) 1)
9555                                (format "these %s articles" (length articles))
9556                              "this article")))))
9557         ()
9558       ;; Delete the articles.
9559       (setq not-deleted (gnus-request-expire-articles
9560                          articles gnus-newsgroup-name 'force))
9561       (while articles
9562         (gnus-summary-remove-process-mark (car articles))
9563         ;; The backend might not have been able to delete the article
9564         ;; after all.
9565         (unless (memq (car articles) not-deleted)
9566           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
9567         (let* ((article (car articles))
9568                (ghead  (gnus-data-header
9569                                     (assoc article (gnus-data-list nil)))))
9570           (run-hook-with-args 'gnus-summary-article-delete-hook
9571                               'delete ghead gnus-newsgroup-name nil
9572                               nil))
9573         (setq articles (cdr articles)))
9574       (when not-deleted
9575         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
9576     (gnus-summary-position-point)
9577     (gnus-set-mode-line 'summary)
9578     not-deleted))
9579
9580 (defun gnus-summary-edit-article (&optional force)
9581   "Edit the current article.
9582 This will have permanent effect only in mail groups.
9583 If FORCE is non-nil, allow editing of articles even in read-only
9584 groups."
9585   (interactive "P")
9586   (save-excursion
9587     (set-buffer gnus-summary-buffer)
9588     (let ((mail-parse-charset gnus-newsgroup-charset)
9589           (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
9590       (gnus-set-global-variables)
9591       (when (and (not force)
9592                  (gnus-group-read-only-p))
9593         (error "The current newsgroup does not support article editing"))
9594       (gnus-summary-show-article t)
9595       (gnus-article-edit-article
9596        'ignore
9597        `(lambda (no-highlight)
9598           (let ((mail-parse-charset ',gnus-newsgroup-charset)
9599                 (message-options message-options)
9600                 (message-options-set-recipient)
9601                 (mail-parse-ignored-charsets
9602                  ',gnus-newsgroup-ignored-charsets))
9603             (gnus-summary-edit-article-done
9604              ,(or (mail-header-references gnus-current-headers) "")
9605              ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight)))))))
9606
9607 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
9608
9609 (defun gnus-summary-edit-article-done (&optional references read-only buffer
9610                                                  no-highlight)
9611   "Make edits to the current article permanent."
9612   (interactive)
9613   (save-excursion
9614     ;; The buffer restriction contains the entire article if it exists.
9615     (when (article-goto-body)
9616       (let ((lines (count-lines (point) (point-max)))
9617             (length (- (point-max) (point)))
9618             (case-fold-search t)
9619             (body (copy-marker (point))))
9620         (goto-char (point-min))
9621         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
9622           (delete-region (match-beginning 1) (match-end 1))
9623           (insert (number-to-string length)))
9624         (goto-char (point-min))
9625         (when (re-search-forward
9626                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
9627           (delete-region (match-beginning 1) (match-end 1))
9628           (insert (number-to-string length)))
9629         (goto-char (point-min))
9630         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
9631           (delete-region (match-beginning 1) (match-end 1))
9632           (insert (number-to-string lines))))))
9633   ;; Replace the article.
9634   (let ((buf (current-buffer)))
9635     (with-temp-buffer
9636       (insert-buffer-substring buf)
9637
9638       (if (and (not read-only)
9639                (not (gnus-request-replace-article
9640                      (cdr gnus-article-current) (car gnus-article-current)
9641                      (current-buffer) t)))
9642           (error "Couldn't replace article")
9643         ;; Update the summary buffer.
9644         (if (and references
9645                  (equal (message-tokenize-header references " ")
9646                         (message-tokenize-header
9647                          (or (message-fetch-field "references") "") " ")))
9648             ;; We only have to update this line.
9649             (save-excursion
9650               (save-restriction
9651                 (message-narrow-to-head)
9652                 (let ((head (buffer-string))
9653                       header)
9654                   (with-temp-buffer
9655                     (insert (format "211 %d Article retrieved.\n"
9656                                     (cdr gnus-article-current)))
9657                     (insert head)
9658                     (insert ".\n")
9659                     (let ((nntp-server-buffer (current-buffer)))
9660                       (setq header (car (gnus-get-newsgroup-headers
9661                                          nil t))))
9662                     (save-excursion
9663                       (set-buffer gnus-summary-buffer)
9664                       (gnus-data-set-header
9665                        (gnus-data-find (cdr gnus-article-current))
9666                        header)
9667                       (gnus-summary-update-article-line
9668                        (cdr gnus-article-current) header)
9669                       (if (gnus-summary-goto-subject
9670                            (cdr gnus-article-current) nil t)
9671                           (gnus-summary-update-secondary-mark
9672                            (cdr gnus-article-current))))))))
9673           ;; Update threads.
9674           (set-buffer (or buffer gnus-summary-buffer))
9675           (gnus-summary-update-article (cdr gnus-article-current))
9676           (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9677               (gnus-summary-update-secondary-mark
9678                (cdr gnus-article-current))))
9679         ;; Prettify the article buffer again.
9680         (unless no-highlight
9681           (save-excursion
9682             (set-buffer gnus-article-buffer)
9683             ;;;!!! Fix this -- article should be rehighlighted.
9684             ;;;(gnus-run-hooks 'gnus-article-display-hook)
9685             (set-buffer gnus-original-article-buffer)
9686             (gnus-request-article
9687              (cdr gnus-article-current)
9688              (car gnus-article-current) (current-buffer))))
9689         ;; Prettify the summary buffer line.
9690         (when (gnus-visual-p 'summary-highlight 'highlight)
9691           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
9692
9693 (defun gnus-summary-edit-wash (key)
9694   "Perform editing command KEY in the article buffer."
9695   (interactive
9696    (list
9697     (progn
9698       (message "%s" (concat (this-command-keys) "- "))
9699       (read-char))))
9700   (message "")
9701   (gnus-summary-edit-article)
9702   (execute-kbd-macro (concat (this-command-keys) key))
9703   (gnus-article-edit-done))
9704
9705 ;;; Respooling
9706
9707 (defun gnus-summary-respool-query (&optional silent trace)
9708   "Query where the respool algorithm would put this article."
9709   (interactive)
9710   (let (gnus-mark-article-hook)
9711     (gnus-summary-select-article)
9712     (save-excursion
9713       (set-buffer gnus-original-article-buffer)
9714       (let ((groups (nnmail-article-group 'identity trace)))
9715         (unless silent
9716           (if groups
9717               (message "This message would go to %s"
9718                        (mapconcat 'car groups ", "))
9719             (message "This message would go to no groups"))
9720           groups)))))
9721
9722 (defun gnus-summary-respool-trace ()
9723   "Trace where the respool algorithm would put this article.
9724 Display a buffer showing all fancy splitting patterns which matched."
9725   (interactive)
9726   (gnus-summary-respool-query nil t))
9727
9728 ;; Summary marking commands.
9729
9730 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
9731   "Mark articles which has the same subject as read, and then select the next.
9732 If UNMARK is positive, remove any kind of mark.
9733 If UNMARK is negative, tick articles."
9734   (interactive "P")
9735   (when unmark
9736     (setq unmark (prefix-numeric-value unmark)))
9737   (let ((count
9738          (gnus-summary-mark-same-subject
9739           (gnus-summary-article-subject) unmark)))
9740     ;; Select next unread article.  If auto-select-same mode, should
9741     ;; select the first unread article.
9742     (gnus-summary-next-article t (and gnus-auto-select-same
9743                                       (gnus-summary-article-subject)))
9744     (gnus-message 7 "%d article%s marked as %s"
9745                   count (if (= count 1) " is" "s are")
9746                   (if unmark "unread" "read"))))
9747
9748 (defun gnus-summary-kill-same-subject (&optional unmark)
9749   "Mark articles which has the same subject as read.
9750 If UNMARK is positive, remove any kind of mark.
9751 If UNMARK is negative, tick articles."
9752   (interactive "P")
9753   (when unmark
9754     (setq unmark (prefix-numeric-value unmark)))
9755   (let ((count
9756          (gnus-summary-mark-same-subject
9757           (gnus-summary-article-subject) unmark)))
9758     ;; If marked as read, go to next unread subject.
9759     (when (null unmark)
9760       ;; Go to next unread subject.
9761       (gnus-summary-next-subject 1 t))
9762     (gnus-message 7 "%d articles are marked as %s"
9763                   count (if unmark "unread" "read"))))
9764
9765 (defun gnus-summary-mark-same-subject (subject &optional unmark)
9766   "Mark articles with same SUBJECT as read, and return marked number.
9767 If optional argument UNMARK is positive, remove any kinds of marks.
9768 If optional argument UNMARK is negative, mark articles as unread instead."
9769   (let ((count 1))
9770     (save-excursion
9771       (cond
9772        ((null unmark)                   ; Mark as read.
9773         (while (and
9774                 (progn
9775                   (gnus-summary-mark-article-as-read gnus-killed-mark)
9776                   (gnus-summary-show-thread) t)
9777                 (gnus-summary-find-subject subject))
9778           (setq count (1+ count))))
9779        ((> unmark 0)                    ; Tick.
9780         (while (and
9781                 (progn
9782                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
9783                   (gnus-summary-show-thread) t)
9784                 (gnus-summary-find-subject subject))
9785           (setq count (1+ count))))
9786        (t                               ; Mark as unread.
9787         (while (and
9788                 (progn
9789                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
9790                   (gnus-summary-show-thread) t)
9791                 (gnus-summary-find-subject subject))
9792           (setq count (1+ count)))))
9793       (gnus-set-mode-line 'summary)
9794       ;; Return the number of marked articles.
9795       count)))
9796
9797 (defun gnus-summary-mark-as-processable (n &optional unmark)
9798   "Set the process mark on the next N articles.
9799 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
9800 the process mark instead.  The difference between N and the actual
9801 number of articles marked is returned."
9802   (interactive "P")
9803   (if (and (null n) (gnus-region-active-p))
9804       (gnus-uu-mark-region (region-beginning) (region-end) unmark)
9805     (setq n (prefix-numeric-value n))
9806     (let ((backward (< n 0))
9807           (n (abs n)))
9808       (while (and
9809               (> n 0)
9810               (if unmark
9811                   (gnus-summary-remove-process-mark
9812                    (gnus-summary-article-number))
9813                 (gnus-summary-set-process-mark (gnus-summary-article-number)))
9814               (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
9815         (setq n (1- n)))
9816       (when (/= 0 n)
9817         (gnus-message 7 "No more articles"))
9818       (gnus-summary-recenter)
9819       (gnus-summary-position-point)
9820       n)))
9821
9822 (defun gnus-summary-unmark-as-processable (n)
9823   "Remove the process mark from the next N articles.
9824 If N is negative, unmark backward instead.  The difference between N and
9825 the actual number of articles unmarked is returned."
9826   (interactive "P")
9827   (gnus-summary-mark-as-processable n t))
9828
9829 (defun gnus-summary-unmark-all-processable ()
9830   "Remove the process mark from all articles."
9831   (interactive)
9832   (save-excursion
9833     (while gnus-newsgroup-processable
9834       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
9835   (gnus-summary-position-point))
9836
9837 (defun gnus-summary-add-mark (article type)
9838   "Mark ARTICLE with a mark of TYPE."
9839   (let ((vtype (car (assq type gnus-article-mark-lists)))
9840         var)
9841     (if (not vtype)
9842         (error "No such mark type: %s" type)
9843       (setq var (intern (format "gnus-newsgroup-%s" type)))
9844       (set var (cons article (symbol-value var)))
9845       (if (memq type '(processable cached replied forwarded recent saved))
9846           (gnus-summary-update-secondary-mark article)
9847         ;;; !!! This is bogus.  We should find out what primary
9848         ;;; !!! mark we want to set.
9849         (gnus-summary-update-mark gnus-del-mark 'unread)))))
9850
9851 (defun gnus-summary-mark-as-expirable (n)
9852   "Mark N articles forward as expirable.
9853 If N is negative, mark backward instead.  The difference between N and
9854 the actual number of articles marked is returned."
9855   (interactive "p")
9856   (gnus-summary-mark-forward n gnus-expirable-mark))
9857
9858 (defun gnus-summary-mark-as-spam (n)
9859   "Mark N articles forward as spam.
9860 If N is negative, mark backward instead.  The difference between N and
9861 the actual number of articles marked is returned."
9862   (interactive "p")
9863   (gnus-summary-mark-forward n gnus-spam-mark))
9864
9865 (defun gnus-summary-mark-article-as-replied (article)
9866   "Mark ARTICLE as replied to and update the summary line.
9867 ARTICLE can also be a list of articles."
9868   (interactive (list (gnus-summary-article-number)))
9869   (let ((articles (if (listp article) article (list article))))
9870     (dolist (article articles)
9871       (unless (numberp article)
9872         (error "%s is not a number" article))
9873       (push article gnus-newsgroup-replied)
9874       (let ((buffer-read-only nil))
9875         (when (gnus-summary-goto-subject article nil t)
9876           (gnus-summary-update-secondary-mark article))))))
9877
9878 (defun gnus-summary-mark-article-as-forwarded (article)
9879   "Mark ARTICLE as forwarded and update the summary line.
9880 ARTICLE can also be a list of articles."
9881   (let ((articles (if (listp article) article (list article))))
9882     (dolist (article articles)
9883       (push article gnus-newsgroup-forwarded)
9884       (let ((buffer-read-only nil))
9885         (when (gnus-summary-goto-subject article nil t)
9886           (gnus-summary-update-secondary-mark article))))))
9887
9888 (defun gnus-summary-set-bookmark (article)
9889   "Set a bookmark in current article."
9890   (interactive (list (gnus-summary-article-number)))
9891   (when (or (not (get-buffer gnus-article-buffer))
9892             (not gnus-current-article)
9893             (not gnus-article-current)
9894             (not (equal gnus-newsgroup-name (car gnus-article-current))))
9895     (error "No current article selected"))
9896   ;; Remove old bookmark, if one exists.
9897   (gnus-pull article gnus-newsgroup-bookmarks)
9898   ;; Set the new bookmark, which is on the form
9899   ;; (article-number . line-number-in-body).
9900   (push
9901    (cons article
9902          (with-current-buffer gnus-article-buffer
9903            (count-lines
9904             (min (point)
9905                  (save-excursion
9906                    (article-goto-body)
9907                    (point)))
9908             (point))))
9909    gnus-newsgroup-bookmarks)
9910   (gnus-message 6 "A bookmark has been added to the current article."))
9911
9912 (defun gnus-summary-remove-bookmark (article)
9913   "Remove the bookmark from the current article."
9914   (interactive (list (gnus-summary-article-number)))
9915   ;; Remove old bookmark, if one exists.
9916   (if (not (assq article gnus-newsgroup-bookmarks))
9917       (gnus-message 6 "No bookmark in current article.")
9918     (gnus-pull article gnus-newsgroup-bookmarks)
9919     (gnus-message 6 "Removed bookmark.")))
9920
9921 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
9922 (defun gnus-summary-mark-as-dormant (n)
9923   "Mark N articles forward as dormant.
9924 If N is negative, mark backward instead.  The difference between N and
9925 the actual number of articles marked is returned."
9926   (interactive "p")
9927   (gnus-summary-mark-forward n gnus-dormant-mark))
9928
9929 (defun gnus-summary-set-process-mark (article)
9930   "Set the process mark on ARTICLE and update the summary line."
9931   (setq gnus-newsgroup-processable
9932         (cons article
9933               (delq article gnus-newsgroup-processable)))
9934   (when (gnus-summary-goto-subject article)
9935     (gnus-summary-show-thread)
9936     (gnus-summary-goto-subject article)
9937     (gnus-summary-update-secondary-mark article)))
9938
9939 (defun gnus-summary-remove-process-mark (article)
9940   "Remove the process mark from ARTICLE and update the summary line."
9941   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
9942   (when (gnus-summary-goto-subject article)
9943     (gnus-summary-show-thread)
9944     (gnus-summary-goto-subject article)
9945     (gnus-summary-update-secondary-mark article)))
9946
9947 (defun gnus-summary-set-saved-mark (article)
9948   "Set the process mark on ARTICLE and update the summary line."
9949   (push article gnus-newsgroup-saved)
9950   (when (gnus-summary-goto-subject article)
9951     (gnus-summary-update-secondary-mark article)))
9952
9953 (defun gnus-summary-mark-forward (n &optional mark no-expire)
9954   "Mark N articles as read forwards.
9955 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
9956 The difference between N and the actual number of articles marked is
9957 returned.
9958 If NO-EXPIRE, auto-expiry will be inhibited."
9959   (interactive "p")
9960   (gnus-summary-show-thread)
9961   (let ((backward (< n 0))
9962         (gnus-summary-goto-unread
9963          (and gnus-summary-goto-unread
9964               (not (eq gnus-summary-goto-unread 'never))
9965               (not (memq mark (list gnus-unread-mark gnus-spam-mark
9966                                     gnus-ticked-mark gnus-dormant-mark)))))
9967         (n (abs n))
9968         (mark (or mark gnus-del-mark)))
9969     (while (and (> n 0)
9970                 (gnus-summary-mark-article nil mark no-expire)
9971                 (zerop (gnus-summary-next-subject
9972                         (if backward -1 1)
9973                         (and gnus-summary-goto-unread
9974                              (not (eq gnus-summary-goto-unread 'never)))
9975                         t)))
9976       (setq n (1- n)))
9977     (when (/= 0 n)
9978       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9979     (gnus-summary-recenter)
9980     (gnus-summary-position-point)
9981     (gnus-set-mode-line 'summary)
9982     n))
9983
9984 (defun gnus-summary-mark-article-as-read (mark)
9985   "Mark the current article quickly as read with MARK."
9986   (let ((article (gnus-summary-article-number)))
9987     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9988     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9989     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
9990     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9991     (push (cons article mark) gnus-newsgroup-reads)
9992     ;; Possibly remove from cache, if that is used.
9993     (when gnus-use-cache
9994       (gnus-cache-enter-remove-article article))
9995     ;; Allow the backend to change the mark.
9996     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9997     ;; Check for auto-expiry.
9998     (when (and gnus-newsgroup-auto-expire
9999                (memq mark gnus-auto-expirable-marks))
10000       (setq mark gnus-expirable-mark)
10001       ;; Let the backend know about the mark change.
10002       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10003       (push article gnus-newsgroup-expirable))
10004     ;; Set the mark in the buffer.
10005     (gnus-summary-update-mark mark 'unread)
10006     t))
10007
10008 (defun gnus-summary-mark-article-as-unread (mark)
10009   "Mark the current article quickly as unread with MARK."
10010   (let* ((article (gnus-summary-article-number))
10011          (old-mark (gnus-summary-article-mark article)))
10012     ;; Allow the backend to change the mark.
10013     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10014     (if (eq mark old-mark)
10015         t
10016       (if (<= article 0)
10017           (progn
10018             (gnus-error 1 "Can't mark negative article numbers")
10019             nil)
10020         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10021         (setq gnus-newsgroup-spam-marked
10022               (delq article gnus-newsgroup-spam-marked))
10023         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10024         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
10025         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
10026         (cond ((= mark gnus-ticked-mark)
10027                (setq gnus-newsgroup-marked
10028                      (gnus-add-to-sorted-list gnus-newsgroup-marked
10029                                               article)))
10030               ((= mark gnus-spam-mark)
10031                (setq gnus-newsgroup-spam-marked
10032                      (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10033                                               article)))
10034               ((= mark gnus-dormant-mark)
10035                (setq gnus-newsgroup-dormant
10036                      (gnus-add-to-sorted-list gnus-newsgroup-dormant
10037                                               article)))
10038               (t
10039                (setq gnus-newsgroup-unreads
10040                      (gnus-add-to-sorted-list gnus-newsgroup-unreads
10041                                               article))))
10042         (gnus-pull article gnus-newsgroup-reads)
10043
10044         ;; See whether the article is to be put in the cache.
10045         (and gnus-use-cache
10046              (vectorp (gnus-summary-article-header article))
10047              (save-excursion
10048                (gnus-cache-possibly-enter-article
10049                 gnus-newsgroup-name article
10050                 (gnus-summary-article-header article)
10051                 (= mark gnus-ticked-mark)
10052                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10053
10054         ;; Fix the mark.
10055         (gnus-summary-update-mark mark 'unread)
10056         t))))
10057
10058 (defun gnus-summary-mark-article (&optional article mark no-expire)
10059   "Mark ARTICLE with MARK.  MARK can be any character.
10060 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
10061 `??' (dormant) and `?E' (expirable).
10062 If MARK is nil, then the default character `?r' is used.
10063 If ARTICLE is nil, then the article on the current line will be
10064 marked.
10065 If NO-EXPIRE, auto-expiry will be inhibited."
10066   ;; The mark might be a string.
10067   (when (stringp mark)
10068     (setq mark (aref mark 0)))
10069   ;; If no mark is given, then we check auto-expiring.
10070   (when (null mark)
10071     (setq mark gnus-del-mark))
10072   (when (and (not no-expire)
10073              gnus-newsgroup-auto-expire
10074              (memq mark gnus-auto-expirable-marks))
10075     (setq mark gnus-expirable-mark))
10076   (let ((article (or article (gnus-summary-article-number)))
10077         (old-mark (gnus-summary-article-mark article)))
10078     ;; Allow the backend to change the mark.
10079     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10080     (if (eq mark old-mark)
10081         t
10082       (unless article
10083         (error "No article on current line"))
10084       (if (not (if (or (= mark gnus-unread-mark)
10085                        (= mark gnus-ticked-mark)
10086                        (= mark gnus-spam-mark)
10087                        (= mark gnus-dormant-mark))
10088                    (gnus-mark-article-as-unread article mark)
10089                  (gnus-mark-article-as-read article mark)))
10090           t
10091         ;; See whether the article is to be put in the cache.
10092         (and gnus-use-cache
10093              (not (= mark gnus-canceled-mark))
10094              (vectorp (gnus-summary-article-header article))
10095              (save-excursion
10096                (gnus-cache-possibly-enter-article
10097                 gnus-newsgroup-name article
10098                 (gnus-summary-article-header article)
10099                 (= mark gnus-ticked-mark)
10100                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10101
10102         (when (gnus-summary-goto-subject article nil t)
10103           (let ((buffer-read-only nil))
10104             (gnus-summary-show-thread)
10105             ;; Fix the mark.
10106             (gnus-summary-update-mark mark 'unread)
10107             t))))))
10108
10109 (defun gnus-summary-update-secondary-mark (article)
10110   "Update the secondary (read, process, cache) mark."
10111   (gnus-summary-update-mark
10112    (cond ((memq article gnus-newsgroup-processable)
10113           gnus-process-mark)
10114          ((memq article gnus-newsgroup-cached)
10115           gnus-cached-mark)
10116          ((memq article gnus-newsgroup-replied)
10117           gnus-replied-mark)
10118          ((memq article gnus-newsgroup-forwarded)
10119           gnus-forwarded-mark)
10120          ((memq article gnus-newsgroup-saved)
10121           gnus-saved-mark)
10122          ((memq article gnus-newsgroup-recent)
10123           gnus-recent-mark)
10124          ((memq article gnus-newsgroup-unseen)
10125           gnus-unseen-mark)
10126          (t gnus-no-mark))
10127    'replied)
10128   (when (gnus-visual-p 'summary-highlight 'highlight)
10129     (gnus-run-hooks 'gnus-summary-update-hook))
10130   t)
10131
10132 (defun gnus-summary-update-download-mark (article)
10133   "Update the download mark."
10134   (gnus-summary-update-mark
10135    (cond ((memq article gnus-newsgroup-undownloaded)
10136           gnus-undownloaded-mark)
10137          (gnus-newsgroup-agentized
10138           gnus-downloaded-mark)
10139          (t
10140           gnus-no-mark))
10141    'download)
10142   (gnus-summary-update-line t)
10143   t)
10144
10145 (defun gnus-summary-update-mark (mark type)
10146   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
10147         (buffer-read-only nil))
10148     (re-search-backward "[\n\r]" (point-at-bol) 'move-to-limit)
10149     (when forward
10150       (when (looking-at "\r")
10151         (incf forward))
10152       (when (<= (+ forward (point)) (point-max))
10153         ;; Go to the right position on the line.
10154         (goto-char (+ forward (point)))
10155         ;; Replace the old mark with the new mark.
10156         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
10157         ;; Optionally update the marks by some user rule.
10158         (when (eq type 'unread)
10159           (gnus-data-set-mark
10160            (gnus-data-find (gnus-summary-article-number)) mark)
10161           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
10162
10163 (defun gnus-mark-article-as-read (article &optional mark)
10164   "Enter ARTICLE in the pertinent lists and remove it from others."
10165   ;; Make the article expirable.
10166   (let ((mark (or mark gnus-del-mark)))
10167     (setq gnus-newsgroup-expirable
10168           (if (= mark gnus-expirable-mark)
10169               (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
10170             (delq article gnus-newsgroup-expirable)))
10171     ;; Remove from unread and marked lists.
10172     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10173     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10174     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10175     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10176     (push (cons article mark) gnus-newsgroup-reads)
10177     ;; Possibly remove from cache, if that is used.
10178     (when gnus-use-cache
10179       (gnus-cache-enter-remove-article article))
10180     t))
10181
10182 (defun gnus-mark-article-as-unread (article &optional mark)
10183   "Enter ARTICLE in the pertinent lists and remove it from others."
10184   (let ((mark (or mark gnus-ticked-mark)))
10185     (if (<= article 0)
10186         (progn
10187           (gnus-error 1 "Can't mark negative article numbers")
10188           nil)
10189       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
10190             gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
10191             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
10192             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
10193             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10194
10195       ;; Unsuppress duplicates?
10196       (when gnus-suppress-duplicates
10197         (gnus-dup-unsuppress-article article))
10198
10199       (cond ((= mark gnus-ticked-mark)
10200              (setq gnus-newsgroup-marked
10201                    (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
10202             ((= mark gnus-spam-mark)
10203              (setq gnus-newsgroup-spam-marked
10204                    (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10205                                             article)))
10206             ((= mark gnus-dormant-mark)
10207              (setq gnus-newsgroup-dormant
10208                    (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10209             (t
10210              (setq gnus-newsgroup-unreads
10211                    (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10212       (gnus-pull article gnus-newsgroup-reads)
10213       t)))
10214
10215 (defalias 'gnus-summary-mark-as-unread-forward
10216   'gnus-summary-tick-article-forward)
10217 (make-obsolete 'gnus-summary-mark-as-unread-forward
10218                'gnus-summary-tick-article-forward)
10219 (defun gnus-summary-tick-article-forward (n)
10220   "Tick N articles forwards.
10221 If N is negative, tick backwards instead.
10222 The difference between N and the number of articles ticked is returned."
10223   (interactive "p")
10224   (gnus-summary-mark-forward n gnus-ticked-mark))
10225
10226 (defalias 'gnus-summary-mark-as-unread-backward
10227   'gnus-summary-tick-article-backward)
10228 (make-obsolete 'gnus-summary-mark-as-unread-backward
10229                'gnus-summary-tick-article-backward)
10230 (defun gnus-summary-tick-article-backward (n)
10231   "Tick N articles backwards.
10232 The difference between N and the number of articles ticked is returned."
10233   (interactive "p")
10234   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10235
10236 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10237 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10238 (defun gnus-summary-tick-article (&optional article clear-mark)
10239   "Mark current article as unread.
10240 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10241 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10242   (interactive)
10243   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10244                                        gnus-ticked-mark)))
10245
10246 (defun gnus-summary-mark-as-read-forward (n)
10247   "Mark N articles as read forwards.
10248 If N is negative, mark backwards instead.
10249 The difference between N and the actual number of articles marked is
10250 returned."
10251   (interactive "p")
10252   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10253
10254 (defun gnus-summary-mark-as-read-backward (n)
10255   "Mark the N articles as read backwards.
10256 The difference between N and the actual number of articles marked is
10257 returned."
10258   (interactive "p")
10259   (gnus-summary-mark-forward
10260    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10261
10262 (defun gnus-summary-mark-as-read (&optional article mark)
10263   "Mark current article as read.
10264 ARTICLE specifies the article to be marked as read.
10265 MARK specifies a string to be inserted at the beginning of the line."
10266   (gnus-summary-mark-article article mark))
10267
10268 (defun gnus-summary-clear-mark-forward (n)
10269   "Clear marks from N articles forward.
10270 If N is negative, clear backward instead.
10271 The difference between N and the number of marks cleared is returned."
10272   (interactive "p")
10273   (gnus-summary-mark-forward n gnus-unread-mark))
10274
10275 (defun gnus-summary-clear-mark-backward (n)
10276   "Clear marks from N articles backward.
10277 The difference between N and the number of marks cleared is returned."
10278   (interactive "p")
10279   (gnus-summary-mark-forward (- n) gnus-unread-mark))
10280
10281 (defun gnus-summary-mark-unread-as-read ()
10282   "Intended to be used by `gnus-summary-mark-article-hook'."
10283   (when (memq gnus-current-article gnus-newsgroup-unreads)
10284     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10285
10286 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10287   "Intended to be used by `gnus-summary-mark-article-hook'."
10288   (let ((mark (gnus-summary-article-mark)))
10289     (when (or (gnus-unread-mark-p mark)
10290               (gnus-read-mark-p mark))
10291       (gnus-summary-mark-article gnus-current-article
10292                                  (or new-mark gnus-read-mark)))))
10293
10294 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10295   "Intended to be used by `gnus-summary-mark-article-hook'."
10296   (let ((mark (gnus-summary-article-mark)))
10297     (when (or (gnus-unread-mark-p mark)
10298               (gnus-read-mark-p mark))
10299       (gnus-summary-mark-article (gnus-summary-article-number)
10300                                  (or new-mark gnus-read-mark)))))
10301
10302 (defun gnus-summary-mark-unread-as-ticked ()
10303   "Intended to be used by `gnus-summary-mark-article-hook'."
10304   (when (memq gnus-current-article gnus-newsgroup-unreads)
10305     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10306
10307 (defun gnus-summary-mark-region-as-read (point mark all)
10308   "Mark all unread articles between point and mark as read.
10309 If given a prefix, mark all articles between point and mark as read,
10310 even ticked and dormant ones."
10311   (interactive "r\nP")
10312   (save-excursion
10313     (let (article)
10314       (goto-char point)
10315       (beginning-of-line)
10316       (while (and
10317               (< (point) mark)
10318               (progn
10319                 (when (or all
10320                           (memq (setq article (gnus-summary-article-number))
10321                                 gnus-newsgroup-unreads))
10322                   (gnus-summary-mark-article article gnus-del-mark))
10323                 t)
10324               (gnus-summary-find-next))))))
10325
10326 (defun gnus-summary-mark-below (score mark)
10327   "Mark articles with score less than SCORE with MARK."
10328   (interactive "P\ncMark: ")
10329   (setq score (if score
10330                   (prefix-numeric-value score)
10331                 (or gnus-summary-default-score 0)))
10332   (save-excursion
10333     (set-buffer gnus-summary-buffer)
10334     (goto-char (point-min))
10335     (while
10336         (progn
10337           (and (< (gnus-summary-article-score) score)
10338                (gnus-summary-mark-article nil mark))
10339           (gnus-summary-find-next)))))
10340
10341 (defun gnus-summary-kill-below (&optional score)
10342   "Mark articles with score below SCORE as read."
10343   (interactive "P")
10344   (gnus-summary-mark-below score gnus-killed-mark))
10345
10346 (defun gnus-summary-clear-above (&optional score)
10347   "Clear all marks from articles with score above SCORE."
10348   (interactive "P")
10349   (gnus-summary-mark-above score gnus-unread-mark))
10350
10351 (defun gnus-summary-tick-above (&optional score)
10352   "Tick all articles with score above SCORE."
10353   (interactive "P")
10354   (gnus-summary-mark-above score gnus-ticked-mark))
10355
10356 (defun gnus-summary-mark-above (score mark)
10357   "Mark articles with score over SCORE with MARK."
10358   (interactive "P\ncMark: ")
10359   (setq score (if score
10360                   (prefix-numeric-value score)
10361                 (or gnus-summary-default-score 0)))
10362   (save-excursion
10363     (set-buffer gnus-summary-buffer)
10364     (goto-char (point-min))
10365     (while (and (progn
10366                   (when (> (gnus-summary-article-score) score)
10367                     (gnus-summary-mark-article nil mark))
10368                   t)
10369                 (gnus-summary-find-next)))))
10370
10371 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10372 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10373 (defun gnus-summary-limit-include-expunged (&optional no-error)
10374   "Display all the hidden articles that were expunged for low scores."
10375   (interactive)
10376   (let ((buffer-read-only nil))
10377     (let ((scored gnus-newsgroup-scored)
10378           headers h)
10379       (while scored
10380         (unless (gnus-summary-article-header (caar scored))
10381           (and (setq h (gnus-number-to-header (caar scored)))
10382                (< (cdar scored) gnus-summary-expunge-below)
10383                (push h headers)))
10384         (setq scored (cdr scored)))
10385       (if (not headers)
10386           (when (not no-error)
10387             (error "No expunged articles hidden"))
10388         (goto-char (point-min))
10389         (push gnus-newsgroup-limit gnus-newsgroup-limits)
10390         (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
10391         (mapcar (lambda (x) (push (mail-header-number x)
10392                                   gnus-newsgroup-limit))
10393                 headers)
10394         (gnus-summary-prepare-unthreaded (nreverse headers))
10395         (goto-char (point-min))
10396         (gnus-summary-position-point)
10397         t))))
10398
10399 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
10400   "Mark all unread articles in this newsgroup as read.
10401 If prefix argument ALL is non-nil, ticked and dormant articles will
10402 also be marked as read.
10403 If QUIETLY is non-nil, no questions will be asked.
10404
10405 If TO-HERE is non-nil, it should be a point in the buffer.  All
10406 articles before (after, if REVERSE is set) this point will be marked
10407 as read.
10408
10409 Note that this function will only catch up the unread article
10410 in the current summary buffer limitation.
10411
10412 The number of articles marked as read is returned."
10413   (interactive "P")
10414   (prog1
10415       (save-excursion
10416         (when (or quietly
10417                   (not gnus-interactive-catchup) ;Without confirmation?
10418                   gnus-expert-user
10419                   (gnus-y-or-n-p
10420                    (if all
10421                        "Mark absolutely all articles as read? "
10422                      "Mark all unread articles as read? ")))
10423           (if (and not-mark
10424                    (not gnus-newsgroup-adaptive)
10425                    (not gnus-newsgroup-auto-expire)
10426                    (not gnus-suppress-duplicates)
10427                    (or (not gnus-use-cache)
10428                        (eq gnus-use-cache 'passive)))
10429               (progn
10430                 (when all
10431                   (setq gnus-newsgroup-marked nil
10432                         gnus-newsgroup-spam-marked nil
10433                         gnus-newsgroup-dormant nil))
10434                 (setq gnus-newsgroup-unreads
10435                       (gnus-sorted-nunion
10436                        (gnus-intersection gnus-newsgroup-unreads
10437                                           gnus-newsgroup-downloadable)
10438                        gnus-newsgroup-unfetched)))
10439             ;; We actually mark all articles as canceled, which we
10440             ;; have to do when using auto-expiry or adaptive scoring.
10441             (gnus-summary-show-all-threads)
10442             (if (and to-here reverse)
10443                 (progn
10444                   (goto-char to-here)
10445                   (gnus-summary-mark-current-read-and-unread-as-read
10446                    gnus-catchup-mark)
10447                   (while (gnus-summary-find-next (not all))
10448                     (gnus-summary-mark-article-as-read gnus-catchup-mark)))
10449               (when (gnus-summary-first-subject (not all))
10450                 (while (and
10451                         (if to-here (< (point) to-here) t)
10452                         (gnus-summary-mark-article-as-read gnus-catchup-mark)
10453                         (gnus-summary-find-next (not all))))))
10454             (gnus-set-mode-line 'summary))
10455           t))
10456     (gnus-summary-position-point)))
10457
10458 (defun gnus-summary-catchup-to-here (&optional all)
10459   "Mark all unticked articles before the current one as read.
10460 If ALL is non-nil, also mark ticked and dormant articles as read."
10461   (interactive "P")
10462   (save-excursion
10463     (gnus-save-hidden-threads
10464       (let ((beg (point)))
10465         ;; We check that there are unread articles.
10466         (when (or all (gnus-summary-find-prev))
10467           (gnus-summary-catchup all t beg)))))
10468   (gnus-summary-position-point))
10469
10470 (defun gnus-summary-catchup-from-here (&optional all)
10471   "Mark all unticked articles after (and including) the current one as read.
10472 If ALL is non-nil, also mark ticked and dormant articles as read."
10473   (interactive "P")
10474   (save-excursion
10475     (gnus-save-hidden-threads
10476       (let ((beg (point)))
10477         ;; We check that there are unread articles.
10478         (when (or all (gnus-summary-find-next))
10479           (gnus-summary-catchup all t beg nil t)))))
10480   (gnus-summary-position-point))
10481
10482 (defun gnus-summary-catchup-all (&optional quietly)
10483   "Mark all articles in this newsgroup as read.
10484 This command is dangerous.  Normally, you want \\[gnus-summary-catchup]
10485 instead, which marks only unread articles as read."
10486   (interactive "P")
10487   (gnus-summary-catchup t quietly))
10488
10489 (defun gnus-summary-catchup-and-exit (&optional all quietly)
10490   "Mark all unread articles in this group as read, then exit.
10491 If prefix argument ALL is non-nil, all articles are marked as read.
10492 If QUIETLY is non-nil, no questions will be asked."
10493   (interactive "P")
10494   (when (gnus-summary-catchup all quietly nil 'fast)
10495     ;; Select next newsgroup or exit.
10496     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
10497              (eq gnus-auto-select-next 'quietly))
10498         (gnus-summary-next-group nil)
10499       (gnus-summary-exit))))
10500
10501 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
10502   "Mark all articles in this newsgroup as read, and then exit.
10503 This command is dangerous.  Normally, you want \\[gnus-summary-catchup-and-exit]
10504 instead, which marks only unread articles as read."
10505   (interactive "P")
10506   (gnus-summary-catchup-and-exit t quietly))
10507
10508 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
10509   "Mark all articles in this group as read and select the next group.
10510 If given a prefix, mark all articles, unread as well as ticked, as
10511 read."
10512   (interactive "P")
10513   (save-excursion
10514     (gnus-summary-catchup all))
10515   (gnus-summary-next-group))
10516
10517 ;;;
10518 ;;; with article
10519 ;;;
10520
10521 (defmacro gnus-with-article (article &rest forms)
10522   "Select ARTICLE and perform FORMS in the original article buffer.
10523 Then replace the article with the result."
10524   `(progn
10525      ;; We don't want the article to be marked as read.
10526      (let (gnus-mark-article-hook)
10527        (gnus-summary-select-article t t nil ,article))
10528      (set-buffer gnus-original-article-buffer)
10529      ,@forms
10530      (if (not (gnus-check-backend-function
10531                'request-replace-article (car gnus-article-current)))
10532          (gnus-message 5 "Read-only group; not replacing")
10533        (unless (gnus-request-replace-article
10534                 ,article (car gnus-article-current)
10535                 (current-buffer) t)
10536          (error "Couldn't replace article")))
10537      ;; The cache and backlog have to be flushed somewhat.
10538      (when gnus-keep-backlog
10539        (gnus-backlog-remove-article
10540         (car gnus-article-current) (cdr gnus-article-current)))
10541      (when gnus-use-cache
10542        (gnus-cache-update-article
10543         (car gnus-article-current) (cdr gnus-article-current)))))
10544
10545 (put 'gnus-with-article 'lisp-indent-function 1)
10546 (put 'gnus-with-article 'edebug-form-spec '(form body))
10547
10548 ;; Thread-based commands.
10549
10550 (defun gnus-summary-articles-in-thread (&optional article)
10551   "Return a list of all articles in the current thread.
10552 If ARTICLE is non-nil, return all articles in the thread that starts
10553 with that article."
10554   (let* ((article (or article (gnus-summary-article-number)))
10555          (data (gnus-data-find-list article))
10556          (top-level (gnus-data-level (car data)))
10557          (top-subject
10558           (cond ((null gnus-thread-operation-ignore-subject)
10559                  (gnus-simplify-subject-re
10560                   (mail-header-subject (gnus-data-header (car data)))))
10561                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
10562                  (gnus-simplify-subject-fuzzy
10563                   (mail-header-subject (gnus-data-header (car data)))))
10564                 (t nil)))
10565          (end-point (save-excursion
10566                       (if (gnus-summary-go-to-next-thread)
10567                           (point) (point-max))))
10568          articles)
10569     (while (and data
10570                 (< (gnus-data-pos (car data)) end-point))
10571       (when (or (not top-subject)
10572                 (string= top-subject
10573                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
10574                              (gnus-simplify-subject-fuzzy
10575                               (mail-header-subject
10576                                (gnus-data-header (car data))))
10577                            (gnus-simplify-subject-re
10578                             (mail-header-subject
10579                              (gnus-data-header (car data)))))))
10580         (push (gnus-data-number (car data)) articles))
10581       (unless (and (setq data (cdr data))
10582                    (> (gnus-data-level (car data)) top-level))
10583         (setq data nil)))
10584     ;; Return the list of articles.
10585     (nreverse articles)))
10586
10587 (defun gnus-summary-rethread-current ()
10588   "Rethread the thread the current article is part of."
10589   (interactive)
10590   (let* ((gnus-show-threads t)
10591          (article (gnus-summary-article-number))
10592          (id (mail-header-id (gnus-summary-article-header)))
10593          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
10594     (unless id
10595       (error "No article on the current line"))
10596     (gnus-rebuild-thread id)
10597     (gnus-summary-goto-subject article)))
10598
10599 (defun gnus-summary-reparent-thread ()
10600   "Make the current article child of the marked (or previous) article.
10601
10602 Note that the re-threading will only work if `gnus-thread-ignore-subject'
10603 is non-nil or the Subject: of both articles are the same."
10604   (interactive)
10605   (unless (not (gnus-group-read-only-p))
10606     (error "The current newsgroup does not support article editing"))
10607   (unless (<= (length gnus-newsgroup-processable) 1)
10608     (error "No more than one article may be marked"))
10609   (save-window-excursion
10610     (let ((gnus-article-buffer " *reparent*")
10611           (current-article (gnus-summary-article-number))
10612           ;; First grab the marked article, otherwise one line up.
10613           (parent-article (if (not (null gnus-newsgroup-processable))
10614                               (car gnus-newsgroup-processable)
10615                             (save-excursion
10616                               (if (eq (forward-line -1) 0)
10617                                   (gnus-summary-article-number)
10618                                 (error "Beginning of summary buffer"))))))
10619       (unless (not (eq current-article parent-article))
10620         (error "An article may not be self-referential"))
10621       (let ((message-id (mail-header-id
10622                          (gnus-summary-article-header parent-article))))
10623         (unless (and message-id (not (equal message-id "")))
10624           (error "No message-id in desired parent"))
10625         (gnus-with-article current-article
10626           (save-restriction
10627             (goto-char (point-min))
10628             (message-narrow-to-head)
10629             (if (re-search-forward "^References: " nil t)
10630                 (progn
10631                   (re-search-forward "^[^ \t]" nil t)
10632                   (forward-line -1)
10633                   (end-of-line)
10634                   (insert " " message-id))
10635               (insert "References: " message-id "\n"))))
10636         (set-buffer gnus-summary-buffer)
10637         (gnus-summary-unmark-all-processable)
10638         (gnus-summary-update-article current-article)
10639         (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10640             (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
10641         (gnus-summary-rethread-current)
10642         (gnus-message 3 "Article %d is now the child of article %d"
10643                       current-article parent-article)))))
10644
10645 (defun gnus-summary-toggle-threads (&optional arg)
10646   "Toggle showing conversation threads.
10647 If ARG is positive number, turn showing conversation threads on."
10648   (interactive "P")
10649   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
10650     (setq gnus-show-threads
10651           (if (null arg) (not gnus-show-threads)
10652             (> (prefix-numeric-value arg) 0)))
10653     (gnus-summary-prepare)
10654     (gnus-summary-goto-subject current)
10655     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
10656     (gnus-summary-position-point)))
10657
10658 (defun gnus-summary-show-all-threads ()
10659   "Show all threads."
10660   (interactive)
10661   (save-excursion
10662     (let ((buffer-read-only nil))
10663       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
10664   (gnus-summary-position-point))
10665
10666 (defun gnus-summary-show-thread ()
10667   "Show thread subtrees.
10668 Returns nil if no thread was there to be shown."
10669   (interactive)
10670   (let ((buffer-read-only nil)
10671         (orig (point))
10672         (end (point-at-eol))
10673         ;; Leave point at bol
10674         (beg (progn (beginning-of-line) (point))))
10675     (prog1
10676         ;; Any hidden lines here?
10677         (search-forward "\r" end t)
10678       (subst-char-in-region beg end ?\^M ?\n t)
10679       (goto-char orig)
10680       (gnus-summary-position-point))))
10681
10682 (defun gnus-summary-maybe-hide-threads ()
10683   "If requested, hide the threads that should be hidden."
10684   (when (and gnus-show-threads
10685              gnus-thread-hide-subtree)
10686     (gnus-summary-hide-all-threads
10687      (if (or (consp gnus-thread-hide-subtree)
10688              (functionp gnus-thread-hide-subtree))
10689          (gnus-make-predicate gnus-thread-hide-subtree)
10690        nil))))
10691
10692 ;;; Hiding predicates.
10693
10694 (defun gnus-article-unread-p (header)
10695   (memq (mail-header-number header) gnus-newsgroup-unreads))
10696
10697 (defun gnus-article-unseen-p (header)
10698   (memq (mail-header-number header) gnus-newsgroup-unseen))
10699
10700 (defun gnus-map-articles (predicate articles)
10701   "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
10702   (apply 'gnus-or (mapcar predicate
10703                           (mapcar 'gnus-summary-article-header articles))))
10704
10705 (defun gnus-summary-hide-all-threads (&optional predicate)
10706   "Hide all thread subtrees.
10707 If PREDICATE is supplied, threads that satisfy this predicate
10708 will not be hidden."
10709   (interactive)
10710   (save-excursion
10711     (goto-char (point-min))
10712     (let ((end nil))
10713       (while (not end)
10714         (when (or (not predicate)
10715                   (gnus-map-articles
10716                    predicate (gnus-summary-article-children)))
10717             (gnus-summary-hide-thread))
10718         (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
10719   (gnus-summary-position-point))
10720
10721 (defun gnus-summary-hide-thread ()
10722   "Hide thread subtrees.
10723 If PREDICATE is supplied, threads that satisfy this predicate
10724 will not be hidden.
10725 Returns nil if no threads were there to be hidden."
10726   (interactive)
10727   (let ((buffer-read-only nil)
10728         (start (point))
10729         (article (gnus-summary-article-number)))
10730     (goto-char start)
10731     ;; Go forward until either the buffer ends or the subthread
10732     ;; ends.
10733     (when (and (not (eobp))
10734                (or (zerop (gnus-summary-next-thread 1 t))
10735                    (goto-char (point-max))))
10736       (prog1
10737           (if (and (> (point) start)
10738                    (search-backward "\n" start t))
10739               (progn
10740                 (subst-char-in-region start (point) ?\n ?\^M)
10741                 (gnus-summary-goto-subject article))
10742             (goto-char start)
10743             nil)))))
10744
10745 (defun gnus-summary-go-to-next-thread (&optional previous)
10746   "Go to the same level (or less) next thread.
10747 If PREVIOUS is non-nil, go to previous thread instead.
10748 Return the article number moved to, or nil if moving was impossible."
10749   (let ((level (gnus-summary-thread-level))
10750         (way (if previous -1 1))
10751         (beg (point)))
10752     (forward-line way)
10753     (while (and (not (eobp))
10754                 (< level (gnus-summary-thread-level)))
10755       (forward-line way))
10756     (if (eobp)
10757         (progn
10758           (goto-char beg)
10759           nil)
10760       (setq beg (point))
10761       (prog1
10762           (gnus-summary-article-number)
10763         (goto-char beg)))))
10764
10765 (defun gnus-summary-next-thread (n &optional silent)
10766   "Go to the same level next N'th thread.
10767 If N is negative, search backward instead.
10768 Returns the difference between N and the number of skips actually
10769 done.
10770
10771 If SILENT, don't output messages."
10772   (interactive "p")
10773   (let ((backward (< n 0))
10774         (n (abs n)))
10775     (while (and (> n 0)
10776                 (gnus-summary-go-to-next-thread backward))
10777       (decf n))
10778     (unless silent
10779       (gnus-summary-position-point))
10780     (when (and (not silent) (/= 0 n))
10781       (gnus-message 7 "No more threads"))
10782     n))
10783
10784 (defun gnus-summary-prev-thread (n)
10785   "Go to the same level previous N'th thread.
10786 Returns the difference between N and the number of skips actually
10787 done."
10788   (interactive "p")
10789   (gnus-summary-next-thread (- n)))
10790
10791 (defun gnus-summary-go-down-thread ()
10792   "Go down one level in the current thread."
10793   (let ((children (gnus-summary-article-children)))
10794     (when children
10795       (gnus-summary-goto-subject (car children)))))
10796
10797 (defun gnus-summary-go-up-thread ()
10798   "Go up one level in the current thread."
10799   (let ((parent (gnus-summary-article-parent)))
10800     (when parent
10801       (gnus-summary-goto-subject parent))))
10802
10803 (defun gnus-summary-down-thread (n)
10804   "Go down thread N steps.
10805 If N is negative, go up instead.
10806 Returns the difference between N and how many steps down that were
10807 taken."
10808   (interactive "p")
10809   (let ((up (< n 0))
10810         (n (abs n)))
10811     (while (and (> n 0)
10812                 (if up (gnus-summary-go-up-thread)
10813                   (gnus-summary-go-down-thread)))
10814       (setq n (1- n)))
10815     (gnus-summary-position-point)
10816     (when (/= 0 n)
10817       (gnus-message 7 "Can't go further"))
10818     n))
10819
10820 (defun gnus-summary-up-thread (n)
10821   "Go up thread N steps.
10822 If N is negative, go down instead.
10823 Returns the difference between N and how many steps down that were
10824 taken."
10825   (interactive "p")
10826   (gnus-summary-down-thread (- n)))
10827
10828 (defun gnus-summary-top-thread ()
10829   "Go to the top of the thread."
10830   (interactive)
10831   (while (gnus-summary-go-up-thread))
10832   (gnus-summary-article-number))
10833
10834 (defun gnus-summary-kill-thread (&optional unmark)
10835   "Mark articles under current thread as read.
10836 If the prefix argument is positive, remove any kinds of marks.
10837 If the prefix argument is negative, tick articles instead."
10838   (interactive "P")
10839   (when unmark
10840     (setq unmark (prefix-numeric-value unmark)))
10841   (let ((articles (gnus-summary-articles-in-thread)))
10842     (save-excursion
10843       ;; Expand the thread.
10844       (gnus-summary-show-thread)
10845       ;; Mark all the articles.
10846       (while articles
10847         (gnus-summary-goto-subject (car articles))
10848         (cond ((null unmark)
10849                (gnus-summary-mark-article-as-read gnus-killed-mark))
10850               ((> unmark 0)
10851                (gnus-summary-mark-article-as-unread gnus-unread-mark))
10852               (t
10853                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
10854         (setq articles (cdr articles))))
10855     ;; Hide killed subtrees.
10856     (and (null unmark)
10857          gnus-thread-hide-killed
10858          (gnus-summary-hide-thread))
10859     ;; If marked as read, go to next unread subject.
10860     (when (null unmark)
10861       ;; Go to next unread subject.
10862       (gnus-summary-next-subject 1 t)))
10863   (gnus-set-mode-line 'summary))
10864
10865 ;; Summary sorting commands
10866
10867 (defun gnus-summary-sort-by-number (&optional reverse)
10868   "Sort the summary buffer by article number.
10869 Argument REVERSE means reverse order."
10870   (interactive "P")
10871   (gnus-summary-sort 'number reverse))
10872
10873 (defun gnus-summary-sort-by-random (&optional reverse)
10874   "Randomize the order in the summary buffer.
10875 Argument REVERSE means to randomize in reverse order."
10876   (interactive "P")
10877   (gnus-summary-sort 'random reverse))
10878
10879 (defun gnus-summary-sort-by-author (&optional reverse)
10880   "Sort the summary buffer by author name alphabetically.
10881 If `case-fold-search' is non-nil, case of letters is ignored.
10882 Argument REVERSE means reverse order."
10883   (interactive "P")
10884   (gnus-summary-sort 'author reverse))
10885
10886 (defun gnus-summary-sort-by-subject (&optional reverse)
10887   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
10888 If `case-fold-search' is non-nil, case of letters is ignored.
10889 Argument REVERSE means reverse order."
10890   (interactive "P")
10891   (gnus-summary-sort 'subject reverse))
10892
10893 (defun gnus-summary-sort-by-date (&optional reverse)
10894   "Sort the summary buffer by date.
10895 Argument REVERSE means reverse order."
10896   (interactive "P")
10897   (gnus-summary-sort 'date reverse))
10898
10899 (defun gnus-summary-sort-by-score (&optional reverse)
10900   "Sort the summary buffer by score.
10901 Argument REVERSE means reverse order."
10902   (interactive "P")
10903   (gnus-summary-sort 'score reverse))
10904
10905 (defun gnus-summary-sort-by-lines (&optional reverse)
10906   "Sort the summary buffer by the number of lines.
10907 Argument REVERSE means reverse order."
10908   (interactive "P")
10909   (gnus-summary-sort 'lines reverse))
10910
10911 (defun gnus-summary-sort-by-chars (&optional reverse)
10912   "Sort the summary buffer by article length.
10913 Argument REVERSE means reverse order."
10914   (interactive "P")
10915   (gnus-summary-sort 'chars reverse))
10916
10917 (defun gnus-summary-sort-by-original (&optional reverse)
10918   "Sort the summary buffer using the default sorting method.
10919 Argument REVERSE means reverse order."
10920   (interactive "P")
10921   (let* ((buffer-read-only)
10922          (gnus-summary-prepare-hook nil))
10923     ;; We do the sorting by regenerating the threads.
10924     (gnus-summary-prepare)
10925     ;; Hide subthreads if needed.
10926     (gnus-summary-maybe-hide-threads)))
10927
10928 (defun gnus-summary-sort (predicate reverse)
10929   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
10930   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
10931          (article (intern (format "gnus-article-sort-by-%s" predicate)))
10932          (gnus-thread-sort-functions
10933           (if (not reverse)
10934               thread
10935             `(lambda (t1 t2)
10936                (,thread t2 t1))))
10937          (gnus-sort-gathered-threads-function
10938           gnus-thread-sort-functions)
10939          (gnus-article-sort-functions
10940           (if (not reverse)
10941               article
10942             `(lambda (t1 t2)
10943                (,article t2 t1))))
10944          (buffer-read-only)
10945          (gnus-summary-prepare-hook nil))
10946     ;; We do the sorting by regenerating the threads.
10947     (gnus-summary-prepare)
10948     ;; Hide subthreads if needed.
10949     (gnus-summary-maybe-hide-threads)))
10950
10951 ;; Summary saving commands.
10952
10953 (defun gnus-summary-save-article (&optional n not-saved)
10954   "Save the current article using the default saver function.
10955 If N is a positive number, save the N next articles.
10956 If N is a negative number, save the N previous articles.
10957 If N is nil and any articles have been marked with the process mark,
10958 save those articles instead.
10959 The variable `gnus-default-article-saver' specifies the saver function."
10960   (interactive "P")
10961   (let* ((articles (gnus-summary-work-articles n))
10962          (save-buffer (save-excursion
10963                         (nnheader-set-temp-buffer " *Gnus Save*")))
10964          (num (length articles))
10965          header file)
10966     (dolist (article articles)
10967       (setq header (gnus-summary-article-header article))
10968       (if (not (vectorp header))
10969           ;; This is a pseudo-article.
10970           (if (assq 'name header)
10971               (gnus-copy-file (cdr (assq 'name header)))
10972             (gnus-message 1 "Article %d is unsaveable" article))
10973         ;; This is a real article.
10974         (save-window-excursion
10975           (let ((gnus-display-mime-function nil)
10976                 (gnus-article-prepare-hook nil))
10977             (gnus-summary-select-article t nil nil article)))
10978         (save-excursion
10979           (set-buffer save-buffer)
10980           (erase-buffer)
10981           (insert-buffer-substring gnus-original-article-buffer))
10982         (setq file (gnus-article-save save-buffer file num))
10983         (gnus-summary-remove-process-mark article)
10984         (unless not-saved
10985           (gnus-summary-set-saved-mark article))))
10986     (gnus-kill-buffer save-buffer)
10987     (gnus-summary-position-point)
10988     (gnus-set-mode-line 'summary)
10989     n))
10990
10991 (defun gnus-summary-pipe-output (&optional arg headers)
10992   "Pipe the current article to a subprocess.
10993 If N is a positive number, pipe the N next articles.
10994 If N is a negative number, pipe the N previous articles.
10995 If N is nil and any articles have been marked with the process mark,
10996 pipe those articles instead.
10997 If HEADERS (the symbolic prefix), include the headers, too."
10998   (interactive (gnus-interactive "P\ny"))
10999   (require 'gnus-art)
11000   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)
11001         (gnus-save-all-headers (or headers gnus-save-all-headers)))
11002     (gnus-summary-save-article arg t))
11003   (let ((buffer (get-buffer "*Shell Command Output*")))
11004     (when (and buffer
11005                (not (zerop (buffer-size buffer))))
11006       (gnus-configure-windows 'pipe))))
11007
11008 (defun gnus-summary-save-article-mail (&optional arg)
11009   "Append the current article to an mail file.
11010 If N is a positive number, save the N next articles.
11011 If N is a negative number, save the N previous articles.
11012 If N is nil and any articles have been marked with the process mark,
11013 save those articles instead."
11014   (interactive "P")
11015   (require 'gnus-art)
11016   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
11017     (gnus-summary-save-article arg)))
11018
11019 (defun gnus-summary-save-article-rmail (&optional arg)
11020   "Append the current article to an rmail file.
11021 If N is a positive number, save the N next articles.
11022 If N is a negative number, save the N previous articles.
11023 If N is nil and any articles have been marked with the process mark,
11024 save those articles instead."
11025   (interactive "P")
11026   (require 'gnus-art)
11027   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
11028     (gnus-summary-save-article arg)))
11029
11030 (defun gnus-summary-save-article-file (&optional arg)
11031   "Append the current article to a file.
11032 If N is a positive number, save the N next articles.
11033 If N is a negative number, save the N previous articles.
11034 If N is nil and any articles have been marked with the process mark,
11035 save those articles instead."
11036   (interactive "P")
11037   (require 'gnus-art)
11038   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
11039     (gnus-summary-save-article arg)))
11040
11041 (defun gnus-summary-write-article-file (&optional arg)
11042   "Write the current article to a file, deleting the previous file.
11043 If N is a positive number, save the N next articles.
11044 If N is a negative number, save the N previous articles.
11045 If N is nil and any articles have been marked with the process mark,
11046 save those articles instead."
11047   (interactive "P")
11048   (require 'gnus-art)
11049   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
11050     (gnus-summary-save-article arg)))
11051
11052 (defun gnus-summary-save-article-body-file (&optional arg)
11053   "Append the current article body to a file.
11054 If N is a positive number, save the N next articles.
11055 If N is a negative number, save the N previous articles.
11056 If N is nil and any articles have been marked with the process mark,
11057 save those articles instead."
11058   (interactive "P")
11059   (require 'gnus-art)
11060   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
11061     (gnus-summary-save-article arg)))
11062
11063 (defun gnus-summary-muttprint (&optional arg)
11064   "Print the current article using Muttprint.
11065 If N is a positive number, save the N next articles.
11066 If N is a negative number, save the N previous articles.
11067 If N is nil and any articles have been marked with the process mark,
11068 save those articles instead."
11069   (interactive "P")
11070   (require 'gnus-art)
11071   (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
11072     (gnus-summary-save-article arg t)))
11073
11074 (defun gnus-summary-pipe-message (program)
11075   "Pipe the current article through PROGRAM."
11076   (interactive "sProgram: ")
11077   (gnus-summary-select-article)
11078   (let ((mail-header-separator ""))
11079     (gnus-eval-in-buffer-window gnus-article-buffer
11080       (save-restriction
11081         (widen)
11082         (let ((start (window-start))
11083               buffer-read-only)
11084           (message-pipe-buffer-body program)
11085           (set-window-start (get-buffer-window (current-buffer)) start))))))
11086
11087 (defun gnus-get-split-value (methods)
11088   "Return a value based on the split METHODS."
11089   (let (split-name method result match)
11090     (when methods
11091       (save-excursion
11092         (set-buffer gnus-original-article-buffer)
11093         (save-restriction
11094           (nnheader-narrow-to-headers)
11095           (while (and methods (not split-name))
11096             (goto-char (point-min))
11097             (setq method (pop methods))
11098             (setq match (car method))
11099             (when (cond
11100                    ((stringp match)
11101                     ;; Regular expression.
11102                     (ignore-errors
11103                       (re-search-forward match nil t)))
11104                    ((functionp match)
11105                     ;; Function.
11106                     (save-restriction
11107                       (widen)
11108                       (setq result (funcall match gnus-newsgroup-name))))
11109                    ((consp match)
11110                     ;; Form.
11111                     (save-restriction
11112                       (widen)
11113                       (setq result (eval match)))))
11114               (setq split-name (cdr method))
11115               (cond ((stringp result)
11116                      (push (expand-file-name
11117                             result gnus-article-save-directory)
11118                            split-name))
11119                     ((consp result)
11120                      (setq split-name (append result split-name)))))))))
11121     (nreverse split-name)))
11122
11123 (defun gnus-valid-move-group-p (group)
11124   (and (boundp group)
11125        (symbol-name group)
11126        (symbol-value group)
11127        (gnus-get-function (gnus-find-method-for-group
11128                            (symbol-name group)) 'request-accept-article t)))
11129
11130 (defun gnus-read-move-group-name (prompt default articles prefix)
11131   "Read a group name."
11132   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
11133          (minibuffer-confirm-incomplete nil) ; XEmacs
11134          (prom
11135           (format "%s %s to:"
11136                   prompt
11137                   (if (> (length articles) 1)
11138                       (format "these %d articles" (length articles))
11139                     "this article")))
11140          (to-newsgroup
11141           (cond
11142            ((null split-name)
11143             (gnus-completing-read-with-default
11144              default prom
11145              gnus-active-hashtb
11146              'gnus-valid-move-group-p
11147              nil prefix
11148              'gnus-group-history))
11149            ((= 1 (length split-name))
11150             (gnus-completing-read-with-default
11151              (car split-name) prom
11152              gnus-active-hashtb
11153              'gnus-valid-move-group-p
11154              nil nil
11155              'gnus-group-history))
11156            (t
11157             (gnus-completing-read-with-default
11158              nil prom
11159              (mapcar 'list (nreverse split-name))
11160              nil nil nil
11161              'gnus-group-history))))
11162          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
11163     (when to-newsgroup
11164       (if (or (string= to-newsgroup "")
11165               (string= to-newsgroup prefix))
11166           (setq to-newsgroup default))
11167       (unless to-newsgroup
11168         (error "No group name entered"))
11169       (or (gnus-active to-newsgroup)
11170           (gnus-activate-group to-newsgroup nil nil to-method)
11171           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
11172                                      to-newsgroup))
11173               (or (and (gnus-request-create-group to-newsgroup to-method)
11174                        (gnus-activate-group
11175                         to-newsgroup nil nil to-method)
11176                        (gnus-subscribe-group to-newsgroup))
11177                   (error "Couldn't create group %s" to-newsgroup)))
11178           (error "No such group: %s" to-newsgroup)))
11179     to-newsgroup))
11180
11181 (defun gnus-summary-save-parts (type dir n &optional reverse)
11182   "Save parts matching TYPE to DIR.
11183 If REVERSE, save parts that do not match TYPE."
11184   (interactive
11185    (list (read-string "Save parts of type: "
11186                       (or (car gnus-summary-save-parts-type-history)
11187                           gnus-summary-save-parts-default-mime)
11188                       'gnus-summary-save-parts-type-history)
11189          (setq gnus-summary-save-parts-last-directory
11190                (read-file-name "Save to directory: "
11191                                gnus-summary-save-parts-last-directory
11192                                nil t))
11193          current-prefix-arg))
11194   (gnus-summary-iterate n
11195     (let ((gnus-display-mime-function nil)
11196           (gnus-inhibit-treatment t))
11197       (gnus-summary-select-article))
11198     (save-excursion
11199       (set-buffer gnus-article-buffer)
11200       (let ((handles (or gnus-article-mime-handles
11201                          (mm-dissect-buffer nil gnus-article-loose-mime)
11202                          (and gnus-article-emulate-mime
11203                               (mm-uu-dissect)))))
11204         (when handles
11205           (gnus-summary-save-parts-1 type dir handles reverse)
11206           (unless gnus-article-mime-handles ;; Don't destroy this case.
11207             (mm-destroy-parts handles)))))))
11208
11209 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11210   (if (stringp (car handle))
11211       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11212               (cdr handle))
11213     (when (if reverse
11214               (not (string-match type (mm-handle-media-type handle)))
11215             (string-match type (mm-handle-media-type handle)))
11216       (let ((file (expand-file-name
11217                    (gnus-map-function
11218                     mm-file-name-rewrite-functions
11219                     (file-name-nondirectory
11220                      (or
11221                       (mail-content-type-get
11222                        (mm-handle-disposition handle) 'filename)
11223                       (mail-content-type-get
11224                        (mm-handle-type handle) 'name)
11225                       (concat gnus-newsgroup-name
11226                               "." (number-to-string
11227                                    (cdr gnus-article-current))))))
11228                    dir)))
11229         (unless (file-exists-p file)
11230           (mm-save-part-to-file handle file))))))
11231
11232 ;; Summary extract commands
11233
11234 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
11235   (let ((buffer-read-only nil)
11236         (article (gnus-summary-article-number))
11237         after-article b e)
11238     (unless (gnus-summary-goto-subject article)
11239       (error "No such article: %d" article))
11240     (gnus-summary-position-point)
11241     ;; If all commands are to be bunched up on one line, we collect
11242     ;; them here.
11243     (unless gnus-view-pseudos-separately
11244       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
11245             files action)
11246         (while ps
11247           (setq action (cdr (assq 'action (car ps))))
11248           (setq files (list (cdr (assq 'name (car ps)))))
11249           (while (and ps (cdr ps)
11250                       (string= (or action "1")
11251                                (or (cdr (assq 'action (cadr ps))) "2")))
11252             (push (cdr (assq 'name (cadr ps))) files)
11253             (setcdr ps (cddr ps)))
11254           (when files
11255             (when (not (string-match "%s" action))
11256               (push " " files))
11257             (push " " files)
11258             (when (assq 'execute (car ps))
11259               (setcdr (assq 'execute (car ps))
11260                       (funcall (if (string-match "%s" action)
11261                                    'format 'concat)
11262                                action
11263                                (mapconcat
11264                                 (lambda (f)
11265                                   (if (equal f " ")
11266                                       f
11267                                     (shell-quote-argument f)))
11268                                 files " ")))))
11269           (setq ps (cdr ps)))))
11270     (if (and gnus-view-pseudos (not not-view))
11271         (while pslist
11272           (when (assq 'execute (car pslist))
11273             (gnus-execute-command (cdr (assq 'execute (car pslist)))
11274                                   (eq gnus-view-pseudos 'not-confirm)))
11275           (setq pslist (cdr pslist)))
11276       (save-excursion
11277         (while pslist
11278           (setq after-article (or (cdr (assq 'article (car pslist)))
11279                                   (gnus-summary-article-number)))
11280           (gnus-summary-goto-subject after-article)
11281           (forward-line 1)
11282           (setq b (point))
11283           (insert "    " (file-name-nondirectory
11284                           (cdr (assq 'name (car pslist))))
11285                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
11286           (setq e (point))
11287           (forward-line -1)             ; back to `b'
11288           (gnus-add-text-properties
11289            b (1- e) (list 'gnus-number gnus-reffed-article-number
11290                           gnus-mouse-face-prop gnus-mouse-face))
11291           (gnus-data-enter
11292            after-article gnus-reffed-article-number
11293            gnus-unread-mark b (car pslist) 0 (- e b))
11294           (setq gnus-newsgroup-unreads
11295                 (gnus-add-to-sorted-list gnus-newsgroup-unreads
11296                                          gnus-reffed-article-number))
11297           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
11298           (setq pslist (cdr pslist)))))))
11299
11300 (defun gnus-pseudos< (p1 p2)
11301   (let ((c1 (cdr (assq 'action p1)))
11302         (c2 (cdr (assq 'action p2))))
11303     (and c1 c2 (string< c1 c2))))
11304
11305 (defun gnus-request-pseudo-article (props)
11306   (cond ((assq 'execute props)
11307          (gnus-execute-command (cdr (assq 'execute props)))))
11308   (let ((gnus-current-article (gnus-summary-article-number)))
11309     (gnus-run-hooks 'gnus-mark-article-hook)))
11310
11311 (defun gnus-execute-command (command &optional automatic)
11312   (save-excursion
11313     (gnus-article-setup-buffer)
11314     (set-buffer gnus-article-buffer)
11315     (setq buffer-read-only nil)
11316     (let ((command (if automatic command
11317                      (read-string "Command: " (cons command 0)))))
11318       (erase-buffer)
11319       (insert "$ " command "\n\n")
11320       (if gnus-view-pseudo-asynchronously
11321           (start-process "gnus-execute" (current-buffer) shell-file-name
11322                          shell-command-switch command)
11323         (call-process shell-file-name nil t nil
11324                       shell-command-switch command)))))
11325
11326 ;; Summary kill commands.
11327
11328 (defun gnus-summary-edit-global-kill (article)
11329   "Edit the \"global\" kill file."
11330   (interactive (list (gnus-summary-article-number)))
11331   (gnus-group-edit-global-kill article))
11332
11333 (defun gnus-summary-edit-local-kill ()
11334   "Edit a local kill file applied to the current newsgroup."
11335   (interactive)
11336   (setq gnus-current-headers (gnus-summary-article-header))
11337   (gnus-group-edit-local-kill
11338    (gnus-summary-article-number) gnus-newsgroup-name))
11339
11340 ;;; Header reading.
11341
11342 (defun gnus-read-header (id &optional header)
11343   "Read the headers of article ID and enter them into the Gnus system."
11344   (let ((group gnus-newsgroup-name)
11345         (gnus-override-method
11346          (or
11347           gnus-override-method
11348           (and (gnus-news-group-p gnus-newsgroup-name)
11349                (car (gnus-refer-article-methods)))))
11350         where)
11351     ;; First we check to see whether the header in question is already
11352     ;; fetched.
11353     (if (stringp id)
11354         ;; This is a Message-ID.
11355         (setq header (or header (gnus-id-to-header id)))
11356       ;; This is an article number.
11357       (setq header (or header (gnus-summary-article-header id))))
11358     (if (and header
11359              (not (gnus-summary-article-sparse-p (mail-header-number header))))
11360         ;; We have found the header.
11361         header
11362       ;; We have to really fetch the header to this article.
11363       (save-excursion
11364         (set-buffer nntp-server-buffer)
11365         (when (setq where (gnus-request-head id group))
11366           (nnheader-fold-continuation-lines)
11367           (goto-char (point-max))
11368           (insert ".\n")
11369           (goto-char (point-min))
11370           (insert "211 ")
11371           (princ (cond
11372                   ((numberp id) id)
11373                   ((cdr where) (cdr where))
11374                   (header (mail-header-number header))
11375                   (t gnus-reffed-article-number))
11376                  (current-buffer))
11377           (insert " Article retrieved.\n"))
11378         (if (or (not where)
11379                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
11380             ()                          ; Malformed head.
11381           (unless (gnus-summary-article-sparse-p (mail-header-number header))
11382             (when (and (stringp id)
11383                        (not (string= (gnus-group-real-name group)
11384                                      (car where))))
11385               ;; If we fetched by Message-ID and the article came
11386               ;; from a different group, we fudge some bogus article
11387               ;; numbers for this article.
11388               (mail-header-set-number header gnus-reffed-article-number))
11389             (save-excursion
11390               (set-buffer gnus-summary-buffer)
11391               (decf gnus-reffed-article-number)
11392               (gnus-remove-header (mail-header-number header))
11393               (push header gnus-newsgroup-headers)
11394               (setq gnus-current-headers header)
11395               (push (mail-header-number header) gnus-newsgroup-limit)))
11396           header)))))
11397
11398 (defun gnus-remove-header (number)
11399   "Remove header NUMBER from `gnus-newsgroup-headers'."
11400   (if (and gnus-newsgroup-headers
11401            (= number (mail-header-number (car gnus-newsgroup-headers))))
11402       (pop gnus-newsgroup-headers)
11403     (let ((headers gnus-newsgroup-headers))
11404       (while (and (cdr headers)
11405                   (not (= number (mail-header-number (cadr headers)))))
11406         (pop headers))
11407       (when (cdr headers)
11408         (setcdr headers (cddr headers))))))
11409
11410 ;;;
11411 ;;; summary highlights
11412 ;;;
11413
11414 (defun gnus-highlight-selected-summary ()
11415   "Highlight selected article in summary buffer."
11416   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
11417   (when gnus-summary-selected-face
11418     (save-excursion
11419       (let* ((beg (point-at-bol))
11420              (end (point-at-eol))
11421              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
11422              (from (if (get-text-property beg gnus-mouse-face-prop)
11423                        beg
11424                      (or (next-single-property-change
11425                           beg gnus-mouse-face-prop nil end)
11426                          beg)))
11427              (to
11428               (if (= from end)
11429                   (- from 2)
11430                 (or (next-single-property-change
11431                      from gnus-mouse-face-prop nil end)
11432                     end))))
11433         ;; If no mouse-face prop on line we will have to = from = end,
11434         ;; so we highlight the entire line instead.
11435         (when (= (+ to 2) from)
11436           (setq from beg)
11437           (setq to end))
11438         (if gnus-newsgroup-selected-overlay
11439             ;; Move old overlay.
11440             (gnus-move-overlay
11441              gnus-newsgroup-selected-overlay from to (current-buffer))
11442           ;; Create new overlay.
11443           (gnus-overlay-put
11444            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
11445            'face gnus-summary-selected-face))))))
11446
11447 (defvar gnus-summary-highlight-line-cached nil)
11448 (defvar gnus-summary-highlight-line-trigger nil)
11449
11450 (defun gnus-summary-highlight-line-0 ()
11451   (if (and (eq gnus-summary-highlight-line-trigger
11452                gnus-summary-highlight)
11453            gnus-summary-highlight-line-cached)
11454       gnus-summary-highlight-line-cached
11455     (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
11456           gnus-summary-highlight-line-cached
11457           (let* ((cond (list 'cond))
11458                  (c cond)
11459                  (list gnus-summary-highlight))
11460             (while list
11461               (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
11462                               nil))
11463               (setq c (cdr c)
11464                     list (cdr list)))
11465             (gnus-byte-compile (list 'lambda nil cond))))))
11466
11467 (defun gnus-summary-highlight-line ()
11468   "Highlight current line according to `gnus-summary-highlight'."
11469   (let* ((beg (point-at-bol))
11470          (article (or (gnus-summary-article-number) gnus-current-article))
11471          (score (or (cdr (assq article
11472                                gnus-newsgroup-scored))
11473                     gnus-summary-default-score 0))
11474          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
11475          (inhibit-read-only t)
11476          (default gnus-summary-default-score)
11477          (default-high gnus-summary-default-high-score)
11478          (default-low gnus-summary-default-low-score)
11479          (uncached (and gnus-summary-use-undownloaded-faces
11480                         (memq article gnus-newsgroup-undownloaded)
11481                         (not (memq article gnus-newsgroup-cached)))))
11482     (let ((face (funcall (gnus-summary-highlight-line-0))))
11483       (unless (eq face (get-text-property beg 'face))
11484         (gnus-put-text-property-excluding-characters-with-faces
11485          beg (point-at-eol) 'face
11486          (setq face (if (boundp face) (symbol-value face) face)))
11487         (when gnus-summary-highlight-line-function
11488           (funcall gnus-summary-highlight-line-function article face))))))
11489
11490 (defun gnus-update-read-articles (group unread &optional compute)
11491   "Update the list of read articles in GROUP.
11492 UNREAD is a sorted list."
11493   (let ((active (or gnus-newsgroup-active (gnus-active group)))
11494         (info (gnus-get-info group))
11495         (prev 1)
11496         read)
11497     (if (or (not info) (not active))
11498         ;; There is no info on this group if it was, in fact,
11499         ;; killed.  Gnus stores no information on killed groups, so
11500         ;; there's nothing to be done.
11501         ;; One could store the information somewhere temporarily,
11502         ;; perhaps...  Hmmm...
11503         ()
11504       ;; Remove any negative articles numbers.
11505       (while (and unread (< (car unread) 0))
11506         (setq unread (cdr unread)))
11507       ;; Remove any expired article numbers
11508       (while (and unread (< (car unread) (car active)))
11509         (setq unread (cdr unread)))
11510       ;; Compute the ranges of read articles by looking at the list of
11511       ;; unread articles.
11512       (while unread
11513         (when (/= (car unread) prev)
11514           (push (if (= prev (1- (car unread))) prev
11515                   (cons prev (1- (car unread))))
11516                 read))
11517         (setq prev (1+ (car unread)))
11518         (setq unread (cdr unread)))
11519       (when (<= prev (cdr active))
11520         (push (cons prev (cdr active)) read))
11521       (setq read (if (> (length read) 1) (nreverse read) read))
11522       (if compute
11523           read
11524         (save-excursion
11525           (let (setmarkundo)
11526             ;; Propagate the read marks to the backend.
11527             (when (gnus-check-backend-function 'request-set-mark group)
11528               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
11529                     (add (gnus-remove-from-range read (gnus-info-read info))))
11530                 (when (or add del)
11531                   (unless (gnus-check-group group)
11532                     (error "Can't open server for %s" group))
11533                   (gnus-request-set-mark
11534                    group (delq nil (list (if add (list add 'add '(read)))
11535                                          (if del (list del 'del '(read))))))
11536                   (setq setmarkundo
11537                         `(gnus-request-set-mark
11538                           ,group
11539                           ',(delq nil (list
11540                                        (if del (list del 'add '(read)))
11541                                        (if add (list add 'del '(read))))))))))
11542             (set-buffer gnus-group-buffer)
11543             (gnus-undo-register
11544               `(progn
11545                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
11546                  (gnus-info-set-read ',info ',(gnus-info-read info))
11547                  (gnus-get-unread-articles-in-group ',info
11548                                                     (gnus-active ,group))
11549                  (gnus-group-update-group ,group t)
11550                  ,setmarkundo))))
11551         ;; Enter this list into the group info.
11552         (gnus-info-set-read info read)
11553         ;; Set the number of unread articles in gnus-newsrc-hashtb.
11554         (gnus-get-unread-articles-in-group info (gnus-active group))
11555         t))))
11556
11557 (defun gnus-offer-save-summaries ()
11558   "Offer to save all active summary buffers."
11559   (let (buffers)
11560     ;; Go through all buffers and find all summaries.
11561     (dolist (buffer (buffer-list))
11562       (when (and (setq buffer (buffer-name buffer))
11563                  (string-match "Summary" buffer)
11564                  (with-current-buffer buffer
11565                    ;; We check that this is, indeed, a summary buffer.
11566                    (and (eq major-mode 'gnus-summary-mode)
11567                         ;; Also make sure this isn't bogus.
11568                         gnus-newsgroup-prepared
11569                         ;; Also make sure that this isn't a
11570                         ;; dead summary buffer.
11571                         (not gnus-dead-summary-mode))))
11572         (push buffer buffers)))
11573     ;; Go through all these summary buffers and offer to save them.
11574     (when buffers
11575       (save-excursion
11576         (map-y-or-n-p
11577          "Update summary buffer %s? "
11578          (lambda (buf)
11579            (switch-to-buffer buf)
11580            (gnus-summary-exit))
11581          buffers)))))
11582
11583
11584 ;;; @ for mime-partial
11585 ;;;
11586
11587 (defun gnus-request-partial-message ()
11588   (save-excursion
11589     (let ((number (gnus-summary-article-number))
11590           (group gnus-newsgroup-name)
11591           (mother gnus-article-buffer))
11592       (set-buffer (get-buffer-create " *Partial Article*"))
11593       (erase-buffer)
11594       (setq mime-preview-buffer mother)
11595       (gnus-request-article-this-buffer number group)
11596       (mime-parse-buffer)
11597       )))
11598
11599 (autoload 'mime-combine-message/partial-pieces-automatically
11600   "mime-partial"
11601   "Internal method to combine message/partial messages automatically.")
11602
11603 (mime-add-condition
11604  'action '((type . message)(subtype . partial)
11605            (major-mode . gnus-original-article-mode)
11606            (method . mime-combine-message/partial-pieces-automatically)
11607            (summary-buffer-exp . gnus-summary-buffer)
11608            (request-partial-message-method . gnus-request-partial-message)
11609            ))
11610
11611
11612 ;;; @ for message/rfc822
11613 ;;;
11614
11615 (defun gnus-mime-extract-message/rfc822 (entity situation)
11616   "Burst a forwarded article."
11617   (save-excursion
11618     (set-buffer gnus-summary-buffer)
11619     (let* ((group (completing-read "Group: " gnus-active-hashtb nil t
11620                                    gnus-newsgroup-name 'gnus-group-history))
11621            (gnus-group-marked (list group))
11622            article info)
11623       (with-temp-buffer
11624         (mime-insert-entity-content entity)
11625         (setq article (gnus-request-accept-article group)))
11626       (when (and (consp article)
11627                  (numberp (setq article (cdr article))))
11628         (setq info (gnus-get-info group))
11629         (gnus-info-set-read info
11630                             (gnus-remove-from-range (gnus-info-read info)
11631                                                     (list article)))
11632         (when (string-equal group gnus-newsgroup-name)
11633           (forward-line 1)
11634           (let (gnus-show-threads)
11635             (gnus-summary-goto-subject article t))
11636           (gnus-summary-clear-mark-forward 1))
11637         (set-buffer gnus-group-buffer)
11638         (gnus-group-get-new-news-this-group nil t)))))
11639
11640 (mime-add-condition
11641  'action '((type . message)(subtype . rfc822)
11642            (major-mode . gnus-original-article-mode)
11643            (method . gnus-mime-extract-message/rfc822)
11644            (mode . "extract")
11645            ))
11646
11647 (mime-add-condition
11648  'action '((type . message)(subtype . news)
11649            (major-mode . gnus-original-article-mode)
11650            (method . gnus-mime-extract-message/rfc822)
11651            (mode . "extract")
11652            ))
11653
11654 (defun gnus-mime-extract-multipart (entity situation)
11655   (let ((children (mime-entity-children entity))
11656         mime-acting-situation-to-override
11657         f)
11658     (while children
11659       (mime-play-entity (car children)
11660                         (cons (assq 'mode situation)
11661                               mime-acting-situation-to-override))
11662       (setq children (cdr children)))
11663     (if (setq f (cdr (assq 'after-method
11664                            mime-acting-situation-to-override)))
11665         (eval f)
11666       )))
11667
11668 (mime-add-condition
11669  'action '((type . multipart)
11670            (method . gnus-mime-extract-multipart)
11671            (mode . "extract")
11672            )
11673  'with-default)
11674
11675
11676 ;;; @ end
11677 ;;;
11678
11679 (defun gnus-summary-inherit-default-charset ()
11680   "Import `default-mime-charset' from summary buffer.
11681 Also take care of `default-mime-charset-unlimited' if the LIMIT version
11682 of FLIM is used."
11683   (if (buffer-live-p gnus-summary-buffer)
11684       (let (d-m-c d-m-c-u)
11685         (with-current-buffer gnus-summary-buffer
11686           (setq d-m-c (if (local-variable-p 'default-mime-charset
11687                                             gnus-summary-buffer)
11688                           default-mime-charset
11689                         t)
11690                 ;; LIMIT
11691                 d-m-c-u (if (local-variable-p 'default-mime-charset-unlimited
11692                                               gnus-summary-buffer)
11693                             (symbol-value 'default-mime-charset-unlimited)
11694                           t)))
11695         (if (eq t d-m-c)
11696             (kill-local-variable 'default-mime-charset)
11697           (set (make-local-variable 'default-mime-charset) d-m-c))
11698         (if (eq t d-m-c-u)
11699             (kill-local-variable 'default-mime-charset-unlimited)
11700           (set (make-local-variable 'default-mime-charset-unlimited)
11701                d-m-c-u)))))
11702
11703 (defun gnus-summary-setup-default-charset ()
11704   "Setup newsgroup default charset."
11705   (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
11706       (progn
11707         (setq gnus-newsgroup-charset nil)
11708         (set (make-local-variable 'default-mime-charset) nil)
11709         (when (boundp 'default-mime-charset-unlimited);; LIMIT
11710           (set (make-local-variable 'default-mime-charset-unlimited) nil)))
11711     (let ((ignored-charsets
11712            (or gnus-newsgroup-ephemeral-ignored-charsets
11713                (append
11714                 (and gnus-newsgroup-name
11715                      (gnus-parameter-ignored-charsets gnus-newsgroup-name))
11716                 gnus-newsgroup-ignored-charsets)))
11717           charset)
11718       (setq gnus-newsgroup-charset
11719             (or gnus-newsgroup-ephemeral-charset
11720                 (when (and gnus-newsgroup-name
11721                            (setq charset (gnus-parameter-charset
11722                                           gnus-newsgroup-name)))
11723                   (make-local-variable 'default-mime-charset)
11724                   (setq default-mime-charset charset))
11725                 gnus-default-charset))
11726       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
11727            ignored-charsets))))
11728
11729 ;;;
11730 ;;; Mime Commands
11731 ;;;
11732
11733 (defun gnus-summary-display-buttonized (&optional show-all-parts)
11734   "Display the current article buffer fully MIME-buttonized.
11735 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
11736 treated as multipart/mixed."
11737   (interactive "P")
11738   (require 'gnus-art)
11739   (let ((gnus-unbuttonized-mime-types nil)
11740         (gnus-mime-display-multipart-as-mixed show-all-parts))
11741     (gnus-summary-show-article)))
11742
11743 (defun gnus-summary-repair-multipart (article)
11744   "Add a Content-Type header to a multipart article without one."
11745   (interactive (list (gnus-summary-article-number)))
11746   (gnus-with-article article
11747     (message-narrow-to-head)
11748     (message-remove-header "Mime-Version")
11749     (goto-char (point-max))
11750     (insert "Mime-Version: 1.0\n")
11751     (widen)
11752     (when (search-forward "\n--" nil t)
11753       (let ((separator (buffer-substring (point) (point-at-eol))))
11754         (message-narrow-to-head)
11755         (message-remove-header "Content-Type")
11756         (goto-char (point-max))
11757         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
11758                         separator))
11759         (widen))))
11760   (let (gnus-mark-article-hook)
11761     (gnus-summary-select-article t t nil article)))
11762
11763 (defun gnus-summary-toggle-display-buttonized ()
11764   "Toggle the buttonizing of the article buffer."
11765   (interactive)
11766   (require 'gnus-art)
11767   (if (setq gnus-inhibit-mime-unbuttonizing
11768             (not gnus-inhibit-mime-unbuttonizing))
11769       (let ((gnus-unbuttonized-mime-types nil))
11770         (gnus-summary-show-article))
11771     (gnus-summary-show-article)))
11772
11773 ;;;
11774 ;;; Intelli-mouse commmands
11775 ;;;
11776
11777 (defun gnus-wheel-summary-scroll (event)
11778   (interactive "e")
11779   (let ((amount (if (memq 'shift (event-modifiers event))
11780                     (car gnus-wheel-scroll-amount)
11781                   (cdr gnus-wheel-scroll-amount)))
11782         (direction (- (* (static-if (featurep 'xemacs)
11783                              (event-button event)
11784                            (cond ((eq 'mouse-4 (event-basic-type event))
11785                                   4)
11786                                  ((eq 'mouse-5 (event-basic-type event))
11787                                   5)))
11788                          2) 9))
11789         edge)
11790     (gnus-summary-scroll-up (* amount direction))
11791     (when (gnus-eval-in-buffer-window gnus-article-buffer
11792             (save-restriction
11793               (widen)
11794               (and (if (< 0 direction)
11795                        (gnus-article-next-page 0)
11796                      (gnus-article-prev-page 0)
11797                      (bobp))
11798                    (if (setq edge (get-text-property
11799                                    (point-min) 'gnus-wheel-edge))
11800                        (setq edge (* edge direction))
11801                      (setq edge -1))
11802                    (or (plusp edge)
11803                        (let ((buffer-read-only nil)
11804                              (inhibit-read-only t))
11805                          (put-text-property (point-min) (point-max)
11806                                             'gnus-wheel-edge direction)
11807                          nil))
11808                    (or (> edge gnus-wheel-edge-resistance)
11809                        (let ((buffer-read-only nil)
11810                              (inhibit-read-only t))
11811                          (put-text-property (point-min) (point-max)
11812                                             'gnus-wheel-edge
11813                                             (* (1+ edge) direction))
11814                          nil))
11815                    (eq last-command 'gnus-wheel-summary-scroll))))
11816       (gnus-summary-next-article nil nil (minusp direction)))))
11817
11818 (defun gnus-wheel-install ()
11819   "Enable mouse wheel support on summary window."
11820   (when gnus-use-wheel
11821     (let ((keys
11822            '([(mouse-4)] [(shift mouse-4)] [(mouse-5)] [(shift mouse-5)])))
11823       (dolist (key keys)
11824         (define-key gnus-summary-mode-map key
11825           'gnus-wheel-summary-scroll)))))
11826
11827 (add-hook 'gnus-summary-mode-hook 'gnus-wheel-install)
11828
11829 ;;;
11830 ;;; Traditional PGP commmands
11831 ;;;
11832
11833 (defun gnus-summary-decrypt-article (&optional force)
11834   "Decrypt the current article in traditional PGP way.
11835 This will have permanent effect only in mail groups.
11836 If FORCE is non-nil, allow editing of articles even in read-only
11837 groups."
11838   (interactive "P")
11839   (gnus-summary-select-article t)
11840   (gnus-eval-in-buffer-window gnus-article-buffer
11841     (save-excursion
11842       (save-restriction
11843         (widen)
11844         (goto-char (point-min))
11845         (unless (re-search-forward (car pgg-armor-header-lines) nil t)
11846           (error "Not a traditional PGP message!"))
11847         (let ((armor-start (match-beginning 0)))
11848           (if (and (pgg-decrypt-region armor-start (point-max))
11849                    (or force (not (gnus-group-read-only-p))))
11850               (let ((inhibit-read-only t)
11851                     buffer-read-only)
11852                 (delete-region armor-start
11853                                (progn
11854                                  (re-search-forward "^-+END PGP" nil t)
11855                                  (beginning-of-line 2)
11856                                  (point)))
11857                 (insert-buffer-substring pgg-output-buffer))))))))
11858
11859 (defun gnus-summary-verify-article ()
11860   "Verify the current article in traditional PGP way."
11861   (interactive)
11862   (save-excursion
11863     (set-buffer gnus-original-article-buffer)
11864     (goto-char (point-min))
11865     (unless (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE" nil t)
11866       (error "Not a traditional PGP message!"))
11867     (re-search-forward "^-+END PGP" nil t)
11868     (beginning-of-line 2)
11869     (call-interactively (function pgg-verify-region))))
11870
11871 ;;;
11872 ;;; Generic summary marking commands
11873 ;;;
11874
11875 (defvar gnus-summary-marking-alist
11876   '((read gnus-del-mark "d")
11877     (unread gnus-unread-mark "u")
11878     (ticked gnus-ticked-mark "!")
11879     (dormant gnus-dormant-mark "?")
11880     (expirable gnus-expirable-mark "e"))
11881   "An alist of names/marks/keystrokes.")
11882
11883 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
11884 (defvar gnus-summary-mark-map)
11885
11886 (defun gnus-summary-make-all-marking-commands ()
11887   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
11888   (dolist (elem gnus-summary-marking-alist)
11889     (apply 'gnus-summary-make-marking-command elem)))
11890
11891 (defun gnus-summary-make-marking-command (name mark keystroke)
11892   (let ((map (make-sparse-keymap)))
11893     (define-key gnus-summary-generic-mark-map keystroke map)
11894     (dolist (lway `((next "next" next nil "n")
11895                     (next-unread "next unread" next t "N")
11896                     (prev "previous" prev nil "p")
11897                     (prev-unread "previous unread" prev t "P")
11898                     (nomove "" nil nil ,keystroke)))
11899       (let ((func (gnus-summary-make-marking-command-1
11900                    mark (car lway) lway name)))
11901         (setq func (eval func))
11902         (define-key map (nth 4 lway) func)))))
11903
11904 (defun gnus-summary-make-marking-command-1 (mark way lway name)
11905   `(defun ,(intern
11906             (format "gnus-summary-put-mark-as-%s%s"
11907                     name (if (eq way 'nomove)
11908                              ""
11909                            (concat "-" (symbol-name way)))))
11910      (n)
11911      ,(format
11912        "Mark the current article as %s%s.
11913 If N, the prefix, then repeat N times.
11914 If N is negative, move in reverse order.
11915 The difference between N and the actual number of articles marked is
11916 returned."
11917        name (car (cdr lway)))
11918      (interactive "p")
11919      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
11920
11921 (defun gnus-summary-generic-mark (n mark move unread)
11922   "Mark N articles with MARK."
11923   (unless (eq major-mode 'gnus-summary-mode)
11924     (error "This command can only be used in the summary buffer"))
11925   (gnus-summary-show-thread)
11926   (let ((nummove
11927          (cond
11928           ((eq move 'next) 1)
11929           ((eq move 'prev) -1)
11930           (t 0))))
11931     (if (zerop nummove)
11932         (setq n 1)
11933       (when (< n 0)
11934         (setq n (abs n)
11935               nummove (* -1 nummove))))
11936     (while (and (> n 0)
11937                 (gnus-summary-mark-article nil mark)
11938                 (zerop (gnus-summary-next-subject nummove unread t)))
11939       (setq n (1- n)))
11940     (when (/= 0 n)
11941       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
11942     (gnus-summary-recenter)
11943     (gnus-summary-position-point)
11944     (gnus-set-mode-line 'summary)
11945     n))
11946
11947 (defun gnus-summary-insert-articles (articles)
11948   (when (setq articles
11949               (gnus-sorted-difference articles
11950                                       (mapcar (lambda (h)
11951                                                 (mail-header-number h))
11952                                               gnus-newsgroup-headers)))
11953     (setq gnus-newsgroup-headers
11954           (gnus-merge 'list
11955                       gnus-newsgroup-headers
11956                       (gnus-fetch-headers articles)
11957                       'gnus-article-sort-by-number))
11958     ;; Suppress duplicates?
11959     (when gnus-suppress-duplicates
11960       (gnus-dup-suppress-articles))
11961
11962     ;; We might want to build some more threads first.
11963     (when (and gnus-fetch-old-headers
11964                (eq gnus-headers-retrieved-by 'nov))
11965       (if (eq gnus-fetch-old-headers 'invisible)
11966           (gnus-build-all-threads)
11967         (gnus-build-old-threads)))
11968     ;; Let the Gnus agent mark articles as read.
11969     (when gnus-agent
11970       (gnus-agent-get-undownloaded-list))
11971     ;; Remove list identifiers from subject
11972     (when gnus-list-identifiers
11973       (gnus-summary-remove-list-identifiers))
11974     ;; First and last article in this newsgroup.
11975     (when gnus-newsgroup-headers
11976       (setq gnus-newsgroup-begin
11977             (mail-header-number (car gnus-newsgroup-headers))
11978             gnus-newsgroup-end
11979             (mail-header-number
11980              (gnus-last-element gnus-newsgroup-headers))))
11981     (when gnus-use-scoring
11982       (gnus-possibly-score-headers))))
11983
11984 (defun gnus-summary-insert-old-articles (&optional all)
11985   "Insert all old articles in this group.
11986 If ALL is non-nil, already read articles become readable.
11987 If ALL is a number, fetch this number of articles."
11988   (interactive "P")
11989   (prog1
11990       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11991             older len)
11992         (setq older
11993               ;; Some nntp servers lie about their active range.  When
11994               ;; this happens, the active range can be in the millions.
11995               ;; Use a compressed range to avoid creating a huge list.
11996               (gnus-range-difference (list gnus-newsgroup-active) old))
11997         (setq len (gnus-range-length older))
11998         (cond
11999          ((null older) nil)
12000          ((numberp all)
12001           (if (< all len)
12002               (let ((older-range (nreverse older)))
12003                 (setq older nil)
12004
12005                 (while (> all 0)
12006                   (let* ((r (pop older-range))
12007                          (min (if (numberp r) r (car r)))
12008                          (max (if (numberp r) r (cdr r))))
12009                     (while (and (<= min max)
12010                                 (> all 0))
12011                       (push max older)
12012                       (setq all (1- all)
12013                             max (1- max))))))
12014             (setq older (gnus-uncompress-range older))))
12015          (all
12016           (setq older (gnus-uncompress-range older)))
12017          (t
12018           (when (and (numberp gnus-large-newsgroup)
12019                    (> len gnus-large-newsgroup))
12020               (let* ((cursor-in-echo-area nil)
12021                      (initial (gnus-parameter-large-newsgroup-initial
12022                                gnus-newsgroup-name))
12023                      (input
12024                       (read-string
12025                        (format
12026                         "How many articles from %s (%s %d): "
12027                         (gnus-limit-string
12028                          (gnus-group-decoded-name gnus-newsgroup-name) 35)
12029                         (if initial "max" "default")
12030                         len)
12031                        (if initial
12032                            (cons (number-to-string initial)
12033                                  0)))))
12034                 (unless (string-match "^[ \t]*$" input)
12035                   (setq all (string-to-number input))
12036                   (if (< all len)
12037                       (let ((older-range (nreverse older)))
12038                         (setq older nil)
12039
12040                         (while (> all 0)
12041                           (let* ((r (pop older-range))
12042                                  (min (if (numberp r) r (car r)))
12043                                  (max (if (numberp r) r (cdr r))))
12044                             (while (and (<= min max)
12045                                         (> all 0))
12046                               (push max older)
12047                               (setq all (1- all)
12048                                     max (1- max))))))))))
12049           (setq older (gnus-uncompress-range older))))
12050         (if (not older)
12051             (message "No old news.")
12052           (gnus-summary-insert-articles older)
12053           (gnus-summary-limit (gnus-sorted-nunion old older))))
12054     (gnus-summary-position-point)))
12055
12056 (defun gnus-summary-insert-new-articles ()
12057   "Insert all new articles in this group."
12058   (interactive)
12059   (prog1
12060       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
12061             (old-active gnus-newsgroup-active)
12062             (nnmail-fetched-sources (list t))
12063             i new)
12064         (setq gnus-newsgroup-active
12065               (gnus-activate-group gnus-newsgroup-name 'scan))
12066         (setq i (cdr gnus-newsgroup-active))
12067         (while (> i (cdr old-active))
12068           (push i new)
12069           (decf i))
12070         (if (not new)
12071             (message "No gnus is bad news")
12072           (gnus-summary-insert-articles new)
12073           (setq gnus-newsgroup-unreads
12074                 (gnus-sorted-nunion gnus-newsgroup-unreads new))
12075           (gnus-summary-limit (gnus-sorted-nunion old new))))
12076     (gnus-summary-position-point)))
12077
12078 (gnus-summary-make-all-marking-commands)
12079
12080 (gnus-ems-redefine)
12081
12082 (provide 'gnus-sum)
12083
12084 (run-hooks 'gnus-sum-load-hook)
12085
12086 ;; Local Variables:
12087 ;; coding: iso-8859-1
12088 ;; End:
12089
12090 ;;; gnus-sum.el ends here