Synch to No Gnus 200403051037.
[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 non-nil, 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 some)
88                  number
89                  (sexp :menu-tag "other" t)))
90
91 (defcustom gnus-refer-thread-limit 200
92   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
93 If t, fetch all the available old headers."
94   :group 'gnus-thread
95   :type '(choice number
96                  (sexp :menu-tag "other" t)))
97
98 (defcustom gnus-summary-make-false-root 'adopt
99   "*nil means that Gnus won't gather loose threads.
100 If the root of a thread has expired or been read in a previous
101 session, the information necessary to build a complete thread has been
102 lost.  Instead of having many small sub-threads from this original thread
103 scattered all over the summary buffer, Gnus can gather them.
104
105 If non-nil, Gnus will try to gather all loose sub-threads from an
106 original thread into one large thread.
107
108 If this variable is non-nil, it should be one of `none', `adopt',
109 `dummy' or `empty'.
110
111 If this variable is `none', Gnus will not make a false root, but just
112 present the sub-threads after another.
113 If this variable is `dummy', Gnus will create a dummy root that will
114 have all the sub-threads as children.
115 If this variable is `adopt', Gnus will make one of the \"children\"
116 the parent and mark all the step-children as such.
117 If this variable is `empty', the \"children\" are printed with empty
118 subject fields.  (Or rather, they will be printed with a string
119 given by the `gnus-summary-same-subject' variable.)"
120   :group 'gnus-thread
121   :type '(choice (const :tag "off" nil)
122                  (const none)
123                  (const dummy)
124                  (const adopt)
125                  (const empty)))
126
127 (defcustom gnus-summary-make-false-root-always nil
128   "Always make a false dummy root."
129   :group 'gnus-thread
130   :type 'boolean)
131
132 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
133   "*A regexp to match subjects to be excluded from loose thread gathering.
134 As loose thread gathering is done on subjects only, that means that
135 there can be many false gatherings performed.  By rooting out certain
136 common subjects, gathering might become saner."
137   :group 'gnus-thread
138   :type 'regexp)
139
140 (defcustom gnus-summary-gather-subject-limit nil
141   "*Maximum length of subject comparisons when gathering loose threads.
142 Use nil to compare full subjects.  Setting this variable to a low
143 number will help gather threads that have been corrupted by
144 newsreaders chopping off subject lines, but it might also mean that
145 unrelated articles that have subject that happen to begin with the
146 same few characters will be incorrectly gathered.
147
148 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
149 comparing subjects."
150   :group 'gnus-thread
151   :type '(choice (const :tag "off" nil)
152                  (const fuzzy)
153                  (sexp :menu-tag "on" t)))
154
155 (defcustom gnus-simplify-subject-functions nil
156   "List of functions taking a string argument that simplify subjects.
157 The functions are applied recursively.
158
159 Useful functions to put in this list include:
160 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
161 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
162   :group 'gnus-thread
163   :type '(repeat function))
164
165 (defcustom gnus-simplify-ignored-prefixes nil
166   "*Remove matches for this regexp from subject lines when simplifying fuzzily."
167   :group 'gnus-thread
168   :type '(choice (const :tag "off" nil)
169                  regexp))
170
171 (defcustom gnus-build-sparse-threads nil
172   "*If non-nil, fill in the gaps in threads.
173 If `some', only fill in the gaps that are needed to tie loose threads
174 together.  If `more', fill in all leaf nodes that Gnus can find.  If
175 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
176   :group 'gnus-thread
177   :type '(choice (const :tag "off" nil)
178                  (const some)
179                  (const more)
180                  (sexp :menu-tag "all" t)))
181
182 (defcustom gnus-summary-thread-gathering-function
183   'gnus-gather-threads-by-subject
184   "*Function used for gathering loose threads.
185 There are two pre-defined functions: `gnus-gather-threads-by-subject',
186 which only takes Subjects into consideration; and
187 `gnus-gather-threads-by-references', which compared the References
188 headers of the articles to find matches."
189   :group 'gnus-thread
190   :type '(radio (function-item gnus-gather-threads-by-subject)
191                 (function-item gnus-gather-threads-by-references)
192                 (function :tag "other")))
193
194 (defcustom gnus-summary-same-subject ""
195   "*String indicating that the current article has the same subject as the previous.
196 This variable will only be used if the value of
197 `gnus-summary-make-false-root' is `empty'."
198   :group 'gnus-summary-format
199   :type 'string)
200
201 (defcustom gnus-summary-goto-unread t
202   "*If t, many commands will go to the next unread article.
203 This applies to marking commands as well as other commands that
204 \"naturally\" select the next article, like, for instance, `SPC' at
205 the end of an article.
206
207 If nil, the marking commands do NOT go to the next unread article
208 \(they go to the next article instead).  If `never', commands that
209 usually go to the next unread article, will go to the next article,
210 whether it is read or not."
211   :group 'gnus-summary-marks
212   :link '(custom-manual "(gnus)Setting Marks")
213   :type '(choice (const :tag "off" nil)
214                  (const never)
215                  (sexp :menu-tag "on" t)))
216
217 (defcustom gnus-summary-default-score 0
218   "*Default article score level.
219 All scores generated by the score files will be added to this score.
220 If this variable is nil, scoring will be disabled."
221   :group 'gnus-score-default
222   :type '(choice (const :tag "disable")
223                  integer))
224
225 (defcustom gnus-summary-default-high-score 0
226   "*Default threshold for a high scored article.
227 An article will be highlighted as high scored if its score is greater
228 than this score."
229   :group 'gnus-score-default
230   :type 'integer)
231
232 (defcustom gnus-summary-default-low-score 0
233   "*Default threshold for a low scored article.
234 An article will be highlighted as low scored if its score is smaller
235 than this score."
236   :group 'gnus-score-default
237   :type 'integer)
238
239 (defcustom gnus-summary-zcore-fuzz 0
240   "*Fuzziness factor for the zcore in the summary buffer.
241 Articles with scores closer than this to `gnus-summary-default-score'
242 will not be marked."
243   :group 'gnus-summary-format
244   :type 'integer)
245
246 (defcustom gnus-simplify-subject-fuzzy-regexp nil
247   "*Strings to be removed when doing fuzzy matches.
248 This can either be a regular expression or list of regular expressions
249 that will be removed from subject strings if fuzzy subject
250 simplification is selected."
251   :group 'gnus-thread
252   :type '(repeat regexp))
253
254 (defcustom gnus-show-threads t
255   "*If non-nil, display threads in summary mode."
256   :group 'gnus-thread
257   :type 'boolean)
258
259 (defcustom gnus-thread-hide-subtree nil
260   "*If non-nil, hide all threads initially.
261 This can be a predicate specifier which says which threads to hide.
262 If threads are hidden, you have to run the command
263 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
264 to expose hidden threads."
265   :group 'gnus-thread
266   :type '(radio (sexp :format "Non-nil\n"
267                       :match (lambda (widget value)
268                                (not (or (consp value) (functionp value))))
269                       :value t)
270                 (const nil)
271                 (sexp :tag "Predicate specifier" :size 0)))
272
273 (defcustom gnus-thread-hide-killed t
274   "*If non-nil, hide killed threads automatically."
275   :group 'gnus-thread
276   :type 'boolean)
277
278 (defcustom gnus-thread-ignore-subject t
279   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
280 If nil, articles that have different subjects from their parents will
281 start separate threads."
282   :group 'gnus-thread
283   :type 'boolean)
284
285 (defcustom gnus-thread-operation-ignore-subject t
286   "*If non-nil, subjects will be ignored when doing thread commands.
287 This affects commands like `gnus-summary-kill-thread' and
288 `gnus-summary-lower-thread'.
289
290 If this variable is nil, articles in the same thread with different
291 subjects will not be included in the operation in question.  If this
292 variable is `fuzzy', only articles that have subjects that are fuzzily
293 equal will be included."
294   :group 'gnus-thread
295   :type '(choice (const :tag "off" nil)
296                  (const fuzzy)
297                  (sexp :tag "on" t)))
298
299 (defcustom gnus-thread-indent-level 4
300   "*Number that says how much each sub-thread should be indented."
301   :group 'gnus-thread
302   :type 'integer)
303
304 (defcustom gnus-auto-extend-newsgroup t
305   "*If non-nil, extend newsgroup forward and backward when requested."
306   :group 'gnus-summary-choose
307   :type 'boolean)
308
309 (defcustom gnus-auto-select-first t
310   "*If non-nil, select the article under point.
311 Which article this is is controlled by the `gnus-auto-select-subject'
312 variable.
313
314 If you want to prevent automatic selection of articles in some
315 newsgroups, set the variable to nil in `gnus-select-group-hook'."
316   :group 'gnus-group-select
317   :type '(choice (const :tag "none" nil)
318                  (sexp :menu-tag "first" t)))
319
320 (defcustom gnus-auto-select-subject 'unread
321   "*Says what subject to place under point when entering a group.
322
323 This variable can either be the symbols `first' (place point on the
324 first subject), `unread' (place point on the subject line of the first
325 unread article), `best' (place point on the subject line of the
326 higest-scored article), `unseen' (place point on the subject line of
327 the first unseen article), 'unseen-or-unread' (place point on the subject
328 line of the first unseen article or, if all article have been seen, on the
329 subject line of the first unread article), or a function to be called to
330 place point on some subject line."
331   :group 'gnus-group-select
332   :type '(choice (const best)
333                  (const unread)
334                  (const first)
335                  (const unseen)
336                  (const unseen-or-unread)))
337
338 (defcustom gnus-dont-select-after-jump-to-other-group nil
339   "If non-nil, don't select the first unread article after entering the
340 other group by the command `gnus-summary-jump-to-other-group'.  If nil,
341 it is depend on the value of `gnus-auto-select-first' whether to select
342 or not."
343   :group 'gnus-group-select
344   :type 'boolean)
345
346 (defcustom gnus-auto-select-next t
347   "*If non-nil, offer to go to the next group from the end of the previous.
348 If the value is t and the next newsgroup is empty, Gnus will exit
349 summary mode and go back to group mode.  If the value is neither nil
350 nor t, Gnus will select the following unread newsgroup.  In
351 particular, if the value is the symbol `quietly', the next unread
352 newsgroup will be selected without any confirmation, and if it is
353 `almost-quietly', the next group will be selected without any
354 confirmation if you are located on the last article in the group.
355 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
356 will go to the next group without confirmation."
357   :group 'gnus-summary-maneuvering
358   :type '(choice (const :tag "off" nil)
359                  (const quietly)
360                  (const almost-quietly)
361                  (const slightly-quietly)
362                  (sexp :menu-tag "on" t)))
363
364 (defcustom gnus-auto-select-same nil
365   "*If non-nil, select the next article with the same subject.
366 If there are no more articles with the same subject, go to
367 the first unread article."
368   :group 'gnus-summary-maneuvering
369   :type 'boolean)
370
371 (defcustom gnus-auto-goto-ignores 'unfetched
372   "*Says how to handle unfetched articles when maneuvering.
373
374 This variable can either be the symbols nil (maneuver to any
375 article), `undownloaded' (maneuvering while unplugged ignores articles
376 that have not been fetched), `always-undownloaded' (maneuvering always
377 ignores articles that have not been fetched), `unfetched' (maneuvering
378 ignores articles whose headers have not been fetched).
379
380 NOTE: The list of unfetched articles will always be nil when plugged
381 and, when unplugged, a subset of the undownloaded article list."
382   :group 'gnus-summary-maneuvering
383   :type '(choice (const :tag "None" nil)
384                  (const :tag "Undownloaded when unplugged" undownloaded)
385                  (const :tag "Undownloaded" always-undownloaded)
386                  (const :tag "Unfetched" unfetched)))
387
388 (defcustom gnus-summary-check-current nil
389   "*If non-nil, consider the current article when moving.
390 The \"unread\" movement commands will stay on the same line if the
391 current article is unread."
392   :group 'gnus-summary-maneuvering
393   :type 'boolean)
394
395 (defcustom gnus-auto-center-summary t
396   "*If non-nil, always center the current summary buffer.
397 In particular, if `vertical' do only vertical recentering.  If non-nil
398 and non-`vertical', do both horizontal and vertical recentering."
399   :group 'gnus-summary-maneuvering
400   :type '(choice (const :tag "none" nil)
401                  (const vertical)
402                  (integer :tag "height")
403                  (sexp :menu-tag "both" t)))
404
405 (defvar gnus-auto-center-group t
406   "*If non-nil, always center the group buffer.")
407
408 (defcustom gnus-show-all-headers nil
409   "*If non-nil, don't hide any headers."
410   :group 'gnus-article-hiding
411   :group 'gnus-article-headers
412   :type 'boolean)
413
414 (defcustom gnus-summary-ignore-duplicates nil
415   "*If non-nil, ignore articles with identical Message-ID headers."
416   :group 'gnus-summary
417   :type 'boolean)
418
419 (defcustom gnus-single-article-buffer t
420   "*If non-nil, display all articles in the same buffer.
421 If nil, each group will get its own article buffer."
422   :group 'gnus-article-various
423   :type 'boolean)
424
425 (defcustom gnus-break-pages t
426   "*If non-nil, do page breaking on articles.
427 The page delimiter is specified by the `gnus-page-delimiter'
428 variable."
429   :group 'gnus-article-various
430   :type 'boolean)
431
432 (defcustom gnus-show-mime t
433   "*If non-nil, do mime processing of articles.
434 The articles will simply be fed to the function given by
435 `gnus-article-display-method-for-mime'."
436   :group 'gnus-article-mime
437   :type 'boolean)
438
439 (defcustom gnus-move-split-methods nil
440   "*Variable used to suggest where articles are to be moved to.
441 It uses the same syntax as the `gnus-split-methods' variable.
442 However, whereas `gnus-split-methods' specifies file names as targets,
443 this variable specifies group names."
444   :group 'gnus-summary-mail
445   :type '(repeat (choice (list :value (fun) function)
446                          (cons :value ("" "") regexp (repeat string))
447                          (sexp :value nil))))
448
449 (defcustom gnus-move-group-prefix-function 'gnus-group-real-prefix
450   "Function used to compute default prefix for article move/copy/etc prompts.
451 The function should take one argument, a group name, and return a
452 string with the suggested prefix."
453   :group 'gnus-summary-mail
454   :type 'function)
455
456 (defcustom gnus-unread-mark ?\ ;;;Whitespace
457   "*Mark used for unread articles."
458   :group 'gnus-summary-marks
459   :type 'character)
460
461 (defcustom gnus-ticked-mark ?!
462   "*Mark used for ticked articles."
463   :group 'gnus-summary-marks
464   :type 'character)
465
466 (defcustom gnus-dormant-mark ??
467   "*Mark used for dormant articles."
468   :group 'gnus-summary-marks
469   :type 'character)
470
471 (defcustom gnus-del-mark ?r
472   "*Mark used for del'd articles."
473   :group 'gnus-summary-marks
474   :type 'character)
475
476 (defcustom gnus-read-mark ?R
477   "*Mark used for read articles."
478   :group 'gnus-summary-marks
479   :type 'character)
480
481 (defcustom gnus-expirable-mark ?E
482   "*Mark used for expirable articles."
483   :group 'gnus-summary-marks
484   :type 'character)
485
486 (defcustom gnus-killed-mark ?K
487   "*Mark used for killed articles."
488   :group 'gnus-summary-marks
489   :type 'character)
490
491 (defcustom gnus-spam-mark ?$
492   "*Mark used for spam articles."
493   :group 'gnus-summary-marks
494   :type 'character)
495
496 (defcustom gnus-souped-mark ?F
497   "*Mark used for souped articles."
498   :group 'gnus-summary-marks
499   :type 'character)
500
501 (defcustom gnus-kill-file-mark ?X
502   "*Mark used for articles killed by kill files."
503   :group 'gnus-summary-marks
504   :type 'character)
505
506 (defcustom gnus-low-score-mark ?Y
507   "*Mark used for articles with a low score."
508   :group 'gnus-summary-marks
509   :type 'character)
510
511 (defcustom gnus-catchup-mark ?C
512   "*Mark used for articles that are caught up."
513   :group 'gnus-summary-marks
514   :type 'character)
515
516 (defcustom gnus-replied-mark ?A
517   "*Mark used for articles that have been replied to."
518   :group 'gnus-summary-marks
519   :type 'character)
520
521 (defcustom gnus-forwarded-mark ?F
522   "*Mark used for articles that have been forwarded."
523   :group 'gnus-summary-marks
524   :type 'character)
525
526 (defcustom gnus-recent-mark ?N
527   "*Mark used for articles that are recent."
528   :group 'gnus-summary-marks
529   :type 'character)
530
531 (defcustom gnus-cached-mark ?*
532   "*Mark used for articles that are in the cache."
533   :group 'gnus-summary-marks
534   :type 'character)
535
536 (defcustom gnus-saved-mark ?S
537   "*Mark used for articles that have been saved."
538   :group 'gnus-summary-marks
539   :type 'character)
540
541 (defcustom gnus-unseen-mark ?.
542   "*Mark used for articles that haven't been seen."
543   :group 'gnus-summary-marks
544   :type 'character)
545
546 (defcustom gnus-no-mark ?\ ;;;Whitespace
547   "*Mark used for articles that have no other secondary mark."
548   :group 'gnus-summary-marks
549   :type 'character)
550
551 (defcustom gnus-ancient-mark ?O
552   "*Mark used for ancient articles."
553   :group 'gnus-summary-marks
554   :type 'character)
555
556 (defcustom gnus-sparse-mark ?Q
557   "*Mark used for sparsely reffed articles."
558   :group 'gnus-summary-marks
559   :type 'character)
560
561 (defcustom gnus-canceled-mark ?G
562   "*Mark used for canceled articles."
563   :group 'gnus-summary-marks
564   :type 'character)
565
566 (defcustom gnus-duplicate-mark ?M
567   "*Mark used for duplicate articles."
568   :group 'gnus-summary-marks
569   :type 'character)
570
571 (defcustom gnus-undownloaded-mark ?-
572   "*Mark used for articles that weren't downloaded."
573   :group 'gnus-summary-marks
574   :type 'character)
575
576 (defcustom gnus-downloaded-mark ?+
577   "*Mark used for articles that were downloaded."
578   :group 'gnus-summary-marks
579   :type 'character)
580
581 (defcustom gnus-downloadable-mark ?%
582   "*Mark used for articles that are to be downloaded."
583   :group 'gnus-summary-marks
584   :type 'character)
585
586 (defcustom gnus-unsendable-mark ?=
587   "*Mark used for articles that won't be sent."
588   :group 'gnus-summary-marks
589   :type 'character)
590
591 (defcustom gnus-score-over-mark ?+
592   "*Score mark used for articles with high scores."
593   :group 'gnus-summary-marks
594   :type 'character)
595
596 (defcustom gnus-score-below-mark ?-
597   "*Score mark used for articles with low scores."
598   :group 'gnus-summary-marks
599   :type 'character)
600
601 (defcustom gnus-empty-thread-mark ?\ ;;;Whitespace
602   "*There is no thread under the article."
603   :group 'gnus-summary-marks
604   :type 'character)
605
606 (defcustom gnus-not-empty-thread-mark ?=
607   "*There is a thread under the article."
608   :group 'gnus-summary-marks
609   :type 'character)
610
611 (defcustom gnus-view-pseudo-asynchronously nil
612   "*If non-nil, Gnus will view pseudo-articles asynchronously."
613   :group 'gnus-extract-view
614   :type 'boolean)
615
616 (defcustom gnus-auto-expirable-marks
617   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
618         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
619         gnus-souped-mark gnus-duplicate-mark)
620   "*The list of marks converted into expiration if a group is auto-expirable."
621   :version "21.1"
622   :group 'gnus-summary
623   :type '(repeat character))
624
625 (defcustom gnus-inhibit-user-auto-expire t
626   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
627   :version "21.1"
628   :group 'gnus-summary
629   :type 'boolean)
630
631 (defcustom gnus-view-pseudos nil
632   "*If `automatic', pseudo-articles will be viewed automatically.
633 If `not-confirm', pseudos will be viewed automatically, and the user
634 will not be asked to confirm the command."
635   :group 'gnus-extract-view
636   :type '(choice (const :tag "off" nil)
637                  (const automatic)
638                  (const not-confirm)))
639
640 (defcustom gnus-view-pseudos-separately t
641   "*If non-nil, one pseudo-article will be created for each file to be viewed.
642 If nil, all files that use the same viewing command will be given as a
643 list of parameters to that command."
644   :group 'gnus-extract-view
645   :type 'boolean)
646
647 (defcustom gnus-insert-pseudo-articles t
648   "*If non-nil, insert pseudo-articles when decoding articles."
649   :group 'gnus-extract-view
650   :type 'boolean)
651
652 (defcustom gnus-summary-dummy-line-format
653   "   %(:                             :%) %S\n"
654   "*The format specification for the dummy roots in the summary buffer.
655 It works along the same lines as a normal formatting string,
656 with some simple extensions.
657
658 %S  The subject
659
660 General format specifiers can also be used.
661 See `(gnus)Formatting Variables'."
662   :link '(custom-manual "(gnus)Formatting Variables")
663   :group 'gnus-threading
664   :type 'string)
665
666 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
667   "*The format specification for the summary mode line.
668 It works along the same lines as a normal formatting string,
669 with some simple extensions:
670
671 %G  Group name
672 %p  Unprefixed group name
673 %A  Current article number
674 %z  Current article score
675 %V  Gnus version
676 %U  Number of unread articles in the group
677 %e  Number of unselected articles in the group
678 %Z  A string with unread/unselected article counts
679 %g  Shortish group name
680 %S  Subject of the current article
681 %u  User-defined spec
682 %s  Current score file name
683 %d  Number of dormant articles
684 %r  Number of articles that have been marked as read in this session
685 %E  Number of articles expunged by the score files"
686   :group 'gnus-summary-format
687   :type 'string)
688
689 (defcustom gnus-list-identifiers nil
690   "Regexp that matches list identifiers to be removed from subject.
691 This can also be a list of regexps."
692   :version "21.1"
693   :group 'gnus-summary-format
694   :group 'gnus-article-hiding
695   :type '(choice (const :tag "none" nil)
696                  (regexp :value ".*")
697                  (repeat :value (".*") regexp)))
698
699 (defcustom gnus-summary-mark-below 0
700   "*Mark all articles with a score below this variable as read.
701 This variable is local to each summary buffer and usually set by the
702 score file."
703   :group 'gnus-score-default
704   :type 'integer)
705
706 (defun gnus-widget-reversible-match (widget value)
707   "Ignoring WIDGET, convert VALUE to internal form.
708 VALUE should have the form `FOO' or `(not FOO)', where FOO is an symbol."
709   ;; (debug value)
710   (or (symbolp value)
711       (and (listp value)
712            (eq (length value) 2)
713            (eq (nth 0 value) 'not)
714            (symbolp (nth 1 value)))))
715
716 (defun gnus-widget-reversible-to-internal (widget value)
717   "Ignoring WIDGET, convert VALUE to internal form.
718 VALUE should have the form `FOO' or `(not FOO)', where FOO is an atom.
719 FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t)."
720   ;; (debug value)
721   (if (atom value)
722       (list value nil)
723     (list (nth 1 value) t)))
724
725 (defun gnus-widget-reversible-to-external (widget value)
726   "Ignoring WIDGET, convert VALUE to external form.
727 VALUE should have the form `(FOO nil)' or `(FOO t)', where FOO is an atom.
728 \(FOO  nil) is converted to FOO and (FOO t) is converted to (not FOO)."
729   ;; (debug value)
730   (if (nth 1 value)
731       (list 'not (nth 0 value))
732     (nth 0 value)))
733
734 (define-widget 'gnus-widget-reversible 'group
735   "A `group' that convert values."
736   :match 'gnus-widget-reversible-match
737   :value-to-internal 'gnus-widget-reversible-to-internal
738   :value-to-external 'gnus-widget-reversible-to-external)
739                         
740
741 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
742   "*List of functions used for sorting articles in the summary buffer.
743
744 Each function takes two articles and returns non-nil if the first
745 article should be sorted before the other.  If you use more than one
746 function, the primary sort function should be the last.  You should
747 probably always include `gnus-article-sort-by-number' in the list of
748 sorting functions -- preferably first.  Also note that sorting by date
749 is often much slower than sorting by number, and the sorting order is
750 very similar.  (Sorting by date means sorting by the time the message
751 was sent, sorting by number means sorting by arrival time.)
752
753 Each item can also be a list `(not F)' where F is a function;
754 this reverses the sort order.
755
756 Ready-made functions include `gnus-article-sort-by-number',
757 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
758 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
759 and `gnus-article-sort-by-score'.
760
761 When threading is turned on, the variable `gnus-thread-sort-functions'
762 controls how articles are sorted."
763   :group 'gnus-summary-sort
764   :type '(repeat (gnus-widget-reversible
765                   (choice (function-item gnus-article-sort-by-number)
766                           (function-item gnus-article-sort-by-author)
767                           (function-item gnus-article-sort-by-subject)
768                           (function-item gnus-article-sort-by-date)
769                           (function-item gnus-article-sort-by-score)
770                           (function-item gnus-article-sort-by-random)
771                           (function :tag "other"))
772                   (boolean :tag "Reverse order"))))
773
774
775 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
776   "*List of functions used for sorting threads in the summary buffer.
777 By default, threads are sorted by article number.
778
779 Each function takes two threads and returns non-nil if the first
780 thread should be sorted before the other.  If you use more than one
781 function, the primary sort function should be the last.  You should
782 probably always include `gnus-thread-sort-by-number' in the list of
783 sorting functions -- preferably first.  Also note that sorting by date
784 is often much slower than sorting by number, and the sorting order is
785 very similar.  (Sorting by date means sorting by the time the message
786 was sent, sorting by number means sorting by arrival time.)
787
788 Each list item can also be a list `(not F)' where F is a
789 function; this specifies reversed sort order.
790
791 Ready-made functions include `gnus-thread-sort-by-number',
792 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
793 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score',
794 `gnus-thread-sort-by-most-recent-number',
795 `gnus-thread-sort-by-most-recent-date',
796 `gnus-thread-sort-by-random', and
797 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function').
798
799 When threading is turned off, the variable
800 `gnus-article-sort-functions' controls how articles are sorted."
801   :group 'gnus-summary-sort
802   :type '(repeat 
803           (gnus-widget-reversible
804            (choice (function-item gnus-thread-sort-by-number)
805                    (function-item gnus-thread-sort-by-author)
806                    (function-item gnus-thread-sort-by-subject)
807                    (function-item gnus-thread-sort-by-date)
808                    (function-item gnus-thread-sort-by-score)
809                    (function-item gnus-thread-sort-by-most-recent-number)
810                    (function-item gnus-thread-sort-by-most-recent-date)
811                    (function-item gnus-thread-sort-by-random)
812                    (function-item gnus-thread-sort-by-total-score)
813                    (function :tag "other"))
814            (boolean :tag "Reverse order"))))
815
816 (defcustom gnus-thread-score-function '+
817   "*Function used for calculating the total score of a thread.
818
819 The function is called with the scores of the article and each
820 subthread and should then return the score of the thread.
821
822 Some functions you can use are `+', `max', or `min'."
823   :group 'gnus-summary-sort
824   :type 'function)
825
826 (defcustom gnus-summary-expunge-below nil
827   "All articles that have a score less than this variable will be expunged.
828 This variable is local to the summary buffers."
829   :group 'gnus-score-default
830   :type '(choice (const :tag "off" nil)
831                  integer))
832
833 (defcustom gnus-thread-expunge-below nil
834   "All threads that have a total score less than this variable will be expunged.
835 See `gnus-thread-score-function' for en explanation of what a
836 \"thread score\" is.
837
838 This variable is local to the summary buffers."
839   :group 'gnus-threading
840   :group 'gnus-score-default
841   :type '(choice (const :tag "off" nil)
842                  integer))
843
844 (defcustom gnus-summary-mode-hook nil
845   "*A hook for Gnus summary mode.
846 This hook is run before any variables are set in the summary buffer."
847   :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
848   :group 'gnus-summary-various
849   :type 'hook)
850
851 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
852 (when (featurep 'xemacs)
853   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
854   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
855   (add-hook 'gnus-summary-mode-hook
856             'gnus-xmas-switch-horizontal-scrollbar-off))
857
858 (defcustom gnus-summary-menu-hook nil
859   "*Hook run after the creation of the summary mode menu."
860   :group 'gnus-summary-visual
861   :type 'hook)
862
863 (defcustom gnus-summary-exit-hook nil
864   "*A hook called on exit from the summary buffer.
865 It will be called with point in the group buffer."
866   :group 'gnus-summary-exit
867   :type 'hook)
868
869 (defcustom gnus-summary-prepare-hook nil
870   "*A hook called after the summary buffer has been generated.
871 If you want to modify the summary buffer, you can use this hook."
872   :group 'gnus-summary-various
873   :type 'hook)
874
875 (defcustom gnus-summary-prepared-hook nil
876   "*A hook called as the last thing after the summary buffer has been generated."
877   :group 'gnus-summary-various
878   :type 'hook)
879
880 (defcustom gnus-summary-generate-hook nil
881   "*A hook run just before generating the summary buffer.
882 This hook is commonly used to customize threading variables and the
883 like."
884   :group 'gnus-summary-various
885   :type 'hook)
886
887 (defcustom gnus-select-group-hook nil
888   "*A hook called when a newsgroup is selected.
889
890 If you'd like to simplify subjects like the
891 `gnus-summary-next-same-subject' command does, you can use the
892 following hook:
893
894  (add-hook gnus-select-group-hook
895            (lambda ()
896              (mapcar (lambda (header)
897                        (mail-header-set-subject
898                         header
899                         (gnus-simplify-subject
900                          (mail-header-subject header) 're-only)))
901                      gnus-newsgroup-headers)))"
902   :group 'gnus-group-select
903   :type 'hook)
904
905 (defcustom gnus-select-article-hook nil
906   "*A hook called when an article is selected."
907   :group 'gnus-summary-choose
908   :options '(gnus-agent-fetch-selected-article)
909   :type 'hook)
910
911 (defcustom gnus-visual-mark-article-hook
912   (list 'gnus-highlight-selected-summary)
913   "*Hook run after selecting an article in the summary buffer.
914 It is meant to be used for highlighting the article in some way.  It
915 is not run if `gnus-visual' is nil."
916   :group 'gnus-summary-visual
917   :type 'hook)
918
919 (defcustom gnus-parse-headers-hook '(gnus-summary-inherit-default-charset)
920   "*A hook called before parsing the headers."
921   :group 'gnus-various
922   :type 'hook)
923
924 (defcustom gnus-exit-group-hook nil
925   "*A hook called when exiting summary mode.
926 This hook is not called from the non-updating exit commands like `Q'."
927   :group 'gnus-various
928   :type 'hook)
929
930 (defcustom gnus-summary-update-hook
931   (list 'gnus-summary-highlight-line)
932   "*A hook called when a summary line is changed.
933 The hook will not be called if `gnus-visual' is nil.
934
935 The default function `gnus-summary-highlight-line' will
936 highlight the line according to the `gnus-summary-highlight'
937 variable."
938   :group 'gnus-summary-visual
939   :type 'hook)
940
941 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
942   "*A hook called when an article is selected for the first time.
943 The hook is intended to mark an article as read (or unread)
944 automatically when it is selected."
945   :group 'gnus-summary-choose
946   :type 'hook)
947
948 (defcustom gnus-group-no-more-groups-hook nil
949   "*A hook run when returning to group mode having no more (unread) groups."
950   :group 'gnus-group-select
951   :type 'hook)
952
953 (defcustom gnus-ps-print-hook nil
954   "*A hook run before ps-printing something from Gnus."
955   :group 'gnus-summary
956   :type 'hook)
957
958 (defcustom gnus-summary-article-move-hook nil
959   "*A hook called after an article is moved, copied, respooled, or crossposted."
960   :group 'gnus-summary
961   :type 'hook)
962
963 (defcustom gnus-summary-article-delete-hook nil
964   "*A hook called after an article is deleted."
965   :group 'gnus-summary
966   :type 'hook)
967
968 (defcustom gnus-summary-article-expire-hook nil
969   "*A hook called after an article is expired."
970   :group 'gnus-summary
971   :type 'hook)
972
973 (defcustom gnus-summary-display-arrow
974   (and (fboundp 'display-graphic-p)
975        (display-graphic-p))
976   "*If non-nil, display an arrow highlighting the current article."
977   :version "21.1"
978   :group 'gnus-summary
979   :type 'boolean)
980
981 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
982   "Face used for highlighting the current article in the summary buffer."
983   :group 'gnus-summary-visual
984   :type 'face)
985
986 (defvar gnus-tmp-downloaded nil)
987
988 (defcustom gnus-summary-highlight
989   '(((eq mark gnus-canceled-mark)
990      . gnus-summary-cancelled-face)
991     ((and uncached (> score default-high))
992      . gnus-summary-high-undownloaded-face)
993     ((and uncached (< score default-low))
994      . gnus-summary-low-undownloaded-face)
995     (uncached
996      . gnus-summary-normal-undownloaded-face)
997     ((and (> score default-high)
998           (or (eq mark gnus-dormant-mark)
999               (eq mark gnus-ticked-mark)))
1000      . gnus-summary-high-ticked-face)
1001     ((and (< score default-low)
1002           (or (eq mark gnus-dormant-mark)
1003               (eq mark gnus-ticked-mark)))
1004      . gnus-summary-low-ticked-face)
1005     ((or (eq mark gnus-dormant-mark)
1006          (eq mark gnus-ticked-mark))
1007      . gnus-summary-normal-ticked-face)
1008     ((and (> score default-high) (eq mark gnus-ancient-mark))
1009      . gnus-summary-high-ancient-face)
1010     ((and (< score default-low) (eq mark gnus-ancient-mark))
1011      . gnus-summary-low-ancient-face)
1012     ((eq mark gnus-ancient-mark)
1013      . gnus-summary-normal-ancient-face)
1014     ((and (> score default-high) (eq mark gnus-unread-mark))
1015      . gnus-summary-high-unread-face)
1016     ((and (< score default-low) (eq mark gnus-unread-mark))
1017      . gnus-summary-low-unread-face)
1018     ((eq mark gnus-unread-mark)
1019      . gnus-summary-normal-unread-face)
1020     ((> score default-high)
1021      . gnus-summary-high-read-face)
1022     ((< score default-low)
1023      . gnus-summary-low-read-face)
1024     (t
1025      . gnus-summary-normal-read-face))
1026   "*Controls the highlighting of summary buffer lines.
1027
1028 A list of (FORM . FACE) pairs.  When deciding how a a particular
1029 summary line should be displayed, each form is evaluated.  The content
1030 of the face field after the first true form is used.  You can change
1031 how those summary lines are displayed, by editing the face field.
1032
1033 You can use the following variables in the FORM field.
1034
1035 score:        The article's score
1036 default:      The default article score.
1037 default-high: The default score for high scored articles.
1038 default-low:  The default score for low scored articles.
1039 below:        The score below which articles are automatically marked as read.
1040 mark:         The article's mark.
1041 uncached:     Non-nil if the article is uncached."
1042   :group 'gnus-summary-visual
1043   :type '(repeat (cons (sexp :tag "Form" nil)
1044                        face)))
1045
1046 (defcustom gnus-alter-header-function nil
1047   "Function called to allow alteration of article header structures.
1048 The function is called with one parameter, the article header vector,
1049 which it may alter in any way."
1050   :type '(choice (const :tag "None" nil)
1051                  function)
1052   :group 'gnus-summary)
1053
1054 (defvar gnus-decode-encoded-word-function
1055   (mime-find-field-decoder 'From 'nov)
1056   "Variable that says which function should be used to decode a string with encoded words.")
1057
1058 (defcustom gnus-extra-headers '(To Newsgroups)
1059   "*Extra headers to parse."
1060   :version "21.1"
1061   :group 'gnus-summary
1062   :type '(repeat symbol))
1063
1064 (defcustom gnus-ignored-from-addresses
1065   (and user-mail-address (regexp-quote user-mail-address))
1066   "*Regexp of From headers that may be suppressed in favor of To headers."
1067   :version "21.1"
1068   :group 'gnus-summary
1069   :type 'regexp)
1070
1071 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
1072   "List of charsets that should be ignored.
1073 When these charsets are used in the \"charset\" parameter, the
1074 default charset will be used instead."
1075   :version "21.1"
1076   :type '(repeat symbol)
1077   :group 'gnus-charset)
1078
1079 (gnus-define-group-parameter
1080  ignored-charsets
1081  :type list
1082  :function-document
1083  "Return the ignored charsets of GROUP."
1084  :variable gnus-group-ignored-charsets-alist
1085  :variable-default
1086  '(("alt\\.chinese\\.text" iso-8859-1))
1087  :variable-document
1088  "Alist of regexps (to match group names) and charsets that should be ignored.
1089 When these charsets are used in the \"charset\" parameter, the
1090 default charset will be used instead."
1091  :variable-group gnus-charset
1092  :variable-type '(repeat (cons (regexp :tag "Group")
1093                                (repeat symbol)))
1094  :parameter-type '(choice :tag "Ignored charsets"
1095                           :value nil
1096                           (repeat (symbol)))
1097  :parameter-document       "\
1098 List of charsets that should be ignored.
1099
1100 When these charsets are used in the \"charset\" parameter, the
1101 default charset will be used instead.")
1102
1103 (defcustom gnus-group-highlight-words-alist nil
1104   "Alist of group regexps and highlight regexps.
1105 This variable uses the same syntax as `gnus-emphasis-alist'."
1106   :version "21.1"
1107   :type '(repeat (cons (regexp :tag "Group")
1108                        (repeat (list (regexp :tag "Highlight regexp")
1109                                      (number :tag "Group for entire word" 0)
1110                                      (number :tag "Group for displayed part" 0)
1111                                      (symbol :tag "Face"
1112                                              gnus-emphasis-highlight-words)))))
1113   :group 'gnus-summary-visual)
1114
1115 (defcustom gnus-use-wheel nil
1116   "Use Intelli-mouse on summary movement"
1117   :type 'boolean
1118   :group 'gnus-summary-maneuvering)
1119
1120 (defcustom gnus-wheel-scroll-amount '(5 . 1)
1121   "Amount to scroll messages by spinning the mouse wheel.
1122 This is actually a cons cell, where the first item is the amount to scroll
1123 on a normal wheel event, and the second is the amount to scroll when the
1124 wheel is moved with the shift key depressed."
1125   :type '(cons (integer :tag "Shift") integer)
1126   :group 'gnus-summary-maneuvering)
1127
1128 (defcustom gnus-wheel-edge-resistance 2
1129   "How hard it should be to change the current article
1130 by moving the mouse over the edge of the article window."
1131   :type 'integer
1132   :group 'gnus-summary-maneuvering)
1133
1134 (defcustom gnus-summary-show-article-charset-alist
1135   nil
1136   "Alist of number and charset.
1137 The article will be shown with the charset corresponding to the
1138 numbered argument.
1139 For example: ((1 . cn-gb-2312) (2 . big5))."
1140   :version "21.1"
1141   :type '(repeat (cons (number :tag "Argument" 1)
1142                        (symbol :tag "Charset")))
1143   :group 'gnus-charset)
1144
1145 (defcustom gnus-preserve-marks t
1146   "Whether marks are preserved when moving, copying and respooling messages."
1147   :version "21.1"
1148   :type 'boolean
1149   :group 'gnus-summary-marks)
1150
1151 (defcustom gnus-alter-articles-to-read-function nil
1152   "Function to be called to alter the list of articles to be selected."
1153   :type '(choice (const nil) function)
1154   :group 'gnus-summary)
1155
1156 (defcustom gnus-orphan-score nil
1157   "*All orphans get this score added.  Set in the score file."
1158   :group 'gnus-score-default
1159   :type '(choice (const nil)
1160                  integer))
1161
1162 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1163   "*A regexp to match MIME parts when saving multiple parts of a
1164 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1165 This regexp will be used by default when prompting the user for which
1166 type of files to save."
1167   :group 'gnus-summary
1168   :type 'regexp)
1169
1170 (defcustom gnus-read-all-available-headers nil
1171   "Whether Gnus should parse all headers made available to it.
1172 This is mostly relevant for slow back ends where the user may
1173 wish to widen the summary buffer to include all headers
1174 that were fetched.  Say, for nnultimate groups."
1175   :group 'gnus-summary
1176   :type '(choice boolean regexp))
1177
1178 (defcustom gnus-summary-muttprint-program "muttprint"
1179   "Command (and optional arguments) used to run Muttprint."
1180   :version "21.3"
1181   :group 'gnus-summary
1182   :type 'string)
1183
1184 (defcustom gnus-article-loose-mime nil
1185   "If non-nil, don't require MIME-Version header.
1186 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1187 supply the MIME-Version header or deliberately strip it From the mail.
1188 Set it to non-nil, Gnus will treat some articles as MIME even if
1189 the MIME-Version header is missed."
1190   :version "21.3"
1191   :type 'boolean
1192   :group 'gnus-article-mime)
1193
1194 (defcustom gnus-article-emulate-mime t
1195   "If non-nil, use MIME emulation for uuencode and the like.
1196 This means that Gnus will search message bodies for text that look
1197 like uuencoded bits, yEncoded bits, and so on, and present that using
1198 the normal Gnus MIME machinery."
1199   :type 'boolean
1200   :group 'gnus-article-mime)
1201
1202 ;;; Internal variables
1203
1204 (defvar gnus-summary-display-cache nil)
1205 (defvar gnus-article-mime-handles nil)
1206 (defvar gnus-article-decoded-p nil)
1207 (defvar gnus-article-charset nil)
1208 (defvar gnus-article-ignored-charsets nil)
1209 (defvar gnus-scores-exclude-files nil)
1210 (defvar gnus-page-broken nil)
1211
1212 (defvar gnus-original-article nil)
1213 (defvar gnus-article-internal-prepare-hook nil)
1214 (defvar gnus-newsgroup-process-stack nil)
1215
1216 (defvar gnus-thread-indent-array nil)
1217 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1218 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1219   "Function called to sort the articles within a thread after it has been gathered together.")
1220
1221 (defvar gnus-summary-save-parts-type-history nil)
1222 (defvar gnus-summary-save-parts-last-directory nil)
1223
1224 ;; Avoid highlighting in kill files.
1225 (defvar gnus-summary-inhibit-highlight nil)
1226 (defvar gnus-newsgroup-selected-overlay nil)
1227 (defvar gnus-inhibit-limiting nil)
1228 (defvar gnus-newsgroup-adaptive-score-file nil)
1229 (defvar gnus-current-score-file nil)
1230 (defvar gnus-current-move-group nil)
1231 (defvar gnus-current-copy-group nil)
1232 (defvar gnus-current-crosspost-group nil)
1233 (defvar gnus-newsgroup-display nil)
1234
1235 (defvar gnus-newsgroup-dependencies nil)
1236 (defvar gnus-newsgroup-adaptive nil)
1237 (defvar gnus-summary-display-article-function nil)
1238 (defvar gnus-summary-highlight-line-function nil
1239   "Function called after highlighting a summary line.")
1240
1241 (defvar gnus-summary-line-format-alist
1242   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1243     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1244     (?s gnus-tmp-subject-or-nil ?s)
1245     (?n gnus-tmp-name ?s)
1246     (?A (std11-address-string
1247          (car (mime-entity-read-field gnus-tmp-header 'From))) ?s)
1248     (?a (or (std11-full-name-string
1249              (car (mime-entity-read-field gnus-tmp-header 'From)))
1250             gnus-tmp-from) ?s)
1251     (?F gnus-tmp-from ?s)
1252     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1253     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1254     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1255     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1256     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1257     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1258     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1259     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1260     (?L gnus-tmp-lines ?s)
1261     (?O gnus-tmp-downloaded ?c)
1262     (?I gnus-tmp-indentation ?s)
1263     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1264     (?R gnus-tmp-replied ?c)
1265     (?\[ gnus-tmp-opening-bracket ?c)
1266     (?\] gnus-tmp-closing-bracket ?c)
1267     (?\> (make-string gnus-tmp-level ? ) ?s)
1268     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1269     (?i gnus-tmp-score ?d)
1270     (?z gnus-tmp-score-char ?c)
1271     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1272     (?U gnus-tmp-unread ?c)
1273     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1274         ?s)
1275     (?t (gnus-summary-number-of-articles-in-thread
1276          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1277         ?d)
1278     (?e (gnus-summary-number-of-articles-in-thread
1279          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1280         ?c)
1281     (?u gnus-tmp-user-defined ?s)
1282     (?P (gnus-pick-line-number) ?d)
1283     (?B gnus-tmp-thread-tree-header-string ?s)
1284     (user-date (gnus-user-date
1285                 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1286   "An alist of format specifications that can appear in summary lines.
1287 These are paired with what variables they correspond with, along with
1288 the type of the variable (string, integer, character, etc).")
1289
1290 (defvar gnus-summary-dummy-line-format-alist
1291   `((?S gnus-tmp-subject ?s)
1292     (?N gnus-tmp-number ?d)
1293     (?u gnus-tmp-user-defined ?s)))
1294
1295 (defvar gnus-summary-mode-line-format-alist
1296   `((?G gnus-tmp-group-name ?s)
1297     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1298     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1299     (?A gnus-tmp-article-number ?d)
1300     (?Z gnus-tmp-unread-and-unselected ?s)
1301     (?V gnus-version ?s)
1302     (?U gnus-tmp-unread-and-unticked ?d)
1303     (?S gnus-tmp-subject ?s)
1304     (?e gnus-tmp-unselected ?d)
1305     (?u gnus-tmp-user-defined ?s)
1306     (?d (length gnus-newsgroup-dormant) ?d)
1307     (?t (length gnus-newsgroup-marked) ?d)
1308     (?h (length gnus-newsgroup-spam-marked) ?d)
1309     (?r (length gnus-newsgroup-reads) ?d)
1310     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1311     (?E gnus-newsgroup-expunged-tally ?d)
1312     (?s (gnus-current-score-file-nondirectory) ?s)))
1313
1314 (defvar gnus-last-search-regexp nil
1315   "Default regexp for article search command.")
1316
1317 (defvar gnus-summary-search-article-matched-data nil
1318   "Last matched data of article search command.  It is the local variable
1319 in `gnus-article-buffer' which consists of the list of start position,
1320 end position and text.")
1321
1322 (defvar gnus-last-shell-command nil
1323   "Default shell command on article.")
1324
1325 (defvar gnus-newsgroup-agentized nil
1326   "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1327 (defvar gnus-newsgroup-begin nil)
1328 (defvar gnus-newsgroup-end nil)
1329 (defvar gnus-newsgroup-last-rmail nil)
1330 (defvar gnus-newsgroup-last-mail nil)
1331 (defvar gnus-newsgroup-last-folder nil)
1332 (defvar gnus-newsgroup-last-file nil)
1333 (defvar gnus-newsgroup-auto-expire nil)
1334 (defvar gnus-newsgroup-active nil)
1335
1336 (defvar gnus-newsgroup-data nil)
1337 (defvar gnus-newsgroup-data-reverse nil)
1338 (defvar gnus-newsgroup-limit nil)
1339 (defvar gnus-newsgroup-limits nil)
1340 (defvar gnus-summary-use-undownloaded-faces nil)
1341
1342 (defvar gnus-newsgroup-unreads nil
1343   "Sorted list of unread articles in the current newsgroup.")
1344
1345 (defvar gnus-newsgroup-unselected nil
1346   "Sorted list of unselected unread articles in the current newsgroup.")
1347
1348 (defvar gnus-newsgroup-reads nil
1349   "Alist of read articles and article marks in the current newsgroup.")
1350
1351 (defvar gnus-newsgroup-expunged-tally nil)
1352
1353 (defvar gnus-newsgroup-marked nil
1354   "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1355
1356 (defvar gnus-newsgroup-spam-marked nil
1357   "List of ranges of articles that have been marked as spam.")
1358
1359 (defvar gnus-newsgroup-killed nil
1360   "List of ranges of articles that have been through the scoring process.")
1361
1362 (defvar gnus-newsgroup-cached nil
1363   "Sorted list of articles that come from the article cache.")
1364
1365 (defvar gnus-newsgroup-saved nil
1366   "List of articles that have been saved.")
1367
1368 (defvar gnus-newsgroup-kill-headers nil)
1369
1370 (defvar gnus-newsgroup-replied nil
1371   "List of articles that have been replied to in the current newsgroup.")
1372
1373 (defvar gnus-newsgroup-forwarded nil
1374   "List of articles that have been forwarded in the current newsgroup.")
1375
1376 (defvar gnus-newsgroup-recent nil
1377   "List of articles that have are recent in the current newsgroup.")
1378
1379 (defvar gnus-newsgroup-expirable nil
1380   "Sorted list of articles in the current newsgroup that can be expired.")
1381
1382 (defvar gnus-newsgroup-processable nil
1383   "List of articles in the current newsgroup that can be processed.")
1384
1385 (defvar gnus-newsgroup-downloadable nil
1386   "Sorted list of articles in the current newsgroup that can be processed.")
1387
1388 (defvar gnus-newsgroup-unfetched nil
1389   "Sorted list of articles in the current newsgroup whose headers have
1390 not been fetched into the agent.
1391
1392 This list will always be a subset of gnus-newsgroup-undownloaded.")
1393
1394 (defvar gnus-newsgroup-undownloaded nil
1395   "List of articles in the current newsgroup that haven't been downloaded.")
1396
1397 (defvar gnus-newsgroup-unsendable nil
1398   "List of articles in the current newsgroup that won't be sent.")
1399
1400 (defvar gnus-newsgroup-bookmarks nil
1401   "List of articles in the current newsgroup that have bookmarks.")
1402
1403 (defvar gnus-newsgroup-dormant nil
1404   "Sorted list of dormant articles in the current newsgroup.")
1405
1406 (defvar gnus-newsgroup-unseen nil
1407   "List of unseen articles in the current newsgroup.")
1408
1409 (defvar gnus-newsgroup-seen nil
1410   "Range of seen articles in the current newsgroup.")
1411
1412 (defvar gnus-newsgroup-articles nil
1413   "List of articles in the current newsgroup.")
1414
1415 (defvar gnus-newsgroup-scored nil
1416   "List of scored articles in the current newsgroup.")
1417
1418 (defvar gnus-newsgroup-incorporated nil
1419   "List of incorporated articles in the current newsgroup.")
1420
1421 (defvar gnus-newsgroup-headers nil
1422   "List of article headers in the current newsgroup.")
1423
1424 (defvar gnus-newsgroup-threads nil)
1425
1426 (defvar gnus-newsgroup-prepared nil
1427   "Whether the current group has been prepared properly.")
1428
1429 (defvar gnus-newsgroup-ancient nil
1430   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1431
1432 (defvar gnus-newsgroup-sparse nil)
1433
1434 (defvar gnus-current-article nil)
1435 (defvar gnus-article-current nil)
1436 (defvar gnus-current-headers nil)
1437 (defvar gnus-have-all-headers nil)
1438 (defvar gnus-last-article nil)
1439 (defvar gnus-newsgroup-history nil)
1440 (defvar gnus-newsgroup-charset nil)
1441 (defvar gnus-newsgroup-ephemeral-charset nil)
1442 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1443
1444 (defvar gnus-article-before-search nil)
1445
1446 (defvar gnus-summary-local-variables
1447   '(gnus-newsgroup-name
1448     gnus-newsgroup-begin gnus-newsgroup-end
1449     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1450     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1451     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1452     gnus-newsgroup-unselected gnus-newsgroup-marked
1453     gnus-newsgroup-spam-marked
1454     gnus-newsgroup-reads gnus-newsgroup-saved
1455     gnus-newsgroup-replied gnus-newsgroup-forwarded
1456     gnus-newsgroup-recent
1457     gnus-newsgroup-expirable
1458     gnus-newsgroup-processable gnus-newsgroup-killed
1459     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1460     gnus-newsgroup-unfetched
1461     gnus-newsgroup-unsendable gnus-newsgroup-unseen
1462     gnus-newsgroup-seen gnus-newsgroup-articles
1463     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1464     gnus-newsgroup-headers gnus-newsgroup-threads
1465     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1466     gnus-current-article gnus-current-headers gnus-have-all-headers
1467     gnus-last-article gnus-article-internal-prepare-hook
1468     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1469     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1470     gnus-thread-expunge-below
1471     gnus-score-alist gnus-current-score-file
1472     (gnus-summary-expunge-below . global)
1473     (gnus-summary-mark-below . global)
1474     (gnus-orphan-score . global)
1475     gnus-newsgroup-active gnus-scores-exclude-files
1476     gnus-newsgroup-history gnus-newsgroup-ancient
1477     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1478     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1479     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1480     (gnus-newsgroup-expunged-tally . 0)
1481     gnus-cache-removable-articles gnus-newsgroup-cached
1482     gnus-newsgroup-data gnus-newsgroup-data-reverse
1483     gnus-newsgroup-limit gnus-newsgroup-limits
1484     gnus-newsgroup-charset gnus-newsgroup-display
1485     gnus-summary-use-undownloaded-faces
1486     gnus-newsgroup-incorporated)
1487   "Variables that are buffer-local to the summary buffers.")
1488
1489 (defvar gnus-newsgroup-variables nil
1490   "A list of variables that have separate values in different newsgroups.
1491 A list of newsgroup (summary buffer) local variables, or cons of
1492 variables and their default values (when the default values are not
1493 nil), that should be made global while the summary buffer is active.
1494 These variables can be used to set variables in the group parameters
1495 while still allowing them to affect operations done in other
1496 buffers. For example:
1497
1498 \(setq gnus-newsgroup-variables
1499      '(message-use-followup-to
1500        (gnus-visible-headers .
1501          \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1502 ")
1503
1504 ;; Byte-compiler warning.
1505 (eval-when-compile
1506   ;; Bind features so that require will believe that gnus-sum has
1507   ;; already been loaded (avoids infinite recursion)
1508   (let ((features (cons 'gnus-sum features)))
1509     ;; Several of the declarations in gnus-sum are needed to load the
1510     ;; following files. Right now, these definitions have been
1511     ;; compiled but not defined (evaluated).  We could either do a
1512     ;; eval-and-compile about all of the declarations or evaluate the
1513     ;; source file.
1514     (if (boundp 'gnus-newsgroup-variables)
1515         nil
1516       (load "gnus-sum.el" t t t))
1517     (require 'gnus)
1518     (require 'gnus-agent)
1519     (require 'gnus-art)))
1520
1521 ;; Subject simplification.
1522
1523 (defun gnus-simplify-whitespace (str)
1524   "Remove excessive whitespace from STR."
1525   ;; Multiple spaces.
1526   (while (string-match "[ \t][ \t]+" str)
1527     (setq str (concat (substring str 0 (match-beginning 0))
1528                         " "
1529                         (substring str (match-end 0)))))
1530   ;; Leading spaces.
1531   (when (string-match "^[ \t]+" str)
1532     (setq str (substring str (match-end 0))))
1533   ;; Trailing spaces.
1534   (when (string-match "[ \t]+$" str)
1535     (setq str (substring str 0 (match-beginning 0))))
1536   str)
1537
1538 (defun gnus-simplify-all-whitespace (str)
1539   "Remove all whitespace from STR."
1540   (while (string-match "[ \t\n]+" str)
1541     (setq str (replace-match "" nil nil str)))
1542   str)
1543
1544 (defsubst gnus-simplify-subject-re (subject)
1545   "Remove \"Re:\" from subject lines."
1546   (if (string-match message-subject-re-regexp subject)
1547       (substring subject (match-end 0))
1548     subject))
1549
1550 (defun gnus-simplify-subject (subject &optional re-only)
1551   "Remove `Re:' and words in parentheses.
1552 If RE-ONLY is non-nil, strip leading `Re:'s only."
1553   (let ((case-fold-search t))           ;Ignore case.
1554     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1555     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1556       (setq subject (substring subject (match-end 0))))
1557     ;; Remove uninteresting prefixes.
1558     (when (and (not re-only)
1559                gnus-simplify-ignored-prefixes
1560                (string-match gnus-simplify-ignored-prefixes subject))
1561       (setq subject (substring subject (match-end 0))))
1562     ;; Remove words in parentheses from end.
1563     (unless re-only
1564       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1565         (setq subject (substring subject 0 (match-beginning 0)))))
1566     ;; Return subject string.
1567     subject))
1568
1569 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1570 ;; all whitespace.
1571 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1572   (goto-char (point-min))
1573   (while (re-search-forward regexp nil t)
1574     (replace-match (or newtext ""))))
1575
1576 (defun gnus-simplify-buffer-fuzzy ()
1577   "Simplify string in the buffer fuzzily.
1578 The string in the accessible portion of the current buffer is simplified.
1579 It is assumed to be a single-line subject.
1580 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1581 matter is removed.  Additional things can be deleted by setting
1582 `gnus-simplify-subject-fuzzy-regexp'."
1583   (let ((case-fold-search t)
1584         (modified-tick))
1585     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1586
1587     (while (not (eq modified-tick (buffer-modified-tick)))
1588       (setq modified-tick (buffer-modified-tick))
1589       (cond
1590        ((listp gnus-simplify-subject-fuzzy-regexp)
1591         (mapcar 'gnus-simplify-buffer-fuzzy-step
1592                 gnus-simplify-subject-fuzzy-regexp))
1593        (gnus-simplify-subject-fuzzy-regexp
1594         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1595       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1596       (gnus-simplify-buffer-fuzzy-step
1597        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1598       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1599
1600     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1601     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1602     (gnus-simplify-buffer-fuzzy-step " $")
1603     (gnus-simplify-buffer-fuzzy-step "^ +")))
1604
1605 (defun gnus-simplify-subject-fuzzy (subject)
1606   "Simplify a subject string fuzzily.
1607 See `gnus-simplify-buffer-fuzzy' for details."
1608   (save-excursion
1609     (gnus-set-work-buffer)
1610     (let ((case-fold-search t))
1611       ;; Remove uninteresting prefixes.
1612       (when (and gnus-simplify-ignored-prefixes
1613                  (string-match gnus-simplify-ignored-prefixes subject))
1614         (setq subject (substring subject (match-end 0))))
1615       (insert subject)
1616       (inline (gnus-simplify-buffer-fuzzy))
1617       (buffer-string))))
1618
1619 (defsubst gnus-simplify-subject-fully (subject)
1620   "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1621   (cond
1622    (gnus-simplify-subject-functions
1623     (gnus-map-function gnus-simplify-subject-functions subject))
1624    ((null gnus-summary-gather-subject-limit)
1625     (gnus-simplify-subject-re subject))
1626    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1627     (gnus-simplify-subject-fuzzy subject))
1628    ((numberp gnus-summary-gather-subject-limit)
1629     (gnus-limit-string (gnus-simplify-subject-re subject)
1630                        gnus-summary-gather-subject-limit))
1631    (t
1632     subject)))
1633
1634 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1635   "Check whether two subjects are equal.
1636 If optional argument SIMPLE-FIRST is t, first argument is already
1637 simplified."
1638   (cond
1639    ((null simple-first)
1640     (equal (gnus-simplify-subject-fully s1)
1641            (gnus-simplify-subject-fully s2)))
1642    (t
1643     (equal s1
1644            (gnus-simplify-subject-fully s2)))))
1645
1646 (defun gnus-summary-bubble-group ()
1647   "Increase the score of the current group.
1648 This is a handy function to add to `gnus-summary-exit-hook' to
1649 increase the score of each group you read."
1650   (gnus-group-add-score gnus-newsgroup-name))
1651
1652 \f
1653 ;;;
1654 ;;; Gnus summary mode
1655 ;;;
1656
1657 (put 'gnus-summary-mode 'mode-class 'special)
1658
1659 (defvar gnus-article-commands-menu)
1660
1661 ;; Non-orthogonal keys
1662
1663 (gnus-define-keys gnus-summary-mode-map
1664   " " gnus-summary-next-page
1665   "\177" gnus-summary-prev-page
1666   [delete] gnus-summary-prev-page
1667   [backspace] gnus-summary-prev-page
1668   "\r" gnus-summary-scroll-up
1669   "\M-\r" gnus-summary-scroll-down
1670   "n" gnus-summary-next-unread-article
1671   "p" gnus-summary-prev-unread-article
1672   "N" gnus-summary-next-article
1673   "P" gnus-summary-prev-article
1674   "\M-\C-n" gnus-summary-next-same-subject
1675   "\M-\C-p" gnus-summary-prev-same-subject
1676   "\M-n" gnus-summary-next-unread-subject
1677   "\M-p" gnus-summary-prev-unread-subject
1678   "." gnus-summary-first-unread-article
1679   "," gnus-summary-best-unread-article
1680   "\M-s" gnus-summary-search-article-forward
1681   "\M-r" gnus-summary-search-article-backward
1682   "<" gnus-summary-beginning-of-article
1683   ">" gnus-summary-end-of-article
1684   "j" gnus-summary-goto-article
1685   "^" gnus-summary-refer-parent-article
1686   "\M-^" gnus-summary-refer-article
1687   "u" gnus-summary-tick-article-forward
1688   "!" gnus-summary-tick-article-forward
1689   "U" gnus-summary-tick-article-backward
1690   "d" gnus-summary-mark-as-read-forward
1691   "D" gnus-summary-mark-as-read-backward
1692   "E" gnus-summary-mark-as-expirable
1693   "\M-u" gnus-summary-clear-mark-forward
1694   "\M-U" gnus-summary-clear-mark-backward
1695   "k" gnus-summary-kill-same-subject-and-select
1696   "\C-k" gnus-summary-kill-same-subject
1697   "\M-\C-k" gnus-summary-kill-thread
1698   "\M-\C-l" gnus-summary-lower-thread
1699   "e" gnus-summary-edit-article
1700   "#" gnus-summary-mark-as-processable
1701   "\M-#" gnus-summary-unmark-as-processable
1702   "\M-\C-t" gnus-summary-toggle-threads
1703   "\M-\C-s" gnus-summary-show-thread
1704   "\M-\C-h" gnus-summary-hide-thread
1705   "\M-\C-f" gnus-summary-next-thread
1706   "\M-\C-b" gnus-summary-prev-thread
1707   [(meta down)] gnus-summary-next-thread
1708   [(meta up)] gnus-summary-prev-thread
1709   "\M-\C-u" gnus-summary-up-thread
1710   "\M-\C-d" gnus-summary-down-thread
1711   "&" gnus-summary-execute-command
1712   "c" gnus-summary-catchup-and-exit
1713   "\C-w" gnus-summary-mark-region-as-read
1714   "\C-t" gnus-summary-toggle-truncation
1715   "?" gnus-summary-mark-as-dormant
1716   "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1717   "\C-c\C-s\C-n" gnus-summary-sort-by-number
1718   "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1719   "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1720   "\C-c\C-s\C-a" gnus-summary-sort-by-author
1721   "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1722   "\C-c\C-s\C-d" gnus-summary-sort-by-date
1723   "\C-c\C-s\C-i" gnus-summary-sort-by-score
1724   "\C-c\C-s\C-o" gnus-summary-sort-by-original
1725   "\C-c\C-s\C-r" gnus-summary-sort-by-random
1726   "=" gnus-summary-expand-window
1727   "\C-x\C-s" gnus-summary-reselect-current-group
1728   "\M-g" gnus-summary-rescan-group
1729   "w" gnus-summary-stop-page-breaking
1730   "\C-c\C-r" gnus-summary-caesar-message
1731   "\M-t" gnus-summary-toggle-mime
1732   "f" gnus-summary-followup
1733   "F" gnus-summary-followup-with-original
1734   "C" gnus-summary-cancel-article
1735   "r" gnus-summary-reply
1736   "R" gnus-summary-reply-with-original
1737   "\C-c\C-f" gnus-summary-mail-forward
1738   "o" gnus-summary-save-article
1739   "\C-o" gnus-summary-save-article-mail
1740   "|" gnus-summary-pipe-output
1741   "\M-k" gnus-summary-edit-local-kill
1742   "\M-K" gnus-summary-edit-global-kill
1743   ;; "V" gnus-version
1744   "\C-c\C-d" gnus-summary-describe-group
1745   "q" gnus-summary-exit
1746   "Q" gnus-summary-exit-no-update
1747   "\C-c\C-i" gnus-info-find-node
1748   gnus-mouse-2 gnus-mouse-pick-article
1749   "m" gnus-summary-mail-other-window
1750   "a" gnus-summary-post-news
1751   "i" gnus-summary-news-other-window
1752   "x" gnus-summary-limit-to-unread
1753   "s" gnus-summary-isearch-article
1754   "t" gnus-summary-toggle-header
1755   "g" gnus-summary-show-article
1756   "l" gnus-summary-goto-last-article
1757   "v" gnus-summary-preview-mime-message
1758   "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1759   "\C-d" gnus-summary-enter-digest-group
1760   "\M-\C-d" gnus-summary-read-document
1761   "\M-\C-e" gnus-summary-edit-parameters
1762   "\M-\C-a" gnus-summary-customize-parameters
1763   "\C-c\C-b" gnus-bug
1764   "\C-c\C-n" gnus-namazu-search
1765   "*" gnus-cache-enter-article
1766   "\M-*" gnus-cache-remove-article
1767   "\M-&" gnus-summary-universal-argument
1768   "\C-l" gnus-recenter
1769   "I" gnus-summary-increase-score
1770   "L" gnus-summary-lower-score
1771   "\M-i" gnus-symbolic-argument
1772   "h" gnus-summary-select-article-buffer
1773
1774   "V" gnus-summary-score-map
1775   "X" gnus-uu-extract-map
1776   "S" gnus-summary-send-map)
1777
1778   ;; Sort of orthogonal keymap
1779 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1780   "t" gnus-summary-tick-article-forward
1781   "!" gnus-summary-tick-article-forward
1782   "d" gnus-summary-mark-as-read-forward
1783   "r" gnus-summary-mark-as-read-forward
1784   "c" gnus-summary-clear-mark-forward
1785   " " gnus-summary-clear-mark-forward
1786   "e" gnus-summary-mark-as-expirable
1787   "x" gnus-summary-mark-as-expirable
1788   "?" gnus-summary-mark-as-dormant
1789   "b" gnus-summary-set-bookmark
1790   "B" gnus-summary-remove-bookmark
1791   "#" gnus-summary-mark-as-processable
1792   "\M-#" gnus-summary-unmark-as-processable
1793   "S" gnus-summary-limit-include-expunged
1794   "C" gnus-summary-catchup
1795   "H" gnus-summary-catchup-to-here
1796   "h" gnus-summary-catchup-from-here
1797   "\C-c" gnus-summary-catchup-all
1798   "k" gnus-summary-kill-same-subject-and-select
1799   "K" gnus-summary-kill-same-subject
1800   "P" gnus-uu-mark-map)
1801
1802 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1803   "c" gnus-summary-clear-above
1804   "u" gnus-summary-tick-above
1805   "m" gnus-summary-mark-above
1806   "k" gnus-summary-kill-below)
1807
1808 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1809   "/" gnus-summary-limit-to-subject
1810   "n" gnus-summary-limit-to-articles
1811   "w" gnus-summary-pop-limit
1812   "s" gnus-summary-limit-to-subject
1813   "a" gnus-summary-limit-to-author
1814   "u" gnus-summary-limit-to-unread
1815   "m" gnus-summary-limit-to-marks
1816   "M" gnus-summary-limit-exclude-marks
1817   "v" gnus-summary-limit-to-score
1818   "*" gnus-summary-limit-include-cached
1819   "D" gnus-summary-limit-include-dormant
1820   "T" gnus-summary-limit-include-thread
1821   "d" gnus-summary-limit-exclude-dormant
1822   "t" gnus-summary-limit-to-age
1823   "." gnus-summary-limit-to-unseen
1824   "x" gnus-summary-limit-to-extra
1825   "p" gnus-summary-limit-to-display-predicate
1826   "E" gnus-summary-limit-include-expunged
1827   "c" gnus-summary-limit-exclude-childless-dormant
1828   "C" gnus-summary-limit-mark-excluded-as-read
1829   "o" gnus-summary-insert-old-articles
1830   "N" gnus-summary-insert-new-articles
1831   "r" gnus-summary-limit-to-replied)
1832
1833 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1834   "n" gnus-summary-next-unread-article
1835   "p" gnus-summary-prev-unread-article
1836   "N" gnus-summary-next-article
1837   "P" gnus-summary-prev-article
1838   "\C-n" gnus-summary-next-same-subject
1839   "\C-p" gnus-summary-prev-same-subject
1840   "\M-n" gnus-summary-next-unread-subject
1841   "\M-p" gnus-summary-prev-unread-subject
1842   "f" gnus-summary-first-unread-article
1843   "b" gnus-summary-best-unread-article
1844   "j" gnus-summary-goto-article
1845   "g" gnus-summary-goto-subject
1846   "l" gnus-summary-goto-last-article
1847   "o" gnus-summary-pop-article)
1848
1849 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1850   "k" gnus-summary-kill-thread
1851   "l" gnus-summary-lower-thread
1852   "i" gnus-summary-raise-thread
1853   "T" gnus-summary-toggle-threads
1854   "t" gnus-summary-rethread-current
1855   "^" gnus-summary-reparent-thread
1856   "s" gnus-summary-show-thread
1857   "S" gnus-summary-show-all-threads
1858   "h" gnus-summary-hide-thread
1859   "H" gnus-summary-hide-all-threads
1860   "n" gnus-summary-next-thread
1861   "p" gnus-summary-prev-thread
1862   "u" gnus-summary-up-thread
1863   "o" gnus-summary-top-thread
1864   "d" gnus-summary-down-thread
1865   "#" gnus-uu-mark-thread
1866   "\M-#" gnus-uu-unmark-thread)
1867
1868 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1869   "g" gnus-summary-prepare
1870   "c" gnus-summary-insert-cached-articles
1871   "d" gnus-summary-insert-dormant-articles)
1872
1873 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1874   "c" gnus-summary-catchup-and-exit
1875   "C" gnus-summary-catchup-all-and-exit
1876   "E" gnus-summary-exit-no-update
1877   "J" gnus-summary-jump-to-other-group
1878   "Q" gnus-summary-exit
1879   "Z" gnus-summary-exit
1880   "n" gnus-summary-catchup-and-goto-next-group
1881   "R" gnus-summary-reselect-current-group
1882   "G" gnus-summary-rescan-group
1883   "N" gnus-summary-next-group
1884   "s" gnus-summary-save-newsrc
1885   "P" gnus-summary-prev-group)
1886
1887 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1888   " " gnus-summary-next-page
1889   "n" gnus-summary-next-page
1890   "\177" gnus-summary-prev-page
1891   [delete] gnus-summary-prev-page
1892   "p" gnus-summary-prev-page
1893   "\r" gnus-summary-scroll-up
1894   "\M-\r" gnus-summary-scroll-down
1895   "<" gnus-summary-beginning-of-article
1896   ">" gnus-summary-end-of-article
1897   "b" gnus-summary-beginning-of-article
1898   "e" gnus-summary-end-of-article
1899   "^" gnus-summary-refer-parent-article
1900   "r" gnus-summary-refer-parent-article
1901   "D" gnus-summary-enter-digest-group
1902   "R" gnus-summary-refer-references
1903   "T" gnus-summary-refer-thread
1904   "g" gnus-summary-show-article
1905   "s" gnus-summary-isearch-article
1906   "P" gnus-summary-print-article
1907   "M" gnus-mailing-list-insinuate
1908   "t" gnus-article-babel)
1909
1910 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1911   "b" gnus-article-add-buttons
1912   "B" gnus-article-add-buttons-to-head
1913   "o" gnus-article-treat-overstrike
1914   "e" gnus-article-emphasize
1915   "w" gnus-article-fill-cited-article
1916   "Q" gnus-article-fill-long-lines
1917   "C" gnus-article-capitalize-sentences
1918   "c" gnus-article-remove-cr
1919   "Z" gnus-article-decode-HZ
1920   "A" gnus-article-treat-ansi-sequences
1921   "h" gnus-article-wash-html
1922   "u" gnus-article-unsplit-urls
1923   "f" gnus-article-display-x-face
1924   "l" gnus-summary-stop-page-breaking
1925   "r" gnus-summary-caesar-message
1926   "m" gnus-summary-morse-message
1927   "t" gnus-summary-toggle-header
1928   "g" gnus-treat-smiley
1929   "v" gnus-summary-verbose-headers
1930   "m" gnus-summary-toggle-mime
1931   "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
1932   "p" gnus-article-verify-x-pgp-sig
1933   "d" gnus-article-treat-dumbquotes)
1934
1935 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
1936   ;; mnemonic: deuglif*Y*
1937   "u" gnus-article-outlook-unwrap-lines
1938   "a" gnus-article-outlook-repair-attribution
1939   "c" gnus-article-outlook-rearrange-citation
1940   "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
1941
1942 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1943   "a" gnus-article-hide
1944   "h" gnus-article-hide-headers
1945   "b" gnus-article-hide-boring-headers
1946   "s" gnus-article-hide-signature
1947   "c" gnus-article-hide-citation
1948   "C" gnus-article-hide-citation-in-followups
1949   "l" gnus-article-hide-list-identifiers
1950   "B" gnus-article-strip-banner
1951   "P" gnus-article-hide-pem
1952   "\C-c" gnus-article-hide-citation-maybe)
1953
1954 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1955   "a" gnus-article-highlight
1956   "h" gnus-article-highlight-headers
1957   "c" gnus-article-highlight-citation
1958   "s" gnus-article-highlight-signature)
1959
1960 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
1961   "f" gnus-article-treat-fold-headers
1962   "u" gnus-article-treat-unfold-headers
1963   "n" gnus-article-treat-fold-newsgroups)
1964
1965 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
1966   "x" gnus-article-display-x-face
1967   "d" gnus-article-display-face
1968   "s" gnus-treat-smiley
1969   "D" gnus-article-remove-images
1970   "f" gnus-treat-from-picon
1971   "m" gnus-treat-mail-picon
1972   "n" gnus-treat-newsgroups-picon)
1973
1974 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1975   "z" gnus-article-date-ut
1976   "u" gnus-article-date-ut
1977   "l" gnus-article-date-local
1978   "p" gnus-article-date-english
1979   "e" gnus-article-date-lapsed
1980   "o" gnus-article-date-original
1981   "i" gnus-article-date-iso8601
1982   "s" gnus-article-date-user)
1983
1984 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1985   "t" gnus-article-remove-trailing-blank-lines
1986   "l" gnus-article-strip-leading-blank-lines
1987   "m" gnus-article-strip-multiple-blank-lines
1988   "a" gnus-article-strip-blank-lines
1989   "A" gnus-article-strip-all-blank-lines
1990   "s" gnus-article-strip-leading-space
1991   "e" gnus-article-strip-trailing-space
1992   "w" gnus-article-remove-leading-whitespace)
1993
1994 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1995   "v" gnus-version
1996   "f" gnus-summary-fetch-faq
1997   "d" gnus-summary-describe-group
1998   "h" gnus-summary-describe-briefly
1999   "i" gnus-info-find-node
2000   "c" gnus-group-fetch-charter
2001   "C" gnus-group-fetch-control)
2002
2003 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
2004   "e" gnus-summary-expire-articles
2005   "\M-\C-e" gnus-summary-expire-articles-now
2006   "\177" gnus-summary-delete-article
2007   [delete] gnus-summary-delete-article
2008   [backspace] gnus-summary-delete-article
2009   "m" gnus-summary-move-article
2010   "r" gnus-summary-respool-article
2011   "w" gnus-summary-edit-article
2012   "c" gnus-summary-copy-article
2013   "B" gnus-summary-crosspost-article
2014   "q" gnus-summary-respool-query
2015   "t" gnus-summary-respool-trace
2016   "i" gnus-summary-import-article
2017   "I" gnus-summary-create-article
2018   "p" gnus-summary-article-posted-p)
2019
2020 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
2021   "o" gnus-summary-save-article
2022   "m" gnus-summary-save-article-mail
2023   "F" gnus-summary-write-article-file
2024   "r" gnus-summary-save-article-rmail
2025   "f" gnus-summary-save-article-file
2026   "b" gnus-summary-save-article-body-file
2027   "h" gnus-summary-save-article-folder
2028   "v" gnus-summary-save-article-vm
2029   "p" gnus-summary-pipe-output
2030   "P" gnus-summary-muttprint
2031   "s" gnus-soup-add-article)
2032
2033 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
2034   "b" gnus-summary-display-buttonized
2035   "m" gnus-summary-repair-multipart
2036   "v" gnus-article-view-part
2037   "o" gnus-article-save-part
2038   "c" gnus-article-copy-part
2039   "C" gnus-article-view-part-as-charset
2040   "e" gnus-article-view-part-externally
2041   "E" gnus-article-encrypt-body
2042   "i" gnus-article-inline-part
2043   "|" gnus-article-pipe-part)
2044
2045 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
2046   "p" gnus-summary-mark-as-processable
2047   "u" gnus-summary-unmark-as-processable
2048   "U" gnus-summary-unmark-all-processable
2049   "v" gnus-uu-mark-over
2050   "s" gnus-uu-mark-series
2051   "r" gnus-uu-mark-region
2052   "g" gnus-uu-unmark-region
2053   "R" gnus-uu-mark-by-regexp
2054   "G" gnus-uu-unmark-by-regexp
2055   "t" gnus-uu-mark-thread
2056   "T" gnus-uu-unmark-thread
2057   "a" gnus-uu-mark-all
2058   "b" gnus-uu-mark-buffer
2059   "S" gnus-uu-mark-sparse
2060   "k" gnus-summary-kill-process-mark
2061   "y" gnus-summary-yank-process-mark
2062   "w" gnus-summary-save-process-mark
2063   "i" gnus-uu-invert-processable)
2064
2065 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2066   ;;"x" gnus-uu-extract-any
2067   "m" gnus-summary-save-parts
2068   "u" gnus-uu-decode-uu
2069   "U" gnus-uu-decode-uu-and-save
2070   "s" gnus-uu-decode-unshar
2071   "S" gnus-uu-decode-unshar-and-save
2072   "o" gnus-uu-decode-save
2073   "O" gnus-uu-decode-save
2074   "b" gnus-uu-decode-binhex
2075   "B" gnus-uu-decode-binhex
2076   "p" gnus-uu-decode-postscript
2077   "P" gnus-uu-decode-postscript-and-save)
2078
2079 (gnus-define-keys
2080     (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2081   "u" gnus-uu-decode-uu-view
2082   "U" gnus-uu-decode-uu-and-save-view
2083   "s" gnus-uu-decode-unshar-view
2084   "S" gnus-uu-decode-unshar-and-save-view
2085   "o" gnus-uu-decode-save-view
2086   "O" gnus-uu-decode-save-view
2087   "b" gnus-uu-decode-binhex-view
2088   "B" gnus-uu-decode-binhex-view
2089   "p" gnus-uu-decode-postscript-view
2090   "P" gnus-uu-decode-postscript-and-save-view)
2091
2092 (defvar gnus-article-post-menu nil)
2093
2094 (defconst gnus-summary-menu-maxlen 20)
2095
2096 (defun gnus-summary-menu-split (menu)
2097   ;; If we have lots of elements, divide them into groups of 20
2098   ;; and make a pane (or submenu) for each one.
2099   (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2100       (let ((menu menu) sublists next
2101             (i 1))
2102         (while menu
2103           ;; Pull off the next gnus-summary-menu-maxlen elements
2104           ;; and make them the next element of sublist.
2105           (setq next (nthcdr gnus-summary-menu-maxlen menu))
2106           (if next
2107               (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2108                       nil))
2109           (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2110                                              (aref (car (last menu)) 0)) menu)
2111                                sublists))
2112           (setq i (1+ i))
2113           (setq menu next))
2114         (nreverse sublists))
2115     ;; Few elements--put them all in one pane.
2116     menu))
2117
2118 (defun gnus-summary-make-menu-bar ()
2119   (gnus-turn-off-edit-menu 'summary)
2120
2121   (unless (boundp 'gnus-summary-misc-menu)
2122
2123     (easy-menu-define
2124      gnus-summary-kill-menu gnus-summary-mode-map ""
2125      (cons
2126       "Score"
2127       (nconc
2128        (list
2129         ["Customize" gnus-score-customize t])
2130        (gnus-make-score-map 'increase)
2131        (gnus-make-score-map 'lower)
2132        '(("Mark"
2133           ["Kill below" gnus-summary-kill-below t]
2134           ["Mark above" gnus-summary-mark-above t]
2135           ["Tick above" gnus-summary-tick-above t]
2136           ["Clear above" gnus-summary-clear-above t])
2137          ["Current score" gnus-summary-current-score t]
2138          ["Set score" gnus-summary-set-score t]
2139          ["Switch current score file..." gnus-score-change-score-file t]
2140          ["Set mark below..." gnus-score-set-mark-below t]
2141          ["Set expunge below..." gnus-score-set-expunge-below t]
2142          ["Edit current score file" gnus-score-edit-current-scores t]
2143          ["Edit score file" gnus-score-edit-file t]
2144          ["Trace score" gnus-score-find-trace t]
2145          ["Find words" gnus-score-find-favourite-words t]
2146          ["Rescore buffer" gnus-summary-rescore t]
2147          ["Increase score..." gnus-summary-increase-score t]
2148          ["Lower score..." gnus-summary-lower-score t]))))
2149
2150     ;; Define both the Article menu in the summary buffer and the
2151     ;; equivalent Commands menu in the article buffer here for
2152     ;; consistency.
2153     (let ((innards
2154            `(("Hide"
2155               ["All" gnus-article-hide t]
2156               ["Headers" gnus-article-hide-headers t]
2157               ["Signature" gnus-article-hide-signature t]
2158               ["Citation" gnus-article-hide-citation t]
2159               ["List identifiers" gnus-article-hide-list-identifiers t]
2160               ["Banner" gnus-article-strip-banner t]
2161               ["Boring headers" gnus-article-hide-boring-headers t])
2162              ("Highlight"
2163               ["All" gnus-article-highlight t]
2164               ["Headers" gnus-article-highlight-headers t]
2165               ["Signature" gnus-article-highlight-signature t]
2166               ["Citation" gnus-article-highlight-citation t])
2167              ("Date"
2168               ["Local" gnus-article-date-local t]
2169               ["ISO8601" gnus-article-date-iso8601 t]
2170               ["UT" gnus-article-date-ut t]
2171               ["Original" gnus-article-date-original t]
2172               ["Lapsed" gnus-article-date-lapsed t]
2173               ["User-defined" gnus-article-date-user t])
2174              ("Display"
2175               ["Remove images" gnus-article-remove-images t]
2176               ["Toggle smiley" gnus-treat-smiley t]
2177               ["Show X-Face" gnus-article-display-x-face t]
2178               ["Show picons in From" gnus-treat-from-picon t]
2179               ["Show picons in mail headers" gnus-treat-mail-picon t]
2180               ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2181               ("View as different encoding"
2182                ,@(gnus-summary-menu-split
2183                   (mapcar
2184                    (lambda (cs)
2185                      ;; Since easymenu under Emacs doesn't allow
2186                      ;; lambda forms for menu commands, we should
2187                      ;; provide intern'ed function symbols.
2188                      (let ((command (intern (format "\
2189 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2190                        (fset command
2191                              `(lambda ()
2192                                 (interactive)
2193                                 (let ((gnus-summary-show-article-charset-alist
2194                                        '((1 . ,cs))))
2195                                   (gnus-summary-show-article 1))))
2196                        `[,(symbol-name cs) ,command t]))
2197                    (sort (if (fboundp 'coding-system-list)
2198                              (coding-system-list)
2199                            ;;(mapcar 'car mm-mime-mule-charset-alist)
2200                            )
2201                          'string<)))))
2202              ("Washing"
2203               ("Remove Blanks"
2204                ["Leading" gnus-article-strip-leading-blank-lines t]
2205                ["Multiple" gnus-article-strip-multiple-blank-lines t]
2206                ["Trailing" gnus-article-remove-trailing-blank-lines t]
2207                ["All of the above" gnus-article-strip-blank-lines t]
2208                ["All" gnus-article-strip-all-blank-lines t]
2209                ["Leading space" gnus-article-strip-leading-space t]
2210                ["Trailing space" gnus-article-strip-trailing-space t]
2211                ["Leading space in headers"
2212                 gnus-article-remove-leading-whitespace t])
2213               ["Overstrike" gnus-article-treat-overstrike t]
2214               ["Dumb quotes" gnus-article-treat-dumbquotes t]
2215               ["Emphasis" gnus-article-emphasize t]
2216               ["Word wrap" gnus-article-fill-cited-article t]
2217               ["Fill long lines" gnus-article-fill-long-lines t]
2218               ["Capitalize sentences" gnus-article-capitalize-sentences t]
2219               ["Remove CR" gnus-article-remove-cr t]
2220               ["Rot 13" gnus-summary-caesar-message
2221                ,@(if (featurep 'xemacs) '(t)
2222                    '(:help "\"Caesar rotate\" article by 13"))]
2223               ["Morse decode" gnus-summary-morse-message t]
2224               ["Unix pipe..." gnus-summary-pipe-message t]
2225               ["Add buttons" gnus-article-add-buttons t]
2226               ["Add buttons to head" gnus-article-add-buttons-to-head t]
2227               ["Stop page breaking" gnus-summary-stop-page-breaking t]
2228               ["Toggle MIME" gnus-summary-toggle-mime t]
2229               ["Verbose header" gnus-summary-verbose-headers t]
2230               ["Toggle header" gnus-summary-toggle-header t]
2231               ["Unfold headers" gnus-article-treat-unfold-headers t]
2232               ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2233               ["Html" gnus-article-wash-html t]
2234               ["Unsplit URLs" gnus-article-unsplit-urls t]
2235               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2236               ["Decode HZ" gnus-article-decode-HZ t]
2237               ["ANSI sequences" gnus-article-treat-ansi-sequences t]
2238               ("(Outlook) Deuglify"
2239                ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2240                ["Repair attribution" gnus-article-outlook-repair-attribution t]
2241                ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2242                ["Full (Outlook) deuglify"
2243                 gnus-article-outlook-deuglify-article t])
2244               )
2245              ("Output"
2246               ["Save in default format..." gnus-summary-save-article
2247                ,@(if (featurep 'xemacs) '(t)
2248                    '(:help "Save article using default method"))]
2249               ["Save in file..." gnus-summary-save-article-file
2250                ,@(if (featurep 'xemacs) '(t)
2251                    '(:help "Save article in file"))]
2252               ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2253               ["Save in MH folder..." gnus-summary-save-article-folder t]
2254               ["Save in VM folder..." gnus-summary-save-article-vm t]
2255               ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2256               ["Save body in file..." gnus-summary-save-article-body-file t]
2257               ["Pipe through a filter..." gnus-summary-pipe-output t]
2258               ["Add to SOUP packet" gnus-soup-add-article t]
2259               ["Print with Muttprint..." gnus-summary-muttprint t]
2260               ["Print" gnus-summary-print-article t])
2261              ("Backend"
2262               ["Respool article..." gnus-summary-respool-article t]
2263               ["Move article..." gnus-summary-move-article
2264                (gnus-check-backend-function
2265                 'request-move-article gnus-newsgroup-name)]
2266               ["Copy article..." gnus-summary-copy-article t]
2267               ["Crosspost article..." gnus-summary-crosspost-article
2268                (gnus-check-backend-function
2269                 'request-replace-article gnus-newsgroup-name)]
2270               ["Import file..." gnus-summary-import-article
2271                (gnus-check-backend-function
2272                 'request-accept-article gnus-newsgroup-name)]
2273               ["Create article..." gnus-summary-create-article
2274                (gnus-check-backend-function
2275                 'request-accept-article gnus-newsgroup-name)]
2276               ["Check if posted" gnus-summary-article-posted-p t]
2277               ["Edit article" gnus-summary-edit-article
2278                (not (gnus-group-read-only-p))]
2279               ["Delete article" gnus-summary-delete-article
2280                (gnus-check-backend-function
2281                 'request-expire-articles gnus-newsgroup-name)]
2282               ["Query respool" gnus-summary-respool-query t]
2283               ["Trace respool" gnus-summary-respool-trace t]
2284               ["Delete expirable articles" gnus-summary-expire-articles-now
2285                (gnus-check-backend-function
2286                 'request-expire-articles gnus-newsgroup-name)])
2287              ("Extract"
2288               ["Uudecode" gnus-uu-decode-uu
2289                ,@(if (featurep 'xemacs) '(t)
2290                    '(:help "Decode uuencoded article(s)"))]
2291               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2292               ["Unshar" gnus-uu-decode-unshar t]
2293               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2294               ["Save" gnus-uu-decode-save t]
2295               ["Binhex" gnus-uu-decode-binhex t]
2296               ["Postscript" gnus-uu-decode-postscript t])
2297              ("Cache"
2298               ["Enter article" gnus-cache-enter-article t]
2299               ["Remove article" gnus-cache-remove-article t])
2300              ["Translate" gnus-article-babel t]
2301              ["Select article buffer" gnus-summary-select-article-buffer t]
2302              ["Enter digest buffer" gnus-summary-enter-digest-group t]
2303              ["Isearch article..." gnus-summary-isearch-article t]
2304              ["Beginning of the article" gnus-summary-beginning-of-article t]
2305              ["End of the article" gnus-summary-end-of-article t]
2306              ["Fetch parent of article" gnus-summary-refer-parent-article t]
2307              ["Fetch referenced articles" gnus-summary-refer-references t]
2308              ["Fetch current thread" gnus-summary-refer-thread t]
2309              ["Fetch article with id..." gnus-summary-refer-article t]
2310              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2311              ["Redisplay" gnus-summary-show-article t]
2312              ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2313       (easy-menu-define
2314        gnus-summary-article-menu gnus-summary-mode-map ""
2315        (cons "Article" innards))
2316
2317       (if (not (keymapp gnus-summary-article-menu))
2318           (easy-menu-define
2319            gnus-article-commands-menu gnus-article-mode-map ""
2320            (cons "Commands" innards))
2321         ;; in Emacs, don't share menu.
2322         (setq gnus-article-commands-menu
2323               (copy-keymap gnus-summary-article-menu))
2324         (define-key gnus-article-mode-map [menu-bar commands]
2325           (cons "Commands" gnus-article-commands-menu))))
2326
2327     (easy-menu-define
2328      gnus-summary-thread-menu gnus-summary-mode-map ""
2329      '("Threads"
2330        ["Find all messages in thread" gnus-summary-refer-thread t]
2331        ["Toggle threading" gnus-summary-toggle-threads t]
2332        ["Hide threads" gnus-summary-hide-all-threads t]
2333        ["Show threads" gnus-summary-show-all-threads t]
2334        ["Hide thread" gnus-summary-hide-thread t]
2335        ["Show thread" gnus-summary-show-thread t]
2336        ["Go to next thread" gnus-summary-next-thread t]
2337        ["Go to previous thread" gnus-summary-prev-thread t]
2338        ["Go down thread" gnus-summary-down-thread t]
2339        ["Go up thread" gnus-summary-up-thread t]
2340        ["Top of thread" gnus-summary-top-thread t]
2341        ["Mark thread as read" gnus-summary-kill-thread t]
2342        ["Lower thread score" gnus-summary-lower-thread t]
2343        ["Raise thread score" gnus-summary-raise-thread t]
2344        ["Rethread current" gnus-summary-rethread-current t]))
2345
2346     (easy-menu-define
2347      gnus-summary-post-menu gnus-summary-mode-map ""
2348      `("Post"
2349        ["Send a message (mail or news)" gnus-summary-post-news
2350         ,@(if (featurep 'xemacs) '(t)
2351             '(:help "Post an article"))]
2352        ["Followup" gnus-summary-followup
2353         ,@(if (featurep 'xemacs) '(t)
2354             '(:help "Post followup to this article"))]
2355        ["Followup and yank" gnus-summary-followup-with-original
2356         ,@(if (featurep 'xemacs) '(t)
2357             '(:help "Post followup to this article, quoting its contents"))]
2358        ["Supersede article" gnus-summary-supersede-article t]
2359        ["Cancel article" gnus-summary-cancel-article
2360         ,@(if (featurep 'xemacs) '(t)
2361             '(:help "Cancel an article you posted"))]
2362        ["Reply" gnus-summary-reply t]
2363        ["Reply and yank" gnus-summary-reply-with-original t]
2364        ["Wide reply" gnus-summary-wide-reply t]
2365        ["Wide reply and yank" gnus-summary-wide-reply-with-original
2366         ,@(if (featurep 'xemacs) '(t)
2367             '(:help "Mail a reply, quoting this article"))]
2368        ["Very wide reply" gnus-summary-very-wide-reply t]
2369        ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2370         ,@(if (featurep 'xemacs) '(t)
2371             '(:help "Mail a very wide reply, quoting this article"))]
2372        ["Mail forward" gnus-summary-mail-forward t]
2373        ["Post forward" gnus-summary-post-forward t]
2374        ["Digest and mail" gnus-summary-digest-mail-forward t]
2375        ["Digest and post" gnus-summary-digest-post-forward t]
2376        ["Resend message" gnus-summary-resend-message t]
2377        ["Resend message edit" gnus-summary-resend-message-edit t]
2378        ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2379        ["Send a mail" gnus-summary-mail-other-window t]
2380        ["Create a local message" gnus-summary-news-other-window t]
2381        ["Uuencode and post" gnus-uu-post-news
2382         ,@(if (featurep 'xemacs) '(t)
2383             '(:help "Post a uuencoded article"))]
2384        ["Followup via news" gnus-summary-followup-to-mail t]
2385        ["Followup via news and yank"
2386         gnus-summary-followup-to-mail-with-original t]
2387        ;;("Draft"
2388        ;;["Send" gnus-summary-send-draft t]
2389        ;;["Send bounced" gnus-resend-bounced-mail t])
2390        ))
2391
2392     (cond
2393      ((not (keymapp gnus-summary-post-menu))
2394       (setq gnus-article-post-menu gnus-summary-post-menu))
2395      ((not gnus-article-post-menu)
2396       ;; Don't share post menu.
2397       (setq gnus-article-post-menu
2398             (copy-keymap gnus-summary-post-menu))))
2399     (define-key gnus-article-mode-map [menu-bar post]
2400       (cons "Post" gnus-article-post-menu))
2401
2402     (easy-menu-define
2403      gnus-summary-misc-menu gnus-summary-mode-map ""
2404      `("Gnus"
2405        ("Mark Read"
2406         ["Mark as read" gnus-summary-mark-as-read-forward t]
2407         ["Mark same subject and select"
2408          gnus-summary-kill-same-subject-and-select t]
2409         ["Mark same subject" gnus-summary-kill-same-subject t]
2410         ["Catchup" gnus-summary-catchup
2411          ,@(if (featurep 'xemacs) '(t)
2412              '(:help "Mark unread articles in this group as read"))]
2413         ["Catchup all" gnus-summary-catchup-all t]
2414         ["Catchup to here" gnus-summary-catchup-to-here t]
2415         ["Catchup from here" gnus-summary-catchup-from-here t]
2416         ["Catchup region" gnus-summary-mark-region-as-read
2417          (gnus-mark-active-p)]
2418         ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2419        ("Mark Various"
2420         ["Tick" gnus-summary-tick-article-forward t]
2421         ["Mark as dormant" gnus-summary-mark-as-dormant t]
2422         ["Remove marks" gnus-summary-clear-mark-forward t]
2423         ["Set expirable mark" gnus-summary-mark-as-expirable t]
2424         ["Set bookmark" gnus-summary-set-bookmark t]
2425         ["Remove bookmark" gnus-summary-remove-bookmark t])
2426        ("Limit to"
2427         ["Marks..." gnus-summary-limit-to-marks t]
2428         ["Subject..." gnus-summary-limit-to-subject t]
2429         ["Author..." gnus-summary-limit-to-author t]
2430         ["Age..." gnus-summary-limit-to-age t]
2431         ["Extra..." gnus-summary-limit-to-extra t]
2432         ["Score..." gnus-summary-limit-to-score t]
2433         ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2434         ["Unread" gnus-summary-limit-to-unread t]
2435         ["Unseen" gnus-summary-limit-to-unseen t]
2436         ["Replied" gnus-summary-limit-to-replied t]
2437         ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2438         ["Next articles" gnus-summary-limit-to-articles t]
2439         ["Pop limit" gnus-summary-pop-limit t]
2440         ["Show dormant" gnus-summary-limit-include-dormant t]
2441         ["Hide childless dormant"
2442          gnus-summary-limit-exclude-childless-dormant t]
2443         ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2444         ["Hide marked" gnus-summary-limit-exclude-marks t]
2445         ["Show expunged" gnus-summary-limit-include-expunged t])
2446        ("Process Mark"
2447         ["Set mark" gnus-summary-mark-as-processable t]
2448         ["Remove mark" gnus-summary-unmark-as-processable t]
2449         ["Remove all marks" gnus-summary-unmark-all-processable t]
2450         ["Mark above" gnus-uu-mark-over t]
2451         ["Mark series" gnus-uu-mark-series t]
2452         ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2453         ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2454         ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2455         ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2456         ["Mark all" gnus-uu-mark-all t]
2457         ["Mark buffer" gnus-uu-mark-buffer t]
2458         ["Mark sparse" gnus-uu-mark-sparse t]
2459         ["Mark thread" gnus-uu-mark-thread t]
2460         ["Unmark thread" gnus-uu-unmark-thread t]
2461         ("Process Mark Sets"
2462          ["Kill" gnus-summary-kill-process-mark t]
2463          ["Yank" gnus-summary-yank-process-mark
2464           gnus-newsgroup-process-stack]
2465          ["Save" gnus-summary-save-process-mark t]
2466          ["Run command on marked..." gnus-summary-universal-argument t]))
2467        ("Scroll article"
2468         ["Page forward" gnus-summary-next-page
2469          ,@(if (featurep 'xemacs) '(t)
2470              '(:help "Show next page of article"))]
2471         ["Page backward" gnus-summary-prev-page
2472          ,@(if (featurep 'xemacs) '(t)
2473              '(:help "Show previous page of article"))]
2474         ["Line forward" gnus-summary-scroll-up t])
2475        ("Move"
2476         ["Next unread article" gnus-summary-next-unread-article t]
2477         ["Previous unread article" gnus-summary-prev-unread-article t]
2478         ["Next article" gnus-summary-next-article t]
2479         ["Previous article" gnus-summary-prev-article t]
2480         ["Next unread subject" gnus-summary-next-unread-subject t]
2481         ["Previous unread subject" gnus-summary-prev-unread-subject t]
2482         ["Next article same subject" gnus-summary-next-same-subject t]
2483         ["Previous article same subject" gnus-summary-prev-same-subject t]
2484         ["First unread article" gnus-summary-first-unread-article t]
2485         ["Best unread article" gnus-summary-best-unread-article t]
2486         ["Go to subject number..." gnus-summary-goto-subject t]
2487         ["Go to article number..." gnus-summary-goto-article t]
2488         ["Go to the last article" gnus-summary-goto-last-article t]
2489         ["Pop article off history" gnus-summary-pop-article t])
2490        ("Sort"
2491         ["Sort by number" gnus-summary-sort-by-number t]
2492         ["Sort by author" gnus-summary-sort-by-author t]
2493         ["Sort by subject" gnus-summary-sort-by-subject t]
2494         ["Sort by date" gnus-summary-sort-by-date t]
2495         ["Sort by score" gnus-summary-sort-by-score t]
2496         ["Sort by lines" gnus-summary-sort-by-lines t]
2497         ["Sort by characters" gnus-summary-sort-by-chars t]
2498         ["Randomize" gnus-summary-sort-by-random t]
2499         ["Original sort" gnus-summary-sort-by-original t])
2500        ("Help"
2501         ["Fetch group FAQ" gnus-summary-fetch-faq t]
2502         ["Describe group" gnus-summary-describe-group t]
2503         ["Fetch charter" gnus-group-fetch-charter
2504          ,@(if (featurep 'xemacs) nil
2505              '(:help "Display the charter of the current group"))]
2506         ["Fetch control message" gnus-group-fetch-control
2507          ,@(if (featurep 'xemacs) nil
2508              '(:help "Display the archived control message for the current group"))]
2509         ["Read manual" gnus-info-find-node t])
2510        ("Modes"
2511         ["Pick and read" gnus-pick-mode t]
2512         ["Binary" gnus-binary-mode t])
2513        ("Regeneration"
2514         ["Regenerate" gnus-summary-prepare t]
2515         ["Insert cached articles" gnus-summary-insert-cached-articles t]
2516         ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2517         ["Toggle threading" gnus-summary-toggle-threads t])
2518        ["See old articles" gnus-summary-insert-old-articles t]
2519        ["See new articles" gnus-summary-insert-new-articles t]
2520        ["Filter articles..." gnus-summary-execute-command t]
2521        ["Run command on articles..." gnus-summary-universal-argument t]
2522        ["Search articles forward..." gnus-summary-search-article-forward t]
2523        ["Search articles backward..." gnus-summary-search-article-backward t]
2524        ["Toggle line truncation" gnus-summary-toggle-truncation t]
2525        ["Expand window" gnus-summary-expand-window t]
2526        ["Expire expirable articles" gnus-summary-expire-articles
2527         (gnus-check-backend-function
2528          'request-expire-articles gnus-newsgroup-name)]
2529        ["Edit local kill file" gnus-summary-edit-local-kill t]
2530        ["Edit main kill file" gnus-summary-edit-global-kill t]
2531        ["Edit group parameters" gnus-summary-edit-parameters t]
2532        ["Customize group parameters" gnus-summary-customize-parameters t]
2533        ["Send a bug report" gnus-bug t]
2534        ("Exit"
2535         ["Catchup and exit" gnus-summary-catchup-and-exit
2536          ,@(if (featurep 'xemacs) '(t)
2537              '(:help "Mark unread articles in this group as read, then exit"))]
2538         ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2539         ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2540         ["Exit group" gnus-summary-exit
2541          ,@(if (featurep 'xemacs) '(t)
2542              '(:help "Exit current group, return to group selection mode"))]
2543         ["Exit group without updating" gnus-summary-exit-no-update t]
2544         ["Exit and goto next group" gnus-summary-next-group t]
2545         ["Exit and goto prev group" gnus-summary-prev-group t]
2546         ["Reselect group" gnus-summary-reselect-current-group t]
2547         ["Rescan group" gnus-summary-rescan-group t]
2548         ["Update dribble" gnus-summary-save-newsrc t])))
2549
2550     (gnus-run-hooks 'gnus-summary-menu-hook)))
2551
2552 (defvar gnus-summary-tool-bar-map nil)
2553
2554 ;; Emacs 21 tool bar.  Should be no-op otherwise.
2555 (defun gnus-summary-make-tool-bar ()
2556   (if (and (fboundp 'tool-bar-add-item-from-menu)
2557            (default-value 'tool-bar-mode)
2558            (not gnus-summary-tool-bar-map))
2559       (setq gnus-summary-tool-bar-map
2560             (let ((tool-bar-map (make-sparse-keymap))
2561                   (load-path (mm-image-load-path)))
2562               (tool-bar-add-item-from-menu
2563                'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map)
2564               (tool-bar-add-item-from-menu
2565                'gnus-summary-next-unread "next-ur" gnus-summary-mode-map)
2566               (tool-bar-add-item-from-menu
2567                'gnus-summary-post-news "post" gnus-summary-mode-map)
2568               (tool-bar-add-item-from-menu
2569                'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map)
2570               (tool-bar-add-item-from-menu
2571                'gnus-summary-followup "followup" gnus-summary-mode-map)
2572               (tool-bar-add-item-from-menu
2573                'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map)
2574               (tool-bar-add-item-from-menu
2575                'gnus-summary-reply "reply" gnus-summary-mode-map)
2576               (tool-bar-add-item-from-menu
2577                'gnus-summary-caesar-message "rot13" gnus-summary-mode-map)
2578               (tool-bar-add-item-from-menu
2579                'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map)
2580               (tool-bar-add-item-from-menu
2581                'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map)
2582               (tool-bar-add-item-from-menu
2583                'gnus-summary-save-article "save-art" gnus-summary-mode-map)
2584               (tool-bar-add-item-from-menu
2585                'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2586               (tool-bar-add-item-from-menu
2587                'gnus-summary-catchup "catchup" gnus-summary-mode-map)
2588               (tool-bar-add-item-from-menu
2589                'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map)
2590               (tool-bar-add-item-from-menu
2591                'gnus-summary-exit "exit-summ" gnus-summary-mode-map)
2592               tool-bar-map)))
2593   (if gnus-summary-tool-bar-map
2594       (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
2595
2596 (defun gnus-score-set-default (var value)
2597   "A version of set that updates the GNU Emacs menu-bar."
2598   (set var value)
2599   ;; It is the message that forces the active status to be updated.
2600   (message ""))
2601
2602 (defun gnus-make-score-map (type)
2603   "Make a summary score map of type TYPE."
2604   (if t
2605       nil
2606     (let ((headers '(("author" "from" string)
2607                      ("subject" "subject" string)
2608                      ("article body" "body" string)
2609                      ("article head" "head" string)
2610                      ("xref" "xref" string)
2611                      ("extra header" "extra" string)
2612                      ("lines" "lines" number)
2613                      ("followups to author" "followup" string)))
2614           (types '((number ("less than" <)
2615                            ("greater than" >)
2616                            ("equal" =))
2617                    (string ("substring" s)
2618                            ("exact string" e)
2619                            ("fuzzy string" f)
2620                            ("regexp" r))))
2621           (perms '(("temporary" (current-time-string))
2622                    ("permanent" nil)
2623                    ("immediate" now)))
2624           header)
2625       (list
2626        (apply
2627         'nconc
2628         (list
2629          (if (eq type 'lower)
2630              "Lower score"
2631            "Increase score"))
2632         (let (outh)
2633           (while headers
2634             (setq header (car headers))
2635             (setq outh
2636                   (cons
2637                    (apply
2638                     'nconc
2639                     (list (car header))
2640                     (let ((ts (cdr (assoc (nth 2 header) types)))
2641                           outt)
2642                       (while ts
2643                         (setq outt
2644                               (cons
2645                                (apply
2646                                 'nconc
2647                                 (list (caar ts))
2648                                 (let ((ps perms)
2649                                       outp)
2650                                   (while ps
2651                                     (setq outp
2652                                           (cons
2653                                            (vector
2654                                             (caar ps)
2655                                             (list
2656                                              'gnus-summary-score-entry
2657                                              (nth 1 header)
2658                                              (if (or (string= (nth 1 header)
2659                                                               "head")
2660                                                      (string= (nth 1 header)
2661                                                               "body"))
2662                                                  ""
2663                                                (list 'gnus-summary-header
2664                                                      (nth 1 header)))
2665                                              (list 'quote (nth 1 (car ts)))
2666                                              (list 'gnus-score-delta-default
2667                                                    nil)
2668                                              (nth 1 (car ps))
2669                                              t)
2670                                             t)
2671                                            outp))
2672                                     (setq ps (cdr ps)))
2673                                   (list (nreverse outp))))
2674                                outt))
2675                         (setq ts (cdr ts)))
2676                       (list (nreverse outt))))
2677                    outh))
2678             (setq headers (cdr headers)))
2679           (list (nreverse outh))))))))
2680
2681 \f
2682
2683 (defun gnus-summary-mode (&optional group)
2684   "Major mode for reading articles.
2685
2686 All normal editing commands are switched off.
2687 \\<gnus-summary-mode-map>
2688 Each line in this buffer represents one article.  To read an
2689 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
2690 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2691 respectively.
2692
2693 You can also post articles and send mail from this buffer.  To
2694 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
2695 of an article, type `\\[gnus-summary-reply]'.
2696
2697 There are approx. one gazillion commands you can execute in this
2698 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2699
2700 The following commands are available:
2701
2702 \\{gnus-summary-mode-map}"
2703   (interactive)
2704   (kill-all-local-variables)
2705   (when (gnus-visual-p 'summary-menu 'menu)
2706     (gnus-summary-make-menu-bar)
2707     (gnus-summary-make-tool-bar))
2708   (gnus-summary-make-local-variables)
2709   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
2710     (gnus-summary-make-local-variables))
2711   (gnus-make-thread-indent-array)
2712   (gnus-simplify-mode-line)
2713   (setq major-mode 'gnus-summary-mode)
2714   (setq mode-name "Summary")
2715   (make-local-variable 'minor-mode-alist)
2716   (use-local-map gnus-summary-mode-map)
2717   (buffer-disable-undo)
2718   (setq buffer-read-only t)             ;Disable modification
2719   (setq truncate-lines t)
2720   (setq selective-display t)
2721   (setq selective-display-ellipses t)   ;Display `...'
2722   (gnus-summary-set-display-table)
2723   (gnus-set-default-directory)
2724   (setq gnus-newsgroup-name group)
2725   (unless (gnus-news-group-p group)
2726     (setq gnus-newsgroup-incorporated
2727           (nnmail-new-mail-numbers (gnus-group-real-name group))))
2728   (make-local-variable 'gnus-summary-line-format)
2729   (make-local-variable 'gnus-summary-line-format-spec)
2730   (make-local-variable 'gnus-summary-dummy-line-format)
2731   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2732   (make-local-variable 'gnus-summary-mark-positions)
2733   (gnus-make-local-hook 'pre-command-hook)
2734   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2735   (gnus-run-hooks 'gnus-summary-mode-hook)
2736   (turn-on-gnus-mailing-list-mode)
2737   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2738   (gnus-update-summary-mark-positions))
2739
2740 (defun gnus-summary-make-local-variables ()
2741   "Make all the local summary buffer variables."
2742   (let (global)
2743     (dolist (local gnus-summary-local-variables)
2744       (if (consp local)
2745           (progn
2746             (if (eq (cdr local) 'global)
2747                 ;; Copy the global value of the variable.
2748                 (setq global (symbol-value (car local)))
2749               ;; Use the value from the list.
2750               (setq global (eval (cdr local))))
2751             (set (make-local-variable (car local)) global))
2752         ;; Simple nil-valued local variable.
2753         (set (make-local-variable local) nil)))))
2754
2755 (defun gnus-summary-clear-local-variables ()
2756   (let ((locals gnus-summary-local-variables))
2757     (while locals
2758       (if (consp (car locals))
2759           (and (vectorp (caar locals))
2760                (set (caar locals) nil))
2761         (and (vectorp (car locals))
2762              (set (car locals) nil)))
2763       (setq locals (cdr locals)))))
2764
2765 ;; Summary data functions.
2766
2767 (defmacro gnus-data-number (data)
2768   `(car ,data))
2769
2770 (defmacro gnus-data-set-number (data number)
2771   `(setcar ,data ,number))
2772
2773 (defmacro gnus-data-mark (data)
2774   `(nth 1 ,data))
2775
2776 (defmacro gnus-data-set-mark (data mark)
2777   `(setcar (nthcdr 1 ,data) ,mark))
2778
2779 (defmacro gnus-data-pos (data)
2780   `(nth 2 ,data))
2781
2782 (defmacro gnus-data-set-pos (data pos)
2783   `(setcar (nthcdr 2 ,data) ,pos))
2784
2785 (defmacro gnus-data-header (data)
2786   `(nth 3 ,data))
2787
2788 (defmacro gnus-data-set-header (data header)
2789   `(setcar (nthcdr 3 ,data) ,header))
2790
2791 (defmacro gnus-data-level (data)
2792   `(nth 4 ,data))
2793
2794 (defmacro gnus-data-unread-p (data)
2795   `(= (nth 1 ,data) gnus-unread-mark))
2796
2797 (defmacro gnus-data-read-p (data)
2798   `(/= (nth 1 ,data) gnus-unread-mark))
2799
2800 (defmacro gnus-data-pseudo-p (data)
2801   `(consp (nth 3 ,data)))
2802
2803 (defmacro gnus-data-find (number)
2804   `(assq ,number gnus-newsgroup-data))
2805
2806 (defmacro gnus-data-find-list (number &optional data)
2807   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2808      (memq (assq ,number bdata)
2809            bdata)))
2810
2811 (defmacro gnus-data-make (number mark pos header level)
2812   `(list ,number ,mark ,pos ,header ,level))
2813
2814 (defun gnus-data-enter (after-article number mark pos header level offset)
2815   (let ((data (gnus-data-find-list after-article)))
2816     (unless data
2817       (error "No such article: %d" after-article))
2818     (setcdr data (cons (gnus-data-make number mark pos header level)
2819                        (cdr data)))
2820     (setq gnus-newsgroup-data-reverse nil)
2821     (gnus-data-update-list (cddr data) offset)))
2822
2823 (defun gnus-data-enter-list (after-article list &optional offset)
2824   (when list
2825     (let ((data (and after-article (gnus-data-find-list after-article)))
2826           (ilist list))
2827       (if (not (or data
2828                    after-article))
2829           (let ((odata gnus-newsgroup-data))
2830             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2831             (when offset
2832               (gnus-data-update-list odata offset)))
2833         ;; Find the last element in the list to be spliced into the main
2834         ;; list.
2835         (while (cdr list)
2836           (setq list (cdr list)))
2837         (if (not data)
2838             (progn
2839               (setcdr list gnus-newsgroup-data)
2840               (setq gnus-newsgroup-data ilist)
2841               (when offset
2842                 (gnus-data-update-list (cdr list) offset)))
2843           (setcdr list (cdr data))
2844           (setcdr data ilist)
2845           (when offset
2846             (gnus-data-update-list (cdr list) offset))))
2847       (setq gnus-newsgroup-data-reverse nil))))
2848
2849 (defun gnus-data-remove (article &optional offset)
2850   (let ((data gnus-newsgroup-data))
2851     (if (= (gnus-data-number (car data)) article)
2852         (progn
2853           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2854                 gnus-newsgroup-data-reverse nil)
2855           (when offset
2856             (gnus-data-update-list gnus-newsgroup-data offset)))
2857       (while (cdr data)
2858         (when (= (gnus-data-number (cadr data)) article)
2859           (setcdr data (cddr data))
2860           (when offset
2861             (gnus-data-update-list (cdr data) offset))
2862           (setq data nil
2863                 gnus-newsgroup-data-reverse nil))
2864         (setq data (cdr data))))))
2865
2866 (defmacro gnus-data-list (backward)
2867   `(if ,backward
2868        (or gnus-newsgroup-data-reverse
2869            (setq gnus-newsgroup-data-reverse
2870                  (reverse gnus-newsgroup-data)))
2871      gnus-newsgroup-data))
2872
2873 (defun gnus-data-update-list (data offset)
2874   "Add OFFSET to the POS of all data entries in DATA."
2875   (setq gnus-newsgroup-data-reverse nil)
2876   (while data
2877     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2878     (setq data (cdr data))))
2879
2880 (defun gnus-summary-article-pseudo-p (article)
2881   "Say whether this article is a pseudo article or not."
2882   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2883
2884 (defmacro gnus-summary-article-sparse-p (article)
2885   "Say whether this article is a sparse article or not."
2886   `(memq ,article gnus-newsgroup-sparse))
2887
2888 (defmacro gnus-summary-article-ancient-p (article)
2889   "Say whether this article is a sparse article or not."
2890   `(memq ,article gnus-newsgroup-ancient))
2891
2892 (defun gnus-article-parent-p (number)
2893   "Say whether this article is a parent or not."
2894   (let ((data (gnus-data-find-list number)))
2895     (and (cdr data)                     ; There has to be an article after...
2896          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2897             (gnus-data-level (nth 1 data))))))
2898
2899 (defun gnus-article-children (number)
2900   "Return a list of all children to NUMBER."
2901   (let* ((data (gnus-data-find-list number))
2902          (level (gnus-data-level (car data)))
2903          children)
2904     (setq data (cdr data))
2905     (while (and data
2906                 (= (gnus-data-level (car data)) (1+ level)))
2907       (push (gnus-data-number (car data)) children)
2908       (setq data (cdr data)))
2909     children))
2910
2911 (defmacro gnus-summary-skip-intangible ()
2912   "If the current article is intangible, then jump to a different article."
2913   '(let ((to (get-text-property (point) 'gnus-intangible)))
2914      (and to (gnus-summary-goto-subject to))))
2915
2916 (defmacro gnus-summary-article-intangible-p ()
2917   "Say whether this article is intangible or not."
2918   '(get-text-property (point) 'gnus-intangible))
2919
2920 (defun gnus-article-read-p (article)
2921   "Say whether ARTICLE is read or not."
2922   (not (or (memq article gnus-newsgroup-marked)
2923            (memq article gnus-newsgroup-spam-marked)
2924            (memq article gnus-newsgroup-unreads)
2925            (memq article gnus-newsgroup-unselected)
2926            (memq article gnus-newsgroup-dormant))))
2927
2928 ;; Some summary mode macros.
2929
2930 (defmacro gnus-summary-article-number ()
2931   "The article number of the article on the current line.
2932 If there isn't an article number here, then we return the current
2933 article number."
2934   '(progn
2935      (gnus-summary-skip-intangible)
2936      (or (get-text-property (point) 'gnus-number)
2937          (gnus-summary-last-subject))))
2938
2939 (defmacro gnus-summary-article-header (&optional number)
2940   "Return the header of article NUMBER."
2941   `(gnus-data-header (gnus-data-find
2942                       ,(or number '(gnus-summary-article-number)))))
2943
2944 (defmacro gnus-summary-thread-level (&optional number)
2945   "Return the level of thread that starts with article NUMBER."
2946   `(if (and (eq gnus-summary-make-false-root 'dummy)
2947             (get-text-property (point) 'gnus-intangible))
2948        0
2949      (gnus-data-level (gnus-data-find
2950                        ,(or number '(gnus-summary-article-number))))))
2951
2952 (defmacro gnus-summary-article-mark (&optional number)
2953   "Return the mark of article NUMBER."
2954   `(gnus-data-mark (gnus-data-find
2955                     ,(or number '(gnus-summary-article-number)))))
2956
2957 (defmacro gnus-summary-article-pos (&optional number)
2958   "Return the position of the line of article NUMBER."
2959   `(gnus-data-pos (gnus-data-find
2960                    ,(or number '(gnus-summary-article-number)))))
2961
2962 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2963 (defmacro gnus-summary-article-subject (&optional number)
2964   "Return current subject string or nil if nothing."
2965   `(let ((headers
2966           ,(if number
2967                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2968              '(gnus-data-header (assq (gnus-summary-article-number)
2969                                       gnus-newsgroup-data)))))
2970      (and headers
2971           (vectorp headers)
2972           (mail-header-subject headers))))
2973
2974 (defmacro gnus-summary-article-score (&optional number)
2975   "Return current article score."
2976   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2977                   gnus-newsgroup-scored))
2978        gnus-summary-default-score 0))
2979
2980 (defun gnus-summary-article-children (&optional number)
2981   "Return a list of article numbers that are children of article NUMBER."
2982   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2983          (level (gnus-data-level (car data)))
2984          l children)
2985     (while (and (setq data (cdr data))
2986                 (> (setq l (gnus-data-level (car data))) level))
2987       (and (= (1+ level) l)
2988            (push (gnus-data-number (car data))
2989                  children)))
2990     (nreverse children)))
2991
2992 (defun gnus-summary-article-parent (&optional number)
2993   "Return the article number of the parent of article NUMBER."
2994   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2995                                     (gnus-data-list t)))
2996          (level (gnus-data-level (car data))))
2997     (if (zerop level)
2998         ()                              ; This is a root.
2999       ;; We search until we find an article with a level less than
3000       ;; this one.  That function has to be the parent.
3001       (while (and (setq data (cdr data))
3002                   (not (< (gnus-data-level (car data)) level))))
3003       (and data (gnus-data-number (car data))))))
3004
3005 (defun gnus-unread-mark-p (mark)
3006   "Say whether MARK is the unread mark."
3007   (= mark gnus-unread-mark))
3008
3009 (defun gnus-read-mark-p (mark)
3010   "Say whether MARK is one of the marks that mark as read.
3011 This is all marks except unread, ticked, dormant, and expirable."
3012   (not (or (= mark gnus-unread-mark)
3013            (= mark gnus-ticked-mark)
3014            (= mark gnus-spam-mark)
3015            (= mark gnus-dormant-mark)
3016            (= mark gnus-expirable-mark))))
3017
3018 (defmacro gnus-article-mark (number)
3019   "Return the MARK of article NUMBER.
3020 This macro should only be used when computing the mark the \"first\"
3021 time; i.e., when generating the summary lines.  After that,
3022 `gnus-summary-article-mark' should be used to examine the
3023 marks of articles."
3024   `(cond
3025     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
3026     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
3027     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
3028     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
3029     ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
3030     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
3031     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
3032     (t (or (cdr (assq ,number gnus-newsgroup-reads))
3033            gnus-ancient-mark))))
3034
3035 ;; Saving hidden threads.
3036
3037 (defmacro gnus-save-hidden-threads (&rest forms)
3038   "Save hidden threads, eval FORMS, and restore the hidden threads."
3039   (let ((config (make-symbol "config")))
3040     `(let ((,config (gnus-hidden-threads-configuration)))
3041        (unwind-protect
3042            (save-excursion
3043              ,@forms)
3044          (gnus-restore-hidden-threads-configuration ,config)))))
3045 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3046 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3047
3048 (defun gnus-data-compute-positions ()
3049   "Compute the positions of all articles."
3050   (setq gnus-newsgroup-data-reverse nil)
3051   (let ((data gnus-newsgroup-data))
3052     (save-excursion
3053       (gnus-save-hidden-threads
3054         (gnus-summary-show-all-threads)
3055         (goto-char (point-min))
3056         (while data
3057           (while (get-text-property (point) 'gnus-intangible)
3058             (forward-line 1))
3059           (gnus-data-set-pos (car data) (+ (point) 3))
3060           (setq data (cdr data))
3061           (forward-line 1))))))
3062
3063 (defun gnus-hidden-threads-configuration ()
3064   "Return the current hidden threads configuration."
3065   (save-excursion
3066     (let (config)
3067       (goto-char (point-min))
3068       (while (search-forward "\r" nil t)
3069         (push (1- (point)) config))
3070       config)))
3071
3072 (defun gnus-restore-hidden-threads-configuration (config)
3073   "Restore hidden threads configuration from CONFIG."
3074   (save-excursion
3075     (let (point buffer-read-only)
3076       (while (setq point (pop config))
3077         (when (and (< point (point-max))
3078                    (goto-char point)
3079                    (eq (char-after) ?\n))
3080           (subst-char-in-region point (1+ point) ?\n ?\r))))))
3081
3082 ;; Various summary mode internalish functions.
3083
3084 (defun gnus-mouse-pick-article (e)
3085   (interactive "e")
3086   (mouse-set-point e)
3087   (gnus-summary-next-page nil t))
3088
3089 (defun gnus-summary-set-display-table ()
3090   "Change the display table.
3091 Odd characters have a tendency to mess
3092 up nicely formatted displays - we make all possible glyphs
3093 display only a single character."
3094
3095   ;; We start from the standard display table, if any.
3096   (let ((table (or (copy-sequence standard-display-table)
3097                    (make-display-table)))
3098         (i 32))
3099     ;; Nix out all the control chars...
3100     (while (>= (setq i (1- i)) 0)
3101       (aset table i [??]))
3102     ;; ... but not newline and cr, of course.  (cr is necessary for the
3103     ;; selective display).
3104     (aset table ?\n nil)
3105     (aset table ?\r nil)
3106     ;; We keep TAB as well.
3107     (aset table ?\t nil)
3108     ;; We nix out any glyphs over 126 that are not set already.
3109     (let ((i 256))
3110       (while (>= (setq i (1- i)) 127)
3111         ;; Only modify if the entry is nil.
3112         (unless (aref table i)
3113           (aset table i [??]))))
3114     (setq buffer-display-table table)))
3115
3116 (defun gnus-summary-set-article-display-arrow (pos)
3117   "Update the overlay arrow to point to line at position POS."
3118   (when (and gnus-summary-display-arrow
3119              (boundp 'overlay-arrow-position)
3120              (boundp 'overlay-arrow-string))
3121     (save-excursion
3122       (goto-char pos)
3123       (beginning-of-line)
3124       (unless overlay-arrow-position
3125         (setq overlay-arrow-position (make-marker)))
3126       (setq overlay-arrow-string "=>"
3127             overlay-arrow-position (set-marker overlay-arrow-position
3128                                                (point)
3129                                                (current-buffer))))))
3130
3131 (defun gnus-summary-setup-buffer (group)
3132   "Initialize summary buffer."
3133   (let ((buffer (gnus-summary-buffer-name group))
3134         (dead-name (concat "*Dead Summary "
3135                            (gnus-group-decoded-name group) "*")))
3136     ;; If a dead summary buffer exists, we kill it.
3137     (when (gnus-buffer-live-p dead-name)
3138       (gnus-kill-buffer dead-name))
3139     (if (get-buffer buffer)
3140         (progn
3141           (set-buffer buffer)
3142           (setq gnus-summary-buffer (current-buffer))
3143           (not gnus-newsgroup-prepared))
3144       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3145       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3146       (gnus-summary-mode group)
3147       (when gnus-carpal
3148         (gnus-carpal-setup-buffer 'summary))
3149       (unless gnus-single-article-buffer
3150         (make-local-variable 'gnus-article-buffer)
3151         (make-local-variable 'gnus-article-current)
3152         (make-local-variable 'gnus-original-article-buffer))
3153       (setq gnus-newsgroup-name group)
3154       ;; Set any local variables in the group parameters.
3155       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3156       t)))
3157
3158 (defun gnus-set-global-variables ()
3159   "Set the global equivalents of the buffer-local variables.
3160 They are set to the latest values they had.  These reflect the summary
3161 buffer that was in action when the last article was fetched."
3162   (when (eq major-mode 'gnus-summary-mode)
3163     (setq gnus-summary-buffer (current-buffer))
3164     (let ((name gnus-newsgroup-name)
3165           (marked gnus-newsgroup-marked)
3166           (spam gnus-newsgroup-spam-marked)
3167           (unread gnus-newsgroup-unreads)
3168           (headers gnus-current-headers)
3169           (data gnus-newsgroup-data)
3170           (summary gnus-summary-buffer)
3171           (article-buffer gnus-article-buffer)
3172           (original gnus-original-article-buffer)
3173           (gac gnus-article-current)
3174           (reffed gnus-reffed-article-number)
3175           (score-file gnus-current-score-file)
3176           (default-charset gnus-newsgroup-charset)
3177           vlist)
3178       (let ((locals gnus-newsgroup-variables))
3179         (while locals
3180           (if (consp (car locals))
3181               (push (eval (caar locals)) vlist)
3182             (push (eval (car locals)) vlist))
3183           (setq locals (cdr locals)))
3184         (setq vlist (nreverse vlist)))
3185       (save-excursion
3186         (set-buffer gnus-group-buffer)
3187         (setq gnus-newsgroup-name name
3188               gnus-newsgroup-marked marked
3189               gnus-newsgroup-spam-marked spam
3190               gnus-newsgroup-unreads unread
3191               gnus-current-headers headers
3192               gnus-newsgroup-data data
3193               gnus-article-current gac
3194               gnus-summary-buffer summary
3195               gnus-article-buffer article-buffer
3196               gnus-original-article-buffer original
3197               gnus-reffed-article-number reffed
3198               gnus-current-score-file score-file
3199               gnus-newsgroup-charset default-charset)
3200         (let ((locals gnus-newsgroup-variables))
3201           (while locals
3202             (if (consp (car locals))
3203                 (set (caar locals) (pop vlist))
3204               (set (car locals) (pop vlist)))
3205             (setq locals (cdr locals))))
3206         ;; The article buffer also has local variables.
3207         (when (gnus-buffer-live-p gnus-article-buffer)
3208           (set-buffer gnus-article-buffer)
3209           (setq gnus-summary-buffer summary))))))
3210
3211 (defun gnus-summary-article-unread-p (article)
3212   "Say whether ARTICLE is unread or not."
3213   (memq article gnus-newsgroup-unreads))
3214
3215 (defun gnus-summary-first-article-p (&optional article)
3216   "Return whether ARTICLE is the first article in the buffer."
3217   (if (not (setq article (or article (gnus-summary-article-number))))
3218       nil
3219     (eq article (caar gnus-newsgroup-data))))
3220
3221 (defun gnus-summary-last-article-p (&optional article)
3222   "Return whether ARTICLE is the last article in the buffer."
3223   (if (not (setq article (or article (gnus-summary-article-number))))
3224       ;; All non-existent numbers are the last article.  :-)
3225       t
3226     (not (cdr (gnus-data-find-list article)))))
3227
3228 (defun gnus-make-thread-indent-array ()
3229   (let ((n 200))
3230     (unless (and gnus-thread-indent-array
3231                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
3232       (setq gnus-thread-indent-array (make-vector 201 "")
3233             gnus-thread-indent-array-level gnus-thread-indent-level)
3234       (while (>= n 0)
3235         (aset gnus-thread-indent-array n
3236               (make-string (* n gnus-thread-indent-level) ? ))
3237         (setq n (1- n))))))
3238
3239 (defun gnus-update-summary-mark-positions ()
3240   "Compute where the summary marks are to go."
3241   (save-excursion
3242     (when (gnus-buffer-exists-p gnus-summary-buffer)
3243       (set-buffer gnus-summary-buffer))
3244     (let ((gnus-replied-mark 129)
3245           (gnus-score-below-mark 130)
3246           (gnus-score-over-mark 130)
3247           (gnus-undownloaded-mark 131)
3248           (spec gnus-summary-line-format-spec)
3249           gnus-visual pos)
3250       (save-excursion
3251         (gnus-set-work-buffer)
3252         (let ((gnus-summary-line-format-spec spec)
3253               (gnus-newsgroup-downloadable '(0)))
3254           (gnus-summary-insert-line
3255            (make-full-mail-header 0 "" "nobody"
3256                                   "05 Apr 2001 23:33:09 +0400"
3257                                   "" "" 0 0 "" nil)
3258            0 nil t 128 t nil "" nil 1)
3259           (goto-char (point-min))
3260           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
3261                                              (- (point) (point-min) 1)))))
3262           (goto-char (point-min))
3263           (push (cons 'replied (and (search-forward "\201" nil t)
3264                                     (- (point) (point-min) 1)))
3265                 pos)
3266           (goto-char (point-min))
3267           (push (cons 'score (and (search-forward "\202" nil t)
3268                                   (- (point) (point-min) 1)))
3269                 pos)
3270           (goto-char (point-min))
3271           (push (cons 'download
3272                       (and (search-forward "\203" nil t)
3273                            (- (point) (point-min) 1)))
3274                 pos)))
3275       (setq gnus-summary-mark-positions pos))))
3276
3277 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3278   "Insert a dummy root in the summary buffer."
3279   (beginning-of-line)
3280   (gnus-add-text-properties
3281    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3282    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3283
3284 (defun gnus-summary-extract-address-component (from)
3285   (or (car (funcall gnus-extract-address-components from))
3286       from))
3287
3288 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3289   (let ((default-mime-charset (with-current-buffer gnus-summary-buffer
3290                                 default-mime-charset)))
3291     ;; Is it really necessary to do this next part for each summary line?
3292     ;; Luckily, doesn't seem to slow things down much.
3293     (or
3294      (and gnus-ignored-from-addresses
3295           (string-match gnus-ignored-from-addresses gnus-tmp-from)
3296           (let ((extra-headers (mail-header-extra header))
3297                 to
3298                 newsgroups)
3299             (cond
3300              ((setq to (cdr (assq 'To extra-headers)))
3301               (concat "-> "
3302                       (inline
3303                         (gnus-summary-extract-address-component
3304                          (funcall gnus-decode-encoded-word-function to)))))
3305              ((setq newsgroups (cdr (assq 'Newsgroups extra-headers)))
3306               (concat "=> " newsgroups)))))
3307      (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3308
3309 (defun gnus-summary-insert-line (gnus-tmp-header
3310                                  gnus-tmp-level gnus-tmp-current
3311                                  undownloaded gnus-tmp-unread gnus-tmp-replied
3312                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
3313                                  &optional gnus-tmp-dummy gnus-tmp-score
3314                                  gnus-tmp-process)
3315   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3316          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3317          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3318          (gnus-tmp-score-char
3319           (if (or (null gnus-summary-default-score)
3320                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3321                       gnus-summary-zcore-fuzz))
3322               ?\ ;;;Whitespace
3323             (if (< gnus-tmp-score gnus-summary-default-score)
3324                 gnus-score-below-mark gnus-score-over-mark)))
3325          (gnus-tmp-number (mail-header-number gnus-tmp-header))
3326          (gnus-tmp-replied
3327           (cond (gnus-tmp-process gnus-process-mark)
3328                 ((memq gnus-tmp-current gnus-newsgroup-cached)
3329                  gnus-cached-mark)
3330                 (gnus-tmp-replied gnus-replied-mark)
3331                 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3332                  gnus-forwarded-mark)
3333                 ((memq gnus-tmp-current gnus-newsgroup-saved)
3334                  gnus-saved-mark)
3335                 ((memq gnus-tmp-number gnus-newsgroup-recent)
3336                  gnus-recent-mark)
3337                 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3338                  gnus-unseen-mark)
3339                 (t gnus-no-mark)))
3340          (gnus-tmp-downloaded
3341           (cond (undownloaded
3342                  gnus-undownloaded-mark)
3343                 (gnus-newsgroup-agentized
3344                  gnus-downloaded-mark)
3345                 (t
3346                  gnus-no-mark)))
3347          (gnus-tmp-from (mail-header-from gnus-tmp-header))
3348          (gnus-tmp-name
3349           (cond
3350            ((string-match "<[^>]+> *$" gnus-tmp-from)
3351             (let ((beg (match-beginning 0)))
3352               (or (and (string-match "^\".+\"" gnus-tmp-from)
3353                        (substring gnus-tmp-from 1 (1- (match-end 0))))
3354                   (substring gnus-tmp-from 0 beg))))
3355            ((string-match "(.+)" gnus-tmp-from)
3356             (substring gnus-tmp-from
3357                        (1+ (match-beginning 0)) (1- (match-end 0))))
3358            (t gnus-tmp-from)))
3359          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3360          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3361          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3362          (buffer-read-only nil))
3363     (when (string= gnus-tmp-name "")
3364       (setq gnus-tmp-name gnus-tmp-from))
3365     (unless (numberp gnus-tmp-lines)
3366       (setq gnus-tmp-lines -1))
3367     (if (= gnus-tmp-lines -1)
3368         (setq gnus-tmp-lines "?")
3369       (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3370     (gnus-put-text-property-excluding-characters-with-faces
3371      (point)
3372      (progn (eval gnus-summary-line-format-spec) (point))
3373      'gnus-number gnus-tmp-number)
3374     (when (gnus-visual-p 'summary-highlight 'highlight)
3375       (forward-line -1)
3376       (gnus-run-hooks 'gnus-summary-update-hook)
3377       (forward-line 1))))
3378
3379 (defun gnus-summary-update-line (&optional dont-update)
3380   "Update summary line after change."
3381   (when (and gnus-summary-default-score
3382              (not gnus-summary-inhibit-highlight))
3383     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3384            (article (gnus-summary-article-number))
3385            (score (gnus-summary-article-score article)))
3386       (unless dont-update
3387         (if (and gnus-summary-mark-below
3388                  (< (gnus-summary-article-score)
3389                     gnus-summary-mark-below))
3390             ;; This article has a low score, so we mark it as read.
3391             (when (memq article gnus-newsgroup-unreads)
3392               (gnus-summary-mark-article-as-read gnus-low-score-mark))
3393           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3394             ;; This article was previously marked as read on account
3395             ;; of a low score, but now it has risen, so we mark it as
3396             ;; unread.
3397             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3398         (gnus-summary-update-mark
3399          (if (or (null gnus-summary-default-score)
3400                  (<= (abs (- score gnus-summary-default-score))
3401                      gnus-summary-zcore-fuzz))
3402              ?\ ;;;Whitespace
3403            (if (< score gnus-summary-default-score)
3404                gnus-score-below-mark gnus-score-over-mark))
3405          'score))
3406       ;; Do visual highlighting.
3407       (when (gnus-visual-p 'summary-highlight 'highlight)
3408         (gnus-run-hooks 'gnus-summary-update-hook)))))
3409
3410 (defvar gnus-tmp-new-adopts nil)
3411
3412 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3413   "Return the number of articles in THREAD.
3414 This may be 0 in some cases -- if none of the articles in
3415 the thread are to be displayed."
3416   (let* ((number
3417           ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3418           (cond
3419            ((not (listp thread))
3420             1)
3421            ((and (consp thread) (cdr thread))
3422             (apply
3423              '+ 1 (mapcar
3424                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
3425            ((null thread)
3426             1)
3427            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3428             1)
3429            (t 0))))
3430     (when (and level (zerop level) gnus-tmp-new-adopts)
3431       (incf number
3432             (apply '+ (mapcar
3433                        'gnus-summary-number-of-articles-in-thread
3434                        gnus-tmp-new-adopts))))
3435     (if char
3436         (if (> number 1) gnus-not-empty-thread-mark
3437           gnus-empty-thread-mark)
3438       number)))
3439
3440 (defsubst gnus-summary-line-message-size (head)
3441   "Return pretty-printed version of message size.
3442 This function is intended to be used in
3443 `gnus-summary-line-format-alist'."
3444   (let ((c (or (mail-header-chars head) -1)))
3445     (cond ((< c 0) "n/a")               ; chars not available
3446           ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3447           ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3448           ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3449           (t (format "%dM" (/ c (* 1024.0 1024)))))))
3450
3451
3452 (defun gnus-summary-set-local-parameters (group)
3453   "Go through the local params of GROUP and set all variable specs in that list."
3454   (let ((params (gnus-group-find-parameter group))
3455         (vars '(quit-config))           ; Ignore quit-config.
3456         elem)
3457     (while params
3458       (setq elem (car params)
3459             params (cdr params))
3460       (and (consp elem)                 ; Has to be a cons.
3461            (consp (cdr elem))           ; The cdr has to be a list.
3462            (symbolp (car elem))         ; Has to be a symbol in there.
3463            (not (memq (car elem) vars))
3464            (ignore-errors               ; So we set it.
3465              (push (car elem) vars)
3466              (make-local-variable (car elem))
3467              (set (car elem) (eval (nth 1 elem))))))))
3468
3469 (defun gnus-summary-read-group (group &optional show-all no-article
3470                                       kill-buffer no-display backward
3471                                       select-articles)
3472   "Start reading news in newsgroup GROUP.
3473 If SHOW-ALL is non-nil, already read articles are also listed.
3474 If NO-ARTICLE is non-nil, no article is selected initially.
3475 If NO-DISPLAY, don't generate a summary buffer."
3476   (let (result)
3477     (while (and group
3478                 (null (setq result
3479                             (let ((gnus-auto-select-next nil))
3480                               (or (gnus-summary-read-group-1
3481                                    group show-all no-article
3482                                    kill-buffer no-display
3483                                    select-articles)
3484                                   (setq show-all nil
3485                                         select-articles nil)))))
3486                 (eq gnus-auto-select-next 'quietly))
3487       (set-buffer gnus-group-buffer)
3488       ;; The entry function called above goes to the next
3489       ;; group automatically, so we go two groups back
3490       ;; if we are searching for the previous group.
3491       (when backward
3492         (gnus-group-prev-unread-group 2))
3493       (if (not (equal group (gnus-group-group-name)))
3494           (setq group (gnus-group-group-name))
3495         (setq group nil)))
3496     result))
3497
3498 (defun gnus-summary-jump-to-other-group (group &optional show-all)
3499   "Directly jump to the other GROUP from summary buffer.
3500 If SHOW-ALL is non-nil, already read articles are also listed."
3501   (interactive
3502    (if (eq gnus-summary-buffer (current-buffer))
3503        (list (completing-read
3504               "Group: " gnus-active-hashtb nil t
3505               (when (and gnus-newsgroup-name
3506                          (string-match "[.:][^.:]+$" gnus-newsgroup-name))
3507                 (substring gnus-newsgroup-name 0 (1+ (match-beginning 0))))
3508               'gnus-group-history)
3509              current-prefix-arg)
3510      (error "%s must be invoked from a gnus summary buffer." this-command)))
3511   (unless (or (zerop (length group))
3512               (and gnus-newsgroup-name
3513                    (string-equal gnus-newsgroup-name group)))
3514     (gnus-summary-exit)
3515     (gnus-summary-read-group group show-all
3516                              gnus-dont-select-after-jump-to-other-group)))
3517
3518 (defun gnus-summary-read-group-1 (group show-all no-article
3519                                         kill-buffer no-display
3520                                         &optional select-articles)
3521   ;; Killed foreign groups can't be entered.
3522   ;;  (when (and (not (gnus-group-native-p group))
3523   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
3524   ;;    (error "Dead non-native groups can't be entered"))
3525   (gnus-message 5 "Retrieving newsgroup: %s..."
3526                 (gnus-group-decoded-name group))
3527   (let* ((new-group (gnus-summary-setup-buffer group))
3528          (quit-config (gnus-group-quit-config group))
3529          (did-select (and new-group (gnus-select-newsgroup
3530                                      group show-all select-articles))))
3531     (cond
3532      ;; This summary buffer exists already, so we just select it.
3533      ((not new-group)
3534       (gnus-set-global-variables)
3535       (when kill-buffer
3536         (gnus-kill-or-deaden-summary kill-buffer))
3537       (gnus-configure-windows 'summary 'force)
3538       (gnus-set-mode-line 'summary)
3539       (gnus-summary-position-point)
3540       (message "")
3541       t)
3542      ;; We couldn't select this group.
3543      ((null did-select)
3544       (when (and (eq major-mode 'gnus-summary-mode)
3545                  (not (equal (current-buffer) kill-buffer)))
3546         (kill-buffer (current-buffer))
3547         (if (not quit-config)
3548             (progn
3549               ;; Update the info -- marks might need to be removed,
3550               ;; for instance.
3551               (gnus-summary-update-info)
3552               (set-buffer gnus-group-buffer)
3553               (gnus-group-jump-to-group group)
3554               (gnus-group-next-unread-group 1))
3555           (gnus-handle-ephemeral-exit quit-config)))
3556       (let ((grpinfo (gnus-get-info group)))
3557         (if (null (gnus-info-read grpinfo))
3558             (gnus-message 3 "Group %s contains no messages"
3559                           (gnus-group-decoded-name group))
3560           (gnus-message 3 "Can't select group")))
3561       nil)
3562      ;; The user did a `C-g' while prompting for number of articles,
3563      ;; so we exit this group.
3564      ((eq did-select 'quit)
3565       (and (eq major-mode 'gnus-summary-mode)
3566            (not (equal (current-buffer) kill-buffer))
3567            (kill-buffer (current-buffer)))
3568       (when kill-buffer
3569         (gnus-kill-or-deaden-summary kill-buffer))
3570       (if (not quit-config)
3571           (progn
3572             (set-buffer gnus-group-buffer)
3573             (gnus-group-jump-to-group group)
3574             (gnus-group-next-unread-group 1)
3575             (gnus-configure-windows 'group 'force))
3576         (gnus-handle-ephemeral-exit quit-config))
3577       ;; Finally signal the quit.
3578       (signal 'quit nil))
3579      ;; The group was successfully selected.
3580      (t
3581       (gnus-set-global-variables)
3582       ;; Save the active value in effect when the group was entered.
3583       (setq gnus-newsgroup-active
3584             (gnus-copy-sequence
3585              (gnus-active gnus-newsgroup-name)))
3586       ;; You can change the summary buffer in some way with this hook.
3587       (gnus-run-hooks 'gnus-select-group-hook)
3588       (gnus-update-format-specifications
3589        nil 'summary 'summary-mode 'summary-dummy)
3590       (gnus-update-summary-mark-positions)
3591       ;; Do score processing.
3592       (when gnus-use-scoring
3593         (gnus-possibly-score-headers))
3594       ;; Check whether to fill in the gaps in the threads.
3595       (when gnus-build-sparse-threads
3596         (gnus-build-sparse-threads))
3597       ;; Find the initial limit.
3598       (if gnus-show-threads
3599           (if show-all
3600               (let ((gnus-newsgroup-dormant nil))
3601                 (gnus-summary-initial-limit show-all))
3602             (gnus-summary-initial-limit show-all))
3603         ;; When unthreaded, all articles are always shown.
3604         (setq gnus-newsgroup-limit
3605               (mapcar
3606                (lambda (header) (mail-header-number header))
3607                gnus-newsgroup-headers)))
3608       ;; Generate the summary buffer.
3609       (unless no-display
3610         (gnus-summary-prepare))
3611       (when gnus-use-trees
3612         (gnus-tree-open group)
3613         (setq gnus-summary-highlight-line-function
3614               'gnus-tree-highlight-article))
3615       ;; If the summary buffer is empty, but there are some low-scored
3616       ;; articles or some excluded dormants, we include these in the
3617       ;; buffer.
3618       (when (and (zerop (buffer-size))
3619                  (not no-display))
3620         (cond (gnus-newsgroup-dormant
3621                (gnus-summary-limit-include-dormant))
3622               ((and gnus-newsgroup-scored show-all)
3623                (gnus-summary-limit-include-expunged t))))
3624       ;; Function `gnus-apply-kill-file' must be called in this hook.
3625       (gnus-run-hooks 'gnus-apply-kill-hook)
3626       (if (and (zerop (buffer-size))
3627                (not no-display))
3628           (progn
3629             ;; This newsgroup is empty.
3630             (gnus-summary-catchup-and-exit nil t)
3631             (gnus-message 6 "No unread news")
3632             (when kill-buffer
3633               (gnus-kill-or-deaden-summary kill-buffer))
3634             ;; Return nil from this function.
3635             nil)
3636         ;; Hide conversation thread subtrees.  We cannot do this in
3637         ;; gnus-summary-prepare-hook since kill processing may not
3638         ;; work with hidden articles.
3639         (gnus-summary-maybe-hide-threads)
3640         (when kill-buffer
3641           (gnus-kill-or-deaden-summary kill-buffer))
3642         (gnus-summary-auto-select-subject)
3643         ;; Show first unread article if requested.
3644         (if (and (not no-article)
3645                  (not no-display)
3646                  gnus-newsgroup-unreads
3647                  gnus-auto-select-first)
3648             (progn
3649               (gnus-configure-windows 'summary)
3650               (let ((art (gnus-summary-article-number)))
3651                 (unless (and (not gnus-plugged)
3652                              (or (memq art gnus-newsgroup-undownloaded)
3653                                  (memq art gnus-newsgroup-downloadable)))
3654                   (gnus-summary-goto-article art))))
3655           ;; Don't select any articles.
3656           (gnus-summary-position-point)
3657           (gnus-configure-windows 'summary 'force)
3658           (gnus-set-mode-line 'summary))
3659         (when (and gnus-auto-center-group
3660                    (get-buffer-window gnus-group-buffer t))
3661           ;; Gotta use windows, because recenter does weird stuff if
3662           ;; the current buffer ain't the displayed window.
3663           (let ((owin (selected-window)))
3664             (select-window (get-buffer-window gnus-group-buffer t))
3665             (when (gnus-group-goto-group group)
3666               (recenter))
3667             (select-window owin)))
3668         ;; Mark this buffer as "prepared".
3669         (setq gnus-newsgroup-prepared t)
3670         (gnus-run-hooks 'gnus-summary-prepared-hook)
3671         (unless (gnus-ephemeral-group-p group)
3672           (gnus-group-update-group group))
3673         t)))))
3674
3675 (defun gnus-summary-auto-select-subject ()
3676   "Select the subject line on initial group entry."
3677   (goto-char (point-min))
3678   (cond
3679    ((eq gnus-auto-select-subject 'best)
3680     (gnus-summary-best-unread-subject))
3681    ((eq gnus-auto-select-subject 'unread)
3682     (gnus-summary-first-unread-subject))
3683    ((eq gnus-auto-select-subject 'unseen)
3684     (gnus-summary-first-unseen-subject))
3685    ((eq gnus-auto-select-subject 'unseen-or-unread)
3686     (gnus-summary-first-unseen-or-unread-subject))
3687    ((eq gnus-auto-select-subject 'first)
3688     ;; Do nothing.
3689     )
3690    ((functionp gnus-auto-select-subject)
3691     (funcall gnus-auto-select-subject))))
3692
3693 (defun gnus-summary-prepare ()
3694   "Generate the summary buffer."
3695   (interactive)
3696   (let ((buffer-read-only nil))
3697     (erase-buffer)
3698     (setq gnus-newsgroup-data nil
3699           gnus-newsgroup-data-reverse nil)
3700     (gnus-run-hooks 'gnus-summary-generate-hook)
3701     ;; Generate the buffer, either with threads or without.
3702     (when gnus-newsgroup-headers
3703       (gnus-summary-prepare-threads
3704        (if gnus-show-threads
3705            (gnus-sort-gathered-threads
3706             (funcall gnus-summary-thread-gathering-function
3707                      (gnus-sort-threads
3708                       (gnus-cut-threads (gnus-make-threads)))))
3709          ;; Unthreaded display.
3710          (gnus-sort-articles gnus-newsgroup-headers))))
3711     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
3712     ;; Call hooks for modifying summary buffer.
3713     (goto-char (point-min))
3714     (gnus-run-hooks 'gnus-summary-prepare-hook)))
3715
3716 (defsubst gnus-general-simplify-subject (subject)
3717   "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
3718   (setq subject
3719         (cond
3720          ;; Truncate the subject.
3721          (gnus-simplify-subject-functions
3722           (gnus-map-function gnus-simplify-subject-functions subject))
3723          ((numberp gnus-summary-gather-subject-limit)
3724           (setq subject (gnus-simplify-subject-re subject))
3725           (if (> (length subject) gnus-summary-gather-subject-limit)
3726               (substring subject 0 gnus-summary-gather-subject-limit)
3727             subject))
3728          ;; Fuzzily simplify it.
3729          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3730           (gnus-simplify-subject-fuzzy subject))
3731          ;; Just remove the leading "Re:".
3732          (t
3733           (gnus-simplify-subject-re subject))))
3734
3735   (if (and gnus-summary-gather-exclude-subject
3736            (string-match gnus-summary-gather-exclude-subject subject))
3737       nil                               ; This article shouldn't be gathered
3738     subject))
3739
3740 (defun gnus-summary-simplify-subject-query ()
3741   "Query where the respool algorithm would put this article."
3742   (interactive)
3743   (gnus-summary-select-article)
3744   (message "%s"
3745            (gnus-general-simplify-subject (gnus-summary-article-subject))))
3746
3747 (defun gnus-gather-threads-by-subject (threads)
3748   "Gather threads by looking at Subject headers."
3749   (if (not gnus-summary-make-false-root)
3750       threads
3751     (let ((hashtb (gnus-make-hashtable 1024))
3752           (prev threads)
3753           (result threads)
3754           subject hthread whole-subject)
3755       (while threads
3756         (setq subject (gnus-general-simplify-subject
3757                        (setq whole-subject (mail-header-subject
3758                                             (caar threads)))))
3759         (when subject
3760           (if (setq hthread (gnus-gethash subject hashtb))
3761               (progn
3762                 ;; We enter a dummy root into the thread, if we
3763                 ;; haven't done that already.
3764                 (unless (stringp (caar hthread))
3765                   (setcar hthread (list whole-subject (car hthread))))
3766                 ;; We add this new gathered thread to this gathered
3767                 ;; thread.
3768                 (setcdr (car hthread)
3769                         (nconc (cdar hthread) (list (car threads))))
3770                 ;; Remove it from the list of threads.
3771                 (setcdr prev (cdr threads))
3772                 (setq threads prev))
3773             ;; Enter this thread into the hash table.
3774             (gnus-sethash subject
3775                           (if gnus-summary-make-false-root-always
3776                               (progn
3777                                 ;; If you want a dummy root above all
3778                                 ;; threads...
3779                                 (setcar threads (list whole-subject
3780                                                       (car threads)))
3781                                 threads)
3782                             threads)
3783                           hashtb)))
3784         (setq prev threads)
3785         (setq threads (cdr threads)))
3786       result)))
3787
3788 (defun gnus-gather-threads-by-references (threads)
3789   "Gather threads by looking at References headers."
3790   (let ((idhashtb (gnus-make-hashtable 1024))
3791         (thhashtb (gnus-make-hashtable 1024))
3792         (prev threads)
3793         (result threads)
3794         ids references id gthread gid entered ref)
3795     (while threads
3796       (when (setq references (mail-header-references (caar threads)))
3797         (setq id (mail-header-id (caar threads))
3798               ids (inline (gnus-split-references references))
3799               entered nil)
3800         (while (setq ref (pop ids))
3801           (setq ids (delete ref ids))
3802           (if (not (setq gid (gnus-gethash ref idhashtb)))
3803               (progn
3804                 (gnus-sethash ref id idhashtb)
3805                 (gnus-sethash id threads thhashtb))
3806             (setq gthread (gnus-gethash gid thhashtb))
3807             (unless entered
3808               ;; We enter a dummy root into the thread, if we
3809               ;; haven't done that already.
3810               (unless (stringp (caar gthread))
3811                 (setcar gthread (list (mail-header-subject (caar gthread))
3812                                       (car gthread))))
3813               ;; We add this new gathered thread to this gathered
3814               ;; thread.
3815               (setcdr (car gthread)
3816                       (nconc (cdar gthread) (list (car threads)))))
3817             ;; Add it into the thread hash table.
3818             (gnus-sethash id gthread thhashtb)
3819             (setq entered t)
3820             ;; Remove it from the list of threads.
3821             (setcdr prev (cdr threads))
3822             (setq threads prev))))
3823       (setq prev threads)
3824       (setq threads (cdr threads)))
3825     result))
3826
3827 (defun gnus-sort-gathered-threads (threads)
3828   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3829   (let ((result threads))
3830     (while threads
3831       (when (stringp (caar threads))
3832         (setcdr (car threads)
3833                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3834       (setq threads (cdr threads)))
3835     result))
3836
3837 (defun gnus-thread-loop-p (root thread)
3838   "Say whether ROOT is in THREAD."
3839   (let ((stack (list thread))
3840         (infloop 0)
3841         th)
3842     (while (setq thread (pop stack))
3843       (setq th (cdr thread))
3844       (while (and th
3845                   (not (eq (caar th) root)))
3846         (pop th))
3847       (if th
3848           ;; We have found a loop.
3849           (let (ref-dep)
3850             (setcdr thread (delq (car th) (cdr thread)))
3851             (if (boundp (setq ref-dep (intern "none"
3852                                               gnus-newsgroup-dependencies)))
3853                 (setcdr (symbol-value ref-dep)
3854                         (nconc (cdr (symbol-value ref-dep))
3855                                (list (car th))))
3856               (set ref-dep (list nil (car th))))
3857             (setq infloop 1
3858                   stack nil))
3859         ;; Push all the subthreads onto the stack.
3860         (push (cdr thread) stack)))
3861     infloop))
3862
3863 (defun gnus-make-threads ()
3864   "Go through the dependency hashtb and find the roots.  Return all threads."
3865   (let (threads)
3866     (while (catch 'infloop
3867              (mapatoms
3868               (lambda (refs)
3869                 ;; Deal with self-referencing References loops.
3870                 (when (and (car (symbol-value refs))
3871                            (not (zerop
3872                                  (apply
3873                                   '+
3874                                   (mapcar
3875                                    (lambda (thread)
3876                                      (gnus-thread-loop-p
3877                                       (car (symbol-value refs)) thread))
3878                                    (cdr (symbol-value refs)))))))
3879                   (setq threads nil)
3880                   (throw 'infloop t))
3881                 (unless (car (symbol-value refs))
3882                   ;; These threads do not refer back to any other articles,
3883                   ;; so they're roots.
3884                   (setq threads (append (cdr (symbol-value refs)) threads))))
3885               gnus-newsgroup-dependencies)))
3886     threads))
3887
3888 ;; Build the thread tree.
3889 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3890   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3891
3892 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3893 if it was already present.
3894
3895 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3896 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3897 Message-IDs will be renamed to a unique Message-ID before being
3898 entered.
3899
3900 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3901   (let* ((id (mail-header-id header))
3902          (id-dep (and id (intern id dependencies)))
3903          parent-id ref ref-dep ref-header replaced)
3904     ;; Enter this `header' in the `dependencies' table.
3905     (cond
3906      ((not id-dep)
3907       (setq header nil))
3908      ;; The first two cases do the normal part: enter a new `header'
3909      ;; in the `dependencies' table.
3910      ((not (boundp id-dep))
3911       (set id-dep (list header)))
3912      ((null (car (symbol-value id-dep)))
3913       (setcar (symbol-value id-dep) header))
3914
3915      ;; From here the `header' was already present in the
3916      ;; `dependencies' table.
3917      (force-new
3918       ;; Overrides an existing entry;
3919       ;; just set the header part of the entry.
3920       (setcar (symbol-value id-dep) header)
3921       (setq replaced t))
3922
3923      ;; Renames the existing `header' to a unique Message-ID.
3924      ((not gnus-summary-ignore-duplicates)
3925       ;; An article with this Message-ID has already been seen.
3926       ;; We rename the Message-ID.
3927       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3928            (list header))
3929       (mail-header-set-id header id))
3930
3931      ;; The last case ignores an existing entry, except it adds any
3932      ;; additional Xrefs (in case the two articles came from different
3933      ;; servers.
3934      ;; Also sets `header' to `nil' meaning that the `dependencies'
3935      ;; table was *not* modified.
3936      (t
3937       (mail-header-set-xref
3938        (car (symbol-value id-dep))
3939        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3940                    "")
3941                (or (mail-header-xref header) "")))
3942       (setq header nil)))
3943
3944     (when (and header (not replaced))
3945       ;; First check that we are not creating a References loop.
3946       (setq parent-id (gnus-parent-id (mail-header-references header)))
3947       (setq ref parent-id)
3948       (while (and ref
3949                   (setq ref-dep (intern-soft ref dependencies))
3950                   (boundp ref-dep)
3951                   (setq ref-header (car (symbol-value ref-dep))))
3952         (if (string= id ref)
3953             ;; Yuk!  This is a reference loop.  Make the article be a
3954             ;; root article.
3955             (progn
3956               (mail-header-set-references (car (symbol-value id-dep)) "none")
3957               (setq ref nil)
3958               (setq parent-id nil))
3959           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3960       (setq ref-dep (intern (or parent-id "none") dependencies))
3961       (if (boundp ref-dep)
3962           (setcdr (symbol-value ref-dep)
3963                   (nconc (cdr (symbol-value ref-dep))
3964                          (list (symbol-value id-dep))))
3965         (set ref-dep (list nil (symbol-value id-dep)))))
3966     header))
3967
3968 (defun gnus-extract-message-id-from-in-reply-to (string)
3969   (if (string-match "<[^>]+>" string)
3970       (substring string (match-beginning 0) (match-end 0))
3971     nil))
3972
3973 (defun gnus-build-sparse-threads ()
3974   (let ((headers gnus-newsgroup-headers)
3975         (mail-parse-charset gnus-newsgroup-charset)
3976         (gnus-summary-ignore-duplicates t)
3977         header references generation relations
3978         subject child end new-child date)
3979     ;; First we create an alist of generations/relations, where
3980     ;; generations is how much we trust the relation, and the relation
3981     ;; is parent/child.
3982     (gnus-message 7 "Making sparse threads...")
3983     (save-excursion
3984       (nnheader-set-temp-buffer " *gnus sparse threads*")
3985       (while (setq header (pop headers))
3986         (when (and (setq references (mail-header-references header))
3987                    (not (string= references "")))
3988           (insert references)
3989           (setq child (mail-header-id header)
3990                 subject (mail-header-subject header)
3991                 date (mail-header-date header)
3992                 generation 0)
3993           (while (search-backward ">" nil t)
3994             (setq end (1+ (point)))
3995             (when (search-backward "<" nil t)
3996               (setq new-child (buffer-substring (point) end))
3997               (push (list (incf generation)
3998                           child (setq child new-child)
3999                           subject date)
4000                     relations)))
4001           (when child
4002             (push (list (1+ generation) child nil subject) relations))
4003           (erase-buffer)))
4004       (kill-buffer (current-buffer)))
4005     ;; Sort over trustworthiness.
4006     (mapcar
4007      (lambda (relation)
4008        (when (gnus-dependencies-add-header
4009               (make-full-mail-header-from-decoded-header
4010                gnus-reffed-article-number
4011                (nth 3 relation) "" (or (nth 4 relation) "")
4012                (nth 1 relation)
4013                (or (nth 2 relation) "") 0 0 "")
4014               gnus-newsgroup-dependencies nil)
4015          (push gnus-reffed-article-number gnus-newsgroup-limit)
4016          (push gnus-reffed-article-number gnus-newsgroup-sparse)
4017          (push (cons gnus-reffed-article-number gnus-sparse-mark)
4018                gnus-newsgroup-reads)
4019          (decf gnus-reffed-article-number)))
4020      (sort relations 'car-less-than-car))
4021     (gnus-message 7 "Making sparse threads...done")))
4022
4023 (defun gnus-build-old-threads ()
4024   ;; Look at all the articles that refer back to old articles, and
4025   ;; fetch the headers for the articles that aren't there.  This will
4026   ;; build complete threads - if the roots haven't been expired by the
4027   ;; server, that is.
4028   (let ((mail-parse-charset gnus-newsgroup-charset)
4029         id heads)
4030     (mapatoms
4031      (lambda (refs)
4032        (when (not (car (symbol-value refs)))
4033          (setq heads (cdr (symbol-value refs)))
4034          (while heads
4035            (if (memq (mail-header-number (caar heads))
4036                      gnus-newsgroup-dormant)
4037                (setq heads (cdr heads))
4038              (setq id (symbol-name refs))
4039              (while (and (setq id (gnus-build-get-header id))
4040                          (not (car (gnus-id-to-thread id)))))
4041              (setq heads nil)))))
4042      gnus-newsgroup-dependencies)))
4043
4044 (defsubst gnus-remove-odd-characters (string)
4045   "Translate STRING into something that doesn't contain weird characters."
4046   (mm-subst-char-in-string
4047    ?\r ?\-
4048    (mm-subst-char-in-string ?\n ?\- string t) t))
4049
4050 ;; This function has to be called with point after the article number
4051 ;; on the beginning of the line.
4052 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
4053   (let ((eol (point-at-eol))
4054         (buffer (current-buffer))
4055         header references in-reply-to)
4056
4057     ;; overview: [num subject from date id refs chars lines misc]
4058     (unwind-protect
4059         (progn
4060           (narrow-to-region (point) eol)
4061           (unless (eobp)
4062             (forward-char))
4063
4064           (setq header
4065                 (make-full-mail-header
4066                  number                         ; number
4067                  (nnheader-nov-field)           ; subject
4068                  (nnheader-nov-field)           ; from
4069                  (nnheader-nov-field)           ; date
4070                  (nnheader-nov-read-message-id) ; id
4071                  (nnheader-nov-field)           ; refs
4072                  (nnheader-nov-read-integer)    ; chars
4073                  (nnheader-nov-read-integer)    ; lines
4074                  (unless (eobp)
4075                    (if (looking-at "Xref: ")
4076                        (goto-char (match-end 0)))
4077                    (nnheader-nov-field))        ; Xref
4078                  (nnheader-nov-parse-extra))))  ; extra
4079
4080       (widen))
4081
4082     (when (and (string= references "")
4083                (setq in-reply-to (mail-header-extra header))
4084                (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4085       (mail-header-set-references
4086        header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4087
4088     (when gnus-alter-header-function
4089       (funcall gnus-alter-header-function header))
4090     (gnus-dependencies-add-header header dependencies force-new)))
4091
4092 (defun gnus-build-get-header (id)
4093   "Look through the buffer of NOV lines and find the header to ID.
4094 Enter this line into the dependencies hash table, and return
4095 the id of the parent article (if any)."
4096   (let ((deps gnus-newsgroup-dependencies)
4097         found header)
4098     (prog1
4099         (save-excursion
4100           (set-buffer nntp-server-buffer)
4101           (let ((case-fold-search nil))
4102             (goto-char (point-min))
4103             (while (and (not found)
4104                         (search-forward id nil t))
4105               (beginning-of-line)
4106               (setq found (looking-at
4107                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4108                                    (regexp-quote id))))
4109               (or found (beginning-of-line 2)))
4110             (when found
4111               (beginning-of-line)
4112               (and
4113                (setq header (gnus-nov-parse-line
4114                              (read (current-buffer)) deps))
4115                (gnus-parent-id (mail-header-references header))))))
4116       (when header
4117         (let ((number (mail-header-number header)))
4118           (push number gnus-newsgroup-limit)
4119           (push header gnus-newsgroup-headers)
4120           (if (memq number gnus-newsgroup-unselected)
4121               (progn
4122                 (setq gnus-newsgroup-unreads
4123                       (gnus-add-to-sorted-list gnus-newsgroup-unreads
4124                                                number))
4125                 (setq gnus-newsgroup-unselected
4126                       (delq number gnus-newsgroup-unselected)))
4127             (push number gnus-newsgroup-ancient)))))))
4128
4129 (defun gnus-build-all-threads ()
4130   "Read all the headers."
4131   (let ((gnus-summary-ignore-duplicates t)
4132         (mail-parse-charset gnus-newsgroup-charset)
4133         (dependencies gnus-newsgroup-dependencies)
4134         header article)
4135     (save-excursion
4136       (set-buffer nntp-server-buffer)
4137       (let ((case-fold-search nil))
4138         (goto-char (point-min))
4139         (while (not (eobp))
4140           (ignore-errors
4141             (setq article (read (current-buffer))
4142                   header (gnus-nov-parse-line article dependencies)))
4143           (when header
4144             (save-excursion
4145               (set-buffer gnus-summary-buffer)
4146               (push header gnus-newsgroup-headers)
4147               (if (memq (setq article (mail-header-number header))
4148                         gnus-newsgroup-unselected)
4149                   (progn
4150                     (setq gnus-newsgroup-unreads
4151                           (gnus-add-to-sorted-list
4152                            gnus-newsgroup-unreads article))
4153                     (setq gnus-newsgroup-unselected
4154                           (delq article gnus-newsgroup-unselected)))
4155                 (push article gnus-newsgroup-ancient)))
4156             (forward-line 1)))))))
4157
4158 (defun gnus-summary-update-article-line (article header)
4159   "Update the line for ARTICLE using HEADER."
4160   (let* ((id (mail-header-id header))
4161          (thread (gnus-id-to-thread id)))
4162     (unless thread
4163       (error "Article in no thread"))
4164     ;; Update the thread.
4165     (setcar thread header)
4166     (gnus-summary-goto-subject article)
4167     (let* ((datal (gnus-data-find-list article))
4168            (data (car datal))
4169            (buffer-read-only nil)
4170            (level (gnus-summary-thread-level)))
4171       (gnus-delete-line)
4172       (let ((inserted (- (point)
4173                          (progn
4174                            (gnus-summary-insert-line
4175                             header level nil
4176                             (memq article gnus-newsgroup-undownloaded)
4177                             (gnus-article-mark article)
4178                             (memq article gnus-newsgroup-replied)
4179                             (memq article gnus-newsgroup-expirable)
4180                             ;; Only insert the Subject string when it's different
4181                             ;; from the previous Subject string.
4182                             (if (and
4183                                  gnus-show-threads
4184                                  (gnus-subject-equal
4185                                   (condition-case ()
4186                                       (mail-header-subject
4187                                        (gnus-data-header
4188                                         (cadr
4189                                          (gnus-data-find-list
4190                                           article
4191                                           (gnus-data-list t)))))
4192                                     ;; Error on the side of excessive subjects.
4193                                     (error ""))
4194                                   (mail-header-subject header)))
4195                                 ""
4196                               (mail-header-subject header))
4197                             nil (cdr (assq article gnus-newsgroup-scored))
4198                             (memq article gnus-newsgroup-processable))
4199                            (point)))))
4200         (when (cdr datal)
4201           (gnus-data-update-list
4202            (cdr datal)
4203            (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4204
4205 (defun gnus-summary-update-article (article &optional iheader)
4206   "Update ARTICLE in the summary buffer."
4207   (set-buffer gnus-summary-buffer)
4208   (let* ((header (gnus-summary-article-header article))
4209          (id (mail-header-id header))
4210          (data (gnus-data-find article))
4211          (thread (gnus-id-to-thread id))
4212          (references (mail-header-references header))
4213          (parent
4214           (gnus-id-to-thread
4215            (or (gnus-parent-id
4216                 (when (and references
4217                            (not (equal "" references)))
4218                   references))
4219                "none")))
4220          (buffer-read-only nil)
4221          (old (car thread)))
4222     (when thread
4223       (unless iheader
4224         (setcar thread nil)
4225         (when parent
4226           (delq thread parent)))
4227       (if (gnus-summary-insert-subject id header)
4228           ;; Set the (possibly) new article number in the data structure.
4229           (gnus-data-set-number data (gnus-id-to-article id))
4230         (setcar thread old)
4231         nil))))
4232
4233 (defun gnus-rebuild-thread (id &optional line)
4234   "Rebuild the thread containing ID.
4235 If LINE, insert the rebuilt thread starting on line LINE."
4236   (let ((buffer-read-only nil)
4237         old-pos current thread data)
4238     (if (not gnus-show-threads)
4239         (setq thread (list (car (gnus-id-to-thread id))))
4240       ;; Get the thread this article is part of.
4241       (setq thread (gnus-remove-thread id)))
4242     (setq old-pos (point-at-bol))
4243     (setq current (save-excursion
4244                     (and (re-search-backward "[\r\n]" nil t)
4245                          (gnus-summary-article-number))))
4246     ;; If this is a gathered thread, we have to go some re-gathering.
4247     (when (stringp (car thread))
4248       (let ((subject (car thread))
4249             roots thr)
4250         (setq thread (cdr thread))
4251         (while thread
4252           (unless (memq (setq thr (gnus-id-to-thread
4253                                    (gnus-root-id
4254                                     (mail-header-id (caar thread)))))
4255                         roots)
4256             (push thr roots))
4257           (setq thread (cdr thread)))
4258         ;; We now have all (unique) roots.
4259         (if (= (length roots) 1)
4260             ;; All the loose roots are now one solid root.
4261             (setq thread (car roots))
4262           (setq thread (cons subject (gnus-sort-threads roots))))))
4263     (let (threads)
4264       ;; We then insert this thread into the summary buffer.
4265       (when line
4266         (goto-char (point-min))
4267         (forward-line (1- line)))
4268       (let (gnus-newsgroup-data gnus-newsgroup-threads)
4269         (if gnus-show-threads
4270             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4271           (gnus-summary-prepare-unthreaded thread))
4272         (setq data (nreverse gnus-newsgroup-data))
4273         (setq threads gnus-newsgroup-threads))
4274       ;; We splice the new data into the data structure.
4275       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
4276       ;;!!! then we want to insert at the beginning of the buffer.
4277       ;;!!! That happens to be true with Gnus now, but that may
4278       ;;!!! change in the future.  Perhaps.
4279       (gnus-data-enter-list
4280        (if line nil current) data (- (point) old-pos))
4281       (setq gnus-newsgroup-threads
4282             (nconc threads gnus-newsgroup-threads))
4283       (gnus-data-compute-positions))))
4284
4285 (defun gnus-number-to-header (number)
4286   "Return the header for article NUMBER."
4287   (let ((headers gnus-newsgroup-headers))
4288     (while (and headers
4289                 (not (= number (mail-header-number (car headers)))))
4290       (pop headers))
4291     (when headers
4292       (car headers))))
4293
4294 (defun gnus-parent-headers (in-headers &optional generation)
4295   "Return the headers of the GENERATIONeth parent of HEADERS."
4296   (unless generation
4297     (setq generation 1))
4298   (let ((parent t)
4299         (headers in-headers)
4300         references)
4301     (while (and parent
4302                 (not (zerop generation))
4303                 (setq references (mail-header-references headers)))
4304       (setq headers (if (and references
4305                              (setq parent (gnus-parent-id references)))
4306                         (car (gnus-id-to-thread parent))
4307                       nil))
4308       (decf generation))
4309     (and (not (eq headers in-headers))
4310          headers)))
4311
4312 (defun gnus-id-to-thread (id)
4313   "Return the (sub-)thread where ID appears."
4314   (gnus-gethash id gnus-newsgroup-dependencies))
4315
4316 (defun gnus-id-to-article (id)
4317   "Return the article number of ID."
4318   (let ((thread (gnus-id-to-thread id)))
4319     (when (and thread
4320                (car thread))
4321       (mail-header-number (car thread)))))
4322
4323 (defun gnus-id-to-header (id)
4324   "Return the article headers of ID."
4325   (car (gnus-id-to-thread id)))
4326
4327 (defun gnus-article-displayed-root-p (article)
4328   "Say whether ARTICLE is a root(ish) article."
4329   (let ((level (gnus-summary-thread-level article))
4330         (refs (mail-header-references  (gnus-summary-article-header article)))
4331         particle)
4332     (cond
4333      ((null level) nil)
4334      ((zerop level) t)
4335      ((null refs) t)
4336      ((null (gnus-parent-id refs)) t)
4337      ((and (= 1 level)
4338            (null (setq particle (gnus-id-to-article
4339                                  (gnus-parent-id refs))))
4340            (null (gnus-summary-thread-level particle)))))))
4341
4342 (defun gnus-root-id (id)
4343   "Return the id of the root of the thread where ID appears."
4344   (let (last-id prev)
4345     (while (and id (setq prev (car (gnus-id-to-thread id))))
4346       (setq last-id id
4347             id (gnus-parent-id (mail-header-references prev))))
4348     last-id))
4349
4350 (defun gnus-articles-in-thread (thread)
4351   "Return the list of articles in THREAD."
4352   (cons (mail-header-number (car thread))
4353         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4354
4355 (defun gnus-remove-thread (id &optional dont-remove)
4356   "Remove the thread that has ID in it."
4357   (let (headers thread last-id)
4358     ;; First go up in this thread until we find the root.
4359     (setq last-id (gnus-root-id id)
4360           headers (message-flatten-list (gnus-id-to-thread last-id)))
4361     ;; We have now found the real root of this thread.  It might have
4362     ;; been gathered into some loose thread, so we have to search
4363     ;; through the threads to find the thread we wanted.
4364     (let ((threads gnus-newsgroup-threads)
4365           sub)
4366       (while threads
4367         (setq sub (car threads))
4368         (if (stringp (car sub))
4369             ;; This is a gathered thread, so we look at the roots
4370             ;; below it to find whether this article is in this
4371             ;; gathered root.
4372             (progn
4373               (setq sub (cdr sub))
4374               (while sub
4375                 (when (member (caar sub) headers)
4376                   (setq thread (car threads)
4377                         threads nil
4378                         sub nil))
4379                 (setq sub (cdr sub))))
4380           ;; It's an ordinary thread, so we check it.
4381           (when (eq (car sub) (car headers))
4382             (setq thread sub
4383                   threads nil)))
4384         (setq threads (cdr threads)))
4385       ;; If this article is in no thread, then it's a root.
4386       (if thread
4387           (unless dont-remove
4388             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4389         (setq thread (gnus-id-to-thread last-id)))
4390       (when thread
4391         (prog1
4392             thread                      ; We return this thread.
4393           (unless dont-remove
4394             (if (stringp (car thread))
4395                 (progn
4396                   ;; If we use dummy roots, then we have to remove the
4397                   ;; dummy root as well.
4398                   (when (eq gnus-summary-make-false-root 'dummy)
4399                     ;; We go to the dummy root by going to
4400                     ;; the first sub-"thread", and then one line up.
4401                     (gnus-summary-goto-article
4402                      (mail-header-number (caadr thread)))
4403                     (forward-line -1)
4404                     (gnus-delete-line)
4405                     (gnus-data-compute-positions))
4406                   (setq thread (cdr thread))
4407                   (while thread
4408                     (gnus-remove-thread-1 (car thread))
4409                     (setq thread (cdr thread))))
4410               (gnus-remove-thread-1 thread))))))))
4411
4412 (defun gnus-remove-thread-1 (thread)
4413   "Remove the thread THREAD recursively."
4414   (let ((number (mail-header-number (pop thread)))
4415         d)
4416     (setq thread (reverse thread))
4417     (while thread
4418       (gnus-remove-thread-1 (pop thread)))
4419     (when (setq d (gnus-data-find number))
4420       (goto-char (gnus-data-pos d))
4421       (gnus-summary-show-thread)
4422       (gnus-data-remove
4423        number
4424        (- (point-at-bol)
4425           (prog1
4426               (1+ (point-at-eol))
4427             (gnus-delete-line)))))))
4428
4429 (defun gnus-sort-threads-1 (threads func)
4430   (sort (mapcar (lambda (thread)
4431                   (cons (car thread)
4432                         (and (cdr thread)
4433                              (gnus-sort-threads-1 (cdr thread) func))))
4434                 threads) func))
4435
4436 (defun gnus-sort-threads (threads)
4437   "Sort THREADS."
4438   (if (not gnus-thread-sort-functions)
4439       threads
4440     (gnus-message 8 "Sorting threads...")
4441     (let ((max-lisp-eval-depth 5000))
4442       (prog1 (gnus-sort-threads-1
4443          threads
4444          (gnus-make-sort-function gnus-thread-sort-functions))
4445         (gnus-message 8 "Sorting threads...done")))))
4446
4447 (defun gnus-sort-articles (articles)
4448   "Sort ARTICLES."
4449   (when gnus-article-sort-functions
4450     (gnus-message 7 "Sorting articles...")
4451     (prog1
4452         (setq gnus-newsgroup-headers
4453               (sort articles (gnus-make-sort-function
4454                               gnus-article-sort-functions)))
4455       (gnus-message 7 "Sorting articles...done"))))
4456
4457 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4458 (defmacro gnus-thread-header (thread)
4459   "Return header of first article in THREAD.
4460 Note that THREAD must never, ever be anything else than a variable -
4461 using some other form will lead to serious barfage."
4462   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4463   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4464   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4465         (vector thread) 2))
4466
4467 (defsubst gnus-article-sort-by-number (h1 h2)
4468   "Sort articles by article number."
4469   (< (mail-header-number h1)
4470      (mail-header-number h2)))
4471
4472 (defun gnus-thread-sort-by-number (h1 h2)
4473   "Sort threads by root article number."
4474   (gnus-article-sort-by-number
4475    (gnus-thread-header h1) (gnus-thread-header h2)))
4476
4477 (defsubst gnus-article-sort-by-random (h1 h2)
4478   "Sort articles by article number."
4479   (zerop (random 2)))
4480
4481 (defun gnus-thread-sort-by-random (h1 h2)
4482   "Sort threads by root article number."
4483   (gnus-article-sort-by-random
4484    (gnus-thread-header h1) (gnus-thread-header h2)))
4485
4486 (defsubst gnus-article-sort-by-lines (h1 h2)
4487   "Sort articles by article Lines header."
4488   (< (mail-header-lines h1)
4489      (mail-header-lines h2)))
4490
4491 (defun gnus-thread-sort-by-lines (h1 h2)
4492   "Sort threads by root article Lines header."
4493   (gnus-article-sort-by-lines
4494    (gnus-thread-header h1) (gnus-thread-header h2)))
4495
4496 (defsubst gnus-article-sort-by-chars (h1 h2)
4497   "Sort articles by octet length."
4498   (< (mail-header-chars h1)
4499      (mail-header-chars h2)))
4500
4501 (defun gnus-thread-sort-by-chars (h1 h2)
4502   "Sort threads by root article octet length."
4503   (gnus-article-sort-by-chars
4504    (gnus-thread-header h1) (gnus-thread-header h2)))
4505
4506 (defsubst gnus-article-sort-by-author (h1 h2)
4507   "Sort articles by root author."
4508   (string-lessp
4509    (let ((addr (car (mime-entity-read-field h1 'From))))
4510      (or (std11-full-name-string addr)
4511          (std11-address-string addr)
4512          ""))
4513    (let ((addr (car (mime-entity-read-field h2 'From))))
4514      (or (std11-full-name-string addr)
4515          (std11-address-string addr)
4516          ""))
4517    ))
4518
4519 (defun gnus-thread-sort-by-author (h1 h2)
4520   "Sort threads by root author."
4521   (gnus-article-sort-by-author
4522    (gnus-thread-header h1)  (gnus-thread-header h2)))
4523
4524 (defsubst gnus-article-sort-by-subject (h1 h2)
4525   "Sort articles by root subject."
4526   (string-lessp
4527    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4528    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4529
4530 (defun gnus-thread-sort-by-subject (h1 h2)
4531   "Sort threads by root subject."
4532   (gnus-article-sort-by-subject
4533    (gnus-thread-header h1) (gnus-thread-header h2)))
4534
4535 (defsubst gnus-article-sort-by-date (h1 h2)
4536   "Sort articles by root article date."
4537   (time-less-p
4538    (gnus-date-get-time (mail-header-date h1))
4539    (gnus-date-get-time (mail-header-date h2))))
4540
4541 (defun gnus-thread-sort-by-date (h1 h2)
4542   "Sort threads by root article date."
4543   (gnus-article-sort-by-date
4544    (gnus-thread-header h1) (gnus-thread-header h2)))
4545
4546 (defsubst gnus-article-sort-by-score (h1 h2)
4547   "Sort articles by root article score.
4548 Unscored articles will be counted as having a score of zero."
4549   (> (or (cdr (assq (mail-header-number h1)
4550                     gnus-newsgroup-scored))
4551          gnus-summary-default-score 0)
4552      (or (cdr (assq (mail-header-number h2)
4553                     gnus-newsgroup-scored))
4554          gnus-summary-default-score 0)))
4555
4556 (defun gnus-thread-sort-by-score (h1 h2)
4557   "Sort threads by root article score."
4558   (gnus-article-sort-by-score
4559    (gnus-thread-header h1) (gnus-thread-header h2)))
4560
4561 (defun gnus-thread-sort-by-total-score (h1 h2)
4562   "Sort threads by the sum of all scores in the thread.
4563 Unscored articles will be counted as having a score of zero."
4564   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4565
4566 (defun gnus-thread-total-score (thread)
4567   ;; This function find the total score of THREAD.
4568   (cond
4569    ((null thread)
4570     0)
4571    ((consp thread)
4572     (if (stringp (car thread))
4573         (apply gnus-thread-score-function 0
4574                (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4575       (gnus-thread-total-score-1 thread)))
4576    (t
4577     (gnus-thread-total-score-1 (list thread)))))
4578
4579 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4580   "Sort threads such that the thread with the most recently arrived article comes first."
4581   (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4582
4583 (defun gnus-thread-highest-number (thread)
4584   "Return the highest article number in THREAD."
4585   (apply 'max (mapcar (lambda (header)
4586                         (mail-header-number header))
4587                       (message-flatten-list thread))))
4588
4589 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4590   "Sort threads such that the thread with the most recently dated article comes first."
4591   (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4592
4593 (defun gnus-thread-latest-date (thread)
4594   "Return the highest article date in THREAD."
4595   (let ((previous-time 0))
4596     (apply 'max
4597            (mapcar
4598             (lambda (header)
4599               (setq previous-time
4600                     (condition-case ()
4601                         (time-to-seconds (mail-header-parse-date
4602                                           (mail-header-date header)))
4603                       (error previous-time))))
4604             (sort
4605              (message-flatten-list thread)
4606              (lambda (h1 h2)
4607                (< (mail-header-number h1)
4608                   (mail-header-number h2))))))))
4609
4610 (defun gnus-thread-total-score-1 (root)
4611   ;; This function find the total score of the thread below ROOT.
4612   (setq root (car root))
4613   (apply gnus-thread-score-function
4614          (or (append
4615               (mapcar 'gnus-thread-total-score
4616                       (cdr (gnus-id-to-thread (mail-header-id root))))
4617               (when (> (mail-header-number root) 0)
4618                 (list (or (cdr (assq (mail-header-number root)
4619                                      gnus-newsgroup-scored))
4620                           gnus-summary-default-score 0))))
4621              (list gnus-summary-default-score)
4622              '(0))))
4623
4624 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
4625 (defvar gnus-tmp-prev-subject nil)
4626 (defvar gnus-tmp-false-parent nil)
4627 (defvar gnus-tmp-root-expunged nil)
4628 (defvar gnus-tmp-dummy-line nil)
4629
4630 (eval-when-compile (defvar gnus-tmp-header))
4631 (defun gnus-extra-header (type &optional header)
4632   "Return the extra header of TYPE."
4633   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
4634       ""))
4635
4636 (defvar gnus-tmp-thread-tree-header-string "")
4637
4638 (defcustom gnus-sum-thread-tree-root "> "
4639   "With %B spec, used for the root of a thread.
4640 If nil, use subject instead."
4641   :type '(radio (const :format "%v  " nil) (string :size 0))
4642   :group 'gnus-thread)
4643 (defcustom gnus-sum-thread-tree-false-root "> "
4644   "With %B spec, used for a false root of a thread.
4645 If nil, use subject instead."
4646   :type '(radio (const :format "%v  " nil) (string :size 0))
4647   :group 'gnus-thread)
4648 (defcustom gnus-sum-thread-tree-single-indent ""
4649   "With %B spec, used for a thread with just one message.
4650 If nil, use subject instead."
4651   :type '(radio (const :format "%v  " nil) (string :size 0))
4652   :group 'gnus-thread)
4653 (defcustom gnus-sum-thread-tree-vertical "| "
4654   "With %B spec, used for drawing a vertical line."
4655   :type 'string
4656   :group 'gnus-thread)
4657 (defcustom gnus-sum-thread-tree-indent "  "
4658   "With %B spec, used for indenting."
4659   :type 'string
4660   :group 'gnus-thread)
4661 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
4662   "With %B spec, used for a leaf with brothers."
4663   :type 'string
4664   :group 'gnus-thread)
4665 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
4666   "With %B spec, used for a leaf without brothers."
4667   :type 'string
4668   :group 'gnus-thread)
4669
4670 (defun gnus-summary-prepare-threads (threads)
4671   "Prepare summary buffer from THREADS and indentation LEVEL.
4672 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
4673 or a straight list of headers."
4674   (gnus-message 7 "Generating summary...")
4675
4676   (setq gnus-newsgroup-threads threads)
4677   (beginning-of-line)
4678
4679   (let ((gnus-tmp-level 0)
4680         (default-score (or gnus-summary-default-score 0))
4681         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
4682         (building-line-count gnus-summary-display-while-building)
4683         (building-count (integerp gnus-summary-display-while-building))
4684         thread number subject stack state gnus-tmp-gathered beg-match
4685         new-roots gnus-tmp-new-adopts thread-end simp-subject
4686         gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
4687         gnus-tmp-replied gnus-tmp-subject-or-nil
4688         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
4689         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
4690         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
4691         tree-stack)
4692
4693     (setq gnus-tmp-prev-subject nil
4694           gnus-tmp-thread-tree-header-string "")
4695
4696     (if (vectorp (car threads))
4697         ;; If this is a straight (sic) list of headers, then a
4698         ;; threaded summary display isn't required, so we just create
4699         ;; an unthreaded one.
4700         (gnus-summary-prepare-unthreaded threads)
4701
4702       ;; Do the threaded display.
4703
4704       (if gnus-summary-display-while-building
4705           (switch-to-buffer (buffer-name)))
4706       (while (or threads stack gnus-tmp-new-adopts new-roots)
4707
4708         (if (and (= gnus-tmp-level 0)
4709                  (or (not stack)
4710                      (= (caar stack) 0))
4711                  (not gnus-tmp-false-parent)
4712                  (or gnus-tmp-new-adopts new-roots))
4713             (if gnus-tmp-new-adopts
4714                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
4715                       thread (list (car gnus-tmp-new-adopts))
4716                       gnus-tmp-header (caar thread)
4717                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
4718               (when new-roots
4719                 (setq thread (list (car new-roots))
4720                       gnus-tmp-header (caar thread)
4721                       new-roots (cdr new-roots))))
4722
4723           (if threads
4724               ;; If there are some threads, we do them before the
4725               ;; threads on the stack.
4726               (setq thread threads
4727                     gnus-tmp-header (caar thread))
4728             ;; There were no current threads, so we pop something off
4729             ;; the stack.
4730             (setq state (car stack)
4731                   gnus-tmp-level (car state)
4732                   tree-stack (cadr state)
4733                   thread (caddr state)
4734                   stack (cdr stack)
4735                   gnus-tmp-header (caar thread))))
4736
4737         (setq gnus-tmp-false-parent nil)
4738         (setq gnus-tmp-root-expunged nil)
4739         (setq thread-end nil)
4740
4741         (if (stringp gnus-tmp-header)
4742             ;; The header is a dummy root.
4743             (cond
4744              ((eq gnus-summary-make-false-root 'adopt)
4745               ;; We let the first article adopt the rest.
4746               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
4747                                                (cddar thread)))
4748               (setq gnus-tmp-gathered
4749                     (nconc (mapcar
4750                             (lambda (h) (mail-header-number (car h)))
4751                             (cddar thread))
4752                            gnus-tmp-gathered))
4753               (setq thread (cons (list (caar thread)
4754                                        (cadar thread))
4755                                  (cdr thread)))
4756               (setq gnus-tmp-level -1
4757                     gnus-tmp-false-parent t))
4758              ((eq gnus-summary-make-false-root 'empty)
4759               ;; We print adopted articles with empty subject fields.
4760               (setq gnus-tmp-gathered
4761                     (nconc (mapcar
4762                             (lambda (h) (mail-header-number (car h)))
4763                             (cddar thread))
4764                            gnus-tmp-gathered))
4765               (setq gnus-tmp-level -1))
4766              ((eq gnus-summary-make-false-root 'dummy)
4767               ;; We remember that we probably want to output a dummy
4768               ;; root.
4769               (setq gnus-tmp-dummy-line gnus-tmp-header)
4770               (setq gnus-tmp-prev-subject gnus-tmp-header))
4771              (t
4772               ;; We do not make a root for the gathered
4773               ;; sub-threads at all.
4774               (setq gnus-tmp-level -1)))
4775
4776           (setq number (mail-header-number gnus-tmp-header)
4777                 subject (mail-header-subject gnus-tmp-header)
4778                 simp-subject (gnus-simplify-subject-fully subject))
4779
4780           (cond
4781            ;; If the thread has changed subject, we might want to make
4782            ;; this subthread into a root.
4783            ((and (null gnus-thread-ignore-subject)
4784                  (not (zerop gnus-tmp-level))
4785                  gnus-tmp-prev-subject
4786                  (not (string= gnus-tmp-prev-subject simp-subject)))
4787             (setq new-roots (nconc new-roots (list (car thread)))
4788                   thread-end t
4789                   gnus-tmp-header nil))
4790            ;; If the article lies outside the current limit,
4791            ;; then we do not display it.
4792            ((not (memq number gnus-newsgroup-limit))
4793             (setq gnus-tmp-gathered
4794                   (nconc (mapcar
4795                           (lambda (h) (mail-header-number (car h)))
4796                           (cdar thread))
4797                          gnus-tmp-gathered))
4798             (setq gnus-tmp-new-adopts (if (cdar thread)
4799                                           (append gnus-tmp-new-adopts
4800                                                   (cdar thread))
4801                                         gnus-tmp-new-adopts)
4802                   thread-end t
4803                   gnus-tmp-header nil)
4804             (when (zerop gnus-tmp-level)
4805               (setq gnus-tmp-root-expunged t)))
4806            ;; Perhaps this article is to be marked as read?
4807            ((and gnus-summary-mark-below
4808                  (< (or (cdr (assq number gnus-newsgroup-scored))
4809                         default-score)
4810                     gnus-summary-mark-below)
4811                  ;; Don't touch sparse articles.
4812                  (not (gnus-summary-article-sparse-p number))
4813                  (not (gnus-summary-article-ancient-p number)))
4814             (setq gnus-newsgroup-unreads
4815                   (delq number gnus-newsgroup-unreads))
4816             (if gnus-newsgroup-auto-expire
4817                 (setq gnus-newsgroup-expirable
4818                       (gnus-add-to-sorted-list
4819                        gnus-newsgroup-expirable number))
4820               (push (cons number gnus-low-score-mark)
4821                     gnus-newsgroup-reads))))
4822
4823           (when gnus-tmp-header
4824             ;; We may have an old dummy line to output before this
4825             ;; article.
4826             (when (and gnus-tmp-dummy-line
4827                        (gnus-subject-equal
4828                         gnus-tmp-dummy-line
4829                         (mail-header-subject gnus-tmp-header)))
4830               (gnus-summary-insert-dummy-line
4831                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
4832               (setq gnus-tmp-dummy-line nil))
4833
4834             ;; Compute the mark.
4835             (setq gnus-tmp-unread (gnus-article-mark number))
4836
4837             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
4838                                   gnus-tmp-header gnus-tmp-level)
4839                   gnus-newsgroup-data)
4840
4841             ;; Actually insert the line.
4842             (setq
4843              gnus-tmp-subject-or-nil
4844              (cond
4845               ((and gnus-thread-ignore-subject
4846                     gnus-tmp-prev-subject
4847                     (not (string= gnus-tmp-prev-subject simp-subject)))
4848                subject)
4849               ((zerop gnus-tmp-level)
4850                (if (and (eq gnus-summary-make-false-root 'empty)
4851                         (memq number gnus-tmp-gathered)
4852                         gnus-tmp-prev-subject
4853                         (string= gnus-tmp-prev-subject simp-subject))
4854                    gnus-summary-same-subject
4855                  subject))
4856               (t gnus-summary-same-subject)))
4857             (if (and (eq gnus-summary-make-false-root 'adopt)
4858                      (= gnus-tmp-level 1)
4859                      (memq number gnus-tmp-gathered))
4860                 (setq gnus-tmp-opening-bracket ?\<
4861                       gnus-tmp-closing-bracket ?\>)
4862               (setq gnus-tmp-opening-bracket ?\[
4863                     gnus-tmp-closing-bracket ?\]))
4864             (setq
4865              gnus-tmp-indentation
4866              (aref gnus-thread-indent-array gnus-tmp-level)
4867              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4868              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4869                                 gnus-summary-default-score 0)
4870              gnus-tmp-score-char
4871              (if (or (null gnus-summary-default-score)
4872                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4873                          gnus-summary-zcore-fuzz))
4874                  ?\ ;;;Whitespace
4875                (if (< gnus-tmp-score gnus-summary-default-score)
4876                    gnus-score-below-mark gnus-score-over-mark))
4877              gnus-tmp-replied
4878              (cond ((memq number gnus-newsgroup-processable)
4879                     gnus-process-mark)
4880                    ((memq number gnus-newsgroup-cached)
4881                     gnus-cached-mark)
4882                    ((memq number gnus-newsgroup-replied)
4883                     gnus-replied-mark)
4884                    ((memq number gnus-newsgroup-forwarded)
4885                     gnus-forwarded-mark)
4886                    ((memq number gnus-newsgroup-saved)
4887                     gnus-saved-mark)
4888                    ((memq number gnus-newsgroup-recent)
4889                     gnus-recent-mark)
4890                    ((memq number gnus-newsgroup-unseen)
4891                     gnus-unseen-mark)
4892                    (t gnus-no-mark))
4893              gnus-tmp-downloaded
4894              (cond ((memq number gnus-newsgroup-undownloaded)
4895                     gnus-undownloaded-mark)
4896                    (gnus-newsgroup-agentized
4897                     gnus-downloaded-mark)
4898                    (t
4899                     gnus-no-mark))
4900              gnus-tmp-from (mail-header-from gnus-tmp-header)
4901              gnus-tmp-name
4902              (cond
4903               ((string-match "<[^>]+> *$" gnus-tmp-from)
4904                (setq beg-match (match-beginning 0))
4905                (or (and (string-match "^\".+\"" gnus-tmp-from)
4906                         (substring gnus-tmp-from 1 (1- (match-end 0))))
4907                    (substring gnus-tmp-from 0 beg-match)))
4908               ((string-match "(.+)" gnus-tmp-from)
4909                (substring gnus-tmp-from
4910                           (1+ (match-beginning 0)) (1- (match-end 0))))
4911               (t gnus-tmp-from))
4912
4913              ;; Do the %B string
4914              gnus-tmp-thread-tree-header-string
4915              (cond
4916               ((not gnus-show-threads) "")
4917               ((zerop gnus-tmp-level)
4918                (cond ((cdar thread)
4919                       (or gnus-sum-thread-tree-root subject))
4920                      (gnus-tmp-new-adopts
4921                       (or gnus-sum-thread-tree-false-root subject))
4922                      (t
4923                       (or gnus-sum-thread-tree-single-indent subject))))
4924               (t
4925                (concat (apply 'concat
4926                               (mapcar (lambda (item)
4927                                         (if (= item 1)
4928                                             gnus-sum-thread-tree-vertical
4929                                           gnus-sum-thread-tree-indent))
4930                                       (cdr (reverse tree-stack))))
4931                        (if (nth 1 thread)
4932                            gnus-sum-thread-tree-leaf-with-other
4933                          gnus-sum-thread-tree-single-leaf)))))
4934             (when (string= gnus-tmp-name "")
4935               (setq gnus-tmp-name gnus-tmp-from))
4936             (unless (numberp gnus-tmp-lines)
4937               (setq gnus-tmp-lines -1))
4938             (if (= gnus-tmp-lines -1)
4939                 (setq gnus-tmp-lines "?")
4940               (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
4941               (gnus-put-text-property
4942              (point)
4943              (progn (eval gnus-summary-line-format-spec) (point))
4944                'gnus-number number)
4945             (when gnus-visual-p
4946               (forward-line -1)
4947               (gnus-run-hooks 'gnus-summary-update-hook)
4948               (forward-line 1))
4949
4950             (setq gnus-tmp-prev-subject simp-subject)))
4951
4952         (when (nth 1 thread)
4953           (push (list (max 0 gnus-tmp-level)
4954                       (copy-sequence tree-stack)
4955                       (nthcdr 1 thread))
4956                 stack))
4957         (push (if (nth 1 thread) 1 0) tree-stack)
4958         (incf gnus-tmp-level)
4959         (setq threads (if thread-end nil (cdar thread)))
4960         (if gnus-summary-display-while-building
4961             (if building-count
4962                 (progn
4963                   ;; use a set frequency
4964                   (setq building-line-count (1- building-line-count))
4965                   (when (= building-line-count 0)
4966                     (sit-for 0)
4967                     (setq building-line-count
4968                           gnus-summary-display-while-building)))
4969               ;; always
4970               (sit-for 0)))
4971         (unless threads
4972           (setq gnus-tmp-level 0)))))
4973   (gnus-message 7 "Generating summary...done"))
4974
4975 (defun gnus-summary-prepare-unthreaded (headers)
4976   "Generate an unthreaded summary buffer based on HEADERS."
4977   (let (header number mark)
4978
4979     (beginning-of-line)
4980
4981     (while headers
4982       ;; We may have to root out some bad articles...
4983       (when (memq (setq number (mail-header-number
4984                                 (setq header (pop headers))))
4985                   gnus-newsgroup-limit)
4986         ;; Mark article as read when it has a low score.
4987         (when (and gnus-summary-mark-below
4988                    (< (or (cdr (assq number gnus-newsgroup-scored))
4989                           gnus-summary-default-score 0)
4990                       gnus-summary-mark-below)
4991                    (not (gnus-summary-article-ancient-p number)))
4992           (setq gnus-newsgroup-unreads
4993                 (delq number gnus-newsgroup-unreads))
4994           (if gnus-newsgroup-auto-expire
4995               (push number gnus-newsgroup-expirable)
4996             (push (cons number gnus-low-score-mark)
4997                   gnus-newsgroup-reads)))
4998
4999         (setq mark (gnus-article-mark number))
5000         (push (gnus-data-make number mark (1+ (point)) header 0)
5001               gnus-newsgroup-data)
5002         (gnus-summary-insert-line
5003          header 0 number
5004          (memq number gnus-newsgroup-undownloaded)
5005          mark (memq number gnus-newsgroup-replied)
5006          (memq number gnus-newsgroup-expirable)
5007          (mail-header-subject header) nil
5008          (cdr (assq number gnus-newsgroup-scored))
5009          (memq number gnus-newsgroup-processable))))))
5010
5011 (defun gnus-summary-remove-list-identifiers ()
5012   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
5013   (let ((regexp (if (consp gnus-list-identifiers)
5014                     (mapconcat 'identity gnus-list-identifiers " *\\|")
5015                   gnus-list-identifiers))
5016         changed subject)
5017     (when regexp
5018       (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
5019       (dolist (header gnus-newsgroup-headers)
5020         (setq subject (mail-header-subject header)
5021               changed nil)
5022         (while (string-match regexp subject)
5023           (setq subject
5024                 (concat (substring subject 0 (match-beginning 1))
5025                         (substring subject (match-end 0)))
5026                 changed t))
5027         (when changed
5028           (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
5029             (setq subject
5030                   (concat (substring subject 0 (match-beginning 1))
5031                           (substring subject (match-end 1)))))
5032           (mail-header-set-subject header subject))))))
5033
5034 (defun gnus-fetch-headers (articles)
5035   "Fetch headers of ARTICLES."
5036   (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
5037     (gnus-message 5 "Fetching headers for %s..." name)
5038     (prog1
5039         (if (eq 'nov
5040                 (setq gnus-headers-retrieved-by
5041                       (gnus-retrieve-headers
5042                        articles gnus-newsgroup-name
5043                        ;; We might want to fetch old headers, but
5044                        ;; not if there is only 1 article.
5045                        (and (or (and
5046                                  (not (eq gnus-fetch-old-headers 'some))
5047                                  (not (numberp gnus-fetch-old-headers)))
5048                                 (> (length articles) 1))
5049                             gnus-fetch-old-headers))))
5050             (gnus-get-newsgroup-headers-xover
5051              articles nil nil gnus-newsgroup-name t)
5052           (gnus-get-newsgroup-headers))
5053       (gnus-message 5 "Fetching headers for %s...done" name))))
5054
5055 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5056   "Select newsgroup GROUP.
5057 If READ-ALL is non-nil, all articles in the group are selected.
5058 If SELECT-ARTICLES, only select those articles from GROUP."
5059   (let* ((entry (gnus-group-entry group))
5060          ;;!!! Dirty hack; should be removed.
5061          (gnus-summary-ignore-duplicates
5062           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5063               t
5064             gnus-summary-ignore-duplicates))
5065          (info (nth 2 entry))
5066          articles fetched-articles cached)
5067
5068     (unless (gnus-check-server
5069              (set (make-local-variable 'gnus-current-select-method)
5070                   (gnus-find-method-for-group group)))
5071       (error "Couldn't open server"))
5072
5073     (or (and entry (not (eq (car entry) t))) ; Either it's active...
5074         (gnus-activate-group group)     ; Or we can activate it...
5075         (progn                          ; Or we bug out.
5076           (when (equal major-mode 'gnus-summary-mode)
5077             (gnus-kill-buffer (current-buffer)))
5078           (error "Couldn't activate group %s: %s"
5079                  group (gnus-status-message group))))
5080
5081     (unless (gnus-request-group group t)
5082       (when (equal major-mode 'gnus-summary-mode)
5083         (gnus-kill-buffer (current-buffer)))
5084       (error "Couldn't request group %s: %s"
5085              group (gnus-status-message group)))
5086
5087     (when gnus-agent
5088       (gnus-agent-possibly-alter-active group (gnus-active group) info)
5089       
5090       (setq gnus-summary-use-undownloaded-faces
5091             (gnus-agent-find-parameter
5092              group
5093              'agent-enable-undownloaded-faces)))
5094
5095     (setq gnus-newsgroup-name group
5096           gnus-newsgroup-unselected nil
5097           gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5098
5099     (let ((display (gnus-group-find-parameter group 'display)))
5100       (setq gnus-newsgroup-display
5101             (cond
5102              ((not (zerop (or (car-safe read-all) 0)))
5103               ;; The user entered the group with C-u SPC/RET, let's show
5104               ;; all articles.
5105               'gnus-not-ignore)
5106              ((eq display 'all)
5107               'gnus-not-ignore)
5108              ((arrayp display)
5109               (gnus-summary-display-make-predicate (mapcar 'identity display)))
5110              ((numberp display)
5111               ;; The following is probably the "correct" solution, but
5112               ;; it makes Gnus fetch all headers and then limit the
5113               ;; articles (which is slow), so instead we hack the
5114               ;; select-articles parameter instead. -- Simon Josefsson
5115               ;; <jas@kth.se>
5116               ;;
5117               ;; (gnus-byte-compile
5118               ;;  `(lambda () (> number ,(- (cdr (gnus-active group))
5119               ;;                         display)))))
5120               (setq select-articles
5121                     (gnus-uncompress-range
5122                      (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5123                              (if (> tmp 0)
5124                                  tmp
5125                                1))
5126                            (cdr (gnus-active group)))))
5127               nil)
5128              (t
5129               nil))))
5130
5131     (gnus-summary-setup-default-charset)
5132
5133     ;; Kludge to avoid having cached articles nixed out in virtual groups.
5134     (when (gnus-virtual-group-p group)
5135       (setq cached gnus-newsgroup-cached))
5136
5137     (setq gnus-newsgroup-unreads
5138           (gnus-sorted-ndifference
5139            (gnus-sorted-ndifference gnus-newsgroup-unreads
5140                                     gnus-newsgroup-marked)
5141            gnus-newsgroup-dormant))
5142
5143     (setq gnus-newsgroup-processable nil)
5144
5145     (gnus-update-read-articles group gnus-newsgroup-unreads)
5146
5147     ;; Adjust and set lists of article marks.
5148     (when info
5149       (gnus-adjust-marked-articles info))
5150     (if (setq articles select-articles)
5151         (setq gnus-newsgroup-unselected
5152               (gnus-sorted-difference gnus-newsgroup-unreads articles))
5153       (setq articles (gnus-articles-to-read group read-all)))
5154
5155     (cond
5156      ((null articles)
5157       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5158       'quit)
5159      ((eq articles 0) nil)
5160      (t
5161       ;; Init the dependencies hash table.
5162       (setq gnus-newsgroup-dependencies
5163             (gnus-make-hashtable (length articles)))
5164       (gnus-set-global-variables)
5165       ;; Retrieve the headers and read them in.
5166
5167       (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5168
5169       ;; Kludge to avoid having cached articles nixed out in virtual groups.
5170       (when cached
5171         (setq gnus-newsgroup-cached cached))
5172
5173       ;; Suppress duplicates?
5174       (when gnus-suppress-duplicates
5175         (gnus-dup-suppress-articles))
5176
5177       ;; Set the initial limit.
5178       (setq gnus-newsgroup-limit (copy-sequence articles))
5179       ;; Remove canceled articles from the list of unread articles.
5180       (setq fetched-articles
5181             (mapcar (lambda (headers) (mail-header-number headers))
5182                     gnus-newsgroup-headers))
5183       (setq gnus-newsgroup-articles fetched-articles)
5184       (setq gnus-newsgroup-unreads
5185             (gnus-sorted-nintersection
5186              gnus-newsgroup-unreads fetched-articles))
5187       (gnus-compute-unseen-list)
5188
5189       ;; Removed marked articles that do not exist.
5190       (gnus-update-missing-marks
5191        (gnus-sorted-difference articles fetched-articles))
5192       ;; We might want to build some more threads first.
5193       (when (and gnus-fetch-old-headers
5194                  (eq gnus-headers-retrieved-by 'nov))
5195         (if (eq gnus-fetch-old-headers 'invisible)
5196             (gnus-build-all-threads)
5197           (gnus-build-old-threads)))
5198       ;; Let the Gnus agent mark articles as read.
5199       (when gnus-agent
5200         (gnus-agent-get-undownloaded-list))
5201       ;; Remove list identifiers from subject
5202       (when gnus-list-identifiers
5203         (gnus-summary-remove-list-identifiers))
5204       ;; Check whether auto-expire is to be done in this group.
5205       (setq gnus-newsgroup-auto-expire
5206             (gnus-group-auto-expirable-p group))
5207       ;; Set up the article buffer now, if necessary.
5208       (unless gnus-single-article-buffer
5209         (gnus-article-setup-buffer))
5210       ;; First and last article in this newsgroup.
5211       (when gnus-newsgroup-headers
5212         (setq gnus-newsgroup-begin
5213               (mail-header-number (car gnus-newsgroup-headers))
5214               gnus-newsgroup-end
5215               (mail-header-number
5216                (gnus-last-element gnus-newsgroup-headers))))
5217       ;; GROUP is successfully selected.
5218       (or gnus-newsgroup-headers t)))))
5219
5220 (defun gnus-compute-unseen-list ()
5221   ;; The `seen' marks are treated specially.
5222   (if (not gnus-newsgroup-seen)
5223       (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5224     (setq gnus-newsgroup-unseen
5225           (gnus-inverse-list-range-intersection
5226            gnus-newsgroup-articles gnus-newsgroup-seen))))
5227
5228 (defun gnus-summary-display-make-predicate (display)
5229   (require 'gnus-agent)
5230   (when (= (length display) 1)
5231     (setq display (car display)))
5232   (unless gnus-summary-display-cache
5233     (dolist (elem (append '((unread . unread)
5234                             (read . read)
5235                             (unseen . unseen))
5236                           gnus-article-mark-lists))
5237       (push (cons (cdr elem)
5238                   (gnus-byte-compile
5239                    `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5240             gnus-summary-display-cache)))
5241   (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5242         (gnus-category-predicate-cache gnus-summary-display-cache))
5243     (gnus-get-predicate display)))
5244
5245 ;; Uses the dynamically bound `number' variable.
5246 (eval-when-compile
5247   (defvar number))
5248 (defun gnus-article-marked-p (type &optional article)
5249   (let ((article (or article number)))
5250     (cond
5251      ((eq type 'tick)
5252       (memq article gnus-newsgroup-marked))
5253      ((eq type 'spam)
5254       (memq article gnus-newsgroup-spam-marked))
5255      ((eq type 'unsend)
5256       (memq article gnus-newsgroup-unsendable))
5257      ((eq type 'undownload)
5258       (memq article gnus-newsgroup-undownloaded))
5259      ((eq type 'download)
5260       (memq article gnus-newsgroup-downloadable))
5261      ((eq type 'unread)
5262       (memq article gnus-newsgroup-unreads))
5263      ((eq type 'read)
5264       (memq article gnus-newsgroup-reads))
5265      ((eq type 'dormant)
5266       (memq article gnus-newsgroup-dormant) )
5267      ((eq type 'expire)
5268       (memq article gnus-newsgroup-expirable))
5269      ((eq type 'reply)
5270       (memq article gnus-newsgroup-replied))
5271      ((eq type 'killed)
5272       (memq article gnus-newsgroup-killed))
5273      ((eq type 'bookmark)
5274       (assq article gnus-newsgroup-bookmarks))
5275      ((eq type 'score)
5276       (assq article gnus-newsgroup-scored))
5277      ((eq type 'save)
5278       (memq article gnus-newsgroup-saved))
5279      ((eq type 'cache)
5280       (memq article gnus-newsgroup-cached))
5281      ((eq type 'forward)
5282       (memq article gnus-newsgroup-forwarded))
5283      ((eq type 'seen)
5284       (not (memq article gnus-newsgroup-unseen)))
5285      ((eq type 'recent)
5286       (memq article gnus-newsgroup-recent))
5287      (t t))))
5288
5289 (defun gnus-articles-to-read (group &optional read-all)
5290   "Find out what articles the user wants to read."
5291   (let* ((display (gnus-group-find-parameter group 'display))
5292          (articles
5293           ;; Select all articles if `read-all' is non-nil, or if there
5294           ;; are no unread articles.
5295           (if (or read-all
5296                   (and (zerop (length gnus-newsgroup-marked))
5297                        (zerop (length gnus-newsgroup-unreads)))
5298                   ;; Fetch all if the predicate is non-nil.
5299                   gnus-newsgroup-display)
5300               ;; We want to select the headers for all the articles in
5301               ;; the group, so we select either all the active
5302               ;; articles in the group, or (if that's nil), the
5303               ;; articles in the cache.
5304               (or
5305                (gnus-uncompress-range (gnus-active group))
5306                (gnus-cache-articles-in-group group))
5307             ;; Select only the "normal" subset of articles.
5308             (gnus-sorted-nunion
5309              (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5310              gnus-newsgroup-unreads)))
5311          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5312          (scored (length scored-list))
5313          (number (length articles))
5314          (marked (+ (length gnus-newsgroup-marked)
5315                     (length gnus-newsgroup-dormant)))
5316          (select
5317           (cond
5318            ((numberp read-all)
5319             read-all)
5320            ((numberp gnus-newsgroup-display)
5321             gnus-newsgroup-display)
5322            (t
5323             (condition-case ()
5324                 (cond
5325                  ((and (or (<= scored marked) (= scored number))
5326                        (numberp gnus-large-newsgroup)
5327                        (> number gnus-large-newsgroup))
5328                   (let* ((cursor-in-echo-area nil)
5329                          (initial (gnus-parameter-large-newsgroup-initial
5330                                    gnus-newsgroup-name))
5331                          (input
5332                           (read-string
5333                            (format
5334                             "How many articles from %s (%s %d): "
5335                             (gnus-limit-string
5336                              (gnus-group-decoded-name gnus-newsgroup-name)
5337                              35)
5338                             (if initial "max" "default")
5339                             number)
5340                            (if initial
5341                                (cons (number-to-string initial)
5342                                      0)))))
5343                     (if (string-match "^[ \t]*$" input) number input)))
5344                  ((and (> scored marked) (< scored number)
5345                        (> (- scored number) 20))
5346                   (let ((input
5347                          (read-string
5348                           (format "%s %s (%d scored, %d total): "
5349                                   "How many articles from"
5350                                   (gnus-group-decoded-name group)
5351                                   scored number))))
5352                     (if (string-match "^[ \t]*$" input)
5353                         number input)))
5354                  (t number))
5355               (quit
5356                (message "Quit getting the articles to read")
5357                nil))))))
5358     (setq select (if (stringp select) (string-to-number select) select))
5359     (if (or (null select) (zerop select))
5360         select
5361       (if (and (not (zerop scored)) (<= (abs select) scored))
5362           (progn
5363             (setq articles (sort scored-list '<))
5364             (setq number (length articles)))
5365         (setq articles (copy-sequence articles)))
5366
5367       (when (< (abs select) number)
5368         (if (< select 0)
5369             ;; Select the N oldest articles.
5370             (setcdr (nthcdr (1- (abs select)) articles) nil)
5371           ;; Select the N most recent articles.
5372           (setq articles (nthcdr (- number select) articles))))
5373       (setq gnus-newsgroup-unselected
5374             (gnus-sorted-difference gnus-newsgroup-unreads articles))
5375       (when gnus-alter-articles-to-read-function
5376         (setq articles
5377               (sort
5378                (funcall gnus-alter-articles-to-read-function
5379                         gnus-newsgroup-name articles)
5380                '<)))
5381       articles)))
5382
5383 (defun gnus-killed-articles (killed articles)
5384   (let (out)
5385     (while articles
5386       (when (inline (gnus-member-of-range (car articles) killed))
5387         (push (car articles) out))
5388       (setq articles (cdr articles)))
5389     out))
5390
5391 (defun gnus-uncompress-marks (marks)
5392   "Uncompress the mark ranges in MARKS."
5393   (let ((uncompressed '(score bookmark))
5394         out)
5395     (while marks
5396       (if (memq (caar marks) uncompressed)
5397           (push (car marks) out)
5398         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5399       (setq marks (cdr marks)))
5400     out))
5401
5402 (defun gnus-article-mark-to-type (mark)
5403   "Return the type of MARK."
5404   (or (cadr (assq mark gnus-article-special-mark-lists))
5405       'list))
5406
5407 (defun gnus-article-unpropagatable-p (mark)
5408   "Return whether MARK should be propagated to back end."
5409   (memq mark gnus-article-unpropagated-mark-lists))
5410
5411 (defun gnus-adjust-marked-articles (info)
5412   "Set all article lists and remove all marks that are no longer valid."
5413   (let* ((marked-lists (gnus-info-marks info))
5414          (active (gnus-active (gnus-info-group info)))
5415          (min (car active))
5416          (max (cdr active))
5417          (types gnus-article-mark-lists)
5418          marks var articles article mark mark-type
5419          bgn end)
5420
5421     (dolist (marks marked-lists)
5422       (setq mark (car marks)
5423             mark-type (gnus-article-mark-to-type mark)
5424             var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5425
5426       ;; We set the variable according to the type of the marks list,
5427       ;; and then adjust the marks to a subset of the active articles.
5428       (cond
5429        ;; Adjust "simple" lists - compressed yet unsorted
5430        ((eq mark-type 'list)
5431         ;; Simultaneously uncompress and clip to active range
5432         ;; See gnus-uncompress-range for a description of possible marks
5433         (let (l lh)
5434           (if (not (cadr marks))
5435               (set var nil)
5436             (setq articles (if (numberp (cddr marks))
5437                                (list (cdr marks))
5438                              (cdr marks))
5439                   lh (cons nil nil)
5440                   l lh)
5441
5442             (while (setq article (pop articles))
5443               (cond ((consp article)
5444                      (setq bgn (max (car article) min)
5445                            end (min (cdr article) max))
5446                      (while (<= bgn end)
5447                        (setq l (setcdr l (cons bgn nil))
5448                              bgn (1+ bgn))))
5449                     ((and (<= min article)
5450                           (>= max article))
5451                      (setq l (setcdr l (cons article nil))))))
5452             (set var (cdr lh)))))
5453        ;; Adjust assocs.
5454        ((eq mark-type 'tuple)
5455         (set var (setq articles (cdr marks)))
5456         (when (not (listp (cdr (symbol-value var))))
5457           (set var (list (symbol-value var))))
5458         (when (not (listp (cdr articles)))
5459           (setq articles (list articles)))
5460         (while articles
5461           (when (or (not (consp (setq article (pop articles))))
5462                     (< (car article) min)
5463                     (> (car article) max))
5464             (set var (delq article (symbol-value var))))))
5465        ;; Adjust ranges (sloppily).
5466        ((eq mark-type 'range)
5467         (cond
5468          ((eq mark 'seen)
5469           ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5470           ;; It should be (seen (NUM1 . NUM2)).
5471           (when (numberp (cddr marks))
5472             (setcdr marks (list (cdr marks))))
5473           (setq articles (cdr marks))
5474           (while (and articles
5475                       (or (and (consp (car articles))
5476                                (> min (cdar articles)))
5477                           (and (numberp (car articles))
5478                                (> min (car articles)))))
5479             (pop articles))
5480           (set var articles))))))))
5481
5482 (defun gnus-update-missing-marks (missing)
5483   "Go through the list of MISSING articles and remove them from the mark lists."
5484   (when missing
5485     (let (var m)
5486       ;; Go through all types.
5487       (dolist (elem gnus-article-mark-lists)
5488         (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5489           (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5490           (when (symbol-value var)
5491             ;; This list has articles.  So we delete all missing
5492             ;; articles from it.
5493             (setq m missing)
5494             (while m
5495               (set var (delq (pop m) (symbol-value var))))))))))
5496
5497 (defun gnus-update-marks ()
5498   "Enter the various lists of marked articles into the newsgroup info list."
5499   (let ((types gnus-article-mark-lists)
5500         (info (gnus-get-info gnus-newsgroup-name))
5501         type list newmarked symbol delta-marks)
5502     (when info
5503       ;; Add all marks lists to the list of marks lists.
5504       (while (setq type (pop types))
5505         (setq list (symbol-value
5506                     (setq symbol
5507                           (intern (format "gnus-newsgroup-%s" (car type))))))
5508
5509         (when list
5510           ;; Get rid of the entries of the articles that have the
5511           ;; default score.
5512           (when (and (eq (cdr type) 'score)
5513                      gnus-save-score
5514                      list)
5515             (let* ((arts list)
5516                    (prev (cons nil list))
5517                    (all prev))
5518               (while arts
5519                 (if (or (not (consp (car arts)))
5520                         (= (cdar arts) gnus-summary-default-score))
5521                     (setcdr prev (cdr arts))
5522                   (setq prev arts))
5523                 (setq arts (cdr arts)))
5524               (setq list (cdr all)))))
5525
5526         (when (eq (cdr type) 'seen)
5527           (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5528
5529         (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5530           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5531
5532         (when (and (gnus-check-backend-function
5533                     'request-set-mark gnus-newsgroup-name)
5534                    (not (gnus-article-unpropagatable-p (cdr type))))
5535           (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5536                  (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5537                  (add (gnus-remove-from-range
5538                        (gnus-copy-sequence list) old)))
5539             (when add
5540               (push (list add 'add (list (cdr type))) delta-marks))
5541             (when del
5542               (push (list del 'del (list (cdr type))) delta-marks))))
5543
5544         (when list
5545           (push (cons (cdr type) list) newmarked)))
5546
5547       (when delta-marks
5548         (unless (gnus-check-group gnus-newsgroup-name)
5549           (error "Can't open server for %s" gnus-newsgroup-name))
5550         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5551
5552       ;; Enter these new marks into the info of the group.
5553       (if (nthcdr 3 info)
5554           (setcar (nthcdr 3 info) newmarked)
5555         ;; Add the marks lists to the end of the info.
5556         (when newmarked
5557           (setcdr (nthcdr 2 info) (list newmarked))))
5558
5559       ;; Cut off the end of the info if there's nothing else there.
5560       (let ((i 5))
5561         (while (and (> i 2)
5562                     (not (nth i info)))
5563           (when (nthcdr (decf i) info)
5564             (setcdr (nthcdr i info) nil)))))))
5565
5566 (defun gnus-set-mode-line (where)
5567   "Set the mode line of the article or summary buffers.
5568 If WHERE is `summary', the summary mode line format will be used."
5569   ;; Is this mode line one we keep updated?
5570   (when (and (memq where gnus-updated-mode-lines)
5571              (symbol-value
5572               (intern (format "gnus-%s-mode-line-format-spec" where))))
5573     (let (mode-string)
5574       (save-excursion
5575         ;; We evaluate this in the summary buffer since these
5576         ;; variables are buffer-local to that buffer.
5577         (set-buffer gnus-summary-buffer)
5578         ;; We bind all these variables that are used in the `eval' form
5579         ;; below.
5580         (let* ((mformat (symbol-value
5581                          (intern
5582                           (format "gnus-%s-mode-line-format-spec" where))))
5583                (gnus-tmp-group-name (gnus-group-decoded-name
5584                                      gnus-newsgroup-name))
5585                (gnus-tmp-article-number (or gnus-current-article 0))
5586                (gnus-tmp-unread gnus-newsgroup-unreads)
5587                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
5588                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
5589                (gnus-tmp-unread-and-unselected
5590                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
5591                             (zerop gnus-tmp-unselected))
5592                        "")
5593                       ((zerop gnus-tmp-unselected)
5594                        (format "{%d more}" gnus-tmp-unread-and-unticked))
5595                       (t (format "{%d(+%d) more}"
5596                                  gnus-tmp-unread-and-unticked
5597                                  gnus-tmp-unselected))))
5598                (gnus-tmp-subject
5599                 (if (and gnus-current-headers
5600                          (vectorp gnus-current-headers))
5601                     (gnus-mode-string-quote
5602                      (mail-header-subject gnus-current-headers))
5603                   ""))
5604                bufname-length max-len
5605                gnus-tmp-header);; passed as argument to any user-format-funcs
5606           (setq mode-string (eval mformat))
5607           (setq bufname-length (if (string-match "%b" mode-string)
5608                                    (- (length
5609                                        (buffer-name
5610                                         (if (eq where 'summary)
5611                                             nil
5612                                           (get-buffer gnus-article-buffer))))
5613                                       2)
5614                                  0))
5615           (setq max-len (max 4 (if gnus-mode-non-string-length
5616                                    (- (window-width)
5617                                       gnus-mode-non-string-length
5618                                       bufname-length)
5619                                  (length mode-string))))
5620           ;; We might have to chop a bit of the string off...
5621           (when (> (length mode-string) max-len)
5622             (setq mode-string
5623                   (concat (gnus-truncate-string mode-string (- max-len 3))
5624                           "...")))
5625           ;; Pad the mode string a bit.
5626           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
5627       ;; Update the mode line.
5628       (setq mode-line-buffer-identification
5629             (gnus-mode-line-buffer-identification (list mode-string)))
5630       (set-buffer-modified-p t))))
5631
5632 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
5633   "Go through the HEADERS list and add all Xrefs to a hash table.
5634 The resulting hash table is returned, or nil if no Xrefs were found."
5635   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
5636          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
5637          (xref-hashtb (gnus-make-hashtable))
5638          start group entry number xrefs header)
5639     (while headers
5640       (setq header (pop headers))
5641       (when (and (setq xrefs (mail-header-xref header))
5642                  (not (memq (setq number (mail-header-number header))
5643                             unreads)))
5644         (setq start 0)
5645         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
5646           (setq start (match-end 0))
5647           (setq group (if prefix
5648                           (concat prefix (substring xrefs (match-beginning 1)
5649                                                     (match-end 1)))
5650                         (substring xrefs (match-beginning 1) (match-end 1))))
5651           (setq number
5652                 (string-to-int (substring xrefs (match-beginning 2)
5653                                           (match-end 2))))
5654           (if (setq entry (gnus-gethash group xref-hashtb))
5655               (setcdr entry (cons number (cdr entry)))
5656             (gnus-sethash group (cons number nil) xref-hashtb)))))
5657     (and start xref-hashtb)))
5658
5659 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
5660   "Look through all the headers and mark the Xrefs as read."
5661   (let ((virtual (gnus-virtual-group-p from-newsgroup))
5662         name info xref-hashtb idlist method nth4)
5663     (save-excursion
5664       (set-buffer gnus-group-buffer)
5665       (when (setq xref-hashtb
5666                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
5667         (mapatoms
5668          (lambda (group)
5669            (unless (string= from-newsgroup (setq name (symbol-name group)))
5670              (setq idlist (symbol-value group))
5671              ;; Dead groups are not updated.
5672              (and (prog1
5673                       (setq info (gnus-get-info name))
5674                     (when (stringp (setq nth4 (gnus-info-method info)))
5675                       (setq nth4 (gnus-server-to-method nth4))))
5676                   ;; Only do the xrefs if the group has the same
5677                   ;; select method as the group we have just read.
5678                   (or (gnus-methods-equal-p
5679                        nth4 (gnus-find-method-for-group from-newsgroup))
5680                       virtual
5681                       (equal nth4 (setq method (gnus-find-method-for-group
5682                                                 from-newsgroup)))
5683                       (and (equal (car nth4) (car method))
5684                            (equal (nth 1 nth4) (nth 1 method))))
5685                   gnus-use-cross-reference
5686                   (or (not (eq gnus-use-cross-reference t))
5687                       virtual
5688                       ;; Only do cross-references on subscribed
5689                       ;; groups, if that is what is wanted.
5690                       (<= (gnus-info-level info) gnus-level-subscribed))
5691                   (gnus-group-make-articles-read name idlist))))
5692          xref-hashtb)))))
5693
5694 (defun gnus-compute-read-articles (group articles)
5695   (let* ((entry (gnus-group-entry group))
5696          (info (nth 2 entry))
5697          (active (gnus-active group))
5698          ninfo)
5699     (when entry
5700       ;; First peel off all invalid article numbers.
5701       (when active
5702         (let ((ids articles)
5703               id first)
5704           (while (setq id (pop ids))
5705             (when (and first (> id (cdr active)))
5706               ;; We'll end up in this situation in one particular
5707               ;; obscure situation.  If you re-scan a group and get
5708               ;; a new article that is cross-posted to a different
5709               ;; group that has not been re-scanned, you might get
5710               ;; crossposted article that has a higher number than
5711               ;; Gnus believes possible.  So we re-activate this
5712               ;; group as well.  This might mean doing the
5713               ;; crossposting thingy will *increase* the number
5714               ;; of articles in some groups.  Tsk, tsk.
5715               (setq active (or (gnus-activate-group group) active)))
5716             (when (or (> id (cdr active))
5717                       (< id (car active)))
5718               (setq articles (delq id articles))))))
5719       ;; If the read list is nil, we init it.
5720       (if (and active
5721                (null (gnus-info-read info))
5722                (> (car active) 1))
5723           (setq ninfo (cons 1 (1- (car active))))
5724         (setq ninfo (gnus-info-read info)))
5725       ;; Then we add the read articles to the range.
5726       (gnus-add-to-range
5727        ninfo (setq articles (sort articles '<))))))
5728
5729 (defun gnus-group-make-articles-read (group articles)
5730   "Update the info of GROUP to say that ARTICLES are read."
5731   (let* ((num 0)
5732          (entry (gnus-group-entry group))
5733          (info (nth 2 entry))
5734          (active (gnus-active group))
5735          range)
5736     (when entry
5737       (setq range (gnus-compute-read-articles group articles))
5738       (with-current-buffer gnus-group-buffer
5739         (gnus-undo-register
5740           `(progn
5741              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
5742              (gnus-info-set-read ',info ',(gnus-info-read info))
5743              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
5744              (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
5745              (gnus-group-update-group ,group t))))
5746       ;; Add the read articles to the range.
5747       (gnus-info-set-read info range)
5748       (gnus-request-set-mark group (list (list range 'add '(read))))
5749       ;; Then we have to re-compute how many unread
5750       ;; articles there are in this group.
5751       (when active
5752         (cond
5753          ((not range)
5754           (setq num (- (1+ (cdr active)) (car active))))
5755          ((not (listp (cdr range)))
5756           (setq num (- (cdr active) (- (1+ (cdr range))
5757                                        (car range)))))
5758          (t
5759           (while range
5760             (if (numberp (car range))
5761                 (setq num (1+ num))
5762               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
5763             (setq range (cdr range)))
5764           (setq num (- (cdr active) num))))
5765         ;; Update the number of unread articles.
5766         (setcar entry num)
5767         ;; Update the group buffer.
5768         (unless (gnus-ephemeral-group-p group)
5769           (gnus-group-update-group group t))))))
5770
5771 (defvar gnus-newsgroup-none-id 0)
5772
5773 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
5774   (let ((cur nntp-server-buffer)
5775         (dependencies
5776          (or dependencies
5777              (save-excursion (set-buffer gnus-summary-buffer)
5778                              gnus-newsgroup-dependencies)))
5779         headers id end ref
5780         (mail-parse-charset gnus-newsgroup-charset)
5781         (mail-parse-ignored-charsets
5782          (save-excursion (condition-case nil
5783                              (set-buffer gnus-summary-buffer)
5784                            (error))
5785                          gnus-newsgroup-ignored-charsets)))
5786     (save-excursion
5787       (set-buffer nntp-server-buffer)
5788       ;; Translate all TAB characters into SPACE characters.
5789       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
5790       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5791       (ietf-drums-unfold-fws)
5792       (gnus-run-hooks 'gnus-parse-headers-hook)
5793       (let ((case-fold-search t)
5794             in-reply-to header p lines chars ctype)
5795         (goto-char (point-min))
5796         ;; Search to the beginning of the next header.  Error messages
5797         ;; do not begin with 2 or 3.
5798         (while (re-search-forward "^[23][0-9]+ " nil t)
5799           (setq id nil
5800                 ref nil)
5801           ;; This implementation of this function, with nine
5802           ;; search-forwards instead of the one re-search-forward and
5803           ;; a case (which basically was the old function) is actually
5804           ;; about twice as fast, even though it looks messier.  You
5805           ;; can't have everything, I guess.  Speed and elegance
5806           ;; doesn't always go hand in hand.
5807           (setq
5808            header
5809            (make-full-mail-header
5810             ;; Number.
5811             (prog1
5812                 (read cur)
5813               (end-of-line)
5814               (setq p (point))
5815               (narrow-to-region (point)
5816                                 (or (and (search-forward "\n.\n" nil t)
5817                                          (- (point) 2))
5818                                     (point))))
5819             ;; Subject.
5820             (progn
5821               (goto-char p)
5822               (if (search-forward "\nsubject:" nil t)
5823                   (nnheader-header-value)
5824                 "(none)"))
5825             ;; From.
5826             (progn
5827               (goto-char p)
5828               (if (search-forward "\nfrom:" nil t)
5829                   (nnheader-header-value)
5830                 "(nobody)"))
5831             ;; Date.
5832             (progn
5833               (goto-char p)
5834               (if (search-forward "\ndate:" nil t)
5835                   (nnheader-header-value) ""))
5836             ;; Message-ID.
5837             (progn
5838               (goto-char p)
5839               (setq id (if (re-search-forward
5840                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
5841                            ;; We do it this way to make sure the Message-ID
5842                            ;; is (somewhat) syntactically valid.
5843                            (buffer-substring (match-beginning 1)
5844                                              (match-end 1))
5845                          ;; If there was no message-id, we just fake one
5846                          ;; to make subsequent routines simpler.
5847                          (nnheader-generate-fake-message-id))))
5848             ;; References.
5849             (progn
5850               (goto-char p)
5851               (if (search-forward "\nreferences:" nil t)
5852                   (progn
5853                     (setq end (point))
5854                     (prog1
5855                         (nnheader-header-value)
5856                       (setq ref
5857                             (buffer-substring
5858                              (progn
5859                                ;; (end-of-line)
5860                                (search-backward ">" end t)
5861                                (1+ (point)))
5862                              (progn
5863                                (search-backward "<" end t)
5864                                (point))))))
5865                 ;; Get the references from the in-reply-to header if there
5866                 ;; were no references and the in-reply-to header looks
5867                 ;; promising.
5868                 (if (and (search-forward "\nin-reply-to:" nil t)
5869                          (setq in-reply-to (nnheader-header-value))
5870                          (string-match "<[^>]+>" in-reply-to))
5871                     (let (ref2)
5872                       (setq ref (substring in-reply-to (match-beginning 0)
5873                                            (match-end 0)))
5874                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
5875                         (setq ref2 (substring in-reply-to (match-beginning 0)
5876                                               (match-end 0)))
5877                         (when (> (length ref2) (length ref))
5878                           (setq ref ref2)))
5879                       ref)
5880                   (setq ref nil))))
5881             ;; Chars.
5882             (progn
5883               (goto-char p)
5884               (if (search-forward "\nchars: " nil t)
5885                   (if (numberp (setq chars (ignore-errors (read cur))))
5886                       chars -1)
5887                 -1))
5888             ;; Lines.
5889             (progn
5890               (goto-char p)
5891               (if (search-forward "\nlines: " nil t)
5892                   (if (numberp (setq lines (ignore-errors (read cur))))
5893                       lines -1)
5894                 -1))
5895             ;; Xref.
5896             (progn
5897               (goto-char p)
5898               (and (search-forward "\nxref:" nil t)
5899                    (nnheader-header-value)))
5900             ;; Extra.
5901             (when gnus-extra-headers
5902               (let ((extra gnus-extra-headers)
5903                     out)
5904                 (while extra
5905                   (goto-char p)
5906                   (when (search-forward
5907                          (concat "\n" (symbol-name (car extra)) ":") nil t)
5908                     (push (cons (car extra) (nnheader-header-value)) out))
5909                   (pop extra))
5910                 out))))
5911           (goto-char p)
5912           (if (and (search-forward "\ncontent-type: " nil t)
5913                    (setq ctype (nnheader-header-value)))
5914               (mime-entity-set-content-type-internal
5915                header (mime-parse-Content-Type ctype)))
5916           (when (equal id ref)
5917             (setq ref nil))
5918
5919           (when gnus-alter-header-function
5920             (funcall gnus-alter-header-function header)
5921             (setq id (mail-header-id header)
5922                   ref (gnus-parent-id (mail-header-references header))))
5923
5924           (when (setq header
5925                       (gnus-dependencies-add-header
5926                        header dependencies force-new))
5927             (push header headers))
5928           (goto-char (point-max))
5929           (widen))
5930         (nreverse headers)))))
5931
5932 ;; Goes through the xover lines and returns a list of vectors
5933 (defun gnus-get-newsgroup-headers-xover (sequence &optional
5934                                                   force-new dependencies
5935                                                   group also-fetch-heads)
5936   "Parse the news overview data in the server buffer.
5937 Return a list of headers that match SEQUENCE (see
5938 `nntp-retrieve-headers')."
5939   ;; Get the Xref when the users reads the articles since most/some
5940   ;; NNTP servers do not include Xrefs when using XOVER.
5941   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
5942   (let ((mail-parse-charset gnus-newsgroup-charset)
5943         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
5944         (cur nntp-server-buffer)
5945         (dependencies (or dependencies gnus-newsgroup-dependencies))
5946         (allp (cond
5947                ((eq gnus-read-all-available-headers t)
5948                 t)
5949                ((stringp gnus-read-all-available-headers)
5950                 (string-match gnus-read-all-available-headers group))
5951                (t
5952                 nil)))
5953         number headers header)
5954     (save-excursion
5955       (set-buffer nntp-server-buffer)
5956       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5957       ;; Allow the user to mangle the headers before parsing them.
5958       (gnus-run-hooks 'gnus-parse-headers-hook)
5959       (goto-char (point-min))
5960       (gnus-parse-without-error
5961         (while (and (or sequence allp)
5962                     (not (eobp)))
5963           (setq number (read cur))
5964           (when (not allp)
5965             (while (and sequence
5966                         (< (car sequence) number))
5967               (setq sequence (cdr sequence))))
5968           (when (and (or allp
5969                          (and sequence
5970                               (eq number (car sequence))))
5971                      (progn
5972                        (setq sequence (cdr sequence))
5973                        (setq header (inline
5974                                       (gnus-nov-parse-line
5975                                        number dependencies force-new)))))
5976             (push header headers))
5977           (forward-line 1)))
5978       ;; A common bug in inn is that if you have posted an article and
5979       ;; then retrieves the active file, it will answer correctly --
5980       ;; the new article is included.  However, a NOV entry for the
5981       ;; article may not have been generated yet, so this may fail.
5982       ;; We work around this problem by retrieving the last few
5983       ;; headers using HEAD.
5984       (if (or (not also-fetch-heads)
5985               (not sequence))
5986           ;; We (probably) got all the headers.
5987           (nreverse headers)
5988         (let ((gnus-nov-is-evil t))
5989           (nconc
5990            (nreverse headers)
5991            (when (eq (gnus-retrieve-headers sequence group) 'headers)
5992              (gnus-get-newsgroup-headers))))))))
5993
5994 (defun gnus-article-get-xrefs ()
5995   "Fill in the Xref value in `gnus-current-headers', if necessary.
5996 This is meant to be called in `gnus-article-internal-prepare-hook'."
5997   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
5998                                  gnus-current-headers)))
5999     (or (not gnus-use-cross-reference)
6000         (not headers)
6001         (and (mail-header-xref headers)
6002              (not (string= (mail-header-xref headers) "")))
6003         (let ((case-fold-search t)
6004               xref)
6005           (save-restriction
6006             (nnheader-narrow-to-headers)
6007             (goto-char (point-min))
6008             (when (or (and (not (eobp))
6009                            (eq (downcase (char-after)) ?x)
6010                            (looking-at "Xref:"))
6011                       (search-forward "\nXref:" nil t))
6012               (goto-char (1+ (match-end 0)))
6013               (setq xref (buffer-substring (point) (point-at-eol)))
6014               (mail-header-set-xref headers xref)))))))
6015
6016 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
6017   "Find article ID and insert the summary line for that article.
6018 OLD-HEADER can either be a header or a line number to insert
6019 the subject line on."
6020   (let* ((line (and (numberp old-header) old-header))
6021          (old-header (and (vectorp old-header) old-header))
6022          (header (cond ((and old-header use-old-header)
6023                         old-header)
6024                        ((and (numberp id)
6025                              (gnus-number-to-header id))
6026                         (gnus-number-to-header id))
6027                        (t
6028                         (gnus-read-header id))))
6029          (number (and (numberp id) id))
6030          d)
6031     (when header
6032       ;; Rebuild the thread that this article is part of and go to the
6033       ;; article we have fetched.
6034       (when (and (not gnus-show-threads)
6035                  old-header)
6036         (when (and number
6037                    (setq d (gnus-data-find (mail-header-number old-header))))
6038           (goto-char (gnus-data-pos d))
6039           (gnus-data-remove
6040            number
6041            (- (point-at-bol)
6042               (prog1
6043                   (1+ (point-at-eol))
6044                 (gnus-delete-line))))))
6045       (when old-header
6046         (mail-header-set-number header (mail-header-number old-header)))
6047       (setq gnus-newsgroup-sparse
6048             (delq (setq number (mail-header-number header))
6049                   gnus-newsgroup-sparse))
6050       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
6051       (push number gnus-newsgroup-limit)
6052       (gnus-rebuild-thread (mail-header-id header) line)
6053       (gnus-summary-goto-subject number nil t))
6054     (when (and (numberp number)
6055                (> number 0))
6056       ;; We have to update the boundaries even if we can't fetch the
6057       ;; article if ID is a number -- so that the next `P' or `N'
6058       ;; command will fetch the previous (or next) article even
6059       ;; if the one we tried to fetch this time has been canceled.
6060       (when (> number gnus-newsgroup-end)
6061         (setq gnus-newsgroup-end number))
6062       (when (< number gnus-newsgroup-begin)
6063         (setq gnus-newsgroup-begin number))
6064       (setq gnus-newsgroup-unselected
6065             (delq number gnus-newsgroup-unselected)))
6066     ;; Report back a success?
6067     (and header (mail-header-number header))))
6068
6069 ;;; Process/prefix in the summary buffer
6070
6071 (defun gnus-summary-work-articles (n)
6072   "Return a list of articles to be worked upon.
6073 The prefix argument, the list of process marked articles, and the
6074 current article will be taken into consideration."
6075   (save-excursion
6076     (set-buffer gnus-summary-buffer)
6077     (cond
6078      (n
6079       ;; A numerical prefix has been given.
6080       (setq n (prefix-numeric-value n))
6081       (let ((backward (< n 0))
6082             (n (abs (prefix-numeric-value n)))
6083             articles article)
6084         (save-excursion
6085           (while
6086               (and (> n 0)
6087                    (push (setq article (gnus-summary-article-number))
6088                          articles)
6089                    (if backward
6090                        (gnus-summary-find-prev nil article)
6091                      (gnus-summary-find-next nil article)))
6092             (decf n)))
6093         (nreverse articles)))
6094      ((and (gnus-region-active-p) (mark))
6095       (message "region active")
6096       ;; Work on the region between point and mark.
6097       (let ((max (max (point) (mark)))
6098             articles article)
6099         (save-excursion
6100           (goto-char (min (point) (mark)))
6101           (while
6102               (and
6103                (push (setq article (gnus-summary-article-number)) articles)
6104                (gnus-summary-find-next nil article)
6105                (< (point) max)))
6106           (nreverse articles))))
6107      (gnus-newsgroup-processable
6108       ;; There are process-marked articles present.
6109       ;; Save current state.
6110       (gnus-summary-save-process-mark)
6111       ;; Return the list.
6112       (reverse gnus-newsgroup-processable))
6113      (t
6114       ;; Just return the current article.
6115       (list (gnus-summary-article-number))))))
6116
6117 (defmacro gnus-summary-iterate (arg &rest forms)
6118   "Iterate over the process/prefixed articles and do FORMS.
6119 ARG is the interactive prefix given to the command.  FORMS will be
6120 executed with point over the summary line of the articles."
6121   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6122     `(let ((,articles (gnus-summary-work-articles ,arg)))
6123        (while ,articles
6124          (gnus-summary-goto-subject (car ,articles))
6125          ,@forms
6126          (pop ,articles)))))
6127
6128 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6129 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6130
6131 (defun gnus-summary-save-process-mark ()
6132   "Push the current set of process marked articles on the stack."
6133   (interactive)
6134   (push (copy-sequence gnus-newsgroup-processable)
6135         gnus-newsgroup-process-stack))
6136
6137 (defun gnus-summary-kill-process-mark ()
6138   "Push the current set of process marked articles on the stack and unmark."
6139   (interactive)
6140   (gnus-summary-save-process-mark)
6141   (gnus-summary-unmark-all-processable))
6142
6143 (defun gnus-summary-yank-process-mark ()
6144   "Pop the last process mark state off the stack and restore it."
6145   (interactive)
6146   (unless gnus-newsgroup-process-stack
6147     (error "Empty mark stack"))
6148   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6149
6150 (defun gnus-summary-process-mark-set (set)
6151   "Make SET into the current process marked articles."
6152   (gnus-summary-unmark-all-processable)
6153   (while set
6154     (gnus-summary-set-process-mark (pop set))))
6155
6156 ;;; Searching and stuff
6157
6158 (defun gnus-summary-search-group (&optional backward use-level)
6159   "Search for next unread newsgroup.
6160 If optional argument BACKWARD is non-nil, search backward instead."
6161   (save-excursion
6162     (set-buffer gnus-group-buffer)
6163     (when (gnus-group-search-forward
6164            backward nil (if use-level (gnus-group-group-level) nil))
6165       (gnus-group-group-name))))
6166
6167 (defun gnus-summary-best-group (&optional exclude-group)
6168   "Find the name of the best unread group.
6169 If EXCLUDE-GROUP, do not go to this group."
6170   (save-excursion
6171     (set-buffer gnus-group-buffer)
6172     (save-excursion
6173       (gnus-group-best-unread-group exclude-group))))
6174
6175 (defun gnus-summary-find-next (&optional unread article backward)
6176   (if backward
6177       (gnus-summary-find-prev unread article)
6178     (let* ((dummy (gnus-summary-article-intangible-p))
6179            (article (or article (gnus-summary-article-number)))
6180            (data (gnus-data-find-list article))
6181            result)
6182       (when (and (not dummy)
6183                  (or (not gnus-summary-check-current)
6184                      (not unread)
6185                      (not (gnus-data-unread-p (car data)))))
6186         (setq data (cdr data)))
6187       (when (setq result
6188                   (if unread
6189                       (progn
6190                         (while data
6191                           (unless (memq (gnus-data-number (car data))
6192                                         (cond
6193                                          ((eq gnus-auto-goto-ignores
6194                                               'always-undownloaded)
6195                                           gnus-newsgroup-undownloaded)
6196                                          (gnus-plugged
6197                                           nil)
6198                                          ((eq gnus-auto-goto-ignores
6199                                               'unfetched)
6200                                           gnus-newsgroup-unfetched)
6201                                          ((eq gnus-auto-goto-ignores
6202                                               'undownloaded)
6203                                           gnus-newsgroup-undownloaded)))
6204                             (when (gnus-data-unread-p (car data))
6205                               (setq result (car data)
6206                                     data nil)))
6207                           (setq data (cdr data)))
6208                         result)
6209                     (car data)))
6210         (goto-char (gnus-data-pos result))
6211         (gnus-data-number result)))))
6212
6213 (defun gnus-summary-find-prev (&optional unread article)
6214   (let* ((eobp (eobp))
6215          (article (or article (gnus-summary-article-number)))
6216          (data (gnus-data-find-list article (gnus-data-list 'rev)))
6217          result)
6218     (when (and (not eobp)
6219                (or (not gnus-summary-check-current)
6220                    (not unread)
6221                    (not (gnus-data-unread-p (car data)))))
6222       (setq data (cdr data)))
6223     (when (setq result
6224                 (if unread
6225                     (progn
6226                       (while data
6227                         (unless (memq (gnus-data-number (car data))
6228                                       (cond
6229                                        ((eq gnus-auto-goto-ignores
6230                                             'always-undownloaded)
6231                                         gnus-newsgroup-undownloaded)
6232                                        (gnus-plugged
6233                                         nil)
6234                                        ((eq gnus-auto-goto-ignores
6235                                             'unfetched)
6236                                         gnus-newsgroup-unfetched)
6237                                        ((eq gnus-auto-goto-ignores
6238                                             'undownloaded)
6239                                         gnus-newsgroup-undownloaded)))
6240                           (when (gnus-data-unread-p (car data))
6241                             (setq result (car data)
6242                                   data nil)))
6243                         (setq data (cdr data)))
6244                       result)
6245                   (car data)))
6246       (goto-char (gnus-data-pos result))
6247       (gnus-data-number result))))
6248
6249 (defun gnus-summary-find-subject (subject &optional unread backward article)
6250   (let* ((simp-subject (gnus-simplify-subject-fully subject))
6251          (article (or article (gnus-summary-article-number)))
6252          (articles (gnus-data-list backward))
6253          (arts (gnus-data-find-list article articles))
6254          result)
6255     (when (or (not gnus-summary-check-current)
6256               (not unread)
6257               (not (gnus-data-unread-p (car arts))))
6258       (setq arts (cdr arts)))
6259     (while arts
6260       (and (or (not unread)
6261                (gnus-data-unread-p (car arts)))
6262            (vectorp (gnus-data-header (car arts)))
6263            (gnus-subject-equal
6264             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6265            (setq result (car arts)
6266                  arts nil))
6267       (setq arts (cdr arts)))
6268     (and result
6269          (goto-char (gnus-data-pos result))
6270          (gnus-data-number result))))
6271
6272 (defun gnus-summary-search-forward (&optional unread subject backward)
6273   "Search forward for an article.
6274 If UNREAD, look for unread articles.  If SUBJECT, look for
6275 articles with that subject.  If BACKWARD, search backward instead."
6276   (cond (subject (gnus-summary-find-subject subject unread backward))
6277         (backward (gnus-summary-find-prev unread))
6278         (t (gnus-summary-find-next unread))))
6279
6280 (defun gnus-recenter (&optional n)
6281   "Center point in window and redisplay frame.
6282 Also do horizontal recentering."
6283   (interactive "P")
6284   (when (and gnus-auto-center-summary
6285              (not (eq gnus-auto-center-summary 'vertical)))
6286     (gnus-horizontal-recenter))
6287   (recenter n))
6288
6289 (defun gnus-summary-recenter ()
6290   "Center point in the summary window.
6291 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6292 displayed, no centering will be performed."
6293   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6294   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
6295   (interactive)
6296   ;; The user has to want it.
6297   (when gnus-auto-center-summary
6298     (let* ((top (cond ((< (window-height) 4) 0)
6299                       ((< (window-height) 7) 1)
6300                       (t (if (numberp gnus-auto-center-summary)
6301                              gnus-auto-center-summary
6302                            2))))
6303            (height (1- (window-height)))
6304            (bottom (save-excursion (goto-char (point-max))
6305                                    (forward-line (- height))
6306                                    (point)))
6307            (window (get-buffer-window (current-buffer))))
6308       (when (get-buffer-window gnus-article-buffer)
6309         ;; Only do recentering when the article buffer is displayed,
6310         ;; Set the window start to either `bottom', which is the biggest
6311         ;; possible valid number, or the second line from the top,
6312         ;; whichever is the least.
6313         (let ((top-pos (save-excursion (forward-line (- top)) (point))))
6314           (if (> bottom top-pos)
6315               ;; Keep the second line from the top visible
6316               (set-window-start window top-pos t)
6317             ;; Try to keep the bottom line visible; if it's partially
6318             ;; obscured, either scroll one more line to make it fully
6319             ;; visible, or revert to using TOP-POS.
6320             (save-excursion
6321               (goto-char (point-max))
6322               (forward-line -1)
6323               (let ((last-line-start (point)))
6324                 (goto-char bottom)
6325                 (set-window-start window (point) t)
6326                 (when (not (pos-visible-in-window-p last-line-start window))
6327                   (forward-line 1)
6328                   (set-window-start window (min (point) top-pos) t)))))))
6329       ;; Do horizontal recentering while we're at it.
6330       (when (and (get-buffer-window (current-buffer) t)
6331                  (not (eq gnus-auto-center-summary 'vertical)))
6332         (let ((selected (selected-window)))
6333           (select-window (get-buffer-window (current-buffer) t))
6334           (gnus-summary-position-point)
6335           (gnus-horizontal-recenter)
6336           (select-window selected))))))
6337
6338 (defun gnus-summary-jump-to-group (newsgroup)
6339   "Move point to NEWSGROUP in group mode buffer."
6340   ;; Keep update point of group mode buffer if visible.
6341   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6342       (save-window-excursion
6343         ;; Take care of tree window mode.
6344         (when (get-buffer-window gnus-group-buffer)
6345           (pop-to-buffer gnus-group-buffer))
6346         (gnus-group-jump-to-group newsgroup))
6347     (save-excursion
6348       ;; Take care of tree window mode.
6349       (if (get-buffer-window gnus-group-buffer)
6350           (pop-to-buffer gnus-group-buffer)
6351         (set-buffer gnus-group-buffer))
6352       (gnus-group-jump-to-group newsgroup))))
6353
6354 ;; This function returns a list of article numbers based on the
6355 ;; difference between the ranges of read articles in this group and
6356 ;; the range of active articles.
6357 (defun gnus-list-of-unread-articles (group)
6358   (let* ((read (gnus-info-read (gnus-get-info group)))
6359          (active (or (gnus-active group) (gnus-activate-group group)))
6360          (last (cdr active))
6361          first nlast unread)
6362     ;; If none are read, then all are unread.
6363     (if (not read)
6364         (setq first (car active))
6365       ;; If the range of read articles is a single range, then the
6366       ;; first unread article is the article after the last read
6367       ;; article.  Sounds logical, doesn't it?
6368       (if (and (not (listp (cdr read)))
6369                (or (< (car read) (car active))
6370                    (progn (setq read (list read))
6371                           nil)))
6372           (setq first (max (car active) (1+ (cdr read))))
6373         ;; `read' is a list of ranges.
6374         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6375                                   (caar read)))
6376                   1)
6377           (setq first (car active)))
6378         (while read
6379           (when first
6380             (while (< first nlast)
6381               (setq unread (cons first unread)
6382                     first (1+ first))))
6383           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6384           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6385           (setq read (cdr read)))))
6386     ;; And add the last unread articles.
6387     (while (<= first last)
6388       (setq unread (cons first unread)
6389             first (1+ first)))
6390     ;; Return the list of unread articles.
6391     (delq 0 (nreverse unread))))
6392
6393 (defun gnus-list-of-read-articles (group)
6394   "Return a list of unread, unticked and non-dormant articles."
6395   (let* ((info (gnus-get-info group))
6396          (marked (gnus-info-marks info))
6397          (active (gnus-active group)))
6398     (and info active
6399          (gnus-list-range-difference
6400           (gnus-list-range-difference
6401            (gnus-sorted-complement
6402             (gnus-uncompress-range active)
6403             (gnus-list-of-unread-articles group))
6404            (cdr (assq 'dormant marked)))
6405           (cdr (assq 'tick marked))))))
6406
6407 ;; This function returns a sequence of article numbers based on the
6408 ;; difference between the ranges of read articles in this group and
6409 ;; the range of active articles.
6410 (defun gnus-sequence-of-unread-articles (group)
6411   (let* ((read (gnus-info-read (gnus-get-info group)))
6412          (active (or (gnus-active group) (gnus-activate-group group)))
6413          (last (cdr active))
6414          first nlast unread)
6415     ;; If none are read, then all are unread.
6416     (if (not read)
6417         (setq first (car active))
6418       ;; If the range of read articles is a single range, then the
6419       ;; first unread article is the article after the last read
6420       ;; article.  Sounds logical, doesn't it?
6421       (if (and (not (listp (cdr read)))
6422                (or (< (car read) (car active))
6423                    (progn (setq read (list read))
6424                           nil)))
6425           (setq first (max (car active) (1+ (cdr read))))
6426         ;; `read' is a list of ranges.
6427         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6428                                   (caar read)))
6429                   1)
6430           (setq first (car active)))
6431         (while read
6432           (when first
6433             (push (cons first nlast) unread))
6434           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6435           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6436           (setq read (cdr read)))))
6437     ;; And add the last unread articles.
6438     (cond ((< first last)
6439            (push (cons first last) unread))
6440           ((= first last)
6441            (push first unread)))
6442     ;; Return the sequence of unread articles.
6443     (delq 0 (nreverse unread))))
6444
6445 ;; Various summary commands
6446
6447 (defun gnus-summary-select-article-buffer ()
6448   "Reconfigure windows to show article buffer."
6449   (interactive)
6450   (if (not (gnus-buffer-live-p gnus-article-buffer))
6451       (error "There is no article buffer for this summary buffer")
6452     (gnus-configure-windows 'article)
6453     (select-window (get-buffer-window gnus-article-buffer))))
6454
6455 (defun gnus-summary-universal-argument (arg)
6456   "Perform any operation on all articles that are process/prefixed."
6457   (interactive "P")
6458   (let ((articles (gnus-summary-work-articles arg))
6459         func article)
6460     (if (eq
6461          (setq
6462           func
6463           (key-binding
6464            (read-key-sequence
6465             (substitute-command-keys
6466              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6467          'undefined)
6468         (gnus-error 1 "Undefined key")
6469       (save-excursion
6470         (while articles
6471           (gnus-summary-goto-subject (setq article (pop articles)))
6472           (let (gnus-newsgroup-processable)
6473             (command-execute func))
6474           (gnus-summary-remove-process-mark article)))))
6475   (gnus-summary-position-point))
6476
6477 (defun gnus-summary-toggle-truncation (&optional arg)
6478   "Toggle truncation of summary lines.
6479 With ARG, turn line truncation on if ARG is positive."
6480   (interactive "P")
6481   (setq truncate-lines
6482         (if (null arg) (not truncate-lines)
6483           (> (prefix-numeric-value arg) 0)))
6484   (redraw-display))
6485
6486 (defun gnus-summary-find-for-reselect ()
6487   "Return the number of an article to stay on across a reselect.
6488 The current article is considered, then following articles, then previous
6489 articles.  An article is sought which is not cancelled and isn't a temporary
6490 insertion from another group.  If there's no such then return a dummy 0."
6491   (let (found)
6492     (dolist (rev '(nil t))
6493       (unless found      ; don't demand the reverse list if we don't need it
6494         (let ((data (gnus-data-find-list
6495                      (gnus-summary-article-number) (gnus-data-list rev))))
6496           (while (and data (not found))
6497             (if (and (< 0 (gnus-data-number (car data)))
6498                      (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6499                 (setq found (gnus-data-number (car data))))
6500             (setq data (cdr data))))))
6501     (or found 0)))
6502
6503 (defun gnus-summary-reselect-current-group (&optional all rescan)
6504   "Exit and then reselect the current newsgroup.
6505 The prefix argument ALL means to select all articles."
6506   (interactive "P")
6507   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6508     (error "Ephemeral groups can't be reselected"))
6509   (let ((current-subject (gnus-summary-find-for-reselect))
6510         (group gnus-newsgroup-name))
6511     (setq gnus-newsgroup-begin nil)
6512     (gnus-summary-exit nil 'leave-hidden)
6513     ;; We have to adjust the point of group mode buffer because
6514     ;; point was moved to the next unread newsgroup by exiting.
6515     (gnus-summary-jump-to-group group)
6516     (when rescan
6517       (save-excursion
6518         (save-window-excursion
6519           ;; Don't show group contents.
6520           (set-window-start (selected-window) (point-max))
6521           (gnus-group-get-new-news-this-group 1))))
6522     (gnus-group-read-group all t)
6523     (gnus-summary-goto-subject current-subject nil t)))
6524
6525 (defun gnus-summary-rescan-group (&optional all)
6526   "Exit the newsgroup, ask for new articles, and select the newsgroup."
6527   (interactive "P")
6528   (gnus-summary-reselect-current-group all t))
6529
6530 (defun gnus-summary-update-info (&optional non-destructive)
6531   (save-excursion
6532     (let ((group gnus-newsgroup-name))
6533       (when group
6534         (when gnus-newsgroup-kill-headers
6535           (setq gnus-newsgroup-killed
6536                 (gnus-compress-sequence
6537                  (gnus-sorted-union
6538                   (gnus-list-range-intersection
6539                    gnus-newsgroup-unselected gnus-newsgroup-killed)
6540                   gnus-newsgroup-unreads)
6541                  t)))
6542         (unless (listp (cdr gnus-newsgroup-killed))
6543           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
6544         (let ((headers gnus-newsgroup-headers))
6545           ;; Set the new ranges of read articles.
6546           (save-excursion
6547             (set-buffer gnus-group-buffer)
6548             (gnus-undo-force-boundary))
6549           (gnus-update-read-articles
6550            group (gnus-sorted-union
6551                   gnus-newsgroup-unreads gnus-newsgroup-unselected))
6552           ;; Set the current article marks.
6553           (let ((gnus-newsgroup-scored
6554                  (if (and (not gnus-save-score)
6555                           (not non-destructive))
6556                      nil
6557                    gnus-newsgroup-scored)))
6558             (save-excursion
6559               (gnus-update-marks)))
6560           ;; Do the cross-ref thing.
6561           (when gnus-use-cross-reference
6562             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
6563           ;; Do not switch windows but change the buffer to work.
6564           (set-buffer gnus-group-buffer)
6565           (unless (gnus-ephemeral-group-p group)
6566             (gnus-group-update-group group)))))))
6567
6568 (defun gnus-summary-save-newsrc (&optional force)
6569   "Save the current number of read/marked articles in the dribble buffer.
6570 The dribble buffer will then be saved.
6571 If FORCE (the prefix), also save the .newsrc file(s)."
6572   (interactive "P")
6573   (gnus-summary-update-info t)
6574   (if force
6575       (gnus-save-newsrc-file)
6576     (gnus-dribble-save)))
6577
6578 (defun gnus-summary-exit (&optional temporary leave-hidden)
6579   "Exit reading current newsgroup, and then return to group selection mode.
6580 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
6581   (interactive)
6582   (gnus-set-global-variables)
6583   (gnus-kill-save-kill-buffer)
6584   (gnus-async-halt-prefetch)
6585   (let* ((group gnus-newsgroup-name)
6586          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
6587          (gnus-group-is-exiting-p t)
6588          (mode major-mode)
6589          (group-point nil)
6590          (buf (current-buffer)))
6591     (unless quit-config
6592       ;; Do adaptive scoring, and possibly save score files.
6593       (when gnus-newsgroup-adaptive
6594         (gnus-score-adaptive))
6595       (when gnus-use-scoring
6596         (gnus-score-save)))
6597     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
6598     ;; If we have several article buffers, we kill them at exit.
6599     (unless gnus-single-article-buffer
6600       (gnus-kill-buffer gnus-original-article-buffer)
6601       (setq gnus-article-current nil))
6602     (when gnus-use-cache
6603       (gnus-cache-possibly-remove-articles)
6604       (gnus-cache-save-buffers))
6605     (gnus-async-prefetch-remove-group group)
6606     (when gnus-suppress-duplicates
6607       (gnus-dup-enter-articles))
6608     (when gnus-use-trees
6609       (gnus-tree-close group))
6610     (when gnus-use-cache
6611       (gnus-cache-write-active))
6612     ;; Remove entries for this group.
6613     (nnmail-purge-split-history (gnus-group-real-name group))
6614     ;; Make all changes in this group permanent.
6615     (unless quit-config
6616       (gnus-run-hooks 'gnus-exit-group-hook)
6617       (gnus-summary-update-info))
6618     (gnus-close-group group)
6619     ;; Make sure where we were, and go to next newsgroup.
6620     (set-buffer gnus-group-buffer)
6621     (unless quit-config
6622       (gnus-group-jump-to-group group))
6623     (gnus-run-hooks 'gnus-summary-exit-hook)
6624     (unless (or quit-config
6625                 ;; If this group has disappeared from the summary
6626                 ;; buffer, don't skip forwards.
6627                 (not (string= group (gnus-group-group-name))))
6628       (gnus-group-next-unread-group 1))
6629     (setq group-point (point))
6630     (if temporary
6631         nil                             ;Nothing to do.
6632       ;; If we have several article buffers, we kill them at exit.
6633       (unless gnus-single-article-buffer
6634         (gnus-kill-buffer gnus-article-buffer)
6635         (gnus-kill-buffer gnus-original-article-buffer)
6636         (setq gnus-article-current nil))
6637       (set-buffer buf)
6638       (if (not gnus-kill-summary-on-exit)
6639           (progn
6640             (gnus-deaden-summary)
6641             (setq mode nil))
6642         ;; We set all buffer-local variables to nil.  It is unclear why
6643         ;; this is needed, but if we don't, buffer-local variables are
6644         ;; not garbage-collected, it seems.  This would the lead to en
6645         ;; ever-growing Emacs.
6646         (gnus-summary-clear-local-variables)
6647         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6648           (gnus-summary-clear-local-variables))
6649         (when (get-buffer gnus-article-buffer)
6650           (bury-buffer gnus-article-buffer))
6651         ;; We clear the global counterparts of the buffer-local
6652         ;; variables as well, just to be on the safe side.
6653         (set-buffer gnus-group-buffer)
6654         (gnus-summary-clear-local-variables)
6655         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6656           (gnus-summary-clear-local-variables))
6657         ;; Return to group mode buffer.
6658         (when (eq mode 'gnus-summary-mode)
6659           (gnus-kill-buffer buf)))
6660       (setq gnus-current-select-method gnus-select-method)
6661       (if leave-hidden
6662           (set-buffer gnus-group-buffer)
6663         (pop-to-buffer gnus-group-buffer))
6664       (if (not quit-config)
6665           (progn
6666             (goto-char group-point)
6667             (unless leave-hidden
6668               (gnus-configure-windows 'group 'force))
6669             (unless (pos-visible-in-window-p)
6670               (forward-line (/ (static-if (featurep 'xemacs)
6671                                    (window-displayed-height)
6672                                  (1- (window-height)))
6673                                -2))
6674               (set-window-start (selected-window) (point))
6675               (goto-char group-point)))
6676         (gnus-handle-ephemeral-exit quit-config))
6677       ;; Clear the current group name.
6678       (unless quit-config
6679         (setq gnus-newsgroup-name nil)))))
6680
6681 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
6682 (defun gnus-summary-exit-no-update (&optional no-questions)
6683   "Quit reading current newsgroup without updating read article info."
6684   (interactive)
6685   (let* ((group gnus-newsgroup-name)
6686          (gnus-group-is-exiting-p t)
6687          (gnus-group-is-exiting-without-update-p t)
6688          (quit-config (gnus-group-quit-config group)))
6689     (when (or no-questions
6690               gnus-expert-user
6691               (gnus-y-or-n-p "Discard changes to this group and exit? "))
6692       (gnus-async-halt-prefetch)
6693       (run-hooks 'gnus-summary-prepare-exit-hook)
6694       ;; If we have several article buffers, we kill them at exit.
6695       (unless gnus-single-article-buffer
6696         (gnus-kill-buffer gnus-article-buffer)
6697         (gnus-kill-buffer gnus-original-article-buffer)
6698         (setq gnus-article-current nil))
6699       (if (not gnus-kill-summary-on-exit)
6700           (gnus-deaden-summary)
6701         (gnus-close-group group)
6702         (gnus-summary-clear-local-variables)
6703         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6704           (gnus-summary-clear-local-variables))
6705         (set-buffer gnus-group-buffer)
6706         (gnus-summary-clear-local-variables)
6707         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6708           (gnus-summary-clear-local-variables))
6709         (gnus-kill-buffer gnus-summary-buffer))
6710       (unless gnus-single-article-buffer
6711         (setq gnus-article-current nil))
6712       (when gnus-use-trees
6713         (gnus-tree-close group))
6714       (gnus-async-prefetch-remove-group group)
6715       (when (get-buffer gnus-article-buffer)
6716         (bury-buffer gnus-article-buffer))
6717       ;; Return to the group buffer.
6718       (gnus-configure-windows 'group 'force)
6719       ;; Clear the current group name.
6720       (setq gnus-newsgroup-name nil)
6721       (unless (gnus-ephemeral-group-p group)
6722         (gnus-group-update-group group))
6723       (when (equal (gnus-group-group-name) group)
6724         (gnus-group-next-unread-group 1))
6725       (when quit-config
6726         (gnus-handle-ephemeral-exit quit-config)))))
6727
6728 (defun gnus-handle-ephemeral-exit (quit-config)
6729   "Handle movement when leaving an ephemeral group.
6730 The state which existed when entering the ephemeral is reset."
6731   (if (not (buffer-name (car quit-config)))
6732       (gnus-configure-windows 'group 'force)
6733     (set-buffer (car quit-config))
6734     (cond ((eq major-mode 'gnus-summary-mode)
6735            (gnus-set-global-variables))
6736           ((eq major-mode 'gnus-article-mode)
6737            (save-excursion
6738              ;; The `gnus-summary-buffer' variable may point
6739              ;; to the old summary buffer when using a single
6740              ;; article buffer.
6741              (unless (gnus-buffer-live-p gnus-summary-buffer)
6742                (set-buffer gnus-group-buffer))
6743              (set-buffer gnus-summary-buffer)
6744              (gnus-set-global-variables))))
6745     (if (or (eq (cdr quit-config) 'article)
6746             (eq (cdr quit-config) 'pick))
6747         (progn
6748           ;; The current article may be from the ephemeral group
6749           ;; thus it is best that we reload this article
6750           ;;
6751           ;; If we're exiting from a large digest, this can be
6752           ;; extremely slow.  So, it's better not to reload it. -- jh.
6753           ;;(gnus-summary-show-article)
6754           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
6755               (gnus-configure-windows 'pick 'force)
6756             (gnus-configure-windows (cdr quit-config) 'force)))
6757       (gnus-configure-windows (cdr quit-config) 'force))
6758     (when (eq major-mode 'gnus-summary-mode)
6759       (gnus-summary-next-subject 1 nil t)
6760       (gnus-summary-recenter)
6761       (gnus-summary-position-point))))
6762
6763 (defun gnus-summary-preview-mime-message ()
6764   "MIME decode and play this message."
6765   (interactive)
6766   (let ((gnus-break-pages nil)
6767         (gnus-show-mime t))
6768     (gnus-summary-select-article gnus-show-all-headers t))
6769   (let ((w (get-buffer-window gnus-article-buffer)))
6770     (when w
6771       (select-window (get-buffer-window gnus-article-buffer)))))
6772
6773 ;;; Dead summaries.
6774
6775 (defvar gnus-dead-summary-mode-map nil)
6776
6777 (unless gnus-dead-summary-mode-map
6778   (setq gnus-dead-summary-mode-map (make-keymap))
6779   (suppress-keymap gnus-dead-summary-mode-map)
6780   (substitute-key-definition
6781    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
6782   (dolist (key '("\C-d" "\r" "\177" [delete]))
6783     (define-key gnus-dead-summary-mode-map
6784       key 'gnus-summary-wake-up-the-dead))
6785   (dolist (key '("q" "Q"))
6786     (define-key gnus-dead-summary-mode-map key 'bury-buffer)))
6787
6788 (defvar gnus-dead-summary-mode nil
6789   "Minor mode for Gnus summary buffers.")
6790
6791 (defun gnus-dead-summary-mode (&optional arg)
6792   "Minor mode for Gnus summary buffers."
6793   (interactive "P")
6794   (when (eq major-mode 'gnus-summary-mode)
6795     (make-local-variable 'gnus-dead-summary-mode)
6796     (setq gnus-dead-summary-mode
6797           (if (null arg) (not gnus-dead-summary-mode)
6798             (> (prefix-numeric-value arg) 0)))
6799     (when gnus-dead-summary-mode
6800       (add-minor-mode
6801        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
6802
6803 (defun gnus-deaden-summary ()
6804   "Make the current summary buffer into a dead summary buffer."
6805   ;; Kill any previous dead summary buffer.
6806   (when (and gnus-dead-summary
6807              (buffer-name gnus-dead-summary))
6808     (save-excursion
6809       (set-buffer gnus-dead-summary)
6810       (when gnus-dead-summary-mode
6811         (kill-buffer (current-buffer)))))
6812   ;; Make this the current dead summary.
6813   (setq gnus-dead-summary (current-buffer))
6814   (gnus-dead-summary-mode 1)
6815   (let ((name (buffer-name)))
6816     (when (string-match "Summary" name)
6817       (rename-buffer
6818        (concat (substring name 0 (match-beginning 0)) "Dead "
6819                (substring name (match-beginning 0)))
6820        t)
6821       (bury-buffer))))
6822
6823 (defun gnus-kill-or-deaden-summary (buffer)
6824   "Kill or deaden the summary BUFFER."
6825   (save-excursion
6826     (when (and (buffer-name buffer)
6827                (not gnus-single-article-buffer))
6828       (save-excursion
6829         (set-buffer buffer)
6830         (gnus-kill-buffer gnus-article-buffer)
6831         (gnus-kill-buffer gnus-original-article-buffer)))
6832     (cond
6833      ;; Kill the buffer.
6834      (gnus-kill-summary-on-exit
6835       (when (and gnus-use-trees
6836                  (gnus-buffer-exists-p buffer))
6837         (save-excursion
6838           (set-buffer buffer)
6839           (gnus-tree-close gnus-newsgroup-name)))
6840       (gnus-kill-buffer buffer))
6841      ;; Deaden the buffer.
6842      ((gnus-buffer-exists-p buffer)
6843       (save-excursion
6844         (set-buffer buffer)
6845         (gnus-deaden-summary))))))
6846
6847 (defun gnus-summary-wake-up-the-dead (&rest args)
6848   "Wake up the dead summary buffer."
6849   (interactive)
6850   (gnus-dead-summary-mode -1)
6851   (let ((name (buffer-name)))
6852     (when (string-match "Dead " name)
6853       (rename-buffer
6854        (concat (substring name 0 (match-beginning 0))
6855                (substring name (match-end 0)))
6856        t)))
6857   (gnus-message 3 "This dead summary is now alive again"))
6858
6859 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
6860 (defun gnus-summary-fetch-faq (&optional faq-dir)
6861   "Fetch the FAQ for the current group.
6862 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
6863 in."
6864   (interactive
6865    (list
6866     (when current-prefix-arg
6867       (completing-read
6868        "FAQ dir: " (and (listp gnus-group-faq-directory)
6869                         (mapcar (lambda (file) (list file))
6870                                 gnus-group-faq-directory))))))
6871   (let (gnus-faq-buffer)
6872     (when (setq gnus-faq-buffer
6873                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
6874       (gnus-configure-windows 'summary-faq))))
6875
6876 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
6877 (defun gnus-summary-describe-group (&optional force)
6878   "Describe the current newsgroup."
6879   (interactive "P")
6880   (gnus-group-describe-group force gnus-newsgroup-name))
6881
6882 (defun gnus-summary-describe-briefly ()
6883   "Describe summary mode commands briefly."
6884   (interactive)
6885   (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")))
6886
6887 ;; Walking around group mode buffer from summary mode.
6888
6889 (defun gnus-summary-next-group (&optional no-article target-group backward)
6890   "Exit current newsgroup and then select next unread newsgroup.
6891 If prefix argument NO-ARTICLE is non-nil, no article is selected
6892 initially.  If TARGET-GROUP, go to this group.  If BACKWARD, go to
6893 previous group instead."
6894   (interactive "P")
6895   ;; Stop pre-fetching.
6896   (gnus-async-halt-prefetch)
6897   (let ((current-group gnus-newsgroup-name)
6898         (current-buffer (current-buffer))
6899         entered)
6900     ;; First we semi-exit this group to update Xrefs and all variables.
6901     ;; We can't do a real exit, because the window conf must remain
6902     ;; the same in case the user is prompted for info, and we don't
6903     ;; want the window conf to change before that...
6904     (gnus-summary-exit t)
6905     (while (not entered)
6906       ;; Then we find what group we are supposed to enter.
6907       (set-buffer gnus-group-buffer)
6908       (gnus-group-jump-to-group current-group)
6909       (setq target-group
6910             (or target-group
6911                 (if (eq gnus-keep-same-level 'best)
6912                     (gnus-summary-best-group gnus-newsgroup-name)
6913                   (gnus-summary-search-group backward gnus-keep-same-level))))
6914       (if (not target-group)
6915           ;; There are no further groups, so we return to the group
6916           ;; buffer.
6917           (progn
6918             (gnus-message 5 "Returning to the group buffer")
6919             (setq entered t)
6920             (when (gnus-buffer-live-p current-buffer)
6921               (set-buffer current-buffer)
6922               (gnus-summary-exit))
6923             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
6924         ;; We try to enter the target group.
6925         (gnus-group-jump-to-group target-group)
6926         (let ((unreads (gnus-group-group-unread)))
6927           (if (and (or (eq t unreads)
6928                        (and unreads (not (zerop unreads))))
6929                    (gnus-summary-read-group
6930                     target-group nil no-article
6931                     (and (buffer-name current-buffer) current-buffer)
6932                     nil backward))
6933               (setq entered t)
6934             (setq current-group target-group
6935                   target-group nil)))))))
6936
6937 (defun gnus-summary-prev-group (&optional no-article)
6938   "Exit current newsgroup and then select previous unread newsgroup.
6939 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
6940   (interactive "P")
6941   (gnus-summary-next-group no-article nil t))
6942
6943 ;; Walking around summary lines.
6944
6945 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
6946   "Go to the first subject satisfying any non-nil constraint.
6947 If UNREAD is non-nil, the article should be unread.
6948 If UNDOWNLOADED is non-nil, the article should be undownloaded.
6949 If UNSEEN is non-nil, the article should be unseen.
6950 Returns the article selected or nil if there are no matching articles."
6951   (interactive "P")
6952   (cond
6953    ;; Empty summary.
6954    ((null gnus-newsgroup-data)
6955     (gnus-message 3 "No articles in the group")
6956     nil)
6957    ;; Pick the first article.
6958    ((not (or unread undownloaded unseen))
6959     (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
6960     (gnus-data-number (car gnus-newsgroup-data)))
6961    ;; Find the first unread article.
6962    (t
6963     (let ((data gnus-newsgroup-data))
6964       (while (and data
6965                   (let ((num (gnus-data-number (car data))))
6966                     (or (memq num gnus-newsgroup-unfetched)
6967                         (not (or (and unread
6968                                       (memq num gnus-newsgroup-unreads))
6969                                  (and undownloaded
6970                                       (memq num gnus-newsgroup-undownloaded))
6971                                  (and unseen
6972                                       (memq num gnus-newsgroup-unseen)))))))
6973         (setq data (cdr data)))
6974       (prog1
6975           (if data
6976               (progn
6977                 (goto-char (gnus-data-pos (car data)))
6978                 (gnus-data-number (car data)))
6979             (gnus-message 3 "No more%s articles"
6980                           (let* ((r (when unread " unread"))
6981                                  (d (when undownloaded " undownloaded"))
6982                                  (s (when unseen " unseen"))
6983                                  (l (delq nil (list r d s))))
6984                             (cond ((= 3 (length l))
6985                                    (concat r "," d ", or" s))
6986                                   ((= 2 (length l))
6987                                    (concat (car l) ", or" (cadr l)))
6988                                   ((= 1 (length l))
6989                                    (car l))
6990                                   (t
6991                                    ""))))
6992             nil
6993             )
6994         (gnus-summary-position-point))))))
6995
6996 (defun gnus-summary-next-subject (n &optional unread dont-display)
6997   "Go to next N'th summary line.
6998 If N is negative, go to the previous N'th subject line.
6999 If UNREAD is non-nil, only unread articles are selected.
7000 The difference between N and the actual number of steps taken is
7001 returned."
7002   (interactive "p")
7003   (let ((backward (< n 0))
7004         (n (abs n)))
7005     (while (and (> n 0)
7006                 (if backward
7007                     (gnus-summary-find-prev unread)
7008                   (gnus-summary-find-next unread)))
7009       (unless (zerop (setq n (1- n)))
7010         (gnus-summary-show-thread)))
7011     (when (/= 0 n)
7012       (gnus-message 7 "No more%s articles"
7013                     (if unread " unread" "")))
7014     (unless dont-display
7015       (gnus-summary-recenter)
7016       (gnus-summary-position-point))
7017     n))
7018
7019 (defun gnus-summary-next-unread-subject (n)
7020   "Go to next N'th unread summary line."
7021   (interactive "p")
7022   (gnus-summary-next-subject n t))
7023
7024 (defun gnus-summary-prev-subject (n &optional unread)
7025   "Go to previous N'th summary line.
7026 If optional argument UNREAD is non-nil, only unread article is selected."
7027   (interactive "p")
7028   (gnus-summary-next-subject (- n) unread))
7029
7030 (defun gnus-summary-prev-unread-subject (n)
7031   "Go to previous N'th unread summary line."
7032   (interactive "p")
7033   (gnus-summary-next-subject (- n) t))
7034
7035 (defun gnus-summary-goto-subjects (articles)
7036   "Insert the subject header for ARTICLES in the current buffer."
7037   (save-excursion
7038     (dolist (article articles)
7039       (gnus-summary-goto-subject article t)))
7040   (gnus-summary-limit (append articles gnus-newsgroup-limit))
7041   (gnus-summary-position-point))
7042  
7043 (defun gnus-summary-goto-subject (article &optional force silent)
7044   "Go the subject line of ARTICLE.
7045 If FORCE, also allow jumping to articles not currently shown."
7046   (interactive "nArticle number: ")
7047   (unless (numberp article)
7048     (error "Article %s is not a number" article))
7049   (let ((b (point))
7050         (data (gnus-data-find article)))
7051     ;; We read in the article if we have to.
7052     (and (not data)
7053          force
7054          (gnus-summary-insert-subject
7055           article
7056           (if (or (numberp force) (vectorp force)) force)
7057           t)
7058          (setq data (gnus-data-find article)))
7059     (goto-char b)
7060     (if (not data)
7061         (progn
7062           (unless silent
7063             (gnus-message 3 "Can't find article %d" article))
7064           nil)
7065       (let ((pt (gnus-data-pos data)))
7066         (goto-char pt)
7067         (gnus-summary-set-article-display-arrow pt))
7068       (gnus-summary-position-point)
7069       article)))
7070
7071 ;; Walking around summary lines with displaying articles.
7072
7073 (defun gnus-summary-expand-window (&optional arg)
7074   "Make the summary buffer take up the entire Emacs frame.
7075 Given a prefix, will force an `article' buffer configuration."
7076   (interactive "P")
7077   (if arg
7078       (gnus-configure-windows 'article 'force)
7079     (gnus-configure-windows 'summary 'force)))
7080
7081 (defun gnus-summary-display-article (article &optional all-header)
7082   "Display ARTICLE in article buffer."
7083   (when (gnus-buffer-live-p gnus-article-buffer)
7084     (with-current-buffer gnus-article-buffer
7085       (set-buffer-multibyte t)))
7086   (gnus-set-global-variables)
7087   (when (gnus-buffer-live-p gnus-article-buffer)
7088     (with-current-buffer gnus-article-buffer
7089       (setq gnus-article-charset gnus-newsgroup-charset)
7090       (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7091       (set-buffer-multibyte t)))
7092   (if (null article)
7093       nil
7094     (prog1
7095         (if gnus-summary-display-article-function
7096             (funcall gnus-summary-display-article-function article all-header)
7097           (gnus-article-prepare article all-header))
7098       (with-current-buffer gnus-article-buffer
7099         (set (make-local-variable 'gnus-summary-search-article-matched-data)
7100              nil))
7101       (gnus-run-hooks 'gnus-select-article-hook)
7102       (when (and gnus-current-article
7103                  (not (zerop gnus-current-article)))
7104         (gnus-summary-goto-subject gnus-current-article))
7105       (gnus-summary-recenter)
7106       (when (and gnus-use-trees gnus-show-threads)
7107         (gnus-possibly-generate-tree article)
7108         (gnus-highlight-selected-tree article))
7109       ;; Successfully display article.
7110       (gnus-article-set-window-start
7111        (cdr (assq article gnus-newsgroup-bookmarks))))))
7112
7113 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7114   "Select the current article.
7115 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
7116 non-nil, the article will be re-fetched even if it already present in
7117 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
7118 be displayed."
7119   ;; Make sure we are in the summary buffer to work around bbdb bug.
7120   (unless (eq major-mode 'gnus-summary-mode)
7121     (set-buffer gnus-summary-buffer))
7122   (let ((article (or article (gnus-summary-article-number)))
7123         (all-headers (not (not all-headers))) ;Must be T or NIL.
7124         gnus-summary-display-article-function)
7125     (and (not pseudo)
7126          (gnus-summary-article-pseudo-p article)
7127          (error "This is a pseudo-article"))
7128     (save-excursion
7129       (set-buffer gnus-summary-buffer)
7130       (if (or (and gnus-single-article-buffer
7131                    (or (null gnus-current-article)
7132                        (null gnus-article-current)
7133                        (null (get-buffer gnus-article-buffer))
7134                        (not (eq article (cdr gnus-article-current)))
7135                        (not (equal (car gnus-article-current)
7136                                    gnus-newsgroup-name))))
7137               (and (not gnus-single-article-buffer)
7138                    (or (null gnus-current-article)
7139                        (not (eq gnus-current-article article))))
7140               force)
7141           ;; The requested article is different from the current article.
7142           (progn
7143             (gnus-summary-display-article article all-headers)
7144             (gnus-article-set-window-start
7145              (cdr (assq article gnus-newsgroup-bookmarks)))
7146             article)
7147         'old))))
7148
7149 (defun gnus-summary-force-verify-and-decrypt ()
7150   "Display buttons for signed/encrypted parts and verify/decrypt them."
7151   (interactive)
7152   (let ((mm-verify-option 'known)
7153         (mm-decrypt-option 'known)
7154         (gnus-article-emulate-mime t)
7155         (gnus-buttonized-mime-types (append (list "multipart/signed"
7156                                                   "multipart/encrypted")
7157                                             gnus-buttonized-mime-types)))
7158     (gnus-summary-select-article nil 'force)))
7159
7160 (defun gnus-summary-set-current-mark (&optional current-mark)
7161   "Obsolete function."
7162   nil)
7163
7164 (defun gnus-summary-next-article (&optional unread subject backward push)
7165   "Select the next article.
7166 If UNREAD, only unread articles are selected.
7167 If SUBJECT, only articles with SUBJECT are selected.
7168 If BACKWARD, the previous article is selected instead of the next."
7169   (interactive "P")
7170   (cond
7171    ;; Is there such an article?
7172    ((and (gnus-summary-search-forward unread subject backward)
7173          (or (gnus-summary-display-article (gnus-summary-article-number))
7174              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7175     (gnus-summary-position-point))
7176    ;; If not, we try the first unread, if that is wanted.
7177    ((and subject
7178          gnus-auto-select-same
7179          (gnus-summary-first-unread-article))
7180     (gnus-summary-position-point)
7181     (gnus-message 6 "Wrapped"))
7182    ;; Try to get next/previous article not displayed in this group.
7183    ((and gnus-auto-extend-newsgroup
7184          (not unread) (not subject))
7185     (gnus-summary-goto-article
7186      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7187      nil (count-lines (point-min) (point))))
7188    ;; Go to next/previous group.
7189    (t
7190     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7191       (gnus-summary-jump-to-group gnus-newsgroup-name))
7192     (let ((cmd last-command-char)
7193           (point
7194            (save-excursion
7195              (set-buffer gnus-group-buffer)
7196              (point)))
7197           (group
7198            (if (eq gnus-keep-same-level 'best)
7199                (gnus-summary-best-group gnus-newsgroup-name)
7200              (gnus-summary-search-group backward gnus-keep-same-level))))
7201       ;; For some reason, the group window gets selected.  We change
7202       ;; it back.
7203       (select-window (get-buffer-window (current-buffer)))
7204       ;; Select next unread newsgroup automagically.
7205       (cond
7206        ((or (not gnus-auto-select-next)
7207             (not cmd))
7208         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7209        ((or (eq gnus-auto-select-next 'quietly)
7210             (and (eq gnus-auto-select-next 'slightly-quietly)
7211                  push)
7212             (and (eq gnus-auto-select-next 'almost-quietly)
7213                  (gnus-summary-last-article-p)))
7214         ;; Select quietly.
7215         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7216             (gnus-summary-exit)
7217           (gnus-message 7 "No more%s articles (%s)..."
7218                         (if unread " unread" "")
7219                         (if group (concat "selecting " group)
7220                           "exiting"))
7221           (gnus-summary-next-group nil group backward)))
7222        (t
7223         (when (gnus-key-press-event-p last-input-event)
7224           (gnus-summary-walk-group-buffer
7225            gnus-newsgroup-name cmd unread backward point))))))))
7226
7227 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7228   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7229                       (?\C-p (gnus-group-prev-unread-group 1))))
7230         (cursor-in-echo-area t)
7231         keve key group ended prompt)
7232     (save-excursion
7233       (set-buffer gnus-group-buffer)
7234       (goto-char start)
7235       (setq group
7236             (if (eq gnus-keep-same-level 'best)
7237                 (gnus-summary-best-group gnus-newsgroup-name)
7238               (gnus-summary-search-group backward gnus-keep-same-level))))
7239     (while (not ended)
7240       (setq prompt
7241             (format
7242              "No more%s articles%s " (if unread " unread" "")
7243              (if (and group
7244                       (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7245                  (format " (Type %s for %s [%s])"
7246                          (single-key-description cmd) group
7247                          (gnus-group-unread group))
7248                (format " (Type %s to exit %s)"
7249                        (single-key-description cmd)
7250                        gnus-newsgroup-name))))
7251       ;; Confirm auto selection.
7252       (setq key (car (setq keve (gnus-read-event-char prompt)))
7253             ended t)
7254       (cond
7255        ((assq key keystrokes)
7256         (let ((obuf (current-buffer)))
7257           (switch-to-buffer gnus-group-buffer)
7258           (when group
7259             (gnus-group-jump-to-group group))
7260           (eval (cadr (assq key keystrokes)))
7261           (setq group (gnus-group-group-name))
7262           (switch-to-buffer obuf))
7263         (setq ended nil))
7264        ((equal key cmd)
7265         (if (or (not group)
7266                 (gnus-ephemeral-group-p gnus-newsgroup-name))
7267             (gnus-summary-exit)
7268           (gnus-summary-next-group nil group backward)))
7269        (t
7270         (push (cdr keve) unread-command-events))))))
7271
7272 (defun gnus-summary-next-unread-article ()
7273   "Select unread article after current one."
7274   (interactive)
7275   (gnus-summary-next-article
7276    (or (not (eq gnus-summary-goto-unread 'never))
7277        (gnus-summary-last-article-p (gnus-summary-article-number)))
7278    (and gnus-auto-select-same
7279         (gnus-summary-article-subject))))
7280
7281 (defun gnus-summary-prev-article (&optional unread subject)
7282   "Select the article after the current one.
7283 If UNREAD is non-nil, only unread articles are selected."
7284   (interactive "P")
7285   (gnus-summary-next-article unread subject t))
7286
7287 (defun gnus-summary-prev-unread-article ()
7288   "Select unread article before current one."
7289   (interactive)
7290   (gnus-summary-prev-article
7291    (or (not (eq gnus-summary-goto-unread 'never))
7292        (gnus-summary-first-article-p (gnus-summary-article-number)))
7293    (and gnus-auto-select-same
7294         (gnus-summary-article-subject))))
7295
7296 (defun gnus-summary-next-page (&optional lines circular stop)
7297   "Show next page of the selected article.
7298 If at the end of the current article, select the next article.
7299 LINES says how many lines should be scrolled up.
7300
7301 If CIRCULAR is non-nil, go to the start of the article instead of
7302 selecting the next article when reaching the end of the current
7303 article.
7304
7305 If STOP is non-nil, just stop when reaching the end of the message.
7306
7307 Also see the variable `gnus-article-skip-boring'."
7308   (interactive "P")
7309   (setq gnus-summary-buffer (current-buffer))
7310   (gnus-set-global-variables)
7311   (let ((article (gnus-summary-article-number))
7312         (article-window (get-buffer-window gnus-article-buffer t))
7313         endp)
7314     ;; If the buffer is empty, we have no article.
7315     (unless article
7316       (error "No article to select"))
7317     (gnus-configure-windows 'article)
7318     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7319         (if (and (eq gnus-summary-goto-unread 'never)
7320                  (not (gnus-summary-last-article-p article)))
7321             (gnus-summary-next-article)
7322           (gnus-summary-next-unread-article))
7323       (if (or (null gnus-current-article)
7324               (null gnus-article-current)
7325               (/= article (cdr gnus-article-current))
7326               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7327           ;; Selected subject is different from current article's.
7328           (gnus-summary-display-article article)
7329         (when article-window
7330           (gnus-eval-in-buffer-window gnus-article-buffer
7331             (setq endp (or (gnus-article-next-page lines)
7332                            (gnus-article-only-boring-p))))
7333           (when endp
7334             (cond (stop
7335                    (gnus-message 3 "End of message"))
7336                   (circular
7337                    (gnus-summary-beginning-of-article))
7338                   (lines
7339                    (gnus-message 3 "End of message"))
7340                   ((null lines)
7341                    (if (and (eq gnus-summary-goto-unread 'never)
7342                             (not (gnus-summary-last-article-p article)))
7343                        (gnus-summary-next-article)
7344                      (gnus-summary-next-unread-article))))))))
7345     (gnus-summary-recenter)
7346     (gnus-summary-position-point)))
7347
7348 (defun gnus-summary-prev-page (&optional lines move)
7349   "Show previous page of selected article.
7350 Argument LINES specifies lines to be scrolled down.
7351 If MOVE, move to the previous unread article if point is at
7352 the beginning of the buffer."
7353   (interactive "P")
7354   (let ((article (gnus-summary-article-number))
7355         (article-window (get-buffer-window gnus-article-buffer t))
7356         endp)
7357     (gnus-configure-windows 'article)
7358     (if (or (null gnus-current-article)
7359             (null gnus-article-current)
7360             (/= article (cdr gnus-article-current))
7361             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7362         ;; Selected subject is different from current article's.
7363         (gnus-summary-display-article article)
7364       (gnus-summary-recenter)
7365       (when article-window
7366         (gnus-eval-in-buffer-window gnus-article-buffer
7367           (setq endp (gnus-article-prev-page lines)))
7368         (when (and move endp)
7369           (cond (lines
7370                  (gnus-message 3 "Beginning of message"))
7371                 ((null lines)
7372                  (if (and (eq gnus-summary-goto-unread 'never)
7373                           (not (gnus-summary-first-article-p article)))
7374                      (gnus-summary-prev-article)
7375                    (gnus-summary-prev-unread-article))))))))
7376   (gnus-summary-position-point))
7377
7378 (defun gnus-summary-prev-page-or-article (&optional lines)
7379   "Show previous page of selected article.
7380 Argument LINES specifies lines to be scrolled down.
7381 If at the beginning of the article, go to the next article."
7382   (interactive "P")
7383   (gnus-summary-prev-page lines t))
7384
7385 (defun gnus-summary-scroll-up (lines)
7386   "Scroll up (or down) one line current article.
7387 Argument LINES specifies lines to be scrolled up (or down if negative)."
7388   (interactive "p")
7389   (gnus-configure-windows 'article)
7390   (gnus-summary-show-thread)
7391   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7392     (gnus-eval-in-buffer-window gnus-article-buffer
7393       (cond ((> lines 0)
7394              (when (gnus-article-next-page lines)
7395                (gnus-message 3 "End of message")))
7396             ((< lines 0)
7397              (gnus-article-prev-page (- lines))))))
7398   (gnus-summary-recenter)
7399   (gnus-summary-position-point))
7400
7401 (defun gnus-summary-scroll-down (lines)
7402   "Scroll down (or up) one line current article.
7403 Argument LINES specifies lines to be scrolled down (or up if negative)."
7404   (interactive "p")
7405   (gnus-summary-scroll-up (- lines)))
7406
7407 (defun gnus-summary-next-same-subject ()
7408   "Select next article which has the same subject as current one."
7409   (interactive)
7410   (gnus-summary-next-article nil (gnus-summary-article-subject)))
7411
7412 (defun gnus-summary-prev-same-subject ()
7413   "Select previous article which has the same subject as current one."
7414   (interactive)
7415   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7416
7417 (defun gnus-summary-next-unread-same-subject ()
7418   "Select next unread article which has the same subject as current one."
7419   (interactive)
7420   (gnus-summary-next-article t (gnus-summary-article-subject)))
7421
7422 (defun gnus-summary-prev-unread-same-subject ()
7423   "Select previous unread article which has the same subject as current one."
7424   (interactive)
7425   (gnus-summary-prev-article t (gnus-summary-article-subject)))
7426
7427 (defun gnus-summary-first-unread-article ()
7428   "Select the first unread article.
7429 Return nil if there are no unread articles."
7430   (interactive)
7431   (prog1
7432       (when (gnus-summary-first-subject t)
7433         (gnus-summary-show-thread)
7434         (gnus-summary-first-subject t)
7435         (gnus-summary-display-article (gnus-summary-article-number)))
7436     (gnus-summary-position-point)))
7437
7438 (defun gnus-summary-first-unread-subject ()
7439   "Place the point on the subject line of the first unread article.
7440 Return nil if there are no unread articles."
7441   (interactive)
7442   (prog1
7443       (when (gnus-summary-first-subject t)
7444         (gnus-summary-show-thread)
7445         (gnus-summary-first-subject t))
7446     (gnus-summary-position-point)))
7447
7448 (defun gnus-summary-first-unseen-subject ()
7449   "Place the point on the subject line of the first unseen article.
7450 Return nil if there are no unseen articles."
7451   (interactive)
7452   (prog1
7453       (when (gnus-summary-first-subject nil nil t)
7454         (gnus-summary-show-thread)
7455         (gnus-summary-first-subject nil nil t))
7456     (gnus-summary-position-point)))
7457
7458 (defun gnus-summary-first-unseen-or-unread-subject ()
7459   "Place the point on the subject line of the first unseen article or,
7460 if all article have been seen, on the subject line of the first unread
7461 article."
7462   (interactive)
7463   (prog1
7464       (unless (when (gnus-summary-first-subject nil nil t)
7465                 (gnus-summary-show-thread)
7466                 (gnus-summary-first-subject nil nil t))
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-article ()
7473   "Select the first article.
7474 Return nil if there are no articles."
7475   (interactive)
7476   (prog1
7477       (when (gnus-summary-first-subject)
7478         (gnus-summary-show-thread)
7479         (gnus-summary-first-subject)
7480         (gnus-summary-display-article (gnus-summary-article-number)))
7481     (gnus-summary-position-point)))
7482
7483 (defun gnus-summary-best-unread-article (&optional arg)
7484   "Select the unread article with the highest score.
7485 If given a prefix argument, select the next unread article that has a
7486 score higher than the default score."
7487   (interactive "P")
7488   (let ((article (if arg
7489                      (gnus-summary-better-unread-subject)
7490                    (gnus-summary-best-unread-subject))))
7491     (if article
7492         (gnus-summary-goto-article article)
7493       (error "No unread articles"))))
7494
7495 (defun gnus-summary-best-unread-subject ()
7496   "Select the unread subject with the highest score."
7497   (interactive)
7498   (let ((best -1000000)
7499         (data gnus-newsgroup-data)
7500         article score)
7501     (while data
7502       (and (gnus-data-unread-p (car data))
7503            (> (setq score
7504                     (gnus-summary-article-score (gnus-data-number (car data))))
7505               best)
7506            (setq best score
7507                  article (gnus-data-number (car data))))
7508       (setq data (cdr data)))
7509     (when article
7510       (gnus-summary-goto-subject article))
7511     (gnus-summary-position-point)
7512     article))
7513
7514 (defun gnus-summary-better-unread-subject ()
7515   "Select the first unread subject that has a score over the default score."
7516   (interactive)
7517   (let ((data gnus-newsgroup-data)
7518         article score)
7519     (while (and (setq article (gnus-data-number (car data)))
7520                 (or (gnus-data-read-p (car data))
7521                     (not (> (gnus-summary-article-score article)
7522                             gnus-summary-default-score))))
7523       (setq data (cdr data)))
7524     (when article
7525       (gnus-summary-goto-subject article))
7526     (gnus-summary-position-point)
7527     article))
7528
7529 (defun gnus-summary-last-subject ()
7530   "Go to the last displayed subject line in the group."
7531   (let ((article (gnus-data-number (car (gnus-data-list t)))))
7532     (when article
7533       (gnus-summary-goto-subject article))))
7534
7535 (defun gnus-summary-goto-article (article &optional all-headers force)
7536   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7537 If ALL-HEADERS is non-nil, no header lines are hidden.
7538 If FORCE, go to the article even if it isn't displayed.  If FORCE
7539 is a number, it is the line the article is to be displayed on."
7540   (interactive
7541    (list
7542     (completing-read
7543      "Article number or Message-ID: "
7544      (mapcar (lambda (number) (list (int-to-string number)))
7545              gnus-newsgroup-limit))
7546     current-prefix-arg
7547     t))
7548   (prog1
7549       (if (and (stringp article)
7550                (string-match "@\\|%40" article))
7551           (gnus-summary-refer-article article)
7552         (when (stringp article)
7553           (setq article (string-to-number article)))
7554         (if (gnus-summary-goto-subject article force)
7555             (gnus-summary-display-article article all-headers)
7556           (gnus-message 4 "Couldn't go to article %s" article) nil))
7557     (gnus-summary-position-point)))
7558
7559 (defun gnus-summary-goto-last-article ()
7560   "Go to the previously read article."
7561   (interactive)
7562   (prog1
7563       (when gnus-last-article
7564         (gnus-summary-goto-article gnus-last-article nil t))
7565     (gnus-summary-position-point)))
7566
7567 (defun gnus-summary-pop-article (number)
7568   "Pop one article off the history and go to the previous.
7569 NUMBER articles will be popped off."
7570   (interactive "p")
7571   (let (to)
7572     (setq gnus-newsgroup-history
7573           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
7574     (if to
7575         (gnus-summary-goto-article (car to) nil t)
7576       (error "Article history empty")))
7577   (gnus-summary-position-point))
7578
7579 ;; Summary commands and functions for limiting the summary buffer.
7580
7581 (defun gnus-summary-limit-to-articles (n)
7582   "Limit the summary buffer to the next N articles.
7583 If not given a prefix, use the process marked articles instead."
7584   (interactive "P")
7585   (prog1
7586       (let ((articles (gnus-summary-work-articles n)))
7587         (setq gnus-newsgroup-processable nil)
7588         (gnus-summary-limit articles))
7589     (gnus-summary-position-point)))
7590
7591 (defun gnus-summary-pop-limit (&optional total)
7592   "Restore the previous limit.
7593 If given a prefix, remove all limits."
7594   (interactive "P")
7595   (when total
7596     (setq gnus-newsgroup-limits
7597           (list (mapcar (lambda (h) (mail-header-number h))
7598                         gnus-newsgroup-headers))))
7599   (unless gnus-newsgroup-limits
7600     (error "No limit to pop"))
7601   (prog1
7602       (gnus-summary-limit nil 'pop)
7603     (gnus-summary-position-point)))
7604
7605 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
7606   "Limit the summary buffer to articles that have subjects that match a regexp.
7607 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
7608   (interactive
7609    (list (read-string (if current-prefix-arg
7610                           "Exclude subject (regexp): "
7611                         "Limit to subject (regexp): "))
7612          nil current-prefix-arg))
7613   (unless header
7614     (setq header "subject"))
7615   (when (not (equal "" subject))
7616     (prog1
7617         (let ((articles (gnus-summary-find-matching
7618                          (or header "subject") subject 'all nil nil
7619                          not-matching)))
7620           (unless articles
7621             (error "Found no matches for \"%s\"" subject))
7622           (gnus-summary-limit articles))
7623       (gnus-summary-position-point))))
7624
7625 (defun gnus-summary-limit-to-author (from &optional not-matching)
7626   "Limit the summary buffer to articles that have authors that match a regexp.
7627 If NOT-MATCHING, excluding articles that have authors that match a regexp."
7628   (interactive
7629    (list (read-string (if current-prefix-arg
7630                           "Exclude author (regexp): "
7631                         "Limit to author (regexp): "))
7632          current-prefix-arg))
7633   (gnus-summary-limit-to-subject from "from" not-matching))
7634
7635 (defun gnus-summary-limit-to-age (age &optional younger-p)
7636   "Limit the summary buffer to articles that are older than (or equal) AGE days.
7637 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
7638 articles that are younger than AGE days."
7639   (interactive
7640    (let ((younger current-prefix-arg)
7641          (days-got nil)
7642          days)
7643      (while (not days-got)
7644        (setq days (if younger
7645                       (read-string "Limit to articles younger than (in days, older when negative): ")
7646                     (read-string
7647                      "Limit to articles older than (in days, younger when negative): ")))
7648        (when (> (length days) 0)
7649          (setq days (read days)))
7650        (if (numberp days)
7651            (progn
7652              (setq days-got t)
7653              (when (< days 0)
7654                (setq younger (not younger))
7655                (setq days (* days -1))))
7656          (message "Please enter a number.")
7657          (sleep-for 1)))
7658      (list days younger)))
7659   (prog1
7660       (let ((data gnus-newsgroup-data)
7661             (cutoff (days-to-time age))
7662             articles d date is-younger)
7663         (while (setq d (pop data))
7664           (when (and (vectorp (gnus-data-header d))
7665                      (setq date (mail-header-date (gnus-data-header d))))
7666             (setq is-younger (time-less-p
7667                               (time-since (condition-case ()
7668                                               (date-to-time date)
7669                                             (error '(0 0))))
7670                               cutoff))
7671             (when (if younger-p
7672                       is-younger
7673                     (not is-younger))
7674               (push (gnus-data-number d) articles))))
7675         (gnus-summary-limit (nreverse articles)))
7676     (gnus-summary-position-point)))
7677
7678 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
7679   "Limit the summary buffer to articles that match an 'extra' header."
7680   (interactive
7681    (let ((header
7682           (intern
7683            (gnus-completing-read-with-default
7684             (symbol-name (car gnus-extra-headers))
7685             (if current-prefix-arg
7686                 "Exclude extra header:"
7687               "Limit extra header:")
7688             (mapcar (lambda (x)
7689                       (cons (symbol-name x) x))
7690                     gnus-extra-headers)
7691             nil
7692             t))))
7693      (list header
7694            (read-string (format "%s header %s (regexp): "
7695                                 (if current-prefix-arg "Exclude" "Limit to")
7696                                 header))
7697            current-prefix-arg)))
7698   (when (not (equal "" regexp))
7699     (prog1
7700         (let ((articles (gnus-summary-find-matching
7701                          (cons 'extra header) regexp 'all nil nil
7702                          not-matching)))
7703           (unless articles
7704             (error "Found no matches for \"%s\"" regexp))
7705           (gnus-summary-limit articles))
7706       (gnus-summary-position-point))))
7707
7708 (defun gnus-summary-limit-to-display-predicate ()
7709   "Limit the summary buffer to the predicated in the `display' group parameter."
7710   (interactive)
7711   (unless gnus-newsgroup-display
7712     (error "There is no `display' group parameter"))
7713   (let (articles)
7714     (dolist (number gnus-newsgroup-articles)
7715       (when (funcall gnus-newsgroup-display)
7716         (push number articles)))
7717     (gnus-summary-limit articles))
7718   (gnus-summary-position-point))
7719
7720 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7721 (make-obsolete
7722  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7723
7724 (defun gnus-summary-limit-to-unread (&optional all)
7725   "Limit the summary buffer to articles that are not marked as read.
7726 If ALL is non-nil, limit strictly to unread articles."
7727   (interactive "P")
7728   (if all
7729       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
7730     (gnus-summary-limit-to-marks
7731      ;; Concat all the marks that say that an article is read and have
7732      ;; those removed.
7733      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
7734            gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
7735            gnus-low-score-mark gnus-expirable-mark
7736            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
7737            gnus-duplicate-mark gnus-souped-mark)
7738      'reverse)))
7739
7740 (defun gnus-summary-limit-to-replied (&optional unreplied)
7741   "Limit the summary buffer to replied articles.
7742 If UNREPLIED (the prefix), limit to unreplied articles."
7743   (interactive "P")
7744   (if unreplied
7745       (gnus-summary-limit
7746        (gnus-set-difference gnus-newsgroup-articles
7747         gnus-newsgroup-replied))
7748     (gnus-summary-limit gnus-newsgroup-replied))
7749   (gnus-summary-position-point))
7750
7751 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
7752 (make-obsolete 'gnus-summary-delete-marked-with
7753                'gnus-summary-limit-exclude-marks)
7754
7755 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
7756   "Exclude articles that are marked with MARKS (e.g. \"DK\").
7757 If REVERSE, limit the summary buffer to articles that are marked
7758 with MARKS.  MARKS can either be a string of marks or a list of marks.
7759 Returns how many articles were removed."
7760   (interactive "sMarks: ")
7761   (gnus-summary-limit-to-marks marks t))
7762
7763 (defun gnus-summary-limit-to-marks (marks &optional reverse)
7764   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
7765 If REVERSE (the prefix), limit the summary buffer to articles that are
7766 not marked with MARKS.  MARKS can either be a string of marks or a
7767 list of marks.
7768 Returns how many articles were removed."
7769   (interactive "sMarks: \nP")
7770   (prog1
7771       (let ((data gnus-newsgroup-data)
7772             (marks (if (listp marks) marks
7773                      (append marks nil))) ; Transform to list.
7774             articles)
7775         (while data
7776           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
7777                   (memq (gnus-data-mark (car data)) marks))
7778             (push (gnus-data-number (car data)) articles))
7779           (setq data (cdr data)))
7780         (gnus-summary-limit articles))
7781     (gnus-summary-position-point)))
7782
7783 (defun gnus-summary-limit-to-score (score)
7784   "Limit to articles with score at or above SCORE."
7785   (interactive "NLimit to articles with score of at least: ")
7786   (let ((data gnus-newsgroup-data)
7787         articles)
7788     (while data
7789       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
7790                 score)
7791         (push (gnus-data-number (car data)) articles))
7792       (setq data (cdr data)))
7793     (prog1
7794         (gnus-summary-limit articles)
7795       (gnus-summary-position-point))))
7796
7797 (defun gnus-summary-limit-to-unseen ()
7798   "Limit to unseen articles."
7799   (interactive)
7800   (prog1
7801       (gnus-summary-limit gnus-newsgroup-unseen)
7802     (gnus-summary-position-point)))
7803
7804 (defun gnus-summary-limit-include-thread (id)
7805   "Display all the hidden articles that is in the thread with ID in it.
7806 When called interactively, ID is the Message-ID of the current
7807 article."
7808   (interactive (list (mail-header-id (gnus-summary-article-header))))
7809   (let ((articles (gnus-articles-in-thread
7810                    (gnus-id-to-thread (gnus-root-id id)))))
7811     (prog1
7812         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7813       (gnus-summary-limit-include-matching-articles
7814        "subject"
7815        (regexp-quote (gnus-simplify-subject-re
7816                       (mail-header-subject (gnus-id-to-header id)))))
7817       (gnus-summary-position-point))))
7818
7819 (defun gnus-summary-limit-include-matching-articles (header regexp)
7820   "Display all the hidden articles that have HEADERs that match REGEXP."
7821   (interactive (list (read-string "Match on header: ")
7822                      (read-string "Regexp: ")))
7823   (let ((articles (gnus-find-matching-articles header regexp)))
7824     (prog1
7825         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7826       (gnus-summary-position-point))))
7827
7828 (defun gnus-summary-insert-dormant-articles ()
7829   "Insert all the dormant articles for this group into the current buffer."
7830   (interactive)
7831   (let ((gnus-verbose (max 6 gnus-verbose)))
7832     (if (not gnus-newsgroup-dormant)
7833         (gnus-message 3 "No cached articles for this group")
7834       (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
7835
7836 (defun gnus-summary-limit-include-dormant ()
7837   "Display all the hidden articles that are marked as dormant.
7838 Note that this command only works on a subset of the articles currently
7839 fetched for this group."
7840   (interactive)
7841   (unless gnus-newsgroup-dormant
7842     (error "There are no dormant articles in this group"))
7843   (prog1
7844       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
7845     (gnus-summary-position-point)))
7846
7847 (defun gnus-summary-limit-exclude-dormant ()
7848   "Hide all dormant articles."
7849   (interactive)
7850   (prog1
7851       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
7852     (gnus-summary-position-point)))
7853
7854 (defun gnus-summary-limit-exclude-childless-dormant ()
7855   "Hide all dormant articles that have no children."
7856   (interactive)
7857   (let ((data (gnus-data-list t))
7858         articles d children)
7859     ;; Find all articles that are either not dormant or have
7860     ;; children.
7861     (while (setq d (pop data))
7862       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
7863                 (and (setq children
7864                            (gnus-article-children (gnus-data-number d)))
7865                      (let (found)
7866                        (while children
7867                          (when (memq (car children) articles)
7868                            (setq children nil
7869                                  found t))
7870                          (pop children))
7871                        found)))
7872         (push (gnus-data-number d) articles)))
7873     ;; Do the limiting.
7874     (prog1
7875         (gnus-summary-limit articles)
7876       (gnus-summary-position-point))))
7877
7878 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
7879   "Mark all unread excluded articles as read.
7880 If ALL, mark even excluded ticked and dormants as read."
7881   (interactive "P")
7882   (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
7883   (let ((articles (gnus-sorted-ndifference
7884                    (sort
7885                     (mapcar (lambda (h) (mail-header-number h))
7886                             gnus-newsgroup-headers)
7887                     '<)
7888                    gnus-newsgroup-limit))
7889         article)
7890     (setq gnus-newsgroup-unreads
7891           (gnus-sorted-intersection gnus-newsgroup-unreads
7892                                     gnus-newsgroup-limit))
7893     (if all
7894         (setq gnus-newsgroup-dormant nil
7895               gnus-newsgroup-marked nil
7896               gnus-newsgroup-reads
7897               (nconc
7898                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
7899                gnus-newsgroup-reads))
7900       (while (setq article (pop articles))
7901         (unless (or (memq article gnus-newsgroup-dormant)
7902                     (memq article gnus-newsgroup-marked))
7903           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
7904
7905 (defun gnus-summary-limit (articles &optional pop)
7906   (if pop
7907       ;; We pop the previous limit off the stack and use that.
7908       (setq articles (car gnus-newsgroup-limits)
7909             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
7910     ;; We use the new limit, so we push the old limit on the stack.
7911     (push gnus-newsgroup-limit gnus-newsgroup-limits))
7912   ;; Set the limit.
7913   (setq gnus-newsgroup-limit articles)
7914   (let ((total (length gnus-newsgroup-data))
7915         (data (gnus-data-find-list (gnus-summary-article-number)))
7916         (gnus-summary-mark-below nil)   ; Inhibit this.
7917         found)
7918     ;; This will do all the work of generating the new summary buffer
7919     ;; according to the new limit.
7920     (gnus-summary-prepare)
7921     ;; Hide any threads, possibly.
7922     (gnus-summary-maybe-hide-threads)
7923     ;; Try to return to the article you were at, or one in the
7924     ;; neighborhood.
7925     (when data
7926       ;; We try to find some article after the current one.
7927       (while data
7928         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
7929           (setq data nil
7930                 found t))
7931         (setq data (cdr data))))
7932     (unless found
7933       ;; If there is no data, that means that we were after the last
7934       ;; article.  The same goes when we can't find any articles
7935       ;; after the current one.
7936       (goto-char (point-max))
7937       (gnus-summary-find-prev))
7938     (gnus-set-mode-line 'summary)
7939     ;; We return how many articles were removed from the summary
7940     ;; buffer as a result of the new limit.
7941     (- total (length gnus-newsgroup-data))))
7942
7943 (defsubst gnus-invisible-cut-children (threads)
7944   (let ((num 0))
7945     (while threads
7946       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
7947         (incf num))
7948       (pop threads))
7949     (< num 2)))
7950
7951 (defsubst gnus-cut-thread (thread)
7952   "Go forwards in the thread until we find an article that we want to display."
7953   (when (or (eq gnus-fetch-old-headers 'some)
7954             (eq gnus-fetch-old-headers 'invisible)
7955             (numberp gnus-fetch-old-headers)
7956             (eq gnus-build-sparse-threads 'some)
7957             (eq gnus-build-sparse-threads 'more))
7958     ;; Deal with old-fetched headers and sparse threads.
7959     (while (and
7960             thread
7961             (or
7962              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
7963              (gnus-summary-article-ancient-p
7964               (mail-header-number (car thread))))
7965             (if (or (<= (length (cdr thread)) 1)
7966                     (eq gnus-fetch-old-headers 'invisible))
7967                 (setq gnus-newsgroup-limit
7968                       (delq (mail-header-number (car thread))
7969                             gnus-newsgroup-limit)
7970                       thread (cadr thread))
7971               (when (gnus-invisible-cut-children (cdr thread))
7972                 (let ((th (cdr thread)))
7973                   (while th
7974                     (if (memq (mail-header-number (caar th))
7975                               gnus-newsgroup-limit)
7976                         (setq thread (car th)
7977                               th nil)
7978                       (setq th (cdr th))))))))))
7979   thread)
7980
7981 (defun gnus-cut-threads (threads)
7982   "Cut off all uninteresting articles from the beginning of THREADS."
7983   (when (or (eq gnus-fetch-old-headers 'some)
7984             (eq gnus-fetch-old-headers 'invisible)
7985             (numberp gnus-fetch-old-headers)
7986             (eq gnus-build-sparse-threads 'some)
7987             (eq gnus-build-sparse-threads 'more))
7988     (let ((th threads))
7989       (while th
7990         (setcar th (gnus-cut-thread (car th)))
7991         (setq th (cdr th)))))
7992   ;; Remove nixed out threads.
7993   (delq nil threads))
7994
7995 (defun gnus-summary-initial-limit (&optional show-if-empty)
7996   "Figure out what the initial limit is supposed to be on group entry.
7997 This entails weeding out unwanted dormants, low-scored articles,
7998 fetch-old-headers verbiage, and so on."
7999   ;; Most groups have nothing to remove.
8000   (if (or gnus-inhibit-limiting
8001           (and (null gnus-newsgroup-dormant)
8002                (eq gnus-newsgroup-display 'gnus-not-ignore)
8003                (not (eq gnus-fetch-old-headers 'some))
8004                (not (numberp gnus-fetch-old-headers))
8005                (not (eq gnus-fetch-old-headers 'invisible))
8006                (null gnus-summary-expunge-below)
8007                (not (eq gnus-build-sparse-threads 'some))
8008                (not (eq gnus-build-sparse-threads 'more))
8009                (null gnus-thread-expunge-below)
8010                (not gnus-use-nocem)))
8011       ()                                ; Do nothing.
8012     (push gnus-newsgroup-limit gnus-newsgroup-limits)
8013     (setq gnus-newsgroup-limit nil)
8014     (mapatoms
8015      (lambda (node)
8016        (unless (car (symbol-value node))
8017          ;; These threads have no parents -- they are roots.
8018          (let ((nodes (cdr (symbol-value node)))
8019                thread)
8020            (while nodes
8021              (if (and gnus-thread-expunge-below
8022                       (< (gnus-thread-total-score (car nodes))
8023                          gnus-thread-expunge-below))
8024                  (gnus-expunge-thread (pop nodes))
8025                (setq thread (pop nodes))
8026                (gnus-summary-limit-children thread))))))
8027      gnus-newsgroup-dependencies)
8028     ;; If this limitation resulted in an empty group, we might
8029     ;; pop the previous limit and use it instead.
8030     (when (and (not gnus-newsgroup-limit)
8031                show-if-empty)
8032       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
8033     gnus-newsgroup-limit))
8034
8035 (defun gnus-summary-limit-children (thread)
8036   "Return 1 if this subthread is visible and 0 if it is not."
8037   ;; First we get the number of visible children to this thread.  This
8038   ;; is done by recursing down the thread using this function, so this
8039   ;; will really go down to a leaf article first, before slowly
8040   ;; working its way up towards the root.
8041   (when thread
8042     (let* ((max-lisp-eval-depth 5000)
8043            (children
8044            (if (cdr thread)
8045                (apply '+ (mapcar 'gnus-summary-limit-children
8046                                  (cdr thread)))
8047              0))
8048           (number (mail-header-number (car thread)))
8049           score)
8050       (if (and
8051            (not (memq number gnus-newsgroup-marked))
8052            (or
8053             ;; If this article is dormant and has absolutely no visible
8054             ;; children, then this article isn't visible.
8055             (and (memq number gnus-newsgroup-dormant)
8056                  (zerop children))
8057             ;; If this is "fetch-old-headered" and there is no
8058             ;; visible children, then we don't want this article.
8059             (and (or (eq gnus-fetch-old-headers 'some)
8060                      (numberp gnus-fetch-old-headers))
8061                  (gnus-summary-article-ancient-p number)
8062                  (zerop children))
8063             ;; If this is "fetch-old-headered" and `invisible', then
8064             ;; we don't want this article.
8065             (and (eq gnus-fetch-old-headers 'invisible)
8066                  (gnus-summary-article-ancient-p number))
8067             ;; If this is a sparsely inserted article with no children,
8068             ;; we don't want it.
8069             (and (eq gnus-build-sparse-threads 'some)
8070                  (gnus-summary-article-sparse-p number)
8071                  (zerop children))
8072             ;; If we use expunging, and this article is really
8073             ;; low-scored, then we don't want this article.
8074             (when (and gnus-summary-expunge-below
8075                        (< (setq score
8076                                 (or (cdr (assq number gnus-newsgroup-scored))
8077                                     gnus-summary-default-score))
8078                           gnus-summary-expunge-below))
8079               ;; We increase the expunge-tally here, but that has
8080               ;; nothing to do with the limits, really.
8081               (incf gnus-newsgroup-expunged-tally)
8082               ;; We also mark as read here, if that's wanted.
8083               (when (and gnus-summary-mark-below
8084                          (< score gnus-summary-mark-below))
8085                 (setq gnus-newsgroup-unreads
8086                       (delq number gnus-newsgroup-unreads))
8087                 (if gnus-newsgroup-auto-expire
8088                     (push number gnus-newsgroup-expirable)
8089                   (push (cons number gnus-low-score-mark)
8090                         gnus-newsgroup-reads)))
8091               t)
8092             ;; Do the `display' group parameter.
8093             (and gnus-newsgroup-display
8094                  (not (funcall gnus-newsgroup-display)))
8095             ;; Check NoCeM things.
8096             (when (and gnus-use-nocem
8097                        (gnus-nocem-unwanted-article-p
8098                         (mail-header-id (car thread))))
8099               (setq gnus-newsgroup-unreads
8100                     (delq number gnus-newsgroup-unreads))
8101               t)))
8102           ;; Nope, invisible article.
8103           0
8104         ;; Ok, this article is to be visible, so we add it to the limit
8105         ;; and return 1.
8106         (push number gnus-newsgroup-limit)
8107         1))))
8108
8109 (defun gnus-expunge-thread (thread)
8110   "Mark all articles in THREAD as read."
8111   (let* ((number (mail-header-number (car thread))))
8112     (incf gnus-newsgroup-expunged-tally)
8113     ;; We also mark as read here, if that's wanted.
8114     (setq gnus-newsgroup-unreads
8115           (delq number gnus-newsgroup-unreads))
8116     (if gnus-newsgroup-auto-expire
8117         (push number gnus-newsgroup-expirable)
8118       (push (cons number gnus-low-score-mark)
8119             gnus-newsgroup-reads)))
8120   ;; Go recursively through all subthreads.
8121   (mapcar 'gnus-expunge-thread (cdr thread)))
8122
8123 ;; Summary article oriented commands
8124
8125 (defun gnus-summary-refer-parent-article (n)
8126   "Refer parent article N times.
8127 If N is negative, go to ancestor -N instead.
8128 The difference between N and the number of articles fetched is returned."
8129   (interactive "p")
8130   (let ((skip 1)
8131         error header ref)
8132     (when (not (natnump n))
8133       (setq skip (abs n)
8134             n 1))
8135     (while (and (> n 0)
8136                 (not error))
8137       (setq header (gnus-summary-article-header))
8138       (if (and (eq (mail-header-number header)
8139                    (cdr gnus-article-current))
8140                (equal gnus-newsgroup-name
8141                       (car gnus-article-current)))
8142           ;; If we try to find the parent of the currently
8143           ;; displayed article, then we take a look at the actual
8144           ;; References header, since this is slightly more
8145           ;; reliable than the References field we got from the
8146           ;; server.
8147           (save-excursion
8148             (set-buffer gnus-original-article-buffer)
8149             (nnheader-narrow-to-headers)
8150             (unless (setq ref (message-fetch-field "references"))
8151               (when (setq ref (message-fetch-field "in-reply-to"))
8152                 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8153             (widen))
8154         (setq ref
8155               ;; It's not the current article, so we take a bet on
8156               ;; the value we got from the server.
8157               (mail-header-references header)))
8158       (if (and ref
8159                (not (equal ref "")))
8160           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8161             (gnus-message 1 "Couldn't find parent"))
8162         (gnus-message 1 "No references in article %d"
8163                       (gnus-summary-article-number))
8164         (setq error t))
8165       (decf n))
8166     (gnus-summary-position-point)
8167     n))
8168
8169 (defun gnus-summary-refer-references ()
8170   "Fetch all articles mentioned in the References header.
8171 Return the number of articles fetched."
8172   (interactive)
8173   (let ((ref (mail-header-references (gnus-summary-article-header)))
8174         (current (gnus-summary-article-number))
8175         (n 0))
8176     (if (or (not ref)
8177             (equal ref ""))
8178         (error "No References in the current article")
8179       ;; For each Message-ID in the References header...
8180       (while (string-match "<[^>]*>" ref)
8181         (incf n)
8182         ;; ... fetch that article.
8183         (gnus-summary-refer-article
8184          (prog1 (match-string 0 ref)
8185            (setq ref (substring ref (match-end 0))))))
8186       (gnus-summary-goto-subject current)
8187       (gnus-summary-position-point)
8188       n)))
8189
8190 (defun gnus-summary-refer-thread (&optional limit)
8191   "Fetch all articles in the current thread.
8192 If LIMIT (the numerical prefix), fetch that many old headers instead
8193 of what's specified by the `gnus-refer-thread-limit' variable."
8194   (interactive "P")
8195   (let ((id (mail-header-id (gnus-summary-article-header)))
8196         (limit (if limit (prefix-numeric-value limit)
8197                  gnus-refer-thread-limit)))
8198     (unless (eq gnus-fetch-old-headers 'invisible)
8199       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8200       ;; Retrieve the headers and read them in.
8201       (if (eq (if (numberp limit)
8202                   (gnus-retrieve-headers
8203                    (list (min
8204                           (+ (mail-header-number
8205                               (gnus-summary-article-header))
8206                              limit)
8207                           gnus-newsgroup-end))
8208                    gnus-newsgroup-name (* limit 2))
8209                 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8210                 ;; headers.
8211                 (gnus-retrieve-headers (list gnus-newsgroup-end)
8212                                        gnus-newsgroup-name limit))
8213               'nov)
8214           (gnus-build-all-threads)
8215         (error "Can't fetch thread from back ends that don't support NOV"))
8216       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8217     (gnus-summary-limit-include-thread id)))
8218
8219 (defun gnus-summary-refer-article (message-id)
8220   "Fetch an article specified by MESSAGE-ID."
8221   (interactive "sMessage-ID: ")
8222   (when (and (stringp message-id)
8223              (not (zerop (length message-id))))
8224     (setq message-id (gnus-replace-in-string message-id " " ""))
8225     ;; Construct the correct Message-ID if necessary.
8226     ;; Suggested by tale@pawl.rpi.edu.
8227     (unless (string-match "^<" message-id)
8228       (setq message-id (concat "<" message-id)))
8229     (unless (string-match ">$" message-id)
8230       (setq message-id (concat message-id ">")))
8231     ;; People often post MIDs from URLs, so unhex it:
8232     (unless (string-match "@" message-id)
8233       (setq message-id (gnus-url-unhex-string message-id)))
8234     (let* ((header (gnus-id-to-header message-id))
8235            (sparse (and header
8236                         (gnus-summary-article-sparse-p
8237                          (mail-header-number header))
8238                         (memq (mail-header-number header)
8239                               gnus-newsgroup-limit)))
8240            number)
8241       (cond
8242        ;; If the article is present in the buffer we just go to it.
8243        ((and header
8244              (or (not (gnus-summary-article-sparse-p
8245                        (mail-header-number header)))
8246                  sparse))
8247         (prog1
8248             (gnus-summary-goto-article
8249              (mail-header-number header) nil t)
8250           (when sparse
8251             (gnus-summary-update-article (mail-header-number header)))))
8252        (t
8253         ;; We fetch the article.
8254         (catch 'found
8255           (dolist (gnus-override-method (gnus-refer-article-methods))
8256             (when (and (gnus-check-server gnus-override-method)
8257                        ;; Fetch the header,
8258                        (setq number (gnus-summary-insert-subject message-id)))
8259               ;; and display the article.
8260               (gnus-summary-select-article nil nil nil number)
8261               (throw 'found t)))
8262           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8263
8264 (defun gnus-refer-article-methods ()
8265   "Return a list of referable methods."
8266   (cond
8267    ;; No method, so we default to current and native.
8268    ((null gnus-refer-article-method)
8269     (list gnus-current-select-method gnus-select-method))
8270    ;; Current.
8271    ((eq 'current gnus-refer-article-method)
8272     (list gnus-current-select-method))
8273    ;; List of select methods.
8274    ((not (and (symbolp (car gnus-refer-article-method))
8275               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8276     (let (out)
8277       (dolist (method gnus-refer-article-method)
8278         (push (if (eq 'current method)
8279                   gnus-current-select-method
8280                 method)
8281               out))
8282       (nreverse out)))
8283    ;; One single select method.
8284    (t
8285     (list gnus-refer-article-method))))
8286
8287 (defun gnus-summary-edit-parameters ()
8288   "Edit the group parameters of the current group."
8289   (interactive)
8290   (gnus-group-edit-group gnus-newsgroup-name 'params))
8291
8292 (defun gnus-summary-customize-parameters ()
8293   "Customize the group parameters of the current group."
8294   (interactive)
8295   (gnus-group-customize gnus-newsgroup-name))
8296
8297 (defun gnus-summary-enter-digest-group (&optional force)
8298   "Enter an nndoc group based on the current article.
8299 If FORCE, force a digest interpretation.  If not, try
8300 to guess what the document format is."
8301   (interactive "P")
8302   (let ((conf gnus-current-window-configuration))
8303     (save-window-excursion
8304       (save-excursion
8305         (let (gnus-article-prepare-hook
8306               gnus-display-mime-function
8307               gnus-break-pages)
8308           (gnus-summary-select-article))))
8309     (setq gnus-current-window-configuration conf)
8310     (let* ((name (format "%s-%d"
8311                          (gnus-group-prefixed-name
8312                           gnus-newsgroup-name (list 'nndoc ""))
8313                          (save-excursion
8314                            (set-buffer gnus-summary-buffer)
8315                            gnus-current-article)))
8316            (ogroup gnus-newsgroup-name)
8317            (params (append (gnus-info-params (gnus-get-info ogroup))
8318                            (list (cons 'to-group ogroup))
8319                            (list (cons 'parent-group ogroup))
8320                            (list (cons 'save-article-group ogroup))))
8321            (case-fold-search t)
8322            (buf (current-buffer))
8323            dig to-address)
8324       (save-excursion
8325         (set-buffer gnus-original-article-buffer)
8326         ;; Have the digest group inherit the main mail address of
8327         ;; the parent article.
8328         (when (setq to-address (or (gnus-fetch-field "reply-to")
8329                                    (gnus-fetch-field "from")))
8330           (setq params (append
8331                         (list (cons 'to-address
8332                                     (funcall gnus-decode-encoded-word-function
8333                                              to-address))))))
8334         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8335         (insert-buffer-substring gnus-original-article-buffer)
8336         ;; Remove lines that may lead nndoc to misinterpret the
8337         ;; document type.
8338         (narrow-to-region
8339          (goto-char (point-min))
8340          (or (search-forward "\n\n" nil t) (point)))
8341         (goto-char (point-min))
8342         (delete-matching-lines "^Path:\\|^From ")
8343         (widen))
8344       (unwind-protect
8345           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8346                     (gnus-newsgroup-ephemeral-ignored-charsets
8347                      gnus-newsgroup-ignored-charsets))
8348                 (gnus-group-read-ephemeral-group
8349                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8350                               (nndoc-article-type
8351                                ,(if force 'mbox 'guess)))
8352                  t nil nil nil
8353                  `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8354                                                         "ADAPT")))))
8355               ;; Make all postings to this group go to the parent group.
8356               (nconc (gnus-info-params (gnus-get-info name))
8357                      params)
8358             ;; Couldn't select this doc group.
8359             (switch-to-buffer buf)
8360             (gnus-set-global-variables)
8361             (gnus-configure-windows 'summary)
8362             (gnus-message 3 "Article couldn't be entered?"))
8363         (kill-buffer dig)))))
8364
8365 (defun gnus-summary-read-document (n)
8366   "Open a new group based on the current article(s).
8367 This will allow you to read digests and other similar
8368 documents as newsgroups.
8369 Obeys the standard process/prefix convention."
8370   (interactive "P")
8371   (let* ((articles (gnus-summary-work-articles n))
8372          (ogroup gnus-newsgroup-name)
8373          (params (append (gnus-info-params (gnus-get-info ogroup))
8374                          (list (cons 'to-group ogroup))))
8375          article group egroup groups vgroup)
8376     (while (setq article (pop articles))
8377       (setq group (format "%s-%d" gnus-newsgroup-name article))
8378       (gnus-summary-remove-process-mark article)
8379       (when (gnus-summary-display-article article)
8380         (save-excursion
8381           (with-temp-buffer
8382             (insert-buffer-substring gnus-original-article-buffer)
8383             ;; Remove some headers that may lead nndoc to make
8384             ;; the wrong guess.
8385             (message-narrow-to-head)
8386             (goto-char (point-min))
8387             (delete-matching-lines "^Path:\\|^From ")
8388             (widen)
8389             (if (setq egroup
8390                       (gnus-group-read-ephemeral-group
8391                        group `(nndoc ,group (nndoc-address ,(current-buffer))
8392                                      (nndoc-article-type guess))
8393                        t nil t))
8394                 (progn
8395                   ;; Make all postings to this group go to the parent group.
8396                   (nconc (gnus-info-params (gnus-get-info egroup))
8397                          params)
8398                   (push egroup groups))
8399               ;; Couldn't select this doc group.
8400               (gnus-error 3 "Article couldn't be entered"))))))
8401     ;; Now we have selected all the documents.
8402     (cond
8403      ((not groups)
8404       (error "None of the articles could be interpreted as documents"))
8405      ((gnus-group-read-ephemeral-group
8406        (setq vgroup (format
8407                      "nnvirtual:%s-%s" gnus-newsgroup-name
8408                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
8409        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
8410        t
8411        (cons (current-buffer) 'summary)))
8412      (t
8413       (error "Couldn't select virtual nndoc group")))))
8414
8415 (defun gnus-summary-isearch-article (&optional regexp-p)
8416   "Do incremental search forward on the current article.
8417 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
8418   (interactive "P")
8419   (let* ((gnus-inhibit-treatment t)
8420          (old (gnus-summary-select-article)))
8421     (gnus-configure-windows 'article)
8422     (gnus-eval-in-buffer-window gnus-article-buffer
8423       (save-restriction
8424         (widen)
8425         (when (eq 'old old)
8426           (gnus-article-show-all-headers))
8427         (goto-char (point-min))
8428         (isearch-forward regexp-p)))))
8429
8430 (defun gnus-summary-search-article-forward (regexp &optional backward)
8431   "Search for an article containing REGEXP forward.
8432 If BACKWARD, search backward instead."
8433   (interactive
8434    (list (read-string
8435           (format "Search article %s (regexp%s): "
8436                   (if current-prefix-arg "backward" "forward")
8437                   (if gnus-last-search-regexp
8438                       (concat ", default " gnus-last-search-regexp)
8439                     "")))
8440          current-prefix-arg))
8441   (if (string-equal regexp "")
8442       (setq regexp (or gnus-last-search-regexp ""))
8443     (setq gnus-last-search-regexp regexp)
8444     (setq gnus-article-before-search gnus-current-article))
8445   ;; Intentionally set gnus-last-article.
8446   (setq gnus-last-article gnus-article-before-search)
8447   (let ((gnus-last-article gnus-last-article))
8448     (if (gnus-summary-search-article regexp backward)
8449         (gnus-summary-show-thread)
8450       (error "Search failed: \"%s\"" regexp))))
8451
8452 (defun gnus-summary-search-article-backward (regexp)
8453   "Search for an article containing REGEXP backward."
8454   (interactive
8455    (list (read-string
8456           (format "Search article backward (regexp%s): "
8457                   (if gnus-last-search-regexp
8458                       (concat ", default " gnus-last-search-regexp)
8459                     "")))))
8460   (gnus-summary-search-article-forward regexp 'backward))
8461
8462 (eval-when-compile
8463   (defmacro gnus-summary-search-article-position-point (regexp backward)
8464     "Dehighlight the last matched text and goto the beginning position."
8465     (` (if (and gnus-summary-search-article-matched-data
8466                 (let ((text (caddr gnus-summary-search-article-matched-data))
8467                       (inhibit-read-only t)
8468                       buffer-read-only)
8469                   (delete-region
8470                    (goto-char (car gnus-summary-search-article-matched-data))
8471                    (cadr gnus-summary-search-article-matched-data))
8472                   (insert text)
8473                   (string-match (, regexp) text)))
8474            (if (, backward) (beginning-of-line) (end-of-line))
8475          (goto-char (if (, backward) (point-max) (point-min))))))
8476
8477   (defmacro gnus-summary-search-article-highlight-goto-x-face (opoint)
8478     "Place point where X-Face image is displayed."
8479     (if (featurep 'xemacs)
8480         (` (let ((end (if (search-forward "\n\n" nil t)
8481                           (goto-char (1- (point)))
8482                         (point-min)))
8483                  extent)
8484              (or (search-backward "\n\n" nil t) (goto-char (point-min)))
8485              (unless (and (re-search-forward "^From:" end t)
8486                           (setq extent (extent-at (point)))
8487                           (extent-begin-glyph extent))
8488                (goto-char (, opoint)))))
8489       (` (let ((end (if (search-forward "\n\n" nil t)
8490                         (goto-char (1- (point)))
8491                       (point-min)))
8492                (start (or (search-backward "\n\n" nil t) (point-min))))
8493            (goto-char
8494             (or (text-property-any start end 'x-face-image t);; x-face-e21
8495                 (text-property-any start end 'x-face-mule-bitmap-image t)
8496                 (, opoint)))))))
8497
8498   (defmacro gnus-summary-search-article-highlight-matched-text
8499     (backward treated x-face)
8500     "Highlight matched text in the function `gnus-summary-search-article'."
8501     (` (let ((start (set-marker (make-marker) (match-beginning 0)))
8502              (end (set-marker (make-marker) (match-end 0)))
8503              (inhibit-read-only t)
8504              buffer-read-only)
8505          (unless treated
8506            (let ((,@
8507                   (let ((items (mapcar 'car gnus-treatment-function-alist)))
8508                     (mapcar
8509                      (lambda (item) (setq items (delq item items)))
8510                      '(gnus-treat-buttonize
8511                        gnus-treat-fill-article
8512                        gnus-treat-fill-long-lines
8513                        gnus-treat-emphasize
8514                        gnus-treat-highlight-headers
8515                        gnus-treat-highlight-citation
8516                        gnus-treat-highlight-signature
8517                        gnus-treat-overstrike
8518                        gnus-treat-display-x-face
8519                        gnus-treat-buttonize-head
8520                        gnus-treat-decode-article-as-default-mime-charset))
8521                     (static-if (featurep 'xemacs)
8522                         items
8523                       (cons '(x-face-mule-delete-x-face-field
8524                               (quote never))
8525                             items))))
8526                  (gnus-treat-display-x-face
8527                   (when (, x-face) gnus-treat-display-x-face)))
8528              (gnus-article-prepare-mime-display)))
8529          (goto-char (if (, backward) start end))
8530          (when (, x-face)
8531            (gnus-summary-search-article-highlight-goto-x-face (point)))
8532          (setq gnus-summary-search-article-matched-data
8533                (list start end (buffer-substring start end)))
8534          (unless (eq start end);; matched text has been deleted. :-<
8535            (put-text-property start end 'face
8536                               (or (find-face 'isearch)
8537                                   'secondary-selection))))))
8538   )
8539
8540 (defun gnus-summary-search-article (regexp &optional backward)
8541   "Search for an article containing REGEXP.
8542 Optional argument BACKWARD means do search for backward.
8543 `gnus-select-article-hook' is not called during the search."
8544   ;; We have to require this here to make sure that the following
8545   ;; dynamic binding isn't shadowed by autoloading.
8546   (require 'gnus-async)
8547   (require 'gnus-art)
8548   (let ((gnus-select-article-hook nil)  ;Disable hook.
8549         (gnus-article-prepare-hook nil)
8550         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
8551         (gnus-use-article-prefetch nil)
8552         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
8553         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
8554         (gnus-visual nil)
8555         (gnus-keep-backlog nil)
8556         (gnus-break-pages nil)
8557         (gnus-summary-display-arrow nil)
8558         (gnus-updated-mode-lines nil)
8559         (gnus-auto-center-summary nil)
8560         (sum (current-buffer))
8561         (found nil)
8562         point treated)
8563     (gnus-save-hidden-threads
8564       (static-if (featurep 'xemacs)
8565           (let ((gnus-inhibit-treatment t))
8566             (setq treated (eq 'old (gnus-summary-select-article)))
8567             (when (and treated
8568                        (not (and (gnus-buffer-live-p gnus-article-buffer)
8569                                  (window-live-p (get-buffer-window
8570                                                  gnus-article-buffer t)))))
8571               (gnus-summary-select-article nil t)
8572               (setq treated nil)))
8573         (let ((gnus-inhibit-treatment t)
8574               (x-face-mule-delete-x-face-field 'never))
8575           (setq treated (eq 'old (gnus-summary-select-article)))
8576           (when (and treated
8577                      (not
8578                       (and (gnus-buffer-live-p gnus-article-buffer)
8579                            (window-live-p (get-buffer-window
8580                                            gnus-article-buffer t))
8581                            (or (not (string-match "^\\^X-Face:" regexp))
8582                                (with-current-buffer gnus-article-buffer
8583                                  gnus-summary-search-article-matched-data)))))
8584             (gnus-summary-select-article nil t)
8585             (setq treated nil))))
8586       (set-buffer gnus-article-buffer)
8587       (widen)
8588       (if treated
8589           (progn
8590             (gnus-article-show-all-headers)
8591             (gnus-summary-search-article-position-point regexp backward))
8592         (goto-char (if backward (point-max) (point-min))))
8593       (while (not found)
8594         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
8595         (if (if backward
8596                 (re-search-backward regexp nil t)
8597               (re-search-forward regexp nil t))
8598             ;; We found the regexp.
8599             (progn
8600               (gnus-summary-search-article-highlight-matched-text
8601                backward treated (string-match "^\\^X-Face:" regexp))
8602               (setq found 'found)
8603               (forward-line
8604                (/ (- 2 (window-height
8605                         (get-buffer-window gnus-article-buffer t)))
8606                   2))
8607               (set-window-start
8608                (get-buffer-window (current-buffer))
8609                (point))
8610               (set-buffer sum)
8611               (setq point (point)))
8612           ;; We didn't find it, so we go to the next article.
8613           (set-buffer sum)
8614           (setq found 'not)
8615           (while (eq found 'not)
8616             (if (not (if backward (gnus-summary-find-prev)
8617                        (gnus-summary-find-next)))
8618                 ;; No more articles.
8619                 (setq found t)
8620               ;; Select the next article and adjust point.
8621               (unless (gnus-summary-article-sparse-p
8622                        (gnus-summary-article-number))
8623                 (setq found nil)
8624                 (let ((gnus-inhibit-treatment t))
8625                   (gnus-summary-select-article))
8626                 (setq treated nil)
8627                 (set-buffer gnus-article-buffer)
8628                 (widen)
8629                 (goto-char (if backward (point-max) (point-min))))))))
8630       (gnus-message 7 ""))
8631     ;; Return whether we found the regexp.
8632     (when (eq found 'found)
8633       (goto-char point)
8634       (gnus-summary-show-thread)
8635       (gnus-summary-goto-subject gnus-current-article)
8636       (gnus-summary-position-point)
8637       t)))
8638
8639 (defun gnus-find-matching-articles (header regexp)
8640   "Return a list of all articles that match REGEXP on HEADER.
8641 This search includes all articles in the current group that Gnus has
8642 fetched headers for, whether they are displayed or not."
8643   (let ((articles nil)
8644         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
8645         (case-fold-search t))
8646     (dolist (header gnus-newsgroup-headers)
8647       (when (string-match regexp (funcall func header))
8648         (push (mail-header-number header) articles)))
8649     (nreverse articles)))
8650
8651 (defun gnus-summary-find-matching (header regexp &optional backward unread
8652                                           not-case-fold not-matching)
8653   "Return a list of all articles that match REGEXP on HEADER.
8654 The search stars on the current article and goes forwards unless
8655 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
8656 If UNREAD is non-nil, only unread articles will
8657 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
8658 in the comparisons. If NOT-MATCHING, return a list of all articles that
8659 not match REGEXP on HEADER."
8660   (let ((case-fold-search (not not-case-fold))
8661         articles d func)
8662     (if (consp header)
8663         (if (eq (car header) 'extra)
8664             (setq func
8665                   `(lambda (h)
8666                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
8667                          "")))
8668           (error "%s is an invalid header" header))
8669       (unless (fboundp (intern (concat "mail-header-" header)))
8670         (error "%s is not a valid header" header))
8671       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
8672     (dolist (d (if (eq backward 'all)
8673                    gnus-newsgroup-data
8674                  (gnus-data-find-list
8675                   (gnus-summary-article-number)
8676                   (gnus-data-list backward))))
8677       (when (and (or (not unread)       ; We want all articles...
8678                      (gnus-data-unread-p d)) ; Or just unreads.
8679                  (vectorp (gnus-data-header d)) ; It's not a pseudo.
8680                  (if not-matching
8681                      (not (string-match
8682                            regexp
8683                            (funcall func (gnus-data-header d))))
8684                    (string-match regexp
8685                                  (funcall func (gnus-data-header d)))))
8686         (push (gnus-data-number d) articles))) ; Success!
8687     (nreverse articles)))
8688
8689 (defun gnus-summary-execute-command (header regexp command &optional backward)
8690   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
8691 If HEADER is an empty string (or nil), the match is done on the entire
8692 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
8693   (interactive
8694    (list (let ((completion-ignore-case t))
8695            (completing-read
8696             "Header name: "
8697             (mapcar (lambda (header) (list (format "%s" header)))
8698                     (append
8699                      '("Number" "Subject" "From" "Lines" "Date"
8700                        "Message-ID" "Xref" "References" "Body")
8701                      gnus-extra-headers))
8702             nil 'require-match))
8703          (read-string "Regexp: ")
8704          (read-key-sequence "Command: ")
8705          current-prefix-arg))
8706   (when (equal header "Body")
8707     (setq header ""))
8708   ;; Hidden thread subtrees must be searched as well.
8709   (gnus-summary-show-all-threads)
8710   ;; We don't want to change current point nor window configuration.
8711   (save-excursion
8712     (save-window-excursion
8713       (let (gnus-visual
8714             gnus-treat-strip-trailing-blank-lines
8715             gnus-treat-strip-leading-blank-lines
8716             gnus-treat-strip-multiple-blank-lines
8717             gnus-treat-hide-boring-headers
8718             gnus-treat-fold-newsgroups
8719             gnus-article-prepare-hook)
8720         (gnus-message 6 "Executing %s..." (key-description command))
8721         ;; We'd like to execute COMMAND interactively so as to give arguments.
8722         (gnus-execute header regexp
8723                       `(call-interactively ',(key-binding command))
8724                       backward)
8725         (gnus-message 6 "Executing %s...done" (key-description command))))))
8726
8727 (defun gnus-summary-beginning-of-article ()
8728   "Scroll the article back to the beginning."
8729   (interactive)
8730   (gnus-summary-select-article)
8731   (gnus-configure-windows 'article)
8732   (gnus-eval-in-buffer-window gnus-article-buffer
8733     (widen)
8734     (goto-char (point-min))
8735     (when gnus-break-pages
8736       (gnus-narrow-to-page))))
8737
8738 (defun gnus-summary-end-of-article ()
8739   "Scroll to the end of the article."
8740   (interactive)
8741   (gnus-summary-select-article)
8742   (gnus-configure-windows 'article)
8743   (gnus-eval-in-buffer-window gnus-article-buffer
8744     (widen)
8745     (goto-char (point-max))
8746     (recenter -3)
8747     (when gnus-break-pages
8748       (when (re-search-backward page-delimiter nil t)
8749         (narrow-to-region (match-end 0) (point-max)))
8750       (gnus-narrow-to-page))))
8751
8752 (defun gnus-summary-print-truncate-and-quote (string &optional len)
8753   "Truncate to LEN and quote all \"(\"'s in STRING."
8754   (gnus-replace-in-string (if (and len (> (length string) len))
8755                               (substring string 0 len)
8756                             string)
8757                           "[()]" "\\\\\\&"))
8758
8759 (defun gnus-summary-print-article (&optional filename n)
8760   "Generate and print a PostScript image of the process-marked (mail) articles.
8761
8762 If used interactively, print the current article if none are
8763 process-marked.  With prefix arg, prompt the user for the name of the
8764 file to save in.
8765
8766 When used from Lisp, accept two optional args FILENAME and N.  N means
8767 to print the next N articles.  If N is negative, print the N previous
8768 articles.  If N is nil and articles have been marked with the process
8769 mark, print these instead.
8770
8771 If the optional first argument FILENAME is nil, send the image to the
8772 printer.  If FILENAME is a string, save the PostScript image in a file with
8773 that name.  If FILENAME is a number, prompt the user for the name of the file
8774 to save in."
8775   (interactive (list (ps-print-preprint current-prefix-arg)))
8776   (dolist (article (gnus-summary-work-articles n))
8777     (gnus-summary-select-article nil nil 'pseudo article)
8778     (gnus-eval-in-buffer-window gnus-article-buffer
8779       (gnus-print-buffer))
8780     (gnus-summary-remove-process-mark article))
8781   (ps-despool filename))
8782
8783 (defun gnus-print-buffer ()
8784   (let ((buffer (generate-new-buffer " *print*")))
8785     (unwind-protect
8786         (progn
8787           (copy-to-buffer buffer (point-min) (point-max))
8788           (set-buffer buffer)
8789           (gnus-remove-text-with-property 'gnus-decoration)
8790           (when (gnus-visual-p 'article-highlight 'highlight)
8791             ;; Copy-to-buffer doesn't copy overlay.  So redo
8792             ;; highlight.
8793             (let ((gnus-article-buffer buffer))
8794               (gnus-article-highlight-citation t)
8795               (gnus-article-highlight-signature)
8796               (gnus-article-emphasize)
8797               (gnus-article-delete-invisible-text)))
8798           (let ((ps-left-header
8799                  (list
8800                   (concat "("
8801                           (gnus-summary-print-truncate-and-quote
8802                            (mail-header-subject gnus-current-headers)
8803                            66) ")")
8804                   (concat "("
8805                           (gnus-summary-print-truncate-and-quote
8806                            (mail-header-from gnus-current-headers)
8807                            45) ")")))
8808                 (ps-right-header
8809                  (list
8810                   "/pagenumberstring load"
8811                   (concat "("
8812                           (mail-header-date gnus-current-headers) ")"))))
8813             (gnus-run-hooks 'gnus-ps-print-hook)
8814             (save-excursion
8815               (if window-system
8816                   (ps-spool-buffer-with-faces)
8817                 (ps-spool-buffer)))))
8818       (kill-buffer buffer))))
8819
8820 (defun gnus-summary-show-article (&optional arg)
8821   "Force redisplaying of the current article.
8822 If ARG (the prefix) is a number, show the article with the charset
8823 defined in `gnus-summary-show-article-charset-alist', or the charset
8824 input.
8825 If ARG (the prefix) is non-nil and not a number, show the raw article
8826 without any article massaging functions being run.  Normally, the key
8827 strokes are `C-u g'."
8828   (interactive "P")
8829   (cond
8830    ((numberp arg)
8831     (gnus-summary-show-article t)
8832     (let* ((gnus-newsgroup-charset
8833             (or (cdr (assq arg gnus-summary-show-article-charset-alist))
8834                 (mm-read-coding-system
8835                  "View as charset: " ;; actually it is coding system.
8836                  (save-excursion
8837                    (set-buffer gnus-article-buffer)
8838                    (mm-detect-coding-region (point) (point-max))))))
8839            (default-mime-charset gnus-newsgroup-charset)
8840            (gnus-newsgroup-ignored-charsets 'gnus-all))
8841       (gnus-summary-select-article nil 'force)
8842       (let ((deps gnus-newsgroup-dependencies)
8843             head header lines)
8844         (save-excursion
8845           (set-buffer gnus-original-article-buffer)
8846           (save-restriction
8847             (message-narrow-to-head)
8848             (setq head (buffer-string))
8849             (goto-char (point-min))
8850             (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
8851               (goto-char (point-max))
8852               (widen)
8853               (setq lines (1- (count-lines (point) (point-max))))))
8854           (with-temp-buffer
8855             (insert (format "211 %d Article retrieved.\n"
8856                             (cdr gnus-article-current)))
8857             (insert head)
8858             (if lines (insert (format "Lines: %d\n" lines)))
8859             (insert ".\n")
8860             (let ((nntp-server-buffer (current-buffer)))
8861               (setq header (car (gnus-get-newsgroup-headers deps t))))))
8862         (gnus-data-set-header
8863          (gnus-data-find (cdr gnus-article-current))
8864          header)
8865         (gnus-summary-update-article-line
8866          (cdr gnus-article-current) header)
8867         (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
8868           (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
8869    ((not arg)
8870     ;; Select the article the normal way.
8871     (gnus-summary-select-article nil 'force))
8872    (t
8873     ;; We have to require this here to make sure that the following
8874     ;; dynamic binding isn't shadowed by autoloading.
8875     (require 'gnus-async)
8876     (require 'gnus-art)
8877     ;; Bind the article treatment functions to nil.
8878     (let ((gnus-have-all-headers t)
8879           gnus-article-prepare-hook
8880           gnus-article-decode-hook
8881           gnus-break-pages
8882           gnus-show-mime
8883           (gnus-inhibit-treatment t))
8884       (gnus-summary-select-article nil 'force))))
8885   (gnus-summary-goto-subject gnus-current-article)
8886   (gnus-summary-position-point))
8887
8888 (defun gnus-summary-show-raw-article ()
8889   "Show the raw article without any article massaging functions being run."
8890   (interactive)
8891   (gnus-summary-show-article t))
8892
8893 (defun gnus-summary-verbose-headers (&optional arg)
8894   "Toggle permanent full header display.
8895 If ARG is a positive number, turn header display on.
8896 If ARG is a negative number, turn header display off."
8897   (interactive "P")
8898   (setq gnus-show-all-headers
8899         (cond ((or (not (numberp arg))
8900                    (zerop arg))
8901                (not gnus-show-all-headers))
8902               ((natnump arg)
8903                t)))
8904   (gnus-summary-show-article))
8905
8906 (defun gnus-summary-toggle-header (&optional arg)
8907   "Show the headers if they are hidden, or hide them if they are shown.
8908 If ARG is a positive number, show the entire header.
8909 If ARG is a negative number, hide the unwanted header lines."
8910   (interactive "P")
8911   (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
8912                      (get-buffer-window gnus-article-buffer t))))
8913     (with-current-buffer gnus-article-buffer
8914       (widen)
8915       (article-narrow-to-head)
8916       (let* ((buffer-read-only nil)
8917              (inhibit-point-motion-hooks t)
8918              (hidden (if (numberp arg)
8919                          (>= arg 0)
8920                        (gnus-article-hidden-text-p 'headers)))
8921              s e)
8922         (delete-region (point-min) (point-max))
8923         (with-current-buffer gnus-original-article-buffer
8924           (goto-char (setq s (point-min)))
8925           (setq e (if (search-forward "\n\n" nil t)
8926                       (1- (point))
8927                     (point-max))))
8928         (insert-buffer-substring gnus-original-article-buffer s e)
8929         ;; In T-gnus, gnus-article-decode-hook doesn't contain
8930         ;; article-decode-encoded-words by default.
8931         (article-decode-encoded-words)
8932         (run-hooks 'gnus-article-decode-hook)
8933         (if hidden
8934             (let ((gnus-treat-hide-headers nil)
8935                   (gnus-treat-hide-boring-headers nil))
8936               (gnus-delete-wash-type 'headers)
8937               (gnus-treat-article 'head))
8938           (gnus-treat-article 'head))
8939         (widen)
8940         (if window
8941             (set-window-start window (goto-char (point-min))))
8942         (if gnus-break-pages
8943             (gnus-narrow-to-page)
8944           (when (gnus-visual-p 'page-marker)
8945             (let ((buffer-read-only nil))
8946               (gnus-remove-text-with-property 'gnus-prev)
8947               (gnus-remove-text-with-property 'gnus-next))))
8948         (gnus-set-mode-line 'article)))))
8949
8950 (defun gnus-summary-show-all-headers ()
8951   "Make all header lines visible."
8952   (interactive)
8953   (gnus-summary-toggle-header 1))
8954
8955 (defun gnus-summary-toggle-mime (&optional arg)
8956   "Toggle MIME processing.
8957 If ARG is a positive number, turn MIME processing on."
8958   (interactive "P")
8959   (setq gnus-show-mime
8960         (if (null arg)
8961             (not gnus-show-mime)
8962           (> (prefix-numeric-value arg) 0)))
8963   (gnus-summary-select-article t 'force))
8964
8965 (defun gnus-summary-caesar-message (&optional arg)
8966   "Caesar rotate the current article by 13.
8967 The numerical prefix specifies how many places to rotate each letter
8968 forward."
8969   (interactive "P")
8970   (gnus-summary-select-article)
8971   (let ((mail-header-separator ""))
8972     (gnus-eval-in-buffer-window gnus-article-buffer
8973       (save-restriction
8974         (widen)
8975         (let ((start (window-start))
8976               buffer-read-only)
8977           (message-caesar-buffer-body arg)
8978           (set-window-start (get-buffer-window (current-buffer)) start))))))
8979
8980 (autoload 'unmorse-region "morse"
8981   "Convert morse coded text in region to ordinary ASCII text."
8982   t)
8983
8984 (defun gnus-summary-morse-message (&optional arg)
8985   "Morse decode the current article."
8986   (interactive "P")
8987   (gnus-summary-select-article)
8988   (let ((mail-header-separator ""))
8989     (gnus-eval-in-buffer-window gnus-article-buffer
8990       (save-excursion
8991         (save-restriction
8992           (widen)
8993           (let ((pos (window-start))
8994                 buffer-read-only)
8995             (goto-char (point-min))
8996             (when (message-goto-body)
8997               (gnus-narrow-to-body))
8998             (goto-char (point-min))
8999             (while (re-search-forward "·" (point-max) t)
9000               (replace-match "."))
9001             (unmorse-region (point-min) (point-max))
9002             (widen)
9003             (set-window-start (get-buffer-window (current-buffer)) pos)))))))
9004
9005 (defun gnus-summary-stop-page-breaking ()
9006   "Stop page breaking in the current article."
9007   (interactive)
9008   (gnus-summary-select-article)
9009   (gnus-eval-in-buffer-window gnus-article-buffer
9010     (widen)
9011     (when (gnus-visual-p 'page-marker)
9012       (let ((buffer-read-only nil))
9013         (gnus-remove-text-with-property 'gnus-prev)
9014         (gnus-remove-text-with-property 'gnus-next))
9015       (setq gnus-page-broken nil))))
9016
9017 (defun gnus-summary-move-article (&optional n to-newsgroup
9018                                             select-method action)
9019   "Move the current article to a different newsgroup.
9020 If N is a positive number, move the N next articles.
9021 If N is a negative number, move the N previous articles.
9022 If N is nil and any articles have been marked with the process mark,
9023 move those articles instead.
9024 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9025 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9026 re-spool using this method.
9027
9028 When called interactively with TO-NEWSGROUP being nil, the value of
9029 the variable `gnus-move-split-methods' is used for finding a default
9030 for the target newsgroup.
9031
9032 For this function to work, both the current newsgroup and the
9033 newsgroup that you want to move to have to support the `request-move'
9034 and `request-accept' functions.
9035
9036 ACTION can be either `move' (the default), `crosspost' or `copy'."
9037   (interactive "P")
9038   (unless action
9039     (setq action 'move))
9040   ;; Check whether the source group supports the required functions.
9041   (cond ((and (eq action 'move)
9042               (not (gnus-check-backend-function
9043                     'request-move-article gnus-newsgroup-name)))
9044          (error "The current group does not support article moving"))
9045         ((and (eq action 'crosspost)
9046               (not (gnus-check-backend-function
9047                     'request-replace-article gnus-newsgroup-name)))
9048          (error "The current group does not support article editing")))
9049   (let ((articles (gnus-summary-work-articles n))
9050         (prefix (if (gnus-check-backend-function
9051                      'request-move-article gnus-newsgroup-name)
9052                     (funcall gnus-move-group-prefix-function
9053                              gnus-newsgroup-name)
9054                   ""))
9055         (names '((move "Move" "Moving")
9056                  (copy "Copy" "Copying")
9057                  (crosspost "Crosspost" "Crossposting")))
9058         (copy-buf (save-excursion
9059                     (nnheader-set-temp-buffer " *copy article*")))
9060         art-group to-method new-xref article to-groups)
9061     (unless (assq action names)
9062       (error "Unknown action %s" action))
9063     ;; Read the newsgroup name.
9064     (when (and (not to-newsgroup)
9065                (not select-method))
9066       (if (and gnus-move-split-methods
9067                (not
9068                 (and (memq gnus-current-article articles)
9069                      (gnus-buffer-live-p gnus-original-article-buffer))))
9070           ;; When `gnus-move-split-methods' is non-nil, we have to
9071           ;; select an article to give `gnus-read-move-group-name' an
9072           ;; opportunity to suggest an appropriate default.  However,
9073           ;; we needn't render or mark the article.
9074           (let ((gnus-display-mime-function nil)
9075                 (gnus-article-prepare-hook nil)
9076                 (gnus-mark-article-hook nil))
9077             (gnus-summary-select-article nil nil nil (car articles))))
9078       (setq to-newsgroup
9079             (gnus-read-move-group-name
9080              (cadr (assq action names))
9081              (symbol-value (intern (format "gnus-current-%s-group" action)))
9082              articles prefix))
9083       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
9084     (setq to-method (or select-method
9085                         (gnus-server-to-method
9086                          (gnus-group-method to-newsgroup))))
9087     ;; Check the method we are to move this article to...
9088     (unless (gnus-check-backend-function
9089              'request-accept-article (car to-method))
9090       (error "%s does not support article copying" (car to-method)))
9091     (unless (gnus-check-server to-method)
9092       (error "Can't open server %s" (car to-method)))
9093     (gnus-message 6 "%s to %s: %s..."
9094                   (caddr (assq action names))
9095                   (or (car select-method) to-newsgroup) articles)
9096     (while articles
9097       (setq article (pop articles))
9098       (setq
9099        art-group
9100        (cond
9101         ;; Move the article.
9102         ((eq action 'move)
9103          ;; Remove this article from future suppression.
9104          (gnus-dup-unsuppress-article article)
9105          (gnus-request-move-article
9106           article                       ; Article to move
9107           gnus-newsgroup-name           ; From newsgroup
9108           (nth 1 (gnus-find-method-for-group
9109                   gnus-newsgroup-name)) ; Server
9110           (list 'gnus-request-accept-article
9111                 to-newsgroup (list 'quote select-method)
9112                 (not articles) t)       ; Accept form
9113           (not articles)))              ; Only save nov last time
9114         ;; Copy the article.
9115         ((eq action 'copy)
9116          (save-excursion
9117            (set-buffer copy-buf)
9118            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
9119              (gnus-request-accept-article
9120               to-newsgroup select-method (not articles) t))))
9121         ;; Crosspost the article.
9122         ((eq action 'crosspost)
9123          (let ((xref (message-tokenize-header
9124                       (mail-header-xref (gnus-summary-article-header article))
9125                       " ")))
9126            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
9127                                   ":" (number-to-string article)))
9128            (unless xref
9129              (setq xref (list (system-name))))
9130            (setq new-xref
9131                  (concat
9132                   (mapconcat 'identity
9133                              (delete "Xref:" (delete new-xref xref))
9134                              " ")
9135                   " " new-xref))
9136            (save-excursion
9137              (set-buffer copy-buf)
9138              ;; First put the article in the destination group.
9139              (gnus-request-article-this-buffer article gnus-newsgroup-name)
9140              (when (consp (setq art-group
9141                                 (gnus-request-accept-article
9142                                  to-newsgroup select-method (not articles))))
9143                (setq new-xref (concat new-xref " " (car art-group)
9144                                       ":"
9145                                       (number-to-string (cdr art-group))))
9146                ;; Now we have the new Xrefs header, so we insert
9147                ;; it and replace the new article.
9148                (nnheader-replace-header "Xref" new-xref)
9149                (gnus-request-replace-article
9150                 (cdr art-group) to-newsgroup (current-buffer))
9151                art-group))))))
9152       (cond
9153        ((not art-group)
9154         (gnus-message 1 "Couldn't %s article %s: %s"
9155                       (cadr (assq action names)) article
9156                       (nnheader-get-report (car to-method))))
9157        ((eq art-group 'junk)
9158         (when (eq action 'move)
9159           (gnus-summary-mark-article article gnus-canceled-mark)
9160           (gnus-message 4 "Deleted article %s" article)
9161           ;; run the delete hook
9162           (run-hook-with-args 'gnus-summary-article-delete-hook
9163                               action
9164                               (gnus-data-header
9165                                (assoc article (gnus-data-list nil)))
9166                               gnus-newsgroup-name nil
9167                               select-method)))
9168        (t
9169         (let* ((pto-group (gnus-group-prefixed-name
9170                            (car art-group) to-method))
9171                (info (gnus-get-info pto-group))
9172                (to-group (gnus-info-group info))
9173                to-marks)
9174           ;; Update the group that has been moved to.
9175           (when (and info
9176                      (memq action '(move copy)))
9177             (unless (member to-group to-groups)
9178               (push to-group to-groups))
9179
9180             (unless (memq article gnus-newsgroup-unreads)
9181               (push 'read to-marks)
9182               (gnus-info-set-read
9183                info (gnus-add-to-range (gnus-info-read info)
9184                                        (list (cdr art-group)))))
9185
9186             ;; See whether the article is to be put in the cache.
9187             (let ((marks (if (gnus-group-auto-expirable-p to-group)
9188                              gnus-article-mark-lists
9189                            (delete '(expirable . expire)
9190                                    (copy-sequence gnus-article-mark-lists))))
9191                   (to-article (cdr art-group)))
9192
9193               ;; Enter the article into the cache in the new group,
9194               ;; if that is required.
9195               (when gnus-use-cache
9196                 (gnus-cache-possibly-enter-article
9197                  to-group to-article
9198                  (let ((header (copy-sequence
9199                                 (gnus-summary-article-header article))))
9200                    (mail-header-set-number header to-article)
9201                    header)
9202                  (memq article gnus-newsgroup-marked)
9203                  (memq article gnus-newsgroup-dormant)
9204                  (memq article gnus-newsgroup-unreads)))
9205
9206               (when gnus-preserve-marks
9207                 ;; Copy any marks over to the new group.
9208                 (when (and (equal to-group gnus-newsgroup-name)
9209                            (not (memq article gnus-newsgroup-unreads)))
9210                   ;; Mark this article as read in this group.
9211                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
9212                   (setcdr (gnus-active to-group) to-article)
9213                   (setcdr gnus-newsgroup-active to-article))
9214
9215                 (while marks
9216                   (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
9217                     (when (memq article (symbol-value
9218                                          (intern (format "gnus-newsgroup-%s"
9219                                                          (caar marks)))))
9220                       (push (cdar marks) to-marks)
9221                       ;; If the other group is the same as this group,
9222                       ;; then we have to add the mark to the list.
9223                       (when (equal to-group gnus-newsgroup-name)
9224                         (set (intern (format "gnus-newsgroup-%s" (caar marks)))
9225                              (cons to-article
9226                                    (symbol-value
9227                                     (intern (format "gnus-newsgroup-%s"
9228                                                     (caar marks)))))))
9229                       ;; Copy the marks to other group.
9230                       (gnus-add-marked-articles
9231                        to-group (cdar marks) (list to-article) info)))
9232                   (setq marks (cdr marks)))
9233
9234                 (gnus-request-set-mark
9235                  to-group (list (list (list to-article) 'add to-marks))))
9236
9237               (gnus-dribble-enter
9238                (concat "(gnus-group-set-info '"
9239                        (gnus-prin1-to-string (gnus-get-info to-group))
9240                        ")"))))
9241
9242           ;; Update the Xref header in this article to point to
9243           ;; the new crossposted article we have just created.
9244           (when (eq action 'crosspost)
9245             (save-excursion
9246               (set-buffer copy-buf)
9247               (gnus-request-article-this-buffer article gnus-newsgroup-name)
9248               (nnheader-replace-header "Xref" new-xref)
9249               (gnus-request-replace-article
9250                article gnus-newsgroup-name (current-buffer))))
9251
9252           ;; run the move/copy/crosspost/respool hook
9253           (run-hook-with-args 'gnus-summary-article-move-hook
9254                               action
9255                               (gnus-data-header
9256                                (assoc article (gnus-data-list nil)))
9257                               gnus-newsgroup-name
9258                               to-newsgroup
9259                               select-method))
9260
9261         ;;;!!!Why is this necessary?
9262         (set-buffer gnus-summary-buffer)
9263         
9264         (gnus-summary-goto-subject article)
9265         (when (eq action 'move)
9266           (gnus-summary-mark-article article gnus-canceled-mark))))
9267       (gnus-summary-remove-process-mark article))
9268     ;; Re-activate all groups that have been moved to.
9269     (save-excursion
9270       (set-buffer gnus-group-buffer)
9271       (let ((gnus-group-marked to-groups))
9272         (gnus-group-get-new-news-this-group nil t)))
9273
9274     (gnus-kill-buffer copy-buf)
9275     (gnus-summary-position-point)
9276     (gnus-set-mode-line 'summary)))
9277
9278 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9279   "Move the current article to a different newsgroup.
9280 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9281 When called interactively, if TO-NEWSGROUP is nil, use the value of
9282 the variable `gnus-move-split-methods' for finding a default target
9283 newsgroup.
9284 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9285 re-spool using this method."
9286   (interactive "P")
9287   (gnus-summary-move-article n to-newsgroup select-method 'copy))
9288
9289 (defun gnus-summary-crosspost-article (&optional n)
9290   "Crosspost the current article to some other group."
9291   (interactive "P")
9292   (gnus-summary-move-article n nil nil 'crosspost))
9293
9294 (defcustom gnus-summary-respool-default-method nil
9295   "Default method type for respooling an article.
9296 If nil, use to the current newsgroup method."
9297   :type 'symbol
9298   :group 'gnus-summary-mail)
9299
9300 (defcustom gnus-summary-display-while-building nil
9301   "If non-nil, show and update the summary buffer as it's being built.
9302 If the value is t, update the buffer after every line is inserted.  If
9303 the value is an integer (N), update the display every N lines."
9304   :group 'gnus-thread
9305   :type '(choice (const :tag "off" nil)
9306                  number
9307                  (const :tag "frequently" t)))
9308
9309 (defun gnus-summary-respool-article (&optional n method)
9310   "Respool the current article.
9311 The article will be squeezed through the mail spooling process again,
9312 which means that it will be put in some mail newsgroup or other
9313 depending on `nnmail-split-methods'.
9314 If N is a positive number, respool the N next articles.
9315 If N is a negative number, respool the N previous articles.
9316 If N is nil and any articles have been marked with the process mark,
9317 respool those articles instead.
9318
9319 Respooling can be done both from mail groups and \"real\" newsgroups.
9320 In the former case, the articles in question will be moved from the
9321 current group into whatever groups they are destined to.  In the
9322 latter case, they will be copied into the relevant groups."
9323   (interactive
9324    (list current-prefix-arg
9325          (let* ((methods (gnus-methods-using 'respool))
9326                 (methname
9327                  (symbol-name (or gnus-summary-respool-default-method
9328                                   (car (gnus-find-method-for-group
9329                                         gnus-newsgroup-name)))))
9330                 (method
9331                  (gnus-completing-read-with-default
9332                   methname "What backend do you want to use when respooling?"
9333                   methods nil t nil 'gnus-mail-method-history))
9334                 ms)
9335            (cond
9336             ((zerop (length (setq ms (gnus-servers-using-backend
9337                                       (intern method)))))
9338              (list (intern method) ""))
9339             ((= 1 (length ms))
9340              (car ms))
9341             (t
9342              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9343                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9344                            ms-alist))))))))
9345   (unless method
9346     (error "No method given for respooling"))
9347   (if (assoc (symbol-name
9348               (car (gnus-find-method-for-group gnus-newsgroup-name)))
9349              (gnus-methods-using 'respool))
9350       (gnus-summary-move-article n nil method)
9351     (gnus-summary-copy-article n nil method)))
9352
9353 (defun gnus-summary-import-article (file &optional edit)
9354   "Import an arbitrary file into a mail newsgroup."
9355   (interactive "fImport file: \nP")
9356   (let ((group gnus-newsgroup-name)
9357         (now (current-time))
9358         atts lines group-art)
9359     (unless (gnus-check-backend-function 'request-accept-article group)
9360       (error "%s does not support article importing" group))
9361     (or (file-readable-p file)
9362         (not (file-regular-p file))
9363         (error "Can't read %s" file))
9364     (save-excursion
9365       (set-buffer (gnus-get-buffer-create " *import file*"))
9366       (erase-buffer)
9367       (nnheader-insert-file-contents file)
9368       (goto-char (point-min))
9369       (if (nnheader-article-p)
9370           (save-restriction
9371             (goto-char (point-min))
9372             (search-forward "\n\n" nil t)
9373             (narrow-to-region (point-min) (1- (point)))
9374             (goto-char (point-min))
9375             (unless (re-search-forward "^date:" nil t)
9376               (goto-char (point-max))
9377               (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9378         ;; This doesn't look like an article, so we fudge some headers.
9379         (setq atts (file-attributes file)
9380               lines (count-lines (point-min) (point-max)))
9381         (insert "From: " (read-string "From: ") "\n"
9382                 "Subject: " (read-string "Subject: ") "\n"
9383                 "Date: " (message-make-date (nth 5 atts)) "\n"
9384                 "Message-ID: " (message-make-message-id) "\n"
9385                 "Lines: " (int-to-string lines) "\n"
9386                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9387       (setq group-art (gnus-request-accept-article group nil t))
9388       (kill-buffer (current-buffer)))
9389     (setq gnus-newsgroup-active (gnus-activate-group group))
9390     (forward-line 1)
9391     (gnus-summary-goto-article (cdr group-art) nil t)
9392     (when edit
9393       (gnus-summary-edit-article))))
9394
9395 (defun gnus-summary-create-article ()
9396   "Create an article in a mail newsgroup."
9397   (interactive)
9398   (let ((group gnus-newsgroup-name)
9399         (now (current-time))
9400         group-art)
9401     (unless (gnus-check-backend-function 'request-accept-article group)
9402       (error "%s does not support article importing" group))
9403     (save-excursion
9404       (set-buffer (gnus-get-buffer-create " *import file*"))
9405       (erase-buffer)
9406       (goto-char (point-min))
9407       ;; This doesn't look like an article, so we fudge some headers.
9408       (insert "From: " (read-string "From: ") "\n"
9409               "Subject: " (read-string "Subject: ") "\n"
9410               "Date: " (message-make-date now) "\n"
9411               "Message-ID: " (message-make-message-id) "\n")
9412       (setq group-art (gnus-request-accept-article group nil t))
9413       (kill-buffer (current-buffer)))
9414     (setq gnus-newsgroup-active (gnus-activate-group group))
9415     (forward-line 1)
9416     (gnus-summary-goto-article (cdr group-art) nil t)
9417     (gnus-summary-edit-article)))
9418
9419 (defun gnus-summary-article-posted-p ()
9420   "Say whether the current (mail) article is available from news as well.
9421 This will be the case if the article has both been mailed and posted."
9422   (interactive)
9423   (let ((id (mail-header-references (gnus-summary-article-header)))
9424         (gnus-override-method (car (gnus-refer-article-methods))))
9425     (if (gnus-request-head id "")
9426         (gnus-message 2 "The current message was found on %s"
9427                       gnus-override-method)
9428       (gnus-message 2 "The current message couldn't be found on %s"
9429                     gnus-override-method)
9430       nil)))
9431
9432 (defun gnus-summary-expire-articles (&optional now)
9433   "Expire all articles that are marked as expirable in the current group."
9434   (interactive)
9435   (when (and (not gnus-group-is-exiting-without-update-p)
9436              (gnus-check-backend-function
9437               'request-expire-articles gnus-newsgroup-name))
9438     ;; This backend supports expiry.
9439     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
9440            (expirable (if total
9441                           (progn
9442                             ;; We need to update the info for
9443                             ;; this group for `gnus-list-of-read-articles'
9444                             ;; to give us the right answer.
9445                             (gnus-run-hooks 'gnus-exit-group-hook)
9446                             (gnus-summary-update-info)
9447                             (gnus-list-of-read-articles gnus-newsgroup-name))
9448                         (setq gnus-newsgroup-expirable
9449                               (sort gnus-newsgroup-expirable '<))))
9450            (expiry-wait (if now 'immediate
9451                           (gnus-group-find-parameter
9452                            gnus-newsgroup-name 'expiry-wait)))
9453            (nnmail-expiry-target
9454             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
9455                 nnmail-expiry-target))
9456            es)
9457       (when expirable
9458         ;; There are expirable articles in this group, so we run them
9459         ;; through the expiry process.
9460         (gnus-message 6 "Expiring articles...")
9461         (unless (gnus-check-group gnus-newsgroup-name)
9462           (error "Can't open server for %s" gnus-newsgroup-name))
9463         ;; The list of articles that weren't expired is returned.
9464         (save-excursion
9465           (if expiry-wait
9466               (let ((nnmail-expiry-wait-function nil)
9467                     (nnmail-expiry-wait expiry-wait))
9468                 (setq es (gnus-request-expire-articles
9469                           expirable gnus-newsgroup-name)))
9470             (setq es (gnus-request-expire-articles
9471                       expirable gnus-newsgroup-name)))
9472           (unless total
9473             (setq gnus-newsgroup-expirable es))
9474           ;; We go through the old list of expirable, and mark all
9475           ;; really expired articles as nonexistent.
9476           (unless (eq es expirable)     ;If nothing was expired, we don't mark.
9477             (let ((gnus-use-cache nil))
9478               (dolist (article expirable)
9479                 (when (and (not (memq article es))
9480                            (gnus-data-find article))
9481                   (gnus-summary-mark-article article gnus-canceled-mark)
9482                   (run-hook-with-args 'gnus-summary-article-expire-hook
9483                                       'delete
9484                                       (gnus-data-header
9485                                        (assoc article (gnus-data-list nil)))
9486                                       gnus-newsgroup-name
9487                                       nil
9488                                       nil))))))
9489         (gnus-message 6 "Expiring articles...done")))))
9490
9491 (defun gnus-summary-expire-articles-now ()
9492   "Expunge all expirable articles in the current group.
9493 This means that *all* articles that are marked as expirable will be
9494 deleted forever, right now."
9495   (interactive)
9496   (or gnus-expert-user
9497       (gnus-yes-or-no-p
9498        "Are you really, really, really sure you want to delete all these messages? ")
9499       (error "Phew!"))
9500   (gnus-summary-expire-articles t))
9501
9502 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
9503 (defun gnus-summary-delete-article (&optional n)
9504   "Delete the N next (mail) articles.
9505 This command actually deletes articles.  This is not a marking
9506 command.  The article will disappear forever from your life, never to
9507 return.
9508
9509 If N is negative, delete backwards.
9510 If N is nil and articles have been marked with the process mark,
9511 delete these instead.
9512
9513 If `gnus-novice-user' is non-nil you will be asked for
9514 confirmation before the articles are deleted."
9515   (interactive "P")
9516   (unless (gnus-check-backend-function 'request-expire-articles
9517                                        gnus-newsgroup-name)
9518     (error "The current newsgroup does not support article deletion"))
9519   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
9520     (error "Couldn't open server"))
9521   ;; Compute the list of articles to delete.
9522   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
9523         (nnmail-expiry-target 'delete)
9524         not-deleted)
9525     (if (and gnus-novice-user
9526              (not (gnus-yes-or-no-p
9527                    (format "Do you really want to delete %s forever? "
9528                            (if (> (length articles) 1)
9529                                (format "these %s articles" (length articles))
9530                              "this article")))))
9531         ()
9532       ;; Delete the articles.
9533       (setq not-deleted (gnus-request-expire-articles
9534                          articles gnus-newsgroup-name 'force))
9535       (while articles
9536         (gnus-summary-remove-process-mark (car articles))
9537         ;; The backend might not have been able to delete the article
9538         ;; after all.
9539         (unless (memq (car articles) not-deleted)
9540           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
9541         (let* ((article (car articles))
9542                (id (mail-header-id (gnus-data-header
9543                                     (assoc article (gnus-data-list nil))))))
9544           (run-hook-with-args 'gnus-summary-article-delete-hook
9545                               'delete id gnus-newsgroup-name nil
9546                               nil))
9547         (setq articles (cdr articles)))
9548       (when not-deleted
9549         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
9550     (gnus-summary-position-point)
9551     (gnus-set-mode-line 'summary)
9552     not-deleted))
9553
9554 (defun gnus-summary-edit-article (&optional force)
9555   "Edit the current article.
9556 This will have permanent effect only in mail groups.
9557 If FORCE is non-nil, allow editing of articles even in read-only
9558 groups."
9559   (interactive "P")
9560   (save-excursion
9561     (set-buffer gnus-summary-buffer)
9562     (let ((mail-parse-charset gnus-newsgroup-charset)
9563           (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
9564       (gnus-set-global-variables)
9565       (when (and (not force)
9566                  (gnus-group-read-only-p))
9567         (error "The current newsgroup does not support article editing"))
9568       (gnus-summary-show-article t)
9569       (gnus-article-edit-article
9570        'ignore
9571        `(lambda (no-highlight)
9572           (let ((mail-parse-charset ',gnus-newsgroup-charset)
9573                 (message-options message-options)
9574                 (message-options-set-recipient)
9575                 (mail-parse-ignored-charsets
9576                  ',gnus-newsgroup-ignored-charsets))
9577             (gnus-summary-edit-article-done
9578              ,(or (mail-header-references gnus-current-headers) "")
9579              ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight)))))))
9580
9581 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
9582
9583 (defun gnus-summary-edit-article-done (&optional references read-only buffer
9584                                                  no-highlight)
9585   "Make edits to the current article permanent."
9586   (interactive)
9587   (save-excursion
9588     ;; The buffer restriction contains the entire article if it exists.
9589     (when (article-goto-body)
9590       (let ((lines (count-lines (point) (point-max)))
9591             (length (- (point-max) (point)))
9592             (case-fold-search t)
9593             (body (copy-marker (point))))
9594         (goto-char (point-min))
9595         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
9596           (delete-region (match-beginning 1) (match-end 1))
9597           (insert (number-to-string length)))
9598         (goto-char (point-min))
9599         (when (re-search-forward
9600                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
9601           (delete-region (match-beginning 1) (match-end 1))
9602           (insert (number-to-string length)))
9603         (goto-char (point-min))
9604         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
9605           (delete-region (match-beginning 1) (match-end 1))
9606           (insert (number-to-string lines))))))
9607   ;; Replace the article.
9608   (let ((buf (current-buffer)))
9609     (with-temp-buffer
9610       (insert-buffer-substring buf)
9611
9612       (if (and (not read-only)
9613                (not (gnus-request-replace-article
9614                      (cdr gnus-article-current) (car gnus-article-current)
9615                      (current-buffer) t)))
9616           (error "Couldn't replace article")
9617         ;; Update the summary buffer.
9618         (if (and references
9619                  (equal (message-tokenize-header references " ")
9620                         (message-tokenize-header
9621                          (or (message-fetch-field "references") "") " ")))
9622             ;; We only have to update this line.
9623             (save-excursion
9624               (save-restriction
9625                 (message-narrow-to-head)
9626                 (let ((head (buffer-string))
9627                       header)
9628                   (with-temp-buffer
9629                     (insert (format "211 %d Article retrieved.\n"
9630                                     (cdr gnus-article-current)))
9631                     (insert head)
9632                     (insert ".\n")
9633                     (let ((nntp-server-buffer (current-buffer)))
9634                       (setq header (car (gnus-get-newsgroup-headers
9635                                          nil t))))
9636                     (save-excursion
9637                       (set-buffer gnus-summary-buffer)
9638                       (gnus-data-set-header
9639                        (gnus-data-find (cdr gnus-article-current))
9640                        header)
9641                       (gnus-summary-update-article-line
9642                        (cdr gnus-article-current) header)
9643                       (if (gnus-summary-goto-subject
9644                            (cdr gnus-article-current) nil t)
9645                           (gnus-summary-update-secondary-mark
9646                            (cdr gnus-article-current))))))))
9647           ;; Update threads.
9648           (set-buffer (or buffer gnus-summary-buffer))
9649           (gnus-summary-update-article (cdr gnus-article-current))
9650           (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9651               (gnus-summary-update-secondary-mark
9652                (cdr gnus-article-current))))
9653         ;; Prettify the article buffer again.
9654         (unless no-highlight
9655           (save-excursion
9656             (set-buffer gnus-article-buffer)
9657             ;;;!!! Fix this -- article should be rehighlighted.
9658             ;;;(gnus-run-hooks 'gnus-article-display-hook)
9659             (set-buffer gnus-original-article-buffer)
9660             (gnus-request-article
9661              (cdr gnus-article-current)
9662              (car gnus-article-current) (current-buffer))))
9663         ;; Prettify the summary buffer line.
9664         (when (gnus-visual-p 'summary-highlight 'highlight)
9665           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
9666
9667 (defun gnus-summary-edit-wash (key)
9668   "Perform editing command KEY in the article buffer."
9669   (interactive
9670    (list
9671     (progn
9672       (message "%s" (concat (this-command-keys) "- "))
9673       (read-char))))
9674   (message "")
9675   (gnus-summary-edit-article)
9676   (execute-kbd-macro (concat (this-command-keys) key))
9677   (gnus-article-edit-done))
9678
9679 ;;; Respooling
9680
9681 (defun gnus-summary-respool-query (&optional silent trace)
9682   "Query where the respool algorithm would put this article."
9683   (interactive)
9684   (let (gnus-mark-article-hook)
9685     (gnus-summary-select-article)
9686     (save-excursion
9687       (set-buffer gnus-original-article-buffer)
9688       (let ((groups (nnmail-article-group 'identity trace)))
9689         (unless silent
9690           (if groups
9691               (message "This message would go to %s"
9692                        (mapconcat 'car groups ", "))
9693             (message "This message would go to no groups"))
9694           groups)))))
9695
9696 (defun gnus-summary-respool-trace ()
9697   "Trace where the respool algorithm would put this article.
9698 Display a buffer showing all fancy splitting patterns which matched."
9699   (interactive)
9700   (gnus-summary-respool-query nil t))
9701
9702 ;; Summary marking commands.
9703
9704 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
9705   "Mark articles which has the same subject as read, and then select the next.
9706 If UNMARK is positive, remove any kind of mark.
9707 If UNMARK is negative, tick articles."
9708   (interactive "P")
9709   (when unmark
9710     (setq unmark (prefix-numeric-value unmark)))
9711   (let ((count
9712          (gnus-summary-mark-same-subject
9713           (gnus-summary-article-subject) unmark)))
9714     ;; Select next unread article.  If auto-select-same mode, should
9715     ;; select the first unread article.
9716     (gnus-summary-next-article t (and gnus-auto-select-same
9717                                       (gnus-summary-article-subject)))
9718     (gnus-message 7 "%d article%s marked as %s"
9719                   count (if (= count 1) " is" "s are")
9720                   (if unmark "unread" "read"))))
9721
9722 (defun gnus-summary-kill-same-subject (&optional unmark)
9723   "Mark articles which has the same subject as read.
9724 If UNMARK is positive, remove any kind of mark.
9725 If UNMARK is negative, tick articles."
9726   (interactive "P")
9727   (when unmark
9728     (setq unmark (prefix-numeric-value unmark)))
9729   (let ((count
9730          (gnus-summary-mark-same-subject
9731           (gnus-summary-article-subject) unmark)))
9732     ;; If marked as read, go to next unread subject.
9733     (when (null unmark)
9734       ;; Go to next unread subject.
9735       (gnus-summary-next-subject 1 t))
9736     (gnus-message 7 "%d articles are marked as %s"
9737                   count (if unmark "unread" "read"))))
9738
9739 (defun gnus-summary-mark-same-subject (subject &optional unmark)
9740   "Mark articles with same SUBJECT as read, and return marked number.
9741 If optional argument UNMARK is positive, remove any kinds of marks.
9742 If optional argument UNMARK is negative, mark articles as unread instead."
9743   (let ((count 1))
9744     (save-excursion
9745       (cond
9746        ((null unmark)                   ; Mark as read.
9747         (while (and
9748                 (progn
9749                   (gnus-summary-mark-article-as-read gnus-killed-mark)
9750                   (gnus-summary-show-thread) t)
9751                 (gnus-summary-find-subject subject))
9752           (setq count (1+ count))))
9753        ((> unmark 0)                    ; Tick.
9754         (while (and
9755                 (progn
9756                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
9757                   (gnus-summary-show-thread) t)
9758                 (gnus-summary-find-subject subject))
9759           (setq count (1+ count))))
9760        (t                               ; Mark as unread.
9761         (while (and
9762                 (progn
9763                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
9764                   (gnus-summary-show-thread) t)
9765                 (gnus-summary-find-subject subject))
9766           (setq count (1+ count)))))
9767       (gnus-set-mode-line 'summary)
9768       ;; Return the number of marked articles.
9769       count)))
9770
9771 (defun gnus-summary-mark-as-processable (n &optional unmark)
9772   "Set the process mark on the next N articles.
9773 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
9774 the process mark instead.  The difference between N and the actual
9775 number of articles marked is returned."
9776   (interactive "P")
9777   (if (and (null n) (gnus-region-active-p))
9778       (gnus-uu-mark-region (region-beginning) (region-end) unmark)
9779     (setq n (prefix-numeric-value n))
9780     (let ((backward (< n 0))
9781           (n (abs n)))
9782       (while (and
9783               (> n 0)
9784               (if unmark
9785                   (gnus-summary-remove-process-mark
9786                    (gnus-summary-article-number))
9787                 (gnus-summary-set-process-mark (gnus-summary-article-number)))
9788               (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
9789         (setq n (1- n)))
9790       (when (/= 0 n)
9791         (gnus-message 7 "No more articles"))
9792       (gnus-summary-recenter)
9793       (gnus-summary-position-point)
9794       n)))
9795
9796 (defun gnus-summary-unmark-as-processable (n)
9797   "Remove the process mark from the next N articles.
9798 If N is negative, unmark backward instead.  The difference between N and
9799 the actual number of articles unmarked is returned."
9800   (interactive "P")
9801   (gnus-summary-mark-as-processable n t))
9802
9803 (defun gnus-summary-unmark-all-processable ()
9804   "Remove the process mark from all articles."
9805   (interactive)
9806   (save-excursion
9807     (while gnus-newsgroup-processable
9808       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
9809   (gnus-summary-position-point))
9810
9811 (defun gnus-summary-add-mark (article type)
9812   "Mark ARTICLE with a mark of TYPE."
9813   (let ((vtype (car (assq type gnus-article-mark-lists)))
9814         var)
9815     (if (not vtype)
9816         (error "No such mark type: %s" type)
9817       (setq var (intern (format "gnus-newsgroup-%s" type)))
9818       (set var (cons article (symbol-value var)))
9819       (if (memq type '(processable cached replied forwarded recent saved))
9820           (gnus-summary-update-secondary-mark article)
9821         ;;; !!! This is bogus.  We should find out what primary
9822         ;;; !!! mark we want to set.
9823         (gnus-summary-update-mark gnus-del-mark 'unread)))))
9824
9825 (defun gnus-summary-mark-as-expirable (n)
9826   "Mark N articles forward as expirable.
9827 If N is negative, mark backward instead.  The difference between N and
9828 the actual number of articles marked is returned."
9829   (interactive "p")
9830   (gnus-summary-mark-forward n gnus-expirable-mark))
9831
9832 (defun gnus-summary-mark-as-spam (n)
9833   "Mark N articles forward as spam.
9834 If N is negative, mark backward instead.  The difference between N and
9835 the actual number of articles marked is returned."
9836   (interactive "p")
9837   (gnus-summary-mark-forward n gnus-spam-mark))
9838
9839 (defun gnus-summary-mark-article-as-replied (article)
9840   "Mark ARTICLE as replied to and update the summary line.
9841 ARTICLE can also be a list of articles."
9842   (interactive (list (gnus-summary-article-number)))
9843   (let ((articles (if (listp article) article (list article))))
9844     (dolist (article articles)
9845       (unless (numberp article)
9846         (error "%s is not a number" article))
9847       (push article gnus-newsgroup-replied)
9848       (let ((buffer-read-only nil))
9849         (when (gnus-summary-goto-subject article nil t)
9850           (gnus-summary-update-secondary-mark article))))))
9851
9852 (defun gnus-summary-mark-article-as-forwarded (article)
9853   "Mark ARTICLE as forwarded and update the summary line.
9854 ARTICLE can also be a list of articles."
9855   (let ((articles (if (listp article) article (list article))))
9856     (dolist (article articles)
9857       (push article gnus-newsgroup-forwarded)
9858       (let ((buffer-read-only nil))
9859         (when (gnus-summary-goto-subject article nil t)
9860           (gnus-summary-update-secondary-mark article))))))
9861
9862 (defun gnus-summary-set-bookmark (article)
9863   "Set a bookmark in current article."
9864   (interactive (list (gnus-summary-article-number)))
9865   (when (or (not (get-buffer gnus-article-buffer))
9866             (not gnus-current-article)
9867             (not gnus-article-current)
9868             (not (equal gnus-newsgroup-name (car gnus-article-current))))
9869     (error "No current article selected"))
9870   ;; Remove old bookmark, if one exists.
9871   (gnus-pull article gnus-newsgroup-bookmarks)
9872   ;; Set the new bookmark, which is on the form
9873   ;; (article-number . line-number-in-body).
9874   (push
9875    (cons article
9876          (save-excursion
9877            (set-buffer gnus-article-buffer)
9878            (count-lines
9879             (min (point)
9880                  (save-excursion
9881                    (article-goto-body)
9882                    (point)))
9883             (point))))
9884    gnus-newsgroup-bookmarks)
9885   (gnus-message 6 "A bookmark has been added to the current article."))
9886
9887 (defun gnus-summary-remove-bookmark (article)
9888   "Remove the bookmark from the current article."
9889   (interactive (list (gnus-summary-article-number)))
9890   ;; Remove old bookmark, if one exists.
9891   (if (not (assq article gnus-newsgroup-bookmarks))
9892       (gnus-message 6 "No bookmark in current article.")
9893     (gnus-pull article gnus-newsgroup-bookmarks)
9894     (gnus-message 6 "Removed bookmark.")))
9895
9896 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
9897 (defun gnus-summary-mark-as-dormant (n)
9898   "Mark N articles forward as dormant.
9899 If N is negative, mark backward instead.  The difference between N and
9900 the actual number of articles marked is returned."
9901   (interactive "p")
9902   (gnus-summary-mark-forward n gnus-dormant-mark))
9903
9904 (defun gnus-summary-set-process-mark (article)
9905   "Set the process mark on ARTICLE and update the summary line."
9906   (setq gnus-newsgroup-processable
9907         (cons article
9908               (delq article gnus-newsgroup-processable)))
9909   (when (gnus-summary-goto-subject article)
9910     (gnus-summary-show-thread)
9911     (gnus-summary-goto-subject article)
9912     (gnus-summary-update-secondary-mark article)))
9913
9914 (defun gnus-summary-remove-process-mark (article)
9915   "Remove the process mark from ARTICLE and update the summary line."
9916   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
9917   (when (gnus-summary-goto-subject article)
9918     (gnus-summary-show-thread)
9919     (gnus-summary-goto-subject article)
9920     (gnus-summary-update-secondary-mark article)))
9921
9922 (defun gnus-summary-set-saved-mark (article)
9923   "Set the process mark on ARTICLE and update the summary line."
9924   (push article gnus-newsgroup-saved)
9925   (when (gnus-summary-goto-subject article)
9926     (gnus-summary-update-secondary-mark article)))
9927
9928 (defun gnus-summary-mark-forward (n &optional mark no-expire)
9929   "Mark N articles as read forwards.
9930 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
9931 The difference between N and the actual number of articles marked is
9932 returned.
9933 If NO-EXPIRE, auto-expiry will be inhibited."
9934   (interactive "p")
9935   (gnus-summary-show-thread)
9936   (let ((backward (< n 0))
9937         (gnus-summary-goto-unread
9938          (and gnus-summary-goto-unread
9939               (not (eq gnus-summary-goto-unread 'never))
9940               (not (memq mark (list gnus-unread-mark gnus-spam-mark
9941                                     gnus-ticked-mark gnus-dormant-mark)))))
9942         (n (abs n))
9943         (mark (or mark gnus-del-mark)))
9944     (while (and (> n 0)
9945                 (gnus-summary-mark-article nil mark no-expire)
9946                 (zerop (gnus-summary-next-subject
9947                         (if backward -1 1)
9948                         (and gnus-summary-goto-unread
9949                              (not (eq gnus-summary-goto-unread 'never)))
9950                         t)))
9951       (setq n (1- n)))
9952     (when (/= 0 n)
9953       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9954     (gnus-summary-recenter)
9955     (gnus-summary-position-point)
9956     (gnus-set-mode-line 'summary)
9957     n))
9958
9959 (defun gnus-summary-mark-article-as-read (mark)
9960   "Mark the current article quickly as read with MARK."
9961   (let ((article (gnus-summary-article-number)))
9962     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9963     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9964     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
9965     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9966     (push (cons article mark) gnus-newsgroup-reads)
9967     ;; Possibly remove from cache, if that is used.
9968     (when gnus-use-cache
9969       (gnus-cache-enter-remove-article article))
9970     ;; Allow the backend to change the mark.
9971     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9972     ;; Check for auto-expiry.
9973     (when (and gnus-newsgroup-auto-expire
9974                (memq mark gnus-auto-expirable-marks))
9975       (setq mark gnus-expirable-mark)
9976       ;; Let the backend know about the mark change.
9977       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9978       (push article gnus-newsgroup-expirable))
9979     ;; Set the mark in the buffer.
9980     (gnus-summary-update-mark mark 'unread)
9981     t))
9982
9983 (defun gnus-summary-mark-article-as-unread (mark)
9984   "Mark the current article quickly as unread with MARK."
9985   (let* ((article (gnus-summary-article-number))
9986          (old-mark (gnus-summary-article-mark article)))
9987     ;; Allow the backend to change the mark.
9988     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9989     (if (eq mark old-mark)
9990         t
9991       (if (<= article 0)
9992           (progn
9993             (gnus-error 1 "Can't mark negative article numbers")
9994             nil)
9995         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9996         (setq gnus-newsgroup-spam-marked
9997               (delq article gnus-newsgroup-spam-marked))
9998         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9999         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
10000         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
10001         (cond ((= mark gnus-ticked-mark)
10002                (setq gnus-newsgroup-marked
10003                      (gnus-add-to-sorted-list gnus-newsgroup-marked
10004                                               article)))
10005               ((= mark gnus-spam-mark)
10006                (setq gnus-newsgroup-spam-marked
10007                      (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10008                                               article)))
10009               ((= mark gnus-dormant-mark)
10010                (setq gnus-newsgroup-dormant
10011                      (gnus-add-to-sorted-list gnus-newsgroup-dormant
10012                                               article)))
10013               (t
10014                (setq gnus-newsgroup-unreads
10015                      (gnus-add-to-sorted-list gnus-newsgroup-unreads
10016                                               article))))
10017         (gnus-pull article gnus-newsgroup-reads)
10018
10019         ;; See whether the article is to be put in the cache.
10020         (and gnus-use-cache
10021              (vectorp (gnus-summary-article-header article))
10022              (save-excursion
10023                (gnus-cache-possibly-enter-article
10024                 gnus-newsgroup-name article
10025                 (gnus-summary-article-header article)
10026                 (= mark gnus-ticked-mark)
10027                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10028
10029         ;; Fix the mark.
10030         (gnus-summary-update-mark mark 'unread)
10031         t))))
10032
10033 (defun gnus-summary-mark-article (&optional article mark no-expire)
10034   "Mark ARTICLE with MARK.  MARK can be any character.
10035 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
10036 `??' (dormant) and `?E' (expirable).
10037 If MARK is nil, then the default character `?r' is used.
10038 If ARTICLE is nil, then the article on the current line will be
10039 marked.
10040 If NO-EXPIRE, auto-expiry will be inhibited."
10041   ;; The mark might be a string.
10042   (when (stringp mark)
10043     (setq mark (aref mark 0)))
10044   ;; If no mark is given, then we check auto-expiring.
10045   (when (null mark)
10046     (setq mark gnus-del-mark))
10047   (when (and (not no-expire)
10048              gnus-newsgroup-auto-expire
10049              (memq mark gnus-auto-expirable-marks))
10050     (setq mark gnus-expirable-mark))
10051   (let ((article (or article (gnus-summary-article-number)))
10052         (old-mark (gnus-summary-article-mark article)))
10053     ;; Allow the backend to change the mark.
10054     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10055     (if (eq mark old-mark)
10056         t
10057       (unless article
10058         (error "No article on current line"))
10059       (if (not (if (or (= mark gnus-unread-mark)
10060                        (= mark gnus-ticked-mark)
10061                        (= mark gnus-spam-mark)
10062                        (= mark gnus-dormant-mark))
10063                    (gnus-mark-article-as-unread article mark)
10064                  (gnus-mark-article-as-read article mark)))
10065           t
10066         ;; See whether the article is to be put in the cache.
10067         (and gnus-use-cache
10068              (not (= mark gnus-canceled-mark))
10069              (vectorp (gnus-summary-article-header article))
10070              (save-excursion
10071                (gnus-cache-possibly-enter-article
10072                 gnus-newsgroup-name article
10073                 (gnus-summary-article-header article)
10074                 (= mark gnus-ticked-mark)
10075                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10076
10077         (when (gnus-summary-goto-subject article nil t)
10078           (let ((buffer-read-only nil))
10079             (gnus-summary-show-thread)
10080             ;; Fix the mark.
10081             (gnus-summary-update-mark mark 'unread)
10082             t))))))
10083
10084 (defun gnus-summary-update-secondary-mark (article)
10085   "Update the secondary (read, process, cache) mark."
10086   (gnus-summary-update-mark
10087    (cond ((memq article gnus-newsgroup-processable)
10088           gnus-process-mark)
10089          ((memq article gnus-newsgroup-cached)
10090           gnus-cached-mark)
10091          ((memq article gnus-newsgroup-replied)
10092           gnus-replied-mark)
10093          ((memq article gnus-newsgroup-forwarded)
10094           gnus-forwarded-mark)
10095          ((memq article gnus-newsgroup-saved)
10096           gnus-saved-mark)
10097          ((memq article gnus-newsgroup-recent)
10098           gnus-recent-mark)
10099          ((memq article gnus-newsgroup-unseen)
10100           gnus-unseen-mark)
10101          (t gnus-no-mark))
10102    'replied)
10103   (when (gnus-visual-p 'summary-highlight 'highlight)
10104     (gnus-run-hooks 'gnus-summary-update-hook))
10105   t)
10106
10107 (defun gnus-summary-update-download-mark (article)
10108   "Update the download mark."
10109   (gnus-summary-update-mark
10110    (cond ((memq article gnus-newsgroup-undownloaded)
10111           gnus-undownloaded-mark)
10112          (gnus-newsgroup-agentized
10113           gnus-downloaded-mark)
10114          (t
10115           gnus-no-mark))
10116    'download)
10117   (gnus-summary-update-line t)
10118   t)
10119
10120 (defun gnus-summary-update-mark (mark type)
10121   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
10122         (buffer-read-only nil))
10123     (re-search-backward "[\n\r]" (point-at-bol) 'move-to-limit)
10124     (when forward
10125       (when (looking-at "\r")
10126         (incf forward))
10127       (when (<= (+ forward (point)) (point-max))
10128         ;; Go to the right position on the line.
10129         (goto-char (+ forward (point)))
10130         ;; Replace the old mark with the new mark.
10131         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
10132         ;; Optionally update the marks by some user rule.
10133         (when (eq type 'unread)
10134           (gnus-data-set-mark
10135            (gnus-data-find (gnus-summary-article-number)) mark)
10136           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
10137
10138 (defun gnus-mark-article-as-read (article &optional mark)
10139   "Enter ARTICLE in the pertinent lists and remove it from others."
10140   ;; Make the article expirable.
10141   (let ((mark (or mark gnus-del-mark)))
10142     (setq gnus-newsgroup-expirable
10143           (if (= mark gnus-expirable-mark)
10144               (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
10145             (delq article gnus-newsgroup-expirable)))
10146     ;; Remove from unread and marked lists.
10147     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10148     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10149     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10150     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10151     (push (cons article mark) gnus-newsgroup-reads)
10152     ;; Possibly remove from cache, if that is used.
10153     (when gnus-use-cache
10154       (gnus-cache-enter-remove-article article))
10155     t))
10156
10157 (defun gnus-mark-article-as-unread (article &optional mark)
10158   "Enter ARTICLE in the pertinent lists and remove it from others."
10159   (let ((mark (or mark gnus-ticked-mark)))
10160     (if (<= article 0)
10161         (progn
10162           (gnus-error 1 "Can't mark negative article numbers")
10163           nil)
10164       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
10165             gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
10166             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
10167             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
10168             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10169
10170       ;; Unsuppress duplicates?
10171       (when gnus-suppress-duplicates
10172         (gnus-dup-unsuppress-article article))
10173
10174       (cond ((= mark gnus-ticked-mark)
10175              (setq gnus-newsgroup-marked
10176                    (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
10177             ((= mark gnus-spam-mark)
10178              (setq gnus-newsgroup-spam-marked
10179                    (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10180                                             article)))
10181             ((= mark gnus-dormant-mark)
10182              (setq gnus-newsgroup-dormant
10183                    (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10184             (t
10185              (setq gnus-newsgroup-unreads
10186                    (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10187       (gnus-pull article gnus-newsgroup-reads)
10188       t)))
10189
10190 (defalias 'gnus-summary-mark-as-unread-forward
10191   'gnus-summary-tick-article-forward)
10192 (make-obsolete 'gnus-summary-mark-as-unread-forward
10193                'gnus-summary-tick-article-forward)
10194 (defun gnus-summary-tick-article-forward (n)
10195   "Tick N articles forwards.
10196 If N is negative, tick backwards instead.
10197 The difference between N and the number of articles ticked is returned."
10198   (interactive "p")
10199   (gnus-summary-mark-forward n gnus-ticked-mark))
10200
10201 (defalias 'gnus-summary-mark-as-unread-backward
10202   'gnus-summary-tick-article-backward)
10203 (make-obsolete 'gnus-summary-mark-as-unread-backward
10204                'gnus-summary-tick-article-backward)
10205 (defun gnus-summary-tick-article-backward (n)
10206   "Tick N articles backwards.
10207 The difference between N and the number of articles ticked is returned."
10208   (interactive "p")
10209   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10210
10211 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10212 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10213 (defun gnus-summary-tick-article (&optional article clear-mark)
10214   "Mark current article as unread.
10215 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10216 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10217   (interactive)
10218   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10219                                        gnus-ticked-mark)))
10220
10221 (defun gnus-summary-mark-as-read-forward (n)
10222   "Mark N articles as read forwards.
10223 If N is negative, mark backwards instead.
10224 The difference between N and the actual number of articles marked is
10225 returned."
10226   (interactive "p")
10227   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10228
10229 (defun gnus-summary-mark-as-read-backward (n)
10230   "Mark the N articles as read backwards.
10231 The difference between N and the actual number of articles marked is
10232 returned."
10233   (interactive "p")
10234   (gnus-summary-mark-forward
10235    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10236
10237 (defun gnus-summary-mark-as-read (&optional article mark)
10238   "Mark current article as read.
10239 ARTICLE specifies the article to be marked as read.
10240 MARK specifies a string to be inserted at the beginning of the line."
10241   (gnus-summary-mark-article article mark))
10242
10243 (defun gnus-summary-clear-mark-forward (n)
10244   "Clear marks from N articles forward.
10245 If N is negative, clear backward instead.
10246 The difference between N and the number of marks cleared is returned."
10247   (interactive "p")
10248   (gnus-summary-mark-forward n gnus-unread-mark))
10249
10250 (defun gnus-summary-clear-mark-backward (n)
10251   "Clear marks from N articles backward.
10252 The difference between N and the number of marks cleared is returned."
10253   (interactive "p")
10254   (gnus-summary-mark-forward (- n) gnus-unread-mark))
10255
10256 (defun gnus-summary-mark-unread-as-read ()
10257   "Intended to be used by `gnus-summary-mark-article-hook'."
10258   (when (memq gnus-current-article gnus-newsgroup-unreads)
10259     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10260
10261 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10262   "Intended to be used by `gnus-summary-mark-article-hook'."
10263   (let ((mark (gnus-summary-article-mark)))
10264     (when (or (gnus-unread-mark-p mark)
10265               (gnus-read-mark-p mark))
10266       (gnus-summary-mark-article gnus-current-article
10267                                  (or new-mark gnus-read-mark)))))
10268
10269 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10270   "Intended to be used by `gnus-summary-mark-article-hook'."
10271   (let ((mark (gnus-summary-article-mark)))
10272     (when (or (gnus-unread-mark-p mark)
10273               (gnus-read-mark-p mark))
10274       (gnus-summary-mark-article (gnus-summary-article-number)
10275                                  (or new-mark gnus-read-mark)))))
10276
10277 (defun gnus-summary-mark-unread-as-ticked ()
10278   "Intended to be used by `gnus-summary-mark-article-hook'."
10279   (when (memq gnus-current-article gnus-newsgroup-unreads)
10280     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10281
10282 (defun gnus-summary-mark-region-as-read (point mark all)
10283   "Mark all unread articles between point and mark as read.
10284 If given a prefix, mark all articles between point and mark as read,
10285 even ticked and dormant ones."
10286   (interactive "r\nP")
10287   (save-excursion
10288     (let (article)
10289       (goto-char point)
10290       (beginning-of-line)
10291       (while (and
10292               (< (point) mark)
10293               (progn
10294                 (when (or all
10295                           (memq (setq article (gnus-summary-article-number))
10296                                 gnus-newsgroup-unreads))
10297                   (gnus-summary-mark-article article gnus-del-mark))
10298                 t)
10299               (gnus-summary-find-next))))))
10300
10301 (defun gnus-summary-mark-below (score mark)
10302   "Mark articles with score less than SCORE with MARK."
10303   (interactive "P\ncMark: ")
10304   (setq score (if score
10305                   (prefix-numeric-value score)
10306                 (or gnus-summary-default-score 0)))
10307   (save-excursion
10308     (set-buffer gnus-summary-buffer)
10309     (goto-char (point-min))
10310     (while
10311         (progn
10312           (and (< (gnus-summary-article-score) score)
10313                (gnus-summary-mark-article nil mark))
10314           (gnus-summary-find-next)))))
10315
10316 (defun gnus-summary-kill-below (&optional score)
10317   "Mark articles with score below SCORE as read."
10318   (interactive "P")
10319   (gnus-summary-mark-below score gnus-killed-mark))
10320
10321 (defun gnus-summary-clear-above (&optional score)
10322   "Clear all marks from articles with score above SCORE."
10323   (interactive "P")
10324   (gnus-summary-mark-above score gnus-unread-mark))
10325
10326 (defun gnus-summary-tick-above (&optional score)
10327   "Tick all articles with score above SCORE."
10328   (interactive "P")
10329   (gnus-summary-mark-above score gnus-ticked-mark))
10330
10331 (defun gnus-summary-mark-above (score mark)
10332   "Mark articles with score over SCORE with MARK."
10333   (interactive "P\ncMark: ")
10334   (setq score (if score
10335                   (prefix-numeric-value score)
10336                 (or gnus-summary-default-score 0)))
10337   (save-excursion
10338     (set-buffer gnus-summary-buffer)
10339     (goto-char (point-min))
10340     (while (and (progn
10341                   (when (> (gnus-summary-article-score) score)
10342                     (gnus-summary-mark-article nil mark))
10343                   t)
10344                 (gnus-summary-find-next)))))
10345
10346 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10347 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10348 (defun gnus-summary-limit-include-expunged (&optional no-error)
10349   "Display all the hidden articles that were expunged for low scores."
10350   (interactive)
10351   (let ((buffer-read-only nil))
10352     (let ((scored gnus-newsgroup-scored)
10353           headers h)
10354       (while scored
10355         (unless (gnus-summary-article-header (caar scored))
10356           (and (setq h (gnus-number-to-header (caar scored)))
10357                (< (cdar scored) gnus-summary-expunge-below)
10358                (push h headers)))
10359         (setq scored (cdr scored)))
10360       (if (not headers)
10361           (when (not no-error)
10362             (error "No expunged articles hidden"))
10363         (goto-char (point-min))
10364         (push gnus-newsgroup-limit gnus-newsgroup-limits)
10365         (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
10366         (mapcar (lambda (x) (push (mail-header-number x)
10367                                   gnus-newsgroup-limit))
10368                 headers)
10369         (gnus-summary-prepare-unthreaded (nreverse headers))
10370         (goto-char (point-min))
10371         (gnus-summary-position-point)
10372         t))))
10373
10374 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
10375   "Mark all unread articles in this newsgroup as read.
10376 If prefix argument ALL is non-nil, ticked and dormant articles will
10377 also be marked as read.
10378 If QUIETLY is non-nil, no questions will be asked.
10379
10380 If TO-HERE is non-nil, it should be a point in the buffer.  All
10381 articles before (after, if REVERSE is set) this point will be marked
10382 as read.
10383
10384 Note that this function will only catch up the unread article
10385 in the current summary buffer limitation.
10386
10387 The number of articles marked as read is returned."
10388   (interactive "P")
10389   (prog1
10390       (save-excursion
10391         (when (or quietly
10392                   (not gnus-interactive-catchup) ;Without confirmation?
10393                   gnus-expert-user
10394                   (gnus-y-or-n-p
10395                    (if all
10396                        "Mark absolutely all articles as read? "
10397                      "Mark all unread articles as read? ")))
10398           (if (and not-mark
10399                    (not gnus-newsgroup-adaptive)
10400                    (not gnus-newsgroup-auto-expire)
10401                    (not gnus-suppress-duplicates)
10402                    (or (not gnus-use-cache)
10403                        (eq gnus-use-cache 'passive)))
10404               (progn
10405                 (when all
10406                   (setq gnus-newsgroup-marked nil
10407                         gnus-newsgroup-spam-marked nil
10408                         gnus-newsgroup-dormant nil))
10409                 (setq gnus-newsgroup-unreads
10410                       (gnus-sorted-nunion
10411                        (gnus-intersection gnus-newsgroup-unreads
10412                                           gnus-newsgroup-downloadable)
10413                        gnus-newsgroup-unfetched)))
10414             ;; We actually mark all articles as canceled, which we
10415             ;; have to do when using auto-expiry or adaptive scoring.
10416             (gnus-summary-show-all-threads)
10417             (if (and to-here reverse)
10418                 (progn
10419                   (goto-char to-here)
10420                   (gnus-summary-mark-current-read-and-unread-as-read
10421                    gnus-catchup-mark)
10422                   (while (gnus-summary-find-next (not all))
10423                     (gnus-summary-mark-article-as-read gnus-catchup-mark)))
10424               (when (gnus-summary-first-subject (not all))
10425                 (while (and
10426                         (if to-here (< (point) to-here) t)
10427                         (gnus-summary-mark-article-as-read gnus-catchup-mark)
10428                         (gnus-summary-find-next (not all))))))
10429             (gnus-set-mode-line 'summary))
10430           t))
10431     (gnus-summary-position-point)))
10432
10433 (defun gnus-summary-catchup-to-here (&optional all)
10434   "Mark all unticked articles before the current one as read.
10435 If ALL is non-nil, also mark ticked and dormant articles as read."
10436   (interactive "P")
10437   (save-excursion
10438     (gnus-save-hidden-threads
10439       (let ((beg (point)))
10440         ;; We check that there are unread articles.
10441         (when (or all (gnus-summary-find-prev))
10442           (gnus-summary-catchup all t beg)))))
10443   (gnus-summary-position-point))
10444
10445 (defun gnus-summary-catchup-from-here (&optional all)
10446   "Mark all unticked articles after (and including) the current one as read.
10447 If ALL is non-nil, also mark ticked and dormant articles as read."
10448   (interactive "P")
10449   (save-excursion
10450     (gnus-save-hidden-threads
10451       (let ((beg (point)))
10452         ;; We check that there are unread articles.
10453         (when (or all (gnus-summary-find-next))
10454           (gnus-summary-catchup all t beg nil t)))))
10455   (gnus-summary-position-point))
10456
10457 (defun gnus-summary-catchup-all (&optional quietly)
10458   "Mark all articles in this newsgroup as read.
10459 This command is dangerous.  Normally, you want \\[gnus-summary-catchup]
10460 instead, which marks only unread articles as read."
10461   (interactive "P")
10462   (gnus-summary-catchup t quietly))
10463
10464 (defun gnus-summary-catchup-and-exit (&optional all quietly)
10465   "Mark all unread articles in this group as read, then exit.
10466 If prefix argument ALL is non-nil, all articles are marked as read.
10467 If QUIETLY is non-nil, no questions will be asked."
10468   (interactive "P")
10469   (when (gnus-summary-catchup all quietly nil 'fast)
10470     ;; Select next newsgroup or exit.
10471     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
10472              (eq gnus-auto-select-next 'quietly))
10473         (gnus-summary-next-group nil)
10474       (gnus-summary-exit))))
10475
10476 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
10477   "Mark all articles in this newsgroup as read, and then exit.
10478 This command is dangerous.  Normally, you want \\[gnus-summary-catchup-and-exit]
10479 instead, which marks only unread articles as read."
10480   (interactive "P")
10481   (gnus-summary-catchup-and-exit t quietly))
10482
10483 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
10484   "Mark all articles in this group as read and select the next group.
10485 If given a prefix, mark all articles, unread as well as ticked, as
10486 read."
10487   (interactive "P")
10488   (save-excursion
10489     (gnus-summary-catchup all))
10490   (gnus-summary-next-group))
10491
10492 ;;;
10493 ;;; with article
10494 ;;;
10495
10496 (defmacro gnus-with-article (article &rest forms)
10497   "Select ARTICLE and perform FORMS in the original article buffer.
10498 Then replace the article with the result."
10499   `(progn
10500      ;; We don't want the article to be marked as read.
10501      (let (gnus-mark-article-hook)
10502        (gnus-summary-select-article t t nil ,article))
10503      (set-buffer gnus-original-article-buffer)
10504      ,@forms
10505      (if (not (gnus-check-backend-function
10506                'request-replace-article (car gnus-article-current)))
10507          (gnus-message 5 "Read-only group; not replacing")
10508        (unless (gnus-request-replace-article
10509                 ,article (car gnus-article-current)
10510                 (current-buffer) t)
10511          (error "Couldn't replace article")))
10512      ;; The cache and backlog have to be flushed somewhat.
10513      (when gnus-keep-backlog
10514        (gnus-backlog-remove-article
10515         (car gnus-article-current) (cdr gnus-article-current)))
10516      (when gnus-use-cache
10517        (gnus-cache-update-article
10518         (car gnus-article-current) (cdr gnus-article-current)))))
10519
10520 (put 'gnus-with-article 'lisp-indent-function 1)
10521 (put 'gnus-with-article 'edebug-form-spec '(form body))
10522
10523 ;; Thread-based commands.
10524
10525 (defun gnus-summary-articles-in-thread (&optional article)
10526   "Return a list of all articles in the current thread.
10527 If ARTICLE is non-nil, return all articles in the thread that starts
10528 with that article."
10529   (let* ((article (or article (gnus-summary-article-number)))
10530          (data (gnus-data-find-list article))
10531          (top-level (gnus-data-level (car data)))
10532          (top-subject
10533           (cond ((null gnus-thread-operation-ignore-subject)
10534                  (gnus-simplify-subject-re
10535                   (mail-header-subject (gnus-data-header (car data)))))
10536                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
10537                  (gnus-simplify-subject-fuzzy
10538                   (mail-header-subject (gnus-data-header (car data)))))
10539                 (t nil)))
10540          (end-point (save-excursion
10541                       (if (gnus-summary-go-to-next-thread)
10542                           (point) (point-max))))
10543          articles)
10544     (while (and data
10545                 (< (gnus-data-pos (car data)) end-point))
10546       (when (or (not top-subject)
10547                 (string= top-subject
10548                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
10549                              (gnus-simplify-subject-fuzzy
10550                               (mail-header-subject
10551                                (gnus-data-header (car data))))
10552                            (gnus-simplify-subject-re
10553                             (mail-header-subject
10554                              (gnus-data-header (car data)))))))
10555         (push (gnus-data-number (car data)) articles))
10556       (unless (and (setq data (cdr data))
10557                    (> (gnus-data-level (car data)) top-level))
10558         (setq data nil)))
10559     ;; Return the list of articles.
10560     (nreverse articles)))
10561
10562 (defun gnus-summary-rethread-current ()
10563   "Rethread the thread the current article is part of."
10564   (interactive)
10565   (let* ((gnus-show-threads t)
10566          (article (gnus-summary-article-number))
10567          (id (mail-header-id (gnus-summary-article-header)))
10568          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
10569     (unless id
10570       (error "No article on the current line"))
10571     (gnus-rebuild-thread id)
10572     (gnus-summary-goto-subject article)))
10573
10574 (defun gnus-summary-reparent-thread ()
10575   "Make the current article child of the marked (or previous) article.
10576
10577 Note that the re-threading will only work if `gnus-thread-ignore-subject'
10578 is non-nil or the Subject: of both articles are the same."
10579   (interactive)
10580   (unless (not (gnus-group-read-only-p))
10581     (error "The current newsgroup does not support article editing"))
10582   (unless (<= (length gnus-newsgroup-processable) 1)
10583     (error "No more than one article may be marked"))
10584   (save-window-excursion
10585     (let ((gnus-article-buffer " *reparent*")
10586           (current-article (gnus-summary-article-number))
10587           ;; First grab the marked article, otherwise one line up.
10588           (parent-article (if (not (null gnus-newsgroup-processable))
10589                               (car gnus-newsgroup-processable)
10590                             (save-excursion
10591                               (if (eq (forward-line -1) 0)
10592                                   (gnus-summary-article-number)
10593                                 (error "Beginning of summary buffer"))))))
10594       (unless (not (eq current-article parent-article))
10595         (error "An article may not be self-referential"))
10596       (let ((message-id (mail-header-id
10597                          (gnus-summary-article-header parent-article))))
10598         (unless (and message-id (not (equal message-id "")))
10599           (error "No message-id in desired parent"))
10600         (gnus-with-article current-article
10601           (save-restriction
10602             (goto-char (point-min))
10603             (message-narrow-to-head)
10604             (if (re-search-forward "^References: " nil t)
10605                 (progn
10606                   (re-search-forward "^[^ \t]" nil t)
10607                   (forward-line -1)
10608                   (end-of-line)
10609                   (insert " " message-id))
10610               (insert "References: " message-id "\n"))))
10611         (set-buffer gnus-summary-buffer)
10612         (gnus-summary-unmark-all-processable)
10613         (gnus-summary-update-article current-article)
10614         (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10615             (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
10616         (gnus-summary-rethread-current)
10617         (gnus-message 3 "Article %d is now the child of article %d"
10618                       current-article parent-article)))))
10619
10620 (defun gnus-summary-toggle-threads (&optional arg)
10621   "Toggle showing conversation threads.
10622 If ARG is positive number, turn showing conversation threads on."
10623   (interactive "P")
10624   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
10625     (setq gnus-show-threads
10626           (if (null arg) (not gnus-show-threads)
10627             (> (prefix-numeric-value arg) 0)))
10628     (gnus-summary-prepare)
10629     (gnus-summary-goto-subject current)
10630     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
10631     (gnus-summary-position-point)))
10632
10633 (defun gnus-summary-show-all-threads ()
10634   "Show all threads."
10635   (interactive)
10636   (save-excursion
10637     (let ((buffer-read-only nil))
10638       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
10639   (gnus-summary-position-point))
10640
10641 (defun gnus-summary-show-thread ()
10642   "Show thread subtrees.
10643 Returns nil if no thread was there to be shown."
10644   (interactive)
10645   (let ((buffer-read-only nil)
10646         (orig (point))
10647         (end (point-at-eol))
10648         ;; Leave point at bol
10649         (beg (progn (beginning-of-line) (point))))
10650     (prog1
10651         ;; Any hidden lines here?
10652         (search-forward "\r" end t)
10653       (subst-char-in-region beg end ?\^M ?\n t)
10654       (goto-char orig)
10655       (gnus-summary-position-point))))
10656
10657 (defun gnus-summary-maybe-hide-threads ()
10658   "If requested, hide the threads that should be hidden."
10659   (when (and gnus-show-threads
10660              gnus-thread-hide-subtree)
10661     (gnus-summary-hide-all-threads
10662      (if (or (consp gnus-thread-hide-subtree)
10663              (functionp gnus-thread-hide-subtree))
10664          (gnus-make-predicate gnus-thread-hide-subtree)
10665        nil))))
10666
10667 ;;; Hiding predicates.
10668
10669 (defun gnus-article-unread-p (header)
10670   (memq (mail-header-number header) gnus-newsgroup-unreads))
10671
10672 (defun gnus-article-unseen-p (header)
10673   (memq (mail-header-number header) gnus-newsgroup-unseen))
10674
10675 (defun gnus-map-articles (predicate articles)
10676   "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
10677   (apply 'gnus-or (mapcar predicate
10678                           (mapcar 'gnus-summary-article-header articles))))
10679
10680 (defun gnus-summary-hide-all-threads (&optional predicate)
10681   "Hide all thread subtrees.
10682 If PREDICATE is supplied, threads that satisfy this predicate
10683 will not be hidden."
10684   (interactive)
10685   (save-excursion
10686     (goto-char (point-min))
10687     (let ((end nil))
10688       (while (not end)
10689         (when (or (not predicate)
10690                   (gnus-map-articles
10691                    predicate (gnus-summary-article-children)))
10692             (gnus-summary-hide-thread))
10693         (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
10694   (gnus-summary-position-point))
10695
10696 (defun gnus-summary-hide-thread ()
10697   "Hide thread subtrees.
10698 If PREDICATE is supplied, threads that satisfy this predicate
10699 will not be hidden.
10700 Returns nil if no threads were there to be hidden."
10701   (interactive)
10702   (let ((buffer-read-only nil)
10703         (start (point))
10704         (article (gnus-summary-article-number)))
10705     (goto-char start)
10706     ;; Go forward until either the buffer ends or the subthread
10707     ;; ends.
10708     (when (and (not (eobp))
10709                (or (zerop (gnus-summary-next-thread 1 t))
10710                    (goto-char (point-max))))
10711       (prog1
10712           (if (and (> (point) start)
10713                    (search-backward "\n" start t))
10714               (progn
10715                 (subst-char-in-region start (point) ?\n ?\^M)
10716                 (gnus-summary-goto-subject article))
10717             (goto-char start)
10718             nil)))))
10719
10720 (defun gnus-summary-go-to-next-thread (&optional previous)
10721   "Go to the same level (or less) next thread.
10722 If PREVIOUS is non-nil, go to previous thread instead.
10723 Return the article number moved to, or nil if moving was impossible."
10724   (let ((level (gnus-summary-thread-level))
10725         (way (if previous -1 1))
10726         (beg (point)))
10727     (forward-line way)
10728     (while (and (not (eobp))
10729                 (< level (gnus-summary-thread-level)))
10730       (forward-line way))
10731     (if (eobp)
10732         (progn
10733           (goto-char beg)
10734           nil)
10735       (setq beg (point))
10736       (prog1
10737           (gnus-summary-article-number)
10738         (goto-char beg)))))
10739
10740 (defun gnus-summary-next-thread (n &optional silent)
10741   "Go to the same level next N'th thread.
10742 If N is negative, search backward instead.
10743 Returns the difference between N and the number of skips actually
10744 done.
10745
10746 If SILENT, don't output messages."
10747   (interactive "p")
10748   (let ((backward (< n 0))
10749         (n (abs n)))
10750     (while (and (> n 0)
10751                 (gnus-summary-go-to-next-thread backward))
10752       (decf n))
10753     (unless silent
10754       (gnus-summary-position-point))
10755     (when (and (not silent) (/= 0 n))
10756       (gnus-message 7 "No more threads"))
10757     n))
10758
10759 (defun gnus-summary-prev-thread (n)
10760   "Go to the same level previous N'th thread.
10761 Returns the difference between N and the number of skips actually
10762 done."
10763   (interactive "p")
10764   (gnus-summary-next-thread (- n)))
10765
10766 (defun gnus-summary-go-down-thread ()
10767   "Go down one level in the current thread."
10768   (let ((children (gnus-summary-article-children)))
10769     (when children
10770       (gnus-summary-goto-subject (car children)))))
10771
10772 (defun gnus-summary-go-up-thread ()
10773   "Go up one level in the current thread."
10774   (let ((parent (gnus-summary-article-parent)))
10775     (when parent
10776       (gnus-summary-goto-subject parent))))
10777
10778 (defun gnus-summary-down-thread (n)
10779   "Go down thread N steps.
10780 If N is negative, go up instead.
10781 Returns the difference between N and how many steps down that were
10782 taken."
10783   (interactive "p")
10784   (let ((up (< n 0))
10785         (n (abs n)))
10786     (while (and (> n 0)
10787                 (if up (gnus-summary-go-up-thread)
10788                   (gnus-summary-go-down-thread)))
10789       (setq n (1- n)))
10790     (gnus-summary-position-point)
10791     (when (/= 0 n)
10792       (gnus-message 7 "Can't go further"))
10793     n))
10794
10795 (defun gnus-summary-up-thread (n)
10796   "Go up thread N steps.
10797 If N is negative, go down instead.
10798 Returns the difference between N and how many steps down that were
10799 taken."
10800   (interactive "p")
10801   (gnus-summary-down-thread (- n)))
10802
10803 (defun gnus-summary-top-thread ()
10804   "Go to the top of the thread."
10805   (interactive)
10806   (while (gnus-summary-go-up-thread))
10807   (gnus-summary-article-number))
10808
10809 (defun gnus-summary-kill-thread (&optional unmark)
10810   "Mark articles under current thread as read.
10811 If the prefix argument is positive, remove any kinds of marks.
10812 If the prefix argument is negative, tick articles instead."
10813   (interactive "P")
10814   (when unmark
10815     (setq unmark (prefix-numeric-value unmark)))
10816   (let ((articles (gnus-summary-articles-in-thread)))
10817     (save-excursion
10818       ;; Expand the thread.
10819       (gnus-summary-show-thread)
10820       ;; Mark all the articles.
10821       (while articles
10822         (gnus-summary-goto-subject (car articles))
10823         (cond ((null unmark)
10824                (gnus-summary-mark-article-as-read gnus-killed-mark))
10825               ((> unmark 0)
10826                (gnus-summary-mark-article-as-unread gnus-unread-mark))
10827               (t
10828                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
10829         (setq articles (cdr articles))))
10830     ;; Hide killed subtrees.
10831     (and (null unmark)
10832          gnus-thread-hide-killed
10833          (gnus-summary-hide-thread))
10834     ;; If marked as read, go to next unread subject.
10835     (when (null unmark)
10836       ;; Go to next unread subject.
10837       (gnus-summary-next-subject 1 t)))
10838   (gnus-set-mode-line 'summary))
10839
10840 ;; Summary sorting commands
10841
10842 (defun gnus-summary-sort-by-number (&optional reverse)
10843   "Sort the summary buffer by article number.
10844 Argument REVERSE means reverse order."
10845   (interactive "P")
10846   (gnus-summary-sort 'number reverse))
10847
10848 (defun gnus-summary-sort-by-random (&optional reverse)
10849   "Randomize the order in the summary buffer.
10850 Argument REVERSE means to randomize in reverse order."
10851   (interactive "P")
10852   (gnus-summary-sort 'random reverse))
10853
10854 (defun gnus-summary-sort-by-author (&optional reverse)
10855   "Sort the summary buffer by author name alphabetically.
10856 If `case-fold-search' is non-nil, case of letters is ignored.
10857 Argument REVERSE means reverse order."
10858   (interactive "P")
10859   (gnus-summary-sort 'author reverse))
10860
10861 (defun gnus-summary-sort-by-subject (&optional reverse)
10862   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
10863 If `case-fold-search' is non-nil, case of letters is ignored.
10864 Argument REVERSE means reverse order."
10865   (interactive "P")
10866   (gnus-summary-sort 'subject reverse))
10867
10868 (defun gnus-summary-sort-by-date (&optional reverse)
10869   "Sort the summary buffer by date.
10870 Argument REVERSE means reverse order."
10871   (interactive "P")
10872   (gnus-summary-sort 'date reverse))
10873
10874 (defun gnus-summary-sort-by-score (&optional reverse)
10875   "Sort the summary buffer by score.
10876 Argument REVERSE means reverse order."
10877   (interactive "P")
10878   (gnus-summary-sort 'score reverse))
10879
10880 (defun gnus-summary-sort-by-lines (&optional reverse)
10881   "Sort the summary buffer by the number of lines.
10882 Argument REVERSE means reverse order."
10883   (interactive "P")
10884   (gnus-summary-sort 'lines reverse))
10885
10886 (defun gnus-summary-sort-by-chars (&optional reverse)
10887   "Sort the summary buffer by article length.
10888 Argument REVERSE means reverse order."
10889   (interactive "P")
10890   (gnus-summary-sort 'chars reverse))
10891
10892 (defun gnus-summary-sort-by-original (&optional reverse)
10893   "Sort the summary buffer using the default sorting method.
10894 Argument REVERSE means reverse order."
10895   (interactive "P")
10896   (let* ((buffer-read-only)
10897          (gnus-summary-prepare-hook nil))
10898     ;; We do the sorting by regenerating the threads.
10899     (gnus-summary-prepare)
10900     ;; Hide subthreads if needed.
10901     (gnus-summary-maybe-hide-threads)))
10902
10903 (defun gnus-summary-sort (predicate reverse)
10904   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
10905   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
10906          (article (intern (format "gnus-article-sort-by-%s" predicate)))
10907          (gnus-thread-sort-functions
10908           (if (not reverse)
10909               thread
10910             `(lambda (t1 t2)
10911                (,thread t2 t1))))
10912          (gnus-sort-gathered-threads-function
10913           gnus-thread-sort-functions)
10914          (gnus-article-sort-functions
10915           (if (not reverse)
10916               article
10917             `(lambda (t1 t2)
10918                (,article t2 t1))))
10919          (buffer-read-only)
10920          (gnus-summary-prepare-hook nil))
10921     ;; We do the sorting by regenerating the threads.
10922     (gnus-summary-prepare)
10923     ;; Hide subthreads if needed.
10924     (gnus-summary-maybe-hide-threads)))
10925
10926 ;; Summary saving commands.
10927
10928 (defun gnus-summary-save-article (&optional n not-saved)
10929   "Save the current article using the default saver function.
10930 If N is a positive number, save the N next articles.
10931 If N is a negative number, save the N previous articles.
10932 If N is nil and any articles have been marked with the process mark,
10933 save those articles instead.
10934 The variable `gnus-default-article-saver' specifies the saver function."
10935   (interactive "P")
10936   (let* ((articles (gnus-summary-work-articles n))
10937          (save-buffer (save-excursion
10938                         (nnheader-set-temp-buffer " *Gnus Save*")))
10939          (num (length articles))
10940          header file)
10941     (dolist (article articles)
10942       (setq header (gnus-summary-article-header article))
10943       (if (not (vectorp header))
10944           ;; This is a pseudo-article.
10945           (if (assq 'name header)
10946               (gnus-copy-file (cdr (assq 'name header)))
10947             (gnus-message 1 "Article %d is unsaveable" article))
10948         ;; This is a real article.
10949         (save-window-excursion
10950           (let ((gnus-display-mime-function nil)
10951                 (gnus-article-prepare-hook nil))
10952             (gnus-summary-select-article t nil nil article)))
10953         (save-excursion
10954           (set-buffer save-buffer)
10955           (erase-buffer)
10956           (insert-buffer-substring gnus-original-article-buffer))
10957         (setq file (gnus-article-save save-buffer file num))
10958         (gnus-summary-remove-process-mark article)
10959         (unless not-saved
10960           (gnus-summary-set-saved-mark article))))
10961     (gnus-kill-buffer save-buffer)
10962     (gnus-summary-position-point)
10963     (gnus-set-mode-line 'summary)
10964     n))
10965
10966 (defun gnus-summary-pipe-output (&optional arg headers)
10967   "Pipe the current article to a subprocess.
10968 If N is a positive number, pipe the N next articles.
10969 If N is a negative number, pipe the N previous articles.
10970 If N is nil and any articles have been marked with the process mark,
10971 pipe those articles instead.
10972 If HEADERS (the symbolic prefix), include the headers, too."
10973   (interactive (gnus-interactive "P\ny"))
10974   (require 'gnus-art)
10975   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)
10976         (gnus-save-all-headers (or headers gnus-save-all-headers)))
10977     (gnus-summary-save-article arg t))
10978   (let ((buffer (get-buffer "*Shell Command Output*")))
10979     (when (and buffer
10980                (not (zerop (buffer-size buffer))))
10981       (gnus-configure-windows 'pipe))))
10982
10983 (defun gnus-summary-save-article-mail (&optional arg)
10984   "Append the current article to an mail file.
10985 If N is a positive number, save the N next articles.
10986 If N is a negative number, save the N previous articles.
10987 If N is nil and any articles have been marked with the process mark,
10988 save those articles instead."
10989   (interactive "P")
10990   (require 'gnus-art)
10991   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
10992     (gnus-summary-save-article arg)))
10993
10994 (defun gnus-summary-save-article-rmail (&optional arg)
10995   "Append the current article to an rmail file.
10996 If N is a positive number, save the N next articles.
10997 If N is a negative number, save the N previous articles.
10998 If N is nil and any articles have been marked with the process mark,
10999 save those articles instead."
11000   (interactive "P")
11001   (require 'gnus-art)
11002   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
11003     (gnus-summary-save-article arg)))
11004
11005 (defun gnus-summary-save-article-file (&optional arg)
11006   "Append the current article to a file.
11007 If N is a positive number, save the N next articles.
11008 If N is a negative number, save the N previous articles.
11009 If N is nil and any articles have been marked with the process mark,
11010 save those articles instead."
11011   (interactive "P")
11012   (require 'gnus-art)
11013   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
11014     (gnus-summary-save-article arg)))
11015
11016 (defun gnus-summary-write-article-file (&optional arg)
11017   "Write the current article to a file, deleting the previous file.
11018 If N is a positive number, save the N next articles.
11019 If N is a negative number, save the N previous articles.
11020 If N is nil and any articles have been marked with the process mark,
11021 save those articles instead."
11022   (interactive "P")
11023   (require 'gnus-art)
11024   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
11025     (gnus-summary-save-article arg)))
11026
11027 (defun gnus-summary-save-article-body-file (&optional arg)
11028   "Append the current article body to a file.
11029 If N is a positive number, save the N next articles.
11030 If N is a negative number, save the N previous articles.
11031 If N is nil and any articles have been marked with the process mark,
11032 save those articles instead."
11033   (interactive "P")
11034   (require 'gnus-art)
11035   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
11036     (gnus-summary-save-article arg)))
11037
11038 (defun gnus-summary-muttprint (&optional arg)
11039   "Print the current article using Muttprint.
11040 If N is a positive number, save the N next articles.
11041 If N is a negative number, save the N previous articles.
11042 If N is nil and any articles have been marked with the process mark,
11043 save those articles instead."
11044   (interactive "P")
11045   (require 'gnus-art)
11046   (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
11047     (gnus-summary-save-article arg t)))
11048
11049 (defun gnus-summary-pipe-message (program)
11050   "Pipe the current article through PROGRAM."
11051   (interactive "sProgram: ")
11052   (gnus-summary-select-article)
11053   (let ((mail-header-separator ""))
11054     (gnus-eval-in-buffer-window gnus-article-buffer
11055       (save-restriction
11056         (widen)
11057         (let ((start (window-start))
11058               buffer-read-only)
11059           (message-pipe-buffer-body program)
11060           (set-window-start (get-buffer-window (current-buffer)) start))))))
11061
11062 (defun gnus-get-split-value (methods)
11063   "Return a value based on the split METHODS."
11064   (let (split-name method result match)
11065     (when methods
11066       (save-excursion
11067         (set-buffer gnus-original-article-buffer)
11068         (save-restriction
11069           (nnheader-narrow-to-headers)
11070           (while (and methods (not split-name))
11071             (goto-char (point-min))
11072             (setq method (pop methods))
11073             (setq match (car method))
11074             (when (cond
11075                    ((stringp match)
11076                     ;; Regular expression.
11077                     (ignore-errors
11078                       (re-search-forward match nil t)))
11079                    ((functionp match)
11080                     ;; Function.
11081                     (save-restriction
11082                       (widen)
11083                       (setq result (funcall match gnus-newsgroup-name))))
11084                    ((consp match)
11085                     ;; Form.
11086                     (save-restriction
11087                       (widen)
11088                       (setq result (eval match)))))
11089               (setq split-name (cdr method))
11090               (cond ((stringp result)
11091                      (push (expand-file-name
11092                             result gnus-article-save-directory)
11093                            split-name))
11094                     ((consp result)
11095                      (setq split-name (append result split-name)))))))))
11096     (nreverse split-name)))
11097
11098 (defun gnus-valid-move-group-p (group)
11099   (and (boundp group)
11100        (symbol-name group)
11101        (symbol-value group)
11102        (gnus-get-function (gnus-find-method-for-group
11103                            (symbol-name group)) 'request-accept-article t)))
11104
11105 (defun gnus-read-move-group-name (prompt default articles prefix)
11106   "Read a group name."
11107   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
11108          (minibuffer-confirm-incomplete nil) ; XEmacs
11109          (prom
11110           (format "%s %s to:"
11111                   prompt
11112                   (if (> (length articles) 1)
11113                       (format "these %d articles" (length articles))
11114                     "this article")))
11115          (to-newsgroup
11116           (cond
11117            ((null split-name)
11118             (gnus-completing-read-with-default
11119              default prom
11120              gnus-active-hashtb
11121              'gnus-valid-move-group-p
11122              nil prefix
11123              'gnus-group-history))
11124            ((= 1 (length split-name))
11125             (gnus-completing-read-with-default
11126              (car split-name) prom
11127              gnus-active-hashtb
11128              'gnus-valid-move-group-p
11129              nil nil
11130              'gnus-group-history))
11131            (t
11132             (gnus-completing-read-with-default
11133              nil prom
11134              (mapcar (lambda (el) (list el))
11135                      (nreverse split-name))
11136              nil nil nil
11137              'gnus-group-history))))
11138          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
11139     (when to-newsgroup
11140       (if (or (string= to-newsgroup "")
11141               (string= to-newsgroup prefix))
11142           (setq to-newsgroup default))
11143       (unless to-newsgroup
11144         (error "No group name entered"))
11145       (or (gnus-active to-newsgroup)
11146           (gnus-activate-group to-newsgroup nil nil to-method)
11147           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
11148                                      to-newsgroup))
11149               (or (and (gnus-request-create-group to-newsgroup to-method)
11150                        (gnus-activate-group
11151                         to-newsgroup nil nil to-method)
11152                        (gnus-subscribe-group to-newsgroup))
11153                   (error "Couldn't create group %s" to-newsgroup)))
11154           (error "No such group: %s" to-newsgroup)))
11155     to-newsgroup))
11156
11157 (defun gnus-summary-save-parts (type dir n &optional reverse)
11158   "Save parts matching TYPE to DIR.
11159 If REVERSE, save parts that do not match TYPE."
11160   (interactive
11161    (list (read-string "Save parts of type: "
11162                       (or (car gnus-summary-save-parts-type-history)
11163                           gnus-summary-save-parts-default-mime)
11164                       'gnus-summary-save-parts-type-history)
11165          (setq gnus-summary-save-parts-last-directory
11166                (read-file-name "Save to directory: "
11167                                gnus-summary-save-parts-last-directory
11168                                nil t))
11169          current-prefix-arg))
11170   (gnus-summary-iterate n
11171     (let ((gnus-display-mime-function nil)
11172           (gnus-inhibit-treatment t))
11173       (gnus-summary-select-article))
11174     (save-excursion
11175       (set-buffer gnus-article-buffer)
11176       (let ((handles (or gnus-article-mime-handles
11177                          (mm-dissect-buffer nil gnus-article-loose-mime)
11178                          (and gnus-article-emulate-mime
11179                               (mm-uu-dissect)))))
11180         (when handles
11181           (gnus-summary-save-parts-1 type dir handles reverse)
11182           (unless gnus-article-mime-handles ;; Don't destroy this case.
11183             (mm-destroy-parts handles)))))))
11184
11185 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11186   (if (stringp (car handle))
11187       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11188               (cdr handle))
11189     (when (if reverse
11190               (not (string-match type (mm-handle-media-type handle)))
11191             (string-match type (mm-handle-media-type handle)))
11192       (let ((file (expand-file-name
11193                    (gnus-map-function
11194                     mm-file-name-rewrite-functions
11195                     (file-name-nondirectory
11196                      (or
11197                       (mail-content-type-get
11198                        (mm-handle-disposition handle) 'filename)
11199                       (mail-content-type-get
11200                        (mm-handle-type handle) 'name)
11201                       (concat gnus-newsgroup-name
11202                               "." (number-to-string
11203                                    (cdr gnus-article-current))))))
11204                    dir)))
11205         (unless (file-exists-p file)
11206           (mm-save-part-to-file handle file))))))
11207
11208 ;; Summary extract commands
11209
11210 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
11211   (let ((buffer-read-only nil)
11212         (article (gnus-summary-article-number))
11213         after-article b e)
11214     (unless (gnus-summary-goto-subject article)
11215       (error "No such article: %d" article))
11216     (gnus-summary-position-point)
11217     ;; If all commands are to be bunched up on one line, we collect
11218     ;; them here.
11219     (unless gnus-view-pseudos-separately
11220       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
11221             files action)
11222         (while ps
11223           (setq action (cdr (assq 'action (car ps))))
11224           (setq files (list (cdr (assq 'name (car ps)))))
11225           (while (and ps (cdr ps)
11226                       (string= (or action "1")
11227                                (or (cdr (assq 'action (cadr ps))) "2")))
11228             (push (cdr (assq 'name (cadr ps))) files)
11229             (setcdr ps (cddr ps)))
11230           (when files
11231             (when (not (string-match "%s" action))
11232               (push " " files))
11233             (push " " files)
11234             (when (assq 'execute (car ps))
11235               (setcdr (assq 'execute (car ps))
11236                       (funcall (if (string-match "%s" action)
11237                                    'format 'concat)
11238                                action
11239                                (mapconcat
11240                                 (lambda (f)
11241                                   (if (equal f " ")
11242                                       f
11243                                     (shell-quote-argument f)))
11244                                 files " ")))))
11245           (setq ps (cdr ps)))))
11246     (if (and gnus-view-pseudos (not not-view))
11247         (while pslist
11248           (when (assq 'execute (car pslist))
11249             (gnus-execute-command (cdr (assq 'execute (car pslist)))
11250                                   (eq gnus-view-pseudos 'not-confirm)))
11251           (setq pslist (cdr pslist)))
11252       (save-excursion
11253         (while pslist
11254           (setq after-article (or (cdr (assq 'article (car pslist)))
11255                                   (gnus-summary-article-number)))
11256           (gnus-summary-goto-subject after-article)
11257           (forward-line 1)
11258           (setq b (point))
11259           (insert "    " (file-name-nondirectory
11260                           (cdr (assq 'name (car pslist))))
11261                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
11262           (setq e (point))
11263           (forward-line -1)             ; back to `b'
11264           (gnus-add-text-properties
11265            b (1- e) (list 'gnus-number gnus-reffed-article-number
11266                           gnus-mouse-face-prop gnus-mouse-face))
11267           (gnus-data-enter
11268            after-article gnus-reffed-article-number
11269            gnus-unread-mark b (car pslist) 0 (- e b))
11270           (setq gnus-newsgroup-unreads
11271                 (gnus-add-to-sorted-list gnus-newsgroup-unreads
11272                                          gnus-reffed-article-number))
11273           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
11274           (setq pslist (cdr pslist)))))))
11275
11276 (defun gnus-pseudos< (p1 p2)
11277   (let ((c1 (cdr (assq 'action p1)))
11278         (c2 (cdr (assq 'action p2))))
11279     (and c1 c2 (string< c1 c2))))
11280
11281 (defun gnus-request-pseudo-article (props)
11282   (cond ((assq 'execute props)
11283          (gnus-execute-command (cdr (assq 'execute props)))))
11284   (let ((gnus-current-article (gnus-summary-article-number)))
11285     (gnus-run-hooks 'gnus-mark-article-hook)))
11286
11287 (defun gnus-execute-command (command &optional automatic)
11288   (save-excursion
11289     (gnus-article-setup-buffer)
11290     (set-buffer gnus-article-buffer)
11291     (setq buffer-read-only nil)
11292     (let ((command (if automatic command
11293                      (read-string "Command: " (cons command 0)))))
11294       (erase-buffer)
11295       (insert "$ " command "\n\n")
11296       (if gnus-view-pseudo-asynchronously
11297           (start-process "gnus-execute" (current-buffer) shell-file-name
11298                          shell-command-switch command)
11299         (call-process shell-file-name nil t nil
11300                       shell-command-switch command)))))
11301
11302 ;; Summary kill commands.
11303
11304 (defun gnus-summary-edit-global-kill (article)
11305   "Edit the \"global\" kill file."
11306   (interactive (list (gnus-summary-article-number)))
11307   (gnus-group-edit-global-kill article))
11308
11309 (defun gnus-summary-edit-local-kill ()
11310   "Edit a local kill file applied to the current newsgroup."
11311   (interactive)
11312   (setq gnus-current-headers (gnus-summary-article-header))
11313   (gnus-group-edit-local-kill
11314    (gnus-summary-article-number) gnus-newsgroup-name))
11315
11316 ;;; Header reading.
11317
11318 (defun gnus-read-header (id &optional header)
11319   "Read the headers of article ID and enter them into the Gnus system."
11320   (let ((group gnus-newsgroup-name)
11321         (gnus-override-method
11322          (or
11323           gnus-override-method
11324           (and (gnus-news-group-p gnus-newsgroup-name)
11325                (car (gnus-refer-article-methods)))))
11326         where)
11327     ;; First we check to see whether the header in question is already
11328     ;; fetched.
11329     (if (stringp id)
11330         ;; This is a Message-ID.
11331         (setq header (or header (gnus-id-to-header id)))
11332       ;; This is an article number.
11333       (setq header (or header (gnus-summary-article-header id))))
11334     (if (and header
11335              (not (gnus-summary-article-sparse-p (mail-header-number header))))
11336         ;; We have found the header.
11337         header
11338       ;; If this is a sparse article, we have to nix out its
11339       ;; previous entry in the thread hashtb.
11340       (when (and header
11341                  (gnus-summary-article-sparse-p (mail-header-number header)))
11342         (let* ((parent (gnus-parent-id (mail-header-references header)))
11343                (thread (and parent (gnus-id-to-thread parent))))
11344           (when thread
11345             (delq (assq header thread) thread))))
11346       ;; We have to really fetch the header to this article.
11347       (save-excursion
11348         (set-buffer nntp-server-buffer)
11349         (when (setq where (gnus-request-head id group))
11350           (nnheader-fold-continuation-lines)
11351           (goto-char (point-max))
11352           (insert ".\n")
11353           (goto-char (point-min))
11354           (insert "211 ")
11355           (princ (cond
11356                   ((numberp id) id)
11357                   ((cdr where) (cdr where))
11358                   (header (mail-header-number header))
11359                   (t gnus-reffed-article-number))
11360                  (current-buffer))
11361           (insert " Article retrieved.\n"))
11362         (if (or (not where)
11363                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
11364             ()                          ; Malformed head.
11365           (unless (gnus-summary-article-sparse-p (mail-header-number header))
11366             (when (and (stringp id)
11367                        (not (string= (gnus-group-real-name group)
11368                                      (car where))))
11369               ;; If we fetched by Message-ID and the article came
11370               ;; from a different group, we fudge some bogus article
11371               ;; numbers for this article.
11372               (mail-header-set-number header gnus-reffed-article-number))
11373             (save-excursion
11374               (set-buffer gnus-summary-buffer)
11375               (decf gnus-reffed-article-number)
11376               (gnus-remove-header (mail-header-number header))
11377               (push header gnus-newsgroup-headers)
11378               (setq gnus-current-headers header)
11379               (push (mail-header-number header) gnus-newsgroup-limit)))
11380           header)))))
11381
11382 (defun gnus-remove-header (number)
11383   "Remove header NUMBER from `gnus-newsgroup-headers'."
11384   (if (and gnus-newsgroup-headers
11385            (= number (mail-header-number (car gnus-newsgroup-headers))))
11386       (pop gnus-newsgroup-headers)
11387     (let ((headers gnus-newsgroup-headers))
11388       (while (and (cdr headers)
11389                   (not (= number (mail-header-number (cadr headers)))))
11390         (pop headers))
11391       (when (cdr headers)
11392         (setcdr headers (cddr headers))))))
11393
11394 ;;;
11395 ;;; summary highlights
11396 ;;;
11397
11398 (defun gnus-highlight-selected-summary ()
11399   "Highlight selected article in summary buffer."
11400   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
11401   (when gnus-summary-selected-face
11402     (save-excursion
11403       (let* ((beg (point-at-bol))
11404              (end (point-at-eol))
11405              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
11406              (from (if (get-text-property beg gnus-mouse-face-prop)
11407                        beg
11408                      (or (next-single-property-change
11409                           beg gnus-mouse-face-prop nil end)
11410                          beg)))
11411              (to
11412               (if (= from end)
11413                   (- from 2)
11414                 (or (next-single-property-change
11415                      from gnus-mouse-face-prop nil end)
11416                     end))))
11417         ;; If no mouse-face prop on line we will have to = from = end,
11418         ;; so we highlight the entire line instead.
11419         (when (= (+ to 2) from)
11420           (setq from beg)
11421           (setq to end))
11422         (if gnus-newsgroup-selected-overlay
11423             ;; Move old overlay.
11424             (gnus-move-overlay
11425              gnus-newsgroup-selected-overlay from to (current-buffer))
11426           ;; Create new overlay.
11427           (gnus-overlay-put
11428            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
11429            'face gnus-summary-selected-face))))))
11430
11431 (defvar gnus-summary-highlight-line-cached nil)
11432 (defvar gnus-summary-highlight-line-trigger nil)
11433
11434 (defun gnus-summary-highlight-line-0 ()
11435   (if (and (eq gnus-summary-highlight-line-trigger
11436                gnus-summary-highlight)
11437            gnus-summary-highlight-line-cached)
11438       gnus-summary-highlight-line-cached
11439     (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
11440           gnus-summary-highlight-line-cached
11441           (let* ((cond (list 'cond))
11442                  (c cond)
11443                  (list gnus-summary-highlight))
11444             (while list
11445               (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
11446                               nil))
11447               (setq c (cdr c)
11448                     list (cdr list)))
11449             (gnus-byte-compile (list 'lambda nil cond))))))
11450
11451 (defun gnus-summary-highlight-line ()
11452   "Highlight current line according to `gnus-summary-highlight'."
11453   (let* ((beg (point-at-bol))
11454          (article (or (gnus-summary-article-number) gnus-current-article))
11455          (score (or (cdr (assq article
11456                                gnus-newsgroup-scored))
11457                     gnus-summary-default-score 0))
11458          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
11459          (inhibit-read-only t)
11460          (default gnus-summary-default-score)
11461          (default-high gnus-summary-default-high-score)
11462          (default-low gnus-summary-default-low-score)
11463          (uncached (and gnus-summary-use-undownloaded-faces
11464                         (memq article gnus-newsgroup-undownloaded)
11465                         (not (memq article gnus-newsgroup-cached)))))
11466     (let ((face (funcall (gnus-summary-highlight-line-0))))
11467       (unless (eq face (get-text-property beg 'face))
11468         (gnus-put-text-property-excluding-characters-with-faces
11469          beg (point-at-eol) 'face
11470          (setq face (if (boundp face) (symbol-value face) face)))
11471         (when gnus-summary-highlight-line-function
11472           (funcall gnus-summary-highlight-line-function article face))))))
11473
11474 (defun gnus-update-read-articles (group unread &optional compute)
11475   "Update the list of read articles in GROUP.
11476 UNREAD is a sorted list."
11477   (let ((active (or gnus-newsgroup-active (gnus-active group)))
11478         (info (gnus-get-info group))
11479         (prev 1)
11480         read)
11481     (if (or (not info) (not active))
11482         ;; There is no info on this group if it was, in fact,
11483         ;; killed.  Gnus stores no information on killed groups, so
11484         ;; there's nothing to be done.
11485         ;; One could store the information somewhere temporarily,
11486         ;; perhaps...  Hmmm...
11487         ()
11488       ;; Remove any negative articles numbers.
11489       (while (and unread (< (car unread) 0))
11490         (setq unread (cdr unread)))
11491       ;; Remove any expired article numbers
11492       (while (and unread (< (car unread) (car active)))
11493         (setq unread (cdr unread)))
11494       ;; Compute the ranges of read articles by looking at the list of
11495       ;; unread articles.
11496       (while unread
11497         (when (/= (car unread) prev)
11498           (push (if (= prev (1- (car unread))) prev
11499                   (cons prev (1- (car unread))))
11500                 read))
11501         (setq prev (1+ (car unread)))
11502         (setq unread (cdr unread)))
11503       (when (<= prev (cdr active))
11504         (push (cons prev (cdr active)) read))
11505       (setq read (if (> (length read) 1) (nreverse read) read))
11506       (if compute
11507           read
11508         (save-excursion
11509           (let (setmarkundo)
11510             ;; Propagate the read marks to the backend.
11511             (when (gnus-check-backend-function 'request-set-mark group)
11512               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
11513                     (add (gnus-remove-from-range read (gnus-info-read info))))
11514                 (when (or add del)
11515                   (unless (gnus-check-group group)
11516                     (error "Can't open server for %s" group))
11517                   (gnus-request-set-mark
11518                    group (delq nil (list (if add (list add 'add '(read)))
11519                                          (if del (list del 'del '(read))))))
11520                   (setq setmarkundo
11521                         `(gnus-request-set-mark
11522                           ,group
11523                           ',(delq nil (list
11524                                        (if del (list del 'add '(read)))
11525                                        (if add (list add 'del '(read))))))))))
11526             (set-buffer gnus-group-buffer)
11527             (gnus-undo-register
11528               `(progn
11529                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
11530                  (gnus-info-set-read ',info ',(gnus-info-read info))
11531                  (gnus-get-unread-articles-in-group ',info
11532                                                     (gnus-active ,group))
11533                  (gnus-group-update-group ,group t)
11534                  ,setmarkundo))))
11535         ;; Enter this list into the group info.
11536         (gnus-info-set-read info read)
11537         ;; Set the number of unread articles in gnus-newsrc-hashtb.
11538         (gnus-get-unread-articles-in-group info (gnus-active group))
11539         t))))
11540
11541 (defun gnus-offer-save-summaries ()
11542   "Offer to save all active summary buffers."
11543   (let (buffers)
11544     ;; Go through all buffers and find all summaries.
11545     (dolist (buffer (buffer-list))
11546       (when (and (setq buffer (buffer-name buffer))
11547                  (string-match "Summary" buffer)
11548                  (save-excursion
11549                    (set-buffer buffer)
11550                    ;; We check that this is, indeed, a summary buffer.
11551                    (and (eq major-mode 'gnus-summary-mode)
11552                         ;; Also make sure this isn't bogus.
11553                         gnus-newsgroup-prepared
11554                         ;; Also make sure that this isn't a
11555                         ;; dead summary buffer.
11556                         (not gnus-dead-summary-mode))))
11557         (push buffer buffers)))
11558     ;; Go through all these summary buffers and offer to save them.
11559     (when buffers
11560       (save-excursion
11561         (map-y-or-n-p
11562          "Update summary buffer %s? "
11563          (lambda (buf)
11564            (switch-to-buffer buf)
11565            (gnus-summary-exit))
11566          buffers)))))
11567
11568
11569 ;;; @ for mime-partial
11570 ;;;
11571
11572 (defun gnus-request-partial-message ()
11573   (save-excursion
11574     (let ((number (gnus-summary-article-number))
11575           (group gnus-newsgroup-name)
11576           (mother gnus-article-buffer))
11577       (set-buffer (get-buffer-create " *Partial Article*"))
11578       (erase-buffer)
11579       (setq mime-preview-buffer mother)
11580       (gnus-request-article-this-buffer number group)
11581       (mime-parse-buffer)
11582       )))
11583
11584 (autoload 'mime-combine-message/partial-pieces-automatically
11585   "mime-partial"
11586   "Internal method to combine message/partial messages automatically.")
11587
11588 (mime-add-condition
11589  'action '((type . message)(subtype . partial)
11590            (major-mode . gnus-original-article-mode)
11591            (method . mime-combine-message/partial-pieces-automatically)
11592            (summary-buffer-exp . gnus-summary-buffer)
11593            (request-partial-message-method . gnus-request-partial-message)
11594            ))
11595
11596
11597 ;;; @ for message/rfc822
11598 ;;;
11599
11600 (defun gnus-mime-extract-message/rfc822 (entity situation)
11601   "Burst a forwarded article."
11602   (save-excursion
11603     (set-buffer gnus-summary-buffer)
11604     (let* ((group (completing-read "Group: " gnus-active-hashtb nil t
11605                                    gnus-newsgroup-name 'gnus-group-history))
11606            (gnus-group-marked (list group))
11607            article info)
11608       (with-temp-buffer
11609         (mime-insert-entity-content entity)
11610         (setq article (gnus-request-accept-article group)))
11611       (when (and (consp article)
11612                  (numberp (setq article (cdr article))))
11613         (setq info (gnus-get-info group))
11614         (gnus-info-set-read info
11615                             (gnus-remove-from-range (gnus-info-read info)
11616                                                     (list article)))
11617         (when (string-equal group gnus-newsgroup-name)
11618           (forward-line 1)
11619           (let (gnus-show-threads)
11620             (gnus-summary-goto-subject article t))
11621           (gnus-summary-clear-mark-forward 1))
11622         (set-buffer gnus-group-buffer)
11623         (gnus-group-get-new-news-this-group nil t)))))
11624
11625 (mime-add-condition
11626  'action '((type . message)(subtype . rfc822)
11627            (major-mode . gnus-original-article-mode)
11628            (method . gnus-mime-extract-message/rfc822)
11629            (mode . "extract")
11630            ))
11631
11632 (mime-add-condition
11633  'action '((type . message)(subtype . news)
11634            (major-mode . gnus-original-article-mode)
11635            (method . gnus-mime-extract-message/rfc822)
11636            (mode . "extract")
11637            ))
11638
11639 (defun gnus-mime-extract-multipart (entity situation)
11640   (let ((children (mime-entity-children entity))
11641         mime-acting-situation-to-override
11642         f)
11643     (while children
11644       (mime-play-entity (car children)
11645                         (cons (assq 'mode situation)
11646                               mime-acting-situation-to-override))
11647       (setq children (cdr children)))
11648     (if (setq f (cdr (assq 'after-method
11649                            mime-acting-situation-to-override)))
11650         (eval f)
11651       )))
11652
11653 (mime-add-condition
11654  'action '((type . multipart)
11655            (method . gnus-mime-extract-multipart)
11656            (mode . "extract")
11657            )
11658  'with-default)
11659
11660
11661 ;;; @ end
11662 ;;;
11663
11664 (defun gnus-summary-inherit-default-charset ()
11665   "Import `default-mime-charset' from summary buffer.
11666 Also take care of `default-mime-charset-unlimited' if the LIMIT version
11667 of FLIM is used."
11668   (if (buffer-live-p gnus-summary-buffer)
11669       (let (d-m-c d-m-c-u)
11670         (with-current-buffer gnus-summary-buffer
11671           (setq d-m-c (if (local-variable-p 'default-mime-charset
11672                                             gnus-summary-buffer)
11673                           default-mime-charset
11674                         t)
11675                 ;; LIMIT
11676                 d-m-c-u (if (local-variable-p 'default-mime-charset-unlimited
11677                                               gnus-summary-buffer)
11678                             (symbol-value 'default-mime-charset-unlimited)
11679                           t)))
11680         (if (eq t d-m-c)
11681             (kill-local-variable 'default-mime-charset)
11682           (set (make-local-variable 'default-mime-charset) d-m-c))
11683         (if (eq t d-m-c-u)
11684             (kill-local-variable 'default-mime-charset-unlimited)
11685           (set (make-local-variable 'default-mime-charset-unlimited)
11686                d-m-c-u)))))
11687
11688 (defun gnus-summary-setup-default-charset ()
11689   "Setup newsgroup default charset."
11690   (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
11691       (progn
11692         (setq gnus-newsgroup-charset nil)
11693         (set (make-local-variable 'default-mime-charset) nil)
11694         (when (boundp 'default-mime-charset-unlimited);; LIMIT
11695           (set (make-local-variable 'default-mime-charset-unlimited) nil)))
11696     (let ((ignored-charsets
11697            (or gnus-newsgroup-ephemeral-ignored-charsets
11698                (append
11699                 (and gnus-newsgroup-name
11700                      (gnus-parameter-ignored-charsets gnus-newsgroup-name))
11701                 gnus-newsgroup-ignored-charsets)))
11702           charset)
11703       (setq gnus-newsgroup-charset
11704             (or gnus-newsgroup-ephemeral-charset
11705                 (when (and gnus-newsgroup-name
11706                            (setq charset (gnus-parameter-charset
11707                                           gnus-newsgroup-name)))
11708                   (make-local-variable 'default-mime-charset)
11709                   (setq default-mime-charset charset))
11710                 gnus-default-charset))
11711       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
11712            ignored-charsets))))
11713
11714 ;;;
11715 ;;; Mime Commands
11716 ;;;
11717
11718 (defun gnus-summary-display-buttonized (&optional show-all-parts)
11719   "Display the current article buffer fully MIME-buttonized.
11720 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
11721 treated as multipart/mixed."
11722   (interactive "P")
11723   (require 'gnus-art)
11724   (let ((gnus-unbuttonized-mime-types nil)
11725         (gnus-mime-display-multipart-as-mixed show-all-parts))
11726     (gnus-summary-show-article)))
11727
11728 (defun gnus-summary-repair-multipart (article)
11729   "Add a Content-Type header to a multipart article without one."
11730   (interactive (list (gnus-summary-article-number)))
11731   (gnus-with-article article
11732     (message-narrow-to-head)
11733     (message-remove-header "Mime-Version")
11734     (goto-char (point-max))
11735     (insert "Mime-Version: 1.0\n")
11736     (widen)
11737     (when (search-forward "\n--" nil t)
11738       (let ((separator (buffer-substring (point) (point-at-eol))))
11739         (message-narrow-to-head)
11740         (message-remove-header "Content-Type")
11741         (goto-char (point-max))
11742         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
11743                         separator))
11744         (widen))))
11745   (let (gnus-mark-article-hook)
11746     (gnus-summary-select-article t t nil article)))
11747
11748 (defun gnus-summary-toggle-display-buttonized ()
11749   "Toggle the buttonizing of the article buffer."
11750   (interactive)
11751   (require 'gnus-art)
11752   (if (setq gnus-inhibit-mime-unbuttonizing
11753             (not gnus-inhibit-mime-unbuttonizing))
11754       (let ((gnus-unbuttonized-mime-types nil))
11755         (gnus-summary-show-article))
11756     (gnus-summary-show-article)))
11757
11758 ;;;
11759 ;;; Intelli-mouse commmands
11760 ;;;
11761
11762 (defun gnus-wheel-summary-scroll (event)
11763   (interactive "e")
11764   (let ((amount (if (memq 'shift (event-modifiers event))
11765                     (car gnus-wheel-scroll-amount)
11766                   (cdr gnus-wheel-scroll-amount)))
11767         (direction (- (* (static-if (featurep 'xemacs)
11768                              (event-button event)
11769                            (cond ((eq 'mouse-4 (event-basic-type event))
11770                                   4)
11771                                  ((eq 'mouse-5 (event-basic-type event))
11772                                   5)))
11773                          2) 9))
11774         edge)
11775     (gnus-summary-scroll-up (* amount direction))
11776     (when (gnus-eval-in-buffer-window gnus-article-buffer
11777             (save-restriction
11778               (widen)
11779               (and (if (< 0 direction)
11780                        (gnus-article-next-page 0)
11781                      (gnus-article-prev-page 0)
11782                      (bobp))
11783                    (if (setq edge (get-text-property
11784                                    (point-min) 'gnus-wheel-edge))
11785                        (setq edge (* edge direction))
11786                      (setq edge -1))
11787                    (or (plusp edge)
11788                        (let ((buffer-read-only nil)
11789                              (inhibit-read-only t))
11790                          (put-text-property (point-min) (point-max)
11791                                             'gnus-wheel-edge direction)
11792                          nil))
11793                    (or (> edge gnus-wheel-edge-resistance)
11794                        (let ((buffer-read-only nil)
11795                              (inhibit-read-only t))
11796                          (put-text-property (point-min) (point-max)
11797                                             'gnus-wheel-edge
11798                                             (* (1+ edge) direction))
11799                          nil))
11800                    (eq last-command 'gnus-wheel-summary-scroll))))
11801       (gnus-summary-next-article nil nil (minusp direction)))))
11802
11803 (defun gnus-wheel-install ()
11804   "Enable mouse wheel support on summary window."
11805   (when gnus-use-wheel
11806     (let ((keys
11807            '([(mouse-4)] [(shift mouse-4)] [(mouse-5)] [(shift mouse-5)])))
11808       (dolist (key keys)
11809         (define-key gnus-summary-mode-map key
11810           'gnus-wheel-summary-scroll)))))
11811
11812 (add-hook 'gnus-summary-mode-hook 'gnus-wheel-install)
11813
11814 ;;;
11815 ;;; Traditional PGP commmands
11816 ;;;
11817
11818 (defun gnus-summary-decrypt-article (&optional force)
11819   "Decrypt the current article in traditional PGP way.
11820 This will have permanent effect only in mail groups.
11821 If FORCE is non-nil, allow editing of articles even in read-only
11822 groups."
11823   (interactive "P")
11824   (gnus-summary-select-article t)
11825   (gnus-eval-in-buffer-window gnus-article-buffer
11826     (save-excursion
11827       (save-restriction
11828         (widen)
11829         (goto-char (point-min))
11830         (unless (re-search-forward (car pgg-armor-header-lines) nil t)
11831           (error "Not a traditional PGP message!"))
11832         (let ((armor-start (match-beginning 0)))
11833           (if (and (pgg-decrypt-region armor-start (point-max))
11834                    (or force (not (gnus-group-read-only-p))))
11835               (let ((inhibit-read-only t)
11836                     buffer-read-only)
11837                 (delete-region armor-start
11838                                (progn
11839                                  (re-search-forward "^-+END PGP" nil t)
11840                                  (beginning-of-line 2)
11841                                  (point)))
11842                 (insert-buffer-substring pgg-output-buffer))))))))
11843
11844 (defun gnus-summary-verify-article ()
11845   "Verify the current article in traditional PGP way."
11846   (interactive)
11847   (save-excursion
11848     (set-buffer gnus-original-article-buffer)
11849     (goto-char (point-min))
11850     (unless (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE" nil t)
11851       (error "Not a traditional PGP message!"))
11852     (re-search-forward "^-+END PGP" nil t)
11853     (beginning-of-line 2)
11854     (call-interactively (function pgg-verify-region))))
11855
11856 ;;;
11857 ;;; Generic summary marking commands
11858 ;;;
11859
11860 (defvar gnus-summary-marking-alist
11861   '((read gnus-del-mark "d")
11862     (unread gnus-unread-mark "u")
11863     (ticked gnus-ticked-mark "!")
11864     (dormant gnus-dormant-mark "?")
11865     (expirable gnus-expirable-mark "e"))
11866   "An alist of names/marks/keystrokes.")
11867
11868 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
11869 (defvar gnus-summary-mark-map)
11870
11871 (defun gnus-summary-make-all-marking-commands ()
11872   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
11873   (dolist (elem gnus-summary-marking-alist)
11874     (apply 'gnus-summary-make-marking-command elem)))
11875
11876 (defun gnus-summary-make-marking-command (name mark keystroke)
11877   (let ((map (make-sparse-keymap)))
11878     (define-key gnus-summary-generic-mark-map keystroke map)
11879     (dolist (lway `((next "next" next nil "n")
11880                     (next-unread "next unread" next t "N")
11881                     (prev "previous" prev nil "p")
11882                     (prev-unread "previous unread" prev t "P")
11883                     (nomove "" nil nil ,keystroke)))
11884       (let ((func (gnus-summary-make-marking-command-1
11885                    mark (car lway) lway name)))
11886         (setq func (eval func))
11887         (define-key map (nth 4 lway) func)))))
11888
11889 (defun gnus-summary-make-marking-command-1 (mark way lway name)
11890   `(defun ,(intern
11891             (format "gnus-summary-put-mark-as-%s%s"
11892                     name (if (eq way 'nomove)
11893                              ""
11894                            (concat "-" (symbol-name way)))))
11895      (n)
11896      ,(format
11897        "Mark the current article as %s%s.
11898 If N, the prefix, then repeat N times.
11899 If N is negative, move in reverse order.
11900 The difference between N and the actual number of articles marked is
11901 returned."
11902        name (car (cdr lway)))
11903      (interactive "p")
11904      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
11905
11906 (defun gnus-summary-generic-mark (n mark move unread)
11907   "Mark N articles with MARK."
11908   (unless (eq major-mode 'gnus-summary-mode)
11909     (error "This command can only be used in the summary buffer"))
11910   (gnus-summary-show-thread)
11911   (let ((nummove
11912          (cond
11913           ((eq move 'next) 1)
11914           ((eq move 'prev) -1)
11915           (t 0))))
11916     (if (zerop nummove)
11917         (setq n 1)
11918       (when (< n 0)
11919         (setq n (abs n)
11920               nummove (* -1 nummove))))
11921     (while (and (> n 0)
11922                 (gnus-summary-mark-article nil mark)
11923                 (zerop (gnus-summary-next-subject nummove unread t)))
11924       (setq n (1- n)))
11925     (when (/= 0 n)
11926       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
11927     (gnus-summary-recenter)
11928     (gnus-summary-position-point)
11929     (gnus-set-mode-line 'summary)
11930     n))
11931
11932 (defun gnus-summary-insert-articles (articles)
11933   (when (setq articles
11934               (gnus-sorted-difference articles
11935                                       (mapcar (lambda (h)
11936                                                 (mail-header-number h))
11937                                               gnus-newsgroup-headers)))
11938     (setq gnus-newsgroup-headers
11939           (gnus-merge 'list
11940                       gnus-newsgroup-headers
11941                       (gnus-fetch-headers articles)
11942                       'gnus-article-sort-by-number))
11943     ;; Suppress duplicates?
11944     (when gnus-suppress-duplicates
11945       (gnus-dup-suppress-articles))
11946
11947     ;; We might want to build some more threads first.
11948     (when (and gnus-fetch-old-headers
11949                (eq gnus-headers-retrieved-by 'nov))
11950       (if (eq gnus-fetch-old-headers 'invisible)
11951           (gnus-build-all-threads)
11952         (gnus-build-old-threads)))
11953     ;; Let the Gnus agent mark articles as read.
11954     (when gnus-agent
11955       (gnus-agent-get-undownloaded-list))
11956     ;; Remove list identifiers from subject
11957     (when gnus-list-identifiers
11958       (gnus-summary-remove-list-identifiers))
11959     ;; First and last article in this newsgroup.
11960     (when gnus-newsgroup-headers
11961       (setq gnus-newsgroup-begin
11962             (mail-header-number (car gnus-newsgroup-headers))
11963             gnus-newsgroup-end
11964             (mail-header-number
11965              (gnus-last-element gnus-newsgroup-headers))))
11966     (when gnus-use-scoring
11967       (gnus-possibly-score-headers))))
11968
11969 (defun gnus-summary-insert-old-articles (&optional all)
11970   "Insert all old articles in this group.
11971 If ALL is non-nil, already read articles become readable.
11972 If ALL is a number, fetch this number of articles."
11973   (interactive "P")
11974   (prog1
11975       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11976             older len)
11977         (setq older
11978               ;; Some nntp servers lie about their active range.  When
11979               ;; this happens, the active range can be in the millions.
11980               ;; Use a compressed range to avoid creating a huge list.
11981               (gnus-range-difference (list gnus-newsgroup-active) old))
11982         (setq len (gnus-range-length older))
11983         (cond
11984          ((null older) nil)
11985          ((numberp all)
11986           (if (< all len)
11987               (let ((older-range (nreverse older)))
11988                 (setq older nil)
11989
11990                 (while (> all 0)
11991                   (let* ((r (pop older-range))
11992                          (min (if (numberp r) r (car r)))
11993                          (max (if (numberp r) r (cdr r))))
11994                     (while (and (<= min max)
11995                                 (> all 0))
11996                       (push max older)
11997                       (setq all (1- all)
11998                             max (1- max))))))
11999             (setq older (gnus-uncompress-range older))))
12000          (all
12001           (setq older (gnus-uncompress-range older)))
12002          (t
12003           (when (and (numberp gnus-large-newsgroup)
12004                    (> len gnus-large-newsgroup))
12005               (let* ((cursor-in-echo-area nil)
12006                      (initial (gnus-parameter-large-newsgroup-initial
12007                                gnus-newsgroup-name))
12008                      (input
12009                       (read-string
12010                        (format
12011                         "How many articles from %s (%s %d): "
12012                         (gnus-limit-string
12013                          (gnus-group-decoded-name gnus-newsgroup-name) 35)
12014                         (if initial "max" "default")
12015                         len)
12016                        (if initial
12017                            (cons (number-to-string initial)
12018                                  0)))))
12019                 (unless (string-match "^[ \t]*$" input)
12020                   (setq all (string-to-number input))
12021                   (if (< all len)
12022                       (let ((older-range (nreverse older)))
12023                         (setq older nil)
12024
12025                         (while (> all 0)
12026                           (let* ((r (pop older-range))
12027                                  (min (if (numberp r) r (car r)))
12028                                  (max (if (numberp r) r (cdr r))))
12029                             (while (and (<= min max)
12030                                         (> all 0))
12031                               (push max older)
12032                               (setq all (1- all)
12033                                     max (1- max))))))))))
12034           (setq older (gnus-uncompress-range older))))
12035         (if (not older)
12036             (message "No old news.")
12037           (gnus-summary-insert-articles older)
12038           (gnus-summary-limit (gnus-sorted-nunion old older))))
12039     (gnus-summary-position-point)))
12040
12041 (defun gnus-summary-insert-new-articles ()
12042   "Insert all new articles in this group."
12043   (interactive)
12044   (prog1
12045       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
12046             (old-active gnus-newsgroup-active)
12047             (nnmail-fetched-sources (list t))
12048             i new)
12049         (setq gnus-newsgroup-active
12050               (gnus-activate-group gnus-newsgroup-name 'scan))
12051         (setq i (cdr gnus-newsgroup-active))
12052         (while (> i (cdr old-active))
12053           (push i new)
12054           (decf i))
12055         (if (not new)
12056             (message "No gnus is bad news")
12057           (gnus-summary-insert-articles new)
12058           (setq gnus-newsgroup-unreads
12059                 (gnus-sorted-nunion gnus-newsgroup-unreads new))
12060           (gnus-summary-limit (gnus-sorted-nunion old new))))
12061     (gnus-summary-position-point)))
12062
12063 (gnus-summary-make-all-marking-commands)
12064
12065 (gnus-ems-redefine)
12066
12067 (provide 'gnus-sum)
12068
12069 (run-hooks 'gnus-sum-load-hook)
12070
12071 ;; Local Variables:
12072 ;; coding: iso-8859-1
12073 ;; End:
12074
12075 ;;; gnus-sum.el ends here