* mm-util.el (mm-subst-char-in-string): Support inplace.
[gnus] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile
30   (require 'cl)
31   (defvar tool-bar-map))
32
33 (require 'gnus)
34 (require 'gnus-group)
35 (require 'gnus-spec)
36 (require 'gnus-range)
37 (require 'gnus-int)
38 (require 'gnus-undo)
39 (require 'gnus-util)
40 (require 'mm-decode)
41 (require 'nnoo)
42
43 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
44 (autoload 'gnus-cache-write-active "gnus-cache")
45 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
46 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
47 (autoload 'mm-uu-dissect "mm-uu")
48 (autoload 'gnus-article-outlook-deuglify-article "deuglify"
49   "Deuglify broken Outlook (Express) articles and redisplay."
50   t)
51 (autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
52 (autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
53 (autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
54
55 (defcustom gnus-kill-summary-on-exit t
56   "*If non-nil, kill the summary buffer when you exit from it.
57 If nil, the summary will become a \"*Dead Summary*\" buffer, and
58 it will be killed sometime later."
59   :group 'gnus-summary-exit
60   :type 'boolean)
61
62 (defcustom gnus-fetch-old-headers nil
63   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
64 If an unread article in the group refers to an older, already read (or
65 just marked as read) article, the old article will not normally be
66 displayed in the Summary buffer.  If this variable is non-nil, Gnus
67 will attempt to grab the headers to the old articles, and thereby
68 build complete threads.  If it has the value `some', only enough
69 headers to connect otherwise loose threads will be displayed.  This
70 variable can also be a number.  In that case, no more than that number
71 of old headers will be fetched.  If it has the value `invisible', all
72 old headers will be fetched, but none will be displayed.
73
74 The server has to support NOV for any of this to work."
75   :group 'gnus-thread
76   :type '(choice (const :tag "off" nil)
77                  (const some)
78                  number
79                  (sexp :menu-tag "other" t)))
80
81 (defcustom gnus-refer-thread-limit 200
82   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
83 If t, fetch all the available old headers."
84   :group 'gnus-thread
85   :type '(choice number
86                  (sexp :menu-tag "other" t)))
87
88 (defcustom gnus-summary-make-false-root 'adopt
89   "*nil means that Gnus won't gather loose threads.
90 If the root of a thread has expired or been read in a previous
91 session, the information necessary to build a complete thread has been
92 lost.  Instead of having many small sub-threads from this original thread
93 scattered all over the summary buffer, Gnus can gather them.
94
95 If non-nil, Gnus will try to gather all loose sub-threads from an
96 original thread into one large thread.
97
98 If this variable is non-nil, it should be one of `none', `adopt',
99 `dummy' or `empty'.
100
101 If this variable is `none', Gnus will not make a false root, but just
102 present the sub-threads after another.
103 If this variable is `dummy', Gnus will create a dummy root that will
104 have all the sub-threads as children.
105 If this variable is `adopt', Gnus will make one of the \"children\"
106 the parent and mark all the step-children as such.
107 If this variable is `empty', the \"children\" are printed with empty
108 subject fields.  (Or rather, they will be printed with a string
109 given by the `gnus-summary-same-subject' variable.)"
110   :group 'gnus-thread
111   :type '(choice (const :tag "off" nil)
112                  (const none)
113                  (const dummy)
114                  (const adopt)
115                  (const empty)))
116
117 (defcustom gnus-summary-make-false-root-always nil
118   "Always make a false dummy root."
119   :group 'gnus-thread
120   :type 'boolean)
121
122 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
123   "*A regexp to match subjects to be excluded from loose thread gathering.
124 As loose thread gathering is done on subjects only, that means that
125 there can be many false gatherings performed.  By rooting out certain
126 common subjects, gathering might become saner."
127   :group 'gnus-thread
128   :type 'regexp)
129
130 (defcustom gnus-summary-gather-subject-limit nil
131   "*Maximum length of subject comparisons when gathering loose threads.
132 Use nil to compare full subjects.  Setting this variable to a low
133 number will help gather threads that have been corrupted by
134 newsreaders chopping off subject lines, but it might also mean that
135 unrelated articles that have subject that happen to begin with the
136 same few characters will be incorrectly gathered.
137
138 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
139 comparing subjects."
140   :group 'gnus-thread
141   :type '(choice (const :tag "off" nil)
142                  (const fuzzy)
143                  (sexp :menu-tag "on" t)))
144
145 (defcustom gnus-simplify-subject-functions nil
146   "List of functions taking a string argument that simplify subjects.
147 The functions are applied recursively.
148
149 Useful functions to put in this list include:
150 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
151 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
152   :group 'gnus-thread
153   :type '(repeat function))
154
155 (defcustom gnus-simplify-ignored-prefixes nil
156   "*Remove matches for this regexp from subject lines when simplifying fuzzily."
157   :group 'gnus-thread
158   :type '(choice (const :tag "off" nil)
159                  regexp))
160
161 (defcustom gnus-build-sparse-threads nil
162   "*If non-nil, fill in the gaps in threads.
163 If `some', only fill in the gaps that are needed to tie loose threads
164 together.  If `more', fill in all leaf nodes that Gnus can find.  If
165 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
166   :group 'gnus-thread
167   :type '(choice (const :tag "off" nil)
168                  (const some)
169                  (const more)
170                  (sexp :menu-tag "all" t)))
171
172 (defcustom gnus-summary-thread-gathering-function
173   'gnus-gather-threads-by-subject
174   "*Function used for gathering loose threads.
175 There are two pre-defined functions: `gnus-gather-threads-by-subject',
176 which only takes Subjects into consideration; and
177 `gnus-gather-threads-by-references', which compared the References
178 headers of the articles to find matches."
179   :group 'gnus-thread
180   :type '(radio (function-item gnus-gather-threads-by-subject)
181                 (function-item gnus-gather-threads-by-references)
182                 (function :tag "other")))
183
184 (defcustom gnus-summary-same-subject ""
185   "*String indicating that the current article has the same subject as the previous.
186 This variable will only be used if the value of
187 `gnus-summary-make-false-root' is `empty'."
188   :group 'gnus-summary-format
189   :type 'string)
190
191 (defcustom gnus-summary-goto-unread t
192   "*If t, many commands will go to the next unread article.
193 This applies to marking commands as well as other commands that
194 \"naturally\" select the next article, like, for instance, `SPC' at
195 the end of an article.
196
197 If nil, the marking commands do NOT go to the next unread article
198 \(they go to the next article instead).  If `never', commands that
199 usually go to the next unread article, will go to the next article,
200 whether it is read or not."
201   :group 'gnus-summary-marks
202   :link '(custom-manual "(gnus)Setting Marks")
203   :type '(choice (const :tag "off" nil)
204                  (const never)
205                  (sexp :menu-tag "on" t)))
206
207 (defcustom gnus-summary-default-score 0
208   "*Default article score level.
209 All scores generated by the score files will be added to this score.
210 If this variable is nil, scoring will be disabled."
211   :group 'gnus-score-default
212   :type '(choice (const :tag "disable")
213                  integer))
214
215 (defcustom gnus-summary-default-high-score 0
216   "*Default threshold for a high scored article.
217 An article will be highlighted as high scored if its score is greater
218 than this score."
219   :group 'gnus-score-default
220   :type 'integer)
221
222 (defcustom gnus-summary-default-low-score 0
223   "*Default threshold for a low scored article.
224 An article will be highlighted as low scored if its score is smaller
225 than this score."
226   :group 'gnus-score-default
227   :type 'integer)
228
229 (defcustom gnus-summary-zcore-fuzz 0
230   "*Fuzziness factor for the zcore in the summary buffer.
231 Articles with scores closer than this to `gnus-summary-default-score'
232 will not be marked."
233   :group 'gnus-summary-format
234   :type 'integer)
235
236 (defcustom gnus-simplify-subject-fuzzy-regexp nil
237   "*Strings to be removed when doing fuzzy matches.
238 This can either be a regular expression or list of regular expressions
239 that will be removed from subject strings if fuzzy subject
240 simplification is selected."
241   :group 'gnus-thread
242   :type '(repeat regexp))
243
244 (defcustom gnus-show-threads t
245   "*If non-nil, display threads in summary mode."
246   :group 'gnus-thread
247   :type 'boolean)
248
249 (defcustom gnus-thread-hide-subtree nil
250   "*If non-nil, hide all threads initially.
251 This can be a predicate specifier which says which threads to hide.
252 If threads are hidden, you have to run the command
253 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
254 to expose hidden threads."
255   :group 'gnus-thread
256   :type '(radio (sexp :format "Non-nil\n"
257                       :match (lambda (widget value)
258                                (not (or (consp value) (functionp value))))
259                       :value t)
260                 (const nil)
261                 (sexp :tag "Predicate specifier" :size 0)))
262
263 (defcustom gnus-thread-hide-killed t
264   "*If non-nil, hide killed threads automatically."
265   :group 'gnus-thread
266   :type 'boolean)
267
268 (defcustom gnus-thread-ignore-subject t
269   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
270 If nil, articles that have different subjects from their parents will
271 start separate threads."
272   :group 'gnus-thread
273   :type 'boolean)
274
275 (defcustom gnus-thread-operation-ignore-subject t
276   "*If non-nil, subjects will be ignored when doing thread commands.
277 This affects commands like `gnus-summary-kill-thread' and
278 `gnus-summary-lower-thread'.
279
280 If this variable is nil, articles in the same thread with different
281 subjects will not be included in the operation in question.  If this
282 variable is `fuzzy', only articles that have subjects that are fuzzily
283 equal will be included."
284   :group 'gnus-thread
285   :type '(choice (const :tag "off" nil)
286                  (const fuzzy)
287                  (sexp :tag "on" t)))
288
289 (defcustom gnus-thread-indent-level 4
290   "*Number that says how much each sub-thread should be indented."
291   :group 'gnus-thread
292   :type 'integer)
293
294 (defcustom gnus-auto-extend-newsgroup t
295   "*If non-nil, extend newsgroup forward and backward when requested."
296   :group 'gnus-summary-choose
297   :type 'boolean)
298
299 (defcustom gnus-auto-select-first t
300   "*If non-nil, select the article under point.
301 Which article this is is controlled by the `gnus-auto-select-subject'
302 variable.
303
304 If you want to prevent automatic selection of articles in some
305 newsgroups, set the variable to nil in `gnus-select-group-hook'."
306   :group 'gnus-group-select
307   :type '(choice (const :tag "none" nil)
308                  (sexp :menu-tag "first" t)))
309
310 (defcustom gnus-auto-select-subject 'unread
311   "*Says what subject to place under point when entering a group.
312
313 This variable can either be the symbols `first' (place point on the
314 first subject), `unread' (place point on the subject line of the first
315 unread article), `best' (place point on the subject line of the
316 higest-scored article), `unseen' (place point on the subject line of
317 the first unseen article), 'unseen-or-unread' (place point on the subject
318 line of the first unseen article or, if all article have been seen, on the
319 subject line of the first unread article), or a function to be called to
320 place point on some subject line."
321   :group 'gnus-group-select
322   :type '(choice (const best)
323                  (const unread)
324                  (const first)
325                  (const unseen)
326                  (const unseen-or-unread)))
327
328 (defcustom gnus-auto-select-next t
329   "*If non-nil, offer to go to the next group from the end of the previous.
330 If the value is t and the next newsgroup is empty, Gnus will exit
331 summary mode and go back to group mode.  If the value is neither nil
332 nor t, Gnus will select the following unread newsgroup.  In
333 particular, if the value is the symbol `quietly', the next unread
334 newsgroup will be selected without any confirmation, and if it is
335 `almost-quietly', the next group will be selected without any
336 confirmation if you are located on the last article in the group.
337 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
338 will go to the next group without confirmation."
339   :group 'gnus-summary-maneuvering
340   :type '(choice (const :tag "off" nil)
341                  (const quietly)
342                  (const almost-quietly)
343                  (const slightly-quietly)
344                  (sexp :menu-tag "on" t)))
345
346 (defcustom gnus-auto-select-same nil
347   "*If non-nil, select the next article with the same subject.
348 If there are no more articles with the same subject, go to
349 the first unread article."
350   :group 'gnus-summary-maneuvering
351   :type 'boolean)
352
353 (defcustom gnus-auto-goto-ignores 'unfetched
354   "*Says how to handle unfetched articles when maneuvering.
355
356 This variable can either be the symbols nil (maneuver to any
357 article), `undownloaded' (maneuvering while unplugged ignores articles
358 that have not been fetched), `always-undownloaded' (maneuvering always
359 ignores articles that have not been fetched), `unfetched' (maneuvering
360 ignores articles whose headers have not been fetched).
361
362 NOTE: The list of unfetched articles will always be nil when plugged
363 and, when unplugged, a subset of the undownloaded article list."
364   :group 'gnus-summary-maneuvering
365   :type '(choice (const :tag "None" nil)
366                  (const :tag "Undownloaded when unplugged" undownloaded)
367                  (const :tag "Undownloaded" always-undownloaded)
368                  (const :tag "Unfetched" unfetched)))
369
370 (defcustom gnus-summary-check-current nil
371   "*If non-nil, consider the current article when moving.
372 The \"unread\" movement commands will stay on the same line if the
373 current article is unread."
374   :group 'gnus-summary-maneuvering
375   :type 'boolean)
376
377 (defcustom gnus-auto-center-summary t
378   "*If non-nil, always center the current summary buffer.
379 In particular, if `vertical' do only vertical recentering.  If non-nil
380 and non-`vertical', do both horizontal and vertical recentering."
381   :group 'gnus-summary-maneuvering
382   :type '(choice (const :tag "none" nil)
383                  (const vertical)
384                  (integer :tag "height")
385                  (sexp :menu-tag "both" t)))
386
387 (defvar gnus-auto-center-group t
388   "*If non-nil, always center the group buffer.")
389
390 (defcustom gnus-show-all-headers nil
391   "*If non-nil, don't hide any headers."
392   :group 'gnus-article-hiding
393   :group 'gnus-article-headers
394   :type 'boolean)
395
396 (defcustom gnus-summary-ignore-duplicates nil
397   "*If non-nil, ignore articles with identical Message-ID headers."
398   :group 'gnus-summary
399   :type 'boolean)
400
401 (defcustom gnus-single-article-buffer t
402   "*If non-nil, display all articles in the same buffer.
403 If nil, each group will get its own article buffer."
404   :group 'gnus-article-various
405   :type 'boolean)
406
407 (defcustom gnus-break-pages t
408   "*If non-nil, do page breaking on articles.
409 The page delimiter is specified by the `gnus-page-delimiter'
410 variable."
411   :group 'gnus-article-various
412   :type 'boolean)
413
414 (defcustom gnus-move-split-methods nil
415   "*Variable used to suggest where articles are to be moved to.
416 It uses the same syntax as the `gnus-split-methods' variable.
417 However, whereas `gnus-split-methods' specifies file names as targets,
418 this variable specifies group names."
419   :group 'gnus-summary-mail
420   :type '(repeat (choice (list :value (fun) function)
421                          (cons :value ("" "") regexp (repeat string))
422                          (sexp :value nil))))
423
424 (defcustom gnus-unread-mark ?           ;Whitespace
425   "*Mark used for unread articles."
426   :group 'gnus-summary-marks
427   :type 'character)
428
429 (defcustom gnus-ticked-mark ?!
430   "*Mark used for ticked articles."
431   :group 'gnus-summary-marks
432   :type 'character)
433
434 (defcustom gnus-dormant-mark ??
435   "*Mark used for dormant articles."
436   :group 'gnus-summary-marks
437   :type 'character)
438
439 (defcustom gnus-del-mark ?r
440   "*Mark used for del'd articles."
441   :group 'gnus-summary-marks
442   :type 'character)
443
444 (defcustom gnus-read-mark ?R
445   "*Mark used for read articles."
446   :group 'gnus-summary-marks
447   :type 'character)
448
449 (defcustom gnus-expirable-mark ?E
450   "*Mark used for expirable articles."
451   :group 'gnus-summary-marks
452   :type 'character)
453
454 (defcustom gnus-killed-mark ?K
455   "*Mark used for killed articles."
456   :group 'gnus-summary-marks
457   :type 'character)
458
459 (defcustom gnus-spam-mark ?$
460   "*Mark used for spam articles."
461   :group 'gnus-summary-marks
462   :type 'character)
463
464 (defcustom gnus-souped-mark ?F
465   "*Mark used for souped articles."
466   :group 'gnus-summary-marks
467   :type 'character)
468
469 (defcustom gnus-kill-file-mark ?X
470   "*Mark used for articles killed by kill files."
471   :group 'gnus-summary-marks
472   :type 'character)
473
474 (defcustom gnus-low-score-mark ?Y
475   "*Mark used for articles with a low score."
476   :group 'gnus-summary-marks
477   :type 'character)
478
479 (defcustom gnus-catchup-mark ?C
480   "*Mark used for articles that are caught up."
481   :group 'gnus-summary-marks
482   :type 'character)
483
484 (defcustom gnus-replied-mark ?A
485   "*Mark used for articles that have been replied to."
486   :group 'gnus-summary-marks
487   :type 'character)
488
489 (defcustom gnus-forwarded-mark ?F
490   "*Mark used for articles that have been forwarded."
491   :group 'gnus-summary-marks
492   :type 'character)
493
494 (defcustom gnus-recent-mark ?N
495   "*Mark used for articles that are recent."
496   :group 'gnus-summary-marks
497   :type 'character)
498
499 (defcustom gnus-cached-mark ?*
500   "*Mark used for articles that are in the cache."
501   :group 'gnus-summary-marks
502   :type 'character)
503
504 (defcustom gnus-saved-mark ?S
505   "*Mark used for articles that have been saved."
506   :group 'gnus-summary-marks
507   :type 'character)
508
509 (defcustom gnus-unseen-mark ?.
510   "*Mark used for articles that haven't been seen."
511   :group 'gnus-summary-marks
512   :type 'character)
513
514 (defcustom gnus-no-mark ?               ;Whitespace
515   "*Mark used for articles that have no other secondary mark."
516   :group 'gnus-summary-marks
517   :type 'character)
518
519 (defcustom gnus-ancient-mark ?O
520   "*Mark used for ancient articles."
521   :group 'gnus-summary-marks
522   :type 'character)
523
524 (defcustom gnus-sparse-mark ?Q
525   "*Mark used for sparsely reffed articles."
526   :group 'gnus-summary-marks
527   :type 'character)
528
529 (defcustom gnus-canceled-mark ?G
530   "*Mark used for canceled articles."
531   :group 'gnus-summary-marks
532   :type 'character)
533
534 (defcustom gnus-duplicate-mark ?M
535   "*Mark used for duplicate articles."
536   :group 'gnus-summary-marks
537   :type 'character)
538
539 (defcustom gnus-undownloaded-mark ?-
540   "*Mark used for articles that weren't downloaded."
541   :group 'gnus-summary-marks
542   :type 'character)
543
544 (defcustom gnus-downloaded-mark ?+
545   "*Mark used for articles that were downloaded."
546   :group 'gnus-summary-marks
547   :type 'character)
548
549 (defcustom gnus-downloadable-mark ?%
550   "*Mark used for articles that are to be downloaded."
551   :group 'gnus-summary-marks
552   :type 'character)
553
554 (defcustom gnus-unsendable-mark ?=
555   "*Mark used for articles that won't be sent."
556   :group 'gnus-summary-marks
557   :type 'character)
558
559 (defcustom gnus-score-over-mark ?+
560   "*Score mark used for articles with high scores."
561   :group 'gnus-summary-marks
562   :type 'character)
563
564 (defcustom gnus-score-below-mark ?-
565   "*Score mark used for articles with low scores."
566   :group 'gnus-summary-marks
567   :type 'character)
568
569 (defcustom gnus-empty-thread-mark ?     ;Whitespace
570   "*There is no thread under the article."
571   :group 'gnus-summary-marks
572   :type 'character)
573
574 (defcustom gnus-not-empty-thread-mark ?=
575   "*There is a thread under the article."
576   :group 'gnus-summary-marks
577   :type 'character)
578
579 (defcustom gnus-view-pseudo-asynchronously nil
580   "*If non-nil, Gnus will view pseudo-articles asynchronously."
581   :group 'gnus-extract-view
582   :type 'boolean)
583
584 (defcustom gnus-auto-expirable-marks
585   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
586         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
587         gnus-souped-mark gnus-duplicate-mark)
588   "*The list of marks converted into expiration if a group is auto-expirable."
589   :version "21.1"
590   :group 'gnus-summary
591   :type '(repeat character))
592
593 (defcustom gnus-inhibit-user-auto-expire t
594   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
595   :version "21.1"
596   :group 'gnus-summary
597   :type 'boolean)
598
599 (defcustom gnus-view-pseudos nil
600   "*If `automatic', pseudo-articles will be viewed automatically.
601 If `not-confirm', pseudos will be viewed automatically, and the user
602 will not be asked to confirm the command."
603   :group 'gnus-extract-view
604   :type '(choice (const :tag "off" nil)
605                  (const automatic)
606                  (const not-confirm)))
607
608 (defcustom gnus-view-pseudos-separately t
609   "*If non-nil, one pseudo-article will be created for each file to be viewed.
610 If nil, all files that use the same viewing command will be given as a
611 list of parameters to that command."
612   :group 'gnus-extract-view
613   :type 'boolean)
614
615 (defcustom gnus-insert-pseudo-articles t
616   "*If non-nil, insert pseudo-articles when decoding articles."
617   :group 'gnus-extract-view
618   :type 'boolean)
619
620 (defcustom gnus-summary-dummy-line-format
621   "   %(:                             :%) %S\n"
622   "*The format specification for the dummy roots in the summary buffer.
623 It works along the same lines as a normal formatting string,
624 with some simple extensions.
625
626 %S  The subject
627
628 General format specifiers can also be used.
629 See `(gnus)Formatting Variables'."
630   :link '(custom-manual "(gnus)Formatting Variables")
631   :group 'gnus-threading
632   :type 'string)
633
634 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
635   "*The format specification for the summary mode line.
636 It works along the same lines as a normal formatting string,
637 with some simple extensions:
638
639 %G  Group name
640 %p  Unprefixed group name
641 %A  Current article number
642 %z  Current article score
643 %V  Gnus version
644 %U  Number of unread articles in the group
645 %e  Number of unselected articles in the group
646 %Z  A string with unread/unselected article counts
647 %g  Shortish group name
648 %S  Subject of the current article
649 %u  User-defined spec
650 %s  Current score file name
651 %d  Number of dormant articles
652 %r  Number of articles that have been marked as read in this session
653 %E  Number of articles expunged by the score files"
654   :group 'gnus-summary-format
655   :type 'string)
656
657 (defcustom gnus-list-identifiers nil
658   "Regexp that matches list identifiers to be removed from subject.
659 This can also be a list of regexps."
660   :version "21.1"
661   :group 'gnus-summary-format
662   :group 'gnus-article-hiding
663   :type '(choice (const :tag "none" nil)
664                  (regexp :value ".*")
665                  (repeat :value (".*") regexp)))
666
667 (defcustom gnus-summary-mark-below 0
668   "*Mark all articles with a score below this variable as read.
669 This variable is local to each summary buffer and usually set by the
670 score file."
671   :group 'gnus-score-default
672   :type 'integer)
673
674 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
675   "*List of functions used for sorting articles in the summary buffer.
676
677 Each function takes two articles and returns non-nil if the first
678 article should be sorted before the other.  If you use more than one
679 function, the primary sort function should be the last.  You should
680 probably always include `gnus-article-sort-by-number' in the list of
681 sorting functions -- preferably first.  Also note that sorting by date
682 is often much slower than sorting by number, and the sorting order is
683 very similar.  (Sorting by date means sorting by the time the message
684 was sent, sorting by number means sorting by arrival time.)
685
686 Ready-made functions include `gnus-article-sort-by-number',
687 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
688 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
689 and `gnus-article-sort-by-score'.
690
691 When threading is turned on, the variable `gnus-thread-sort-functions'
692 controls how articles are sorted."
693   :group 'gnus-summary-sort
694   :type '(repeat (choice (function-item gnus-article-sort-by-number)
695                          (function-item gnus-article-sort-by-author)
696                          (function-item gnus-article-sort-by-subject)
697                          (function-item gnus-article-sort-by-date)
698                          (function-item gnus-article-sort-by-score)
699                          (function-item gnus-article-sort-by-random)
700                          (function :tag "other"))))
701
702 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
703   "*List of functions used for sorting threads in the summary buffer.
704 By default, threads are sorted by article number.
705
706 Each function takes two threads and returns non-nil if the first
707 thread should be sorted before the other.  If you use more than one
708 function, the primary sort function should be the last.  You should
709 probably always include `gnus-thread-sort-by-number' in the list of
710 sorting functions -- preferably first.  Also note that sorting by date
711 is often much slower than sorting by number, and the sorting order is
712 very similar.  (Sorting by date means sorting by the time the message
713 was sent, sorting by number means sorting by arrival time.)
714
715 Ready-made functions include `gnus-thread-sort-by-number',
716 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
717 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score',
718 `gnus-thread-sort-by-most-recent-number',
719 `gnus-thread-sort-by-most-recent-date',
720 `gnus-thread-sort-by-random', and
721 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function').
722
723 When threading is turned off, the variable
724 `gnus-article-sort-functions' controls how articles are sorted."
725   :group 'gnus-summary-sort
726   :type '(repeat (choice (function-item gnus-thread-sort-by-number)
727                          (function-item gnus-thread-sort-by-author)
728                          (function-item gnus-thread-sort-by-subject)
729                          (function-item gnus-thread-sort-by-date)
730                          (function-item gnus-thread-sort-by-score)
731                          (function-item gnus-thread-sort-by-total-score)
732                          (function-item gnus-thread-sort-by-random)
733                          (function :tag "other"))))
734
735 (defcustom gnus-thread-score-function '+
736   "*Function used for calculating the total score of a thread.
737
738 The function is called with the scores of the article and each
739 subthread and should then return the score of the thread.
740
741 Some functions you can use are `+', `max', or `min'."
742   :group 'gnus-summary-sort
743   :type 'function)
744
745 (defcustom gnus-summary-expunge-below nil
746   "All articles that have a score less than this variable will be expunged.
747 This variable is local to the summary buffers."
748   :group 'gnus-score-default
749   :type '(choice (const :tag "off" nil)
750                  integer))
751
752 (defcustom gnus-thread-expunge-below nil
753   "All threads that have a total score less than this variable will be expunged.
754 See `gnus-thread-score-function' for en explanation of what a
755 \"thread score\" is.
756
757 This variable is local to the summary buffers."
758   :group 'gnus-threading
759   :group 'gnus-score-default
760   :type '(choice (const :tag "off" nil)
761                  integer))
762
763 (defcustom gnus-summary-mode-hook nil
764   "*A hook for Gnus summary mode.
765 This hook is run before any variables are set in the summary buffer."
766   :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
767   :group 'gnus-summary-various
768   :type 'hook)
769
770 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
771 (when (featurep 'xemacs)
772   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
773   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
774   (add-hook 'gnus-summary-mode-hook
775             'gnus-xmas-switch-horizontal-scrollbar-off))
776
777 (defcustom gnus-summary-menu-hook nil
778   "*Hook run after the creation of the summary mode menu."
779   :group 'gnus-summary-visual
780   :type 'hook)
781
782 (defcustom gnus-summary-exit-hook nil
783   "*A hook called on exit from the summary buffer.
784 It will be called with point in the group buffer."
785   :group 'gnus-summary-exit
786   :type 'hook)
787
788 (defcustom gnus-summary-prepare-hook nil
789   "*A hook called after the summary buffer has been generated.
790 If you want to modify the summary buffer, you can use this hook."
791   :group 'gnus-summary-various
792   :type 'hook)
793
794 (defcustom gnus-summary-prepared-hook nil
795   "*A hook called as the last thing after the summary buffer has been generated."
796   :group 'gnus-summary-various
797   :type 'hook)
798
799 (defcustom gnus-summary-generate-hook nil
800   "*A hook run just before generating the summary buffer.
801 This hook is commonly used to customize threading variables and the
802 like."
803   :group 'gnus-summary-various
804   :type 'hook)
805
806 (defcustom gnus-select-group-hook nil
807   "*A hook called when a newsgroup is selected.
808
809 If you'd like to simplify subjects like the
810 `gnus-summary-next-same-subject' command does, you can use the
811 following hook:
812
813  (add-hook gnus-select-group-hook
814            (lambda ()
815              (mapcar (lambda (header)
816                        (mail-header-set-subject
817                         header
818                         (gnus-simplify-subject
819                          (mail-header-subject header) 're-only)))
820                      gnus-newsgroup-headers)))"
821   :group 'gnus-group-select
822   :type 'hook)
823
824 (defcustom gnus-select-article-hook nil
825   "*A hook called when an article is selected."
826   :group 'gnus-summary-choose
827   :options '(gnus-agent-fetch-selected-article)
828   :type 'hook)
829
830 (defcustom gnus-visual-mark-article-hook
831   (list 'gnus-highlight-selected-summary)
832   "*Hook run after selecting an article in the summary buffer.
833 It is meant to be used for highlighting the article in some way.  It
834 is not run if `gnus-visual' is nil."
835   :group 'gnus-summary-visual
836   :type 'hook)
837
838 (defcustom gnus-parse-headers-hook nil
839   "*A hook called before parsing the headers."
840   :group 'gnus-various
841   :type 'hook)
842
843 (defcustom gnus-exit-group-hook nil
844   "*A hook called when exiting summary mode.
845 This hook is not called from the non-updating exit commands like `Q'."
846   :group 'gnus-various
847   :type 'hook)
848
849 (defcustom gnus-summary-update-hook
850   (list 'gnus-summary-highlight-line)
851   "*A hook called when a summary line is changed.
852 The hook will not be called if `gnus-visual' is nil.
853
854 The default function `gnus-summary-highlight-line' will
855 highlight the line according to the `gnus-summary-highlight'
856 variable."
857   :group 'gnus-summary-visual
858   :type 'hook)
859
860 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
861   "*A hook called when an article is selected for the first time.
862 The hook is intended to mark an article as read (or unread)
863 automatically when it is selected."
864   :group 'gnus-summary-choose
865   :type 'hook)
866
867 (defcustom gnus-group-no-more-groups-hook nil
868   "*A hook run when returning to group mode having no more (unread) groups."
869   :group 'gnus-group-select
870   :type 'hook)
871
872 (defcustom gnus-ps-print-hook nil
873   "*A hook run before ps-printing something from Gnus."
874   :group 'gnus-summary
875   :type 'hook)
876
877 (defcustom gnus-summary-article-move-hook nil
878   "*A hook called after an article is moved, copied, respooled, or crossposted."
879   :group 'gnus-summary
880   :type 'hook)
881
882 (defcustom gnus-summary-article-delete-hook nil
883   "*A hook called after an article is deleted."
884   :group 'gnus-summary
885   :type 'hook)
886
887 (defcustom gnus-summary-article-expire-hook nil
888   "*A hook called after an article is expired."
889   :group 'gnus-summary
890   :type 'hook)
891
892 (defcustom gnus-summary-display-arrow
893   (and (fboundp 'display-graphic-p)
894        (display-graphic-p))
895   "*If non-nil, display an arrow highlighting the current article."
896   :version "21.1"
897   :group 'gnus-summary
898   :type 'boolean)
899
900 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
901   "Face used for highlighting the current article in the summary buffer."
902   :group 'gnus-summary-visual
903   :type 'face)
904
905 (defvar gnus-tmp-downloaded nil)
906
907 (defcustom gnus-summary-highlight
908   '(((eq mark gnus-canceled-mark)
909      . gnus-summary-cancelled-face)
910     ((and uncached (> score default-high))
911      . gnus-summary-high-undownloaded-face)
912     ((and uncached (< score default-low))
913      . gnus-summary-low-undownloaded-face)
914     (uncached
915      . gnus-summary-normal-undownloaded-face)
916     ((and (> score default-high)
917           (or (eq mark gnus-dormant-mark)
918               (eq mark gnus-ticked-mark)))
919      . gnus-summary-high-ticked-face)
920     ((and (< score default-low)
921           (or (eq mark gnus-dormant-mark)
922               (eq mark gnus-ticked-mark)))
923      . gnus-summary-low-ticked-face)
924     ((or (eq mark gnus-dormant-mark)
925          (eq mark gnus-ticked-mark))
926      . gnus-summary-normal-ticked-face)
927     ((and (> score default-high) (eq mark gnus-ancient-mark))
928      . gnus-summary-high-ancient-face)
929     ((and (< score default-low) (eq mark gnus-ancient-mark))
930      . gnus-summary-low-ancient-face)
931     ((eq mark gnus-ancient-mark)
932      . gnus-summary-normal-ancient-face)
933     ((and (> score default-high) (eq mark gnus-unread-mark))
934      . gnus-summary-high-unread-face)
935     ((and (< score default-low) (eq mark gnus-unread-mark))
936      . gnus-summary-low-unread-face)
937     ((eq mark gnus-unread-mark)
938      . gnus-summary-normal-unread-face)
939     ((> score default-high)
940      . gnus-summary-high-read-face)
941     ((< score default-low)
942      . gnus-summary-low-read-face)
943     (t
944      . gnus-summary-normal-read-face))
945   "*Controls the highlighting of summary buffer lines.
946
947 A list of (FORM . FACE) pairs.  When deciding how a a particular
948 summary line should be displayed, each form is evaluated.  The content
949 of the face field after the first true form is used.  You can change
950 how those summary lines are displayed, by editing the face field.
951
952 You can use the following variables in the FORM field.
953
954 score:        The article's score
955 default:      The default article score.
956 default-high: The default score for high scored articles.
957 default-low:  The default score for low scored articles.
958 below:        The score below which articles are automatically marked as read.
959 mark:         The article's mark.
960 uncached:     Non-nil if the article is uncached."
961   :group 'gnus-summary-visual
962   :type '(repeat (cons (sexp :tag "Form" nil)
963                        face)))
964
965 (defcustom gnus-alter-header-function nil
966   "Function called to allow alteration of article header structures.
967 The function is called with one parameter, the article header vector,
968 which it may alter in any way."
969   :type '(choice (const :tag "None" nil)
970                  function)
971   :group 'gnus-summary)
972
973 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
974   "Variable that says which function should be used to decode a string with encoded words.")
975
976 (defcustom gnus-extra-headers '(To Newsgroups)
977   "*Extra headers to parse."
978   :version "21.1"
979   :group 'gnus-summary
980   :type '(repeat symbol))
981
982 (defcustom gnus-ignored-from-addresses
983   (and user-mail-address (regexp-quote user-mail-address))
984   "*Regexp of From headers that may be suppressed in favor of To headers."
985   :version "21.1"
986   :group 'gnus-summary
987   :type 'regexp)
988
989 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
990   "List of charsets that should be ignored.
991 When these charsets are used in the \"charset\" parameter, the
992 default charset will be used instead."
993   :version "21.1"
994   :type '(repeat symbol)
995   :group 'gnus-charset)
996
997 (gnus-define-group-parameter
998  ignored-charsets
999  :type list
1000  :function-document
1001  "Return the ignored charsets of GROUP."
1002  :variable gnus-group-ignored-charsets-alist
1003  :variable-default
1004  '(("alt\\.chinese\\.text" iso-8859-1))
1005  :variable-document
1006  "Alist of regexps (to match group names) and charsets that should be ignored.
1007 When these charsets are used in the \"charset\" parameter, the
1008 default charset will be used instead."
1009  :variable-group gnus-charset
1010  :variable-type '(repeat (cons (regexp :tag "Group")
1011                                (repeat symbol)))
1012  :parameter-type '(choice :tag "Ignored charsets"
1013                           :value nil
1014                           (repeat (symbol)))
1015  :parameter-document       "\
1016 List of charsets that should be ignored.
1017
1018 When these charsets are used in the \"charset\" parameter, the
1019 default charset will be used instead.")
1020
1021 (defcustom gnus-group-highlight-words-alist nil
1022   "Alist of group regexps and highlight regexps.
1023 This variable uses the same syntax as `gnus-emphasis-alist'."
1024   :version "21.1"
1025   :type '(repeat (cons (regexp :tag "Group")
1026                        (repeat (list (regexp :tag "Highlight regexp")
1027                                      (number :tag "Group for entire word" 0)
1028                                      (number :tag "Group for displayed part" 0)
1029                                      (symbol :tag "Face"
1030                                              gnus-emphasis-highlight-words)))))
1031   :group 'gnus-summary-visual)
1032
1033 (defcustom gnus-summary-show-article-charset-alist
1034   nil
1035   "Alist of number and charset.
1036 The article will be shown with the charset corresponding to the
1037 numbered argument.
1038 For example: ((1 . cn-gb-2312) (2 . big5))."
1039   :version "21.1"
1040   :type '(repeat (cons (number :tag "Argument" 1)
1041                        (symbol :tag "Charset")))
1042   :group 'gnus-charset)
1043
1044 (defcustom gnus-preserve-marks t
1045   "Whether marks are preserved when moving, copying and respooling messages."
1046   :version "21.1"
1047   :type 'boolean
1048   :group 'gnus-summary-marks)
1049
1050 (defcustom gnus-alter-articles-to-read-function nil
1051   "Function to be called to alter the list of articles to be selected."
1052   :type '(choice (const nil) function)
1053   :group 'gnus-summary)
1054
1055 (defcustom gnus-orphan-score nil
1056   "*All orphans get this score added.  Set in the score file."
1057   :group 'gnus-score-default
1058   :type '(choice (const nil)
1059                  integer))
1060
1061 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1062   "*A regexp to match MIME parts when saving multiple parts of a
1063 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1064 This regexp will be used by default when prompting the user for which
1065 type of files to save."
1066   :group 'gnus-summary
1067   :type 'regexp)
1068
1069 (defcustom gnus-read-all-available-headers nil
1070   "Whether Gnus should parse all headers made available to it.
1071 This is mostly relevant for slow back ends where the user may
1072 wish to widen the summary buffer to include all headers
1073 that were fetched.  Say, for nnultimate groups."
1074   :group 'gnus-summary
1075   :type '(choice boolean regexp))
1076
1077 (defcustom gnus-summary-muttprint-program "muttprint"
1078   "Command (and optional arguments) used to run Muttprint."
1079   :version "21.3"
1080   :group 'gnus-summary
1081   :type 'string)
1082
1083 (defcustom gnus-article-loose-mime nil
1084   "If non-nil, don't require MIME-Version header.
1085 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1086 supply the MIME-Version header or deliberately strip it From the mail.
1087 Set it to non-nil, Gnus will treat some articles as MIME even if
1088 the MIME-Version header is missed."
1089   :version "21.3"
1090   :type 'boolean
1091   :group 'gnus-article-mime)
1092
1093 (defcustom gnus-article-emulate-mime t
1094   "If non-nil, use MIME emulation for uuencode and the like.
1095 This means that Gnus will search message bodies for text that look
1096 like uuencoded bits, yEncoded bits, and so on, and present that using
1097 the normal Gnus MIME machinery."
1098   :type 'boolean
1099   :group 'gnus-article-mime)
1100
1101 ;;; Internal variables
1102
1103 (defvar gnus-summary-display-cache nil)
1104 (defvar gnus-article-mime-handles nil)
1105 (defvar gnus-article-decoded-p nil)
1106 (defvar gnus-article-charset nil)
1107 (defvar gnus-article-ignored-charsets nil)
1108 (defvar gnus-scores-exclude-files nil)
1109 (defvar gnus-page-broken nil)
1110
1111 (defvar gnus-original-article nil)
1112 (defvar gnus-article-internal-prepare-hook nil)
1113 (defvar gnus-newsgroup-process-stack nil)
1114
1115 (defvar gnus-thread-indent-array nil)
1116 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1117 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1118   "Function called to sort the articles within a thread after it has been gathered together.")
1119
1120 (defvar gnus-summary-save-parts-type-history nil)
1121 (defvar gnus-summary-save-parts-last-directory mm-default-directory)
1122
1123 ;; Avoid highlighting in kill files.
1124 (defvar gnus-summary-inhibit-highlight nil)
1125 (defvar gnus-newsgroup-selected-overlay nil)
1126 (defvar gnus-inhibit-limiting nil)
1127 (defvar gnus-newsgroup-adaptive-score-file nil)
1128 (defvar gnus-current-score-file nil)
1129 (defvar gnus-current-move-group nil)
1130 (defvar gnus-current-copy-group nil)
1131 (defvar gnus-current-crosspost-group nil)
1132 (defvar gnus-newsgroup-display nil)
1133
1134 (defvar gnus-newsgroup-dependencies nil)
1135 (defvar gnus-newsgroup-adaptive nil)
1136 (defvar gnus-summary-display-article-function nil)
1137 (defvar gnus-summary-highlight-line-function nil
1138   "Function called after highlighting a summary line.")
1139
1140 (defvar gnus-summary-line-format-alist
1141   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1142     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1143     (?s gnus-tmp-subject-or-nil ?s)
1144     (?n gnus-tmp-name ?s)
1145     (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
1146         ?s)
1147     (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
1148             gnus-tmp-from) ?s)
1149     (?F gnus-tmp-from ?s)
1150     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1151     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1152     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1153     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1154     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1155     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1156     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1157     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1158     (?L gnus-tmp-lines ?s)
1159     (?O gnus-tmp-downloaded ?c)
1160     (?I gnus-tmp-indentation ?s)
1161     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1162     (?R gnus-tmp-replied ?c)
1163     (?\[ gnus-tmp-opening-bracket ?c)
1164     (?\] gnus-tmp-closing-bracket ?c)
1165     (?\> (make-string gnus-tmp-level ? ) ?s)
1166     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1167     (?i gnus-tmp-score ?d)
1168     (?z gnus-tmp-score-char ?c)
1169     (?l (bbb-grouplens-score gnus-tmp-header) ?s)
1170     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1171     (?U gnus-tmp-unread ?c)
1172     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1173         ?s)
1174     (?t (gnus-summary-number-of-articles-in-thread
1175          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1176         ?d)
1177     (?e (gnus-summary-number-of-articles-in-thread
1178          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1179         ?c)
1180     (?u gnus-tmp-user-defined ?s)
1181     (?P (gnus-pick-line-number) ?d)
1182     (?B gnus-tmp-thread-tree-header-string ?s)
1183     (user-date (gnus-user-date
1184                 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1185   "An alist of format specifications that can appear in summary lines.
1186 These are paired with what variables they correspond with, along with
1187 the type of the variable (string, integer, character, etc).")
1188
1189 (defvar gnus-summary-dummy-line-format-alist
1190   `((?S gnus-tmp-subject ?s)
1191     (?N gnus-tmp-number ?d)
1192     (?u gnus-tmp-user-defined ?s)))
1193
1194 (defvar gnus-summary-mode-line-format-alist
1195   `((?G gnus-tmp-group-name ?s)
1196     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1197     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1198     (?A gnus-tmp-article-number ?d)
1199     (?Z gnus-tmp-unread-and-unselected ?s)
1200     (?V gnus-version ?s)
1201     (?U gnus-tmp-unread-and-unticked ?d)
1202     (?S gnus-tmp-subject ?s)
1203     (?e gnus-tmp-unselected ?d)
1204     (?u gnus-tmp-user-defined ?s)
1205     (?d (length gnus-newsgroup-dormant) ?d)
1206     (?t (length gnus-newsgroup-marked) ?d)
1207     (?h (length gnus-newsgroup-spam-marked) ?d)
1208     (?r (length gnus-newsgroup-reads) ?d)
1209     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1210     (?E gnus-newsgroup-expunged-tally ?d)
1211     (?s (gnus-current-score-file-nondirectory) ?s)))
1212
1213 (defvar gnus-last-search-regexp nil
1214   "Default regexp for article search command.")
1215
1216 (defvar gnus-last-shell-command nil
1217   "Default shell command on article.")
1218
1219 (defvar gnus-newsgroup-agentized nil
1220   "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1221 (defvar gnus-newsgroup-begin nil)
1222 (defvar gnus-newsgroup-end nil)
1223 (defvar gnus-newsgroup-last-rmail nil)
1224 (defvar gnus-newsgroup-last-mail nil)
1225 (defvar gnus-newsgroup-last-folder nil)
1226 (defvar gnus-newsgroup-last-file nil)
1227 (defvar gnus-newsgroup-auto-expire nil)
1228 (defvar gnus-newsgroup-active nil)
1229
1230 (defvar gnus-newsgroup-data nil)
1231 (defvar gnus-newsgroup-data-reverse nil)
1232 (defvar gnus-newsgroup-limit nil)
1233 (defvar gnus-newsgroup-limits nil)
1234 (defvar gnus-summary-use-undownloaded-faces nil)
1235
1236 (defvar gnus-newsgroup-unreads nil
1237   "Sorted list of unread articles in the current newsgroup.")
1238
1239 (defvar gnus-newsgroup-unselected nil
1240   "Sorted list of unselected unread articles in the current newsgroup.")
1241
1242 (defvar gnus-newsgroup-reads nil
1243   "Alist of read articles and article marks in the current newsgroup.")
1244
1245 (defvar gnus-newsgroup-expunged-tally nil)
1246
1247 (defvar gnus-newsgroup-marked nil
1248   "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1249
1250 (defvar gnus-newsgroup-spam-marked nil
1251   "List of ranges of articles that have been marked as spam.")
1252
1253 (defvar gnus-newsgroup-killed nil
1254   "List of ranges of articles that have been through the scoring process.")
1255
1256 (defvar gnus-newsgroup-cached nil
1257   "Sorted list of articles that come from the article cache.")
1258
1259 (defvar gnus-newsgroup-saved nil
1260   "List of articles that have been saved.")
1261
1262 (defvar gnus-newsgroup-kill-headers nil)
1263
1264 (defvar gnus-newsgroup-replied nil
1265   "List of articles that have been replied to in the current newsgroup.")
1266
1267 (defvar gnus-newsgroup-forwarded nil
1268   "List of articles that have been forwarded in the current newsgroup.")
1269
1270 (defvar gnus-newsgroup-recent nil
1271   "List of articles that have are recent in the current newsgroup.")
1272
1273 (defvar gnus-newsgroup-expirable nil
1274   "Sorted list of articles in the current newsgroup that can be expired.")
1275
1276 (defvar gnus-newsgroup-processable nil
1277   "List of articles in the current newsgroup that can be processed.")
1278
1279 (defvar gnus-newsgroup-downloadable nil
1280   "Sorted list of articles in the current newsgroup that can be processed.")
1281
1282 (defvar gnus-newsgroup-unfetched nil
1283   "Sorted list of articles in the current newsgroup whose headers have
1284 not been fetched into the agent.
1285
1286 This list will always be a subset of gnus-newsgroup-undownloaded.")
1287
1288 (defvar gnus-newsgroup-undownloaded nil
1289   "List of articles in the current newsgroup that haven't been downloaded.")
1290
1291 (defvar gnus-newsgroup-unsendable nil
1292   "List of articles in the current newsgroup that won't be sent.")
1293
1294 (defvar gnus-newsgroup-bookmarks nil
1295   "List of articles in the current newsgroup that have bookmarks.")
1296
1297 (defvar gnus-newsgroup-dormant nil
1298   "Sorted list of dormant articles in the current newsgroup.")
1299
1300 (defvar gnus-newsgroup-unseen nil
1301   "List of unseen articles in the current newsgroup.")
1302
1303 (defvar gnus-newsgroup-seen nil
1304   "Range of seen articles in the current newsgroup.")
1305
1306 (defvar gnus-newsgroup-articles nil
1307   "List of articles in the current newsgroup.")
1308
1309 (defvar gnus-newsgroup-scored nil
1310   "List of scored articles in the current newsgroup.")
1311
1312 (defvar gnus-newsgroup-headers nil
1313   "List of article headers in the current newsgroup.")
1314
1315 (defvar gnus-newsgroup-threads nil)
1316
1317 (defvar gnus-newsgroup-prepared nil
1318   "Whether the current group has been prepared properly.")
1319
1320 (defvar gnus-newsgroup-ancient nil
1321   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1322
1323 (defvar gnus-newsgroup-sparse nil)
1324
1325 (defvar gnus-current-article nil)
1326 (defvar gnus-article-current nil)
1327 (defvar gnus-current-headers nil)
1328 (defvar gnus-have-all-headers nil)
1329 (defvar gnus-last-article nil)
1330 (defvar gnus-newsgroup-history nil)
1331 (defvar gnus-newsgroup-charset nil)
1332 (defvar gnus-newsgroup-ephemeral-charset nil)
1333 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1334
1335 (defvar gnus-article-before-search nil)
1336
1337 (defvar gnus-summary-local-variables
1338   '(gnus-newsgroup-name
1339     gnus-newsgroup-begin gnus-newsgroup-end
1340     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1341     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1342     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1343     gnus-newsgroup-unselected gnus-newsgroup-marked
1344     gnus-newsgroup-spam-marked
1345     gnus-newsgroup-reads gnus-newsgroup-saved
1346     gnus-newsgroup-replied gnus-newsgroup-forwarded
1347     gnus-newsgroup-recent
1348     gnus-newsgroup-expirable
1349     gnus-newsgroup-processable gnus-newsgroup-killed
1350     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1351     gnus-newsgroup-unfetched
1352     gnus-newsgroup-unsendable gnus-newsgroup-unseen
1353     gnus-newsgroup-seen gnus-newsgroup-articles
1354     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1355     gnus-newsgroup-headers gnus-newsgroup-threads
1356     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1357     gnus-current-article gnus-current-headers gnus-have-all-headers
1358     gnus-last-article gnus-article-internal-prepare-hook
1359     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1360     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1361     gnus-thread-expunge-below
1362     gnus-score-alist gnus-current-score-file
1363     (gnus-summary-expunge-below . global)
1364     (gnus-summary-mark-below . global)
1365     (gnus-orphan-score . global)
1366     gnus-newsgroup-active gnus-scores-exclude-files
1367     gnus-newsgroup-history gnus-newsgroup-ancient
1368     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1369     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1370     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1371     (gnus-newsgroup-expunged-tally . 0)
1372     gnus-cache-removable-articles gnus-newsgroup-cached
1373     gnus-newsgroup-data gnus-newsgroup-data-reverse
1374     gnus-newsgroup-limit gnus-newsgroup-limits
1375     gnus-newsgroup-charset gnus-newsgroup-display
1376     gnus-summary-use-undownloaded-faces)
1377   "Variables that are buffer-local to the summary buffers.")
1378
1379 (defvar gnus-newsgroup-variables nil
1380   "A list of variables that have separate values in different newsgroups.
1381 A list of newsgroup (summary buffer) local variables, or cons of
1382 variables and their default values (when the default values are not
1383 nil), that should be made global while the summary buffer is active.
1384 These variables can be used to set variables in the group parameters
1385 while still allowing them to affect operations done in other
1386 buffers. For example:
1387
1388 \(setq gnus-newsgroup-variables
1389      '(message-use-followup-to
1390        (gnus-visible-headers .
1391          \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1392 ")
1393
1394 ;; Byte-compiler warning.
1395 (eval-when-compile
1396   ;; Bind features so that require will believe that gnus-sum has
1397   ;; already been loaded (avoids infinite recursion)
1398   (let ((features (cons 'gnus-sum features)))
1399     ;; Several of the declarations in gnus-sum are needed to load the
1400     ;; following files. Right now, these definitions have been
1401     ;; compiled but not defined (evaluated).  We could either do a
1402     ;; eval-and-compile about all of the declarations or evaluate the
1403     ;; source file.
1404     (if (boundp 'gnus-newsgroup-variables)
1405         nil
1406       (load "gnus-sum.el" t t t))
1407     (require 'gnus)
1408     (require 'gnus-agent)
1409     (require 'gnus-art)))
1410
1411 ;; MIME stuff.
1412
1413 (defvar gnus-decode-encoded-word-methods
1414   '(mail-decode-encoded-word-string)
1415   "List of methods used to decode encoded words.
1416
1417 This variable is a list of FUNCTION or (REGEXP . FUNCTION).  If item
1418 is FUNCTION, FUNCTION will be apply to all newsgroups.  If item is a
1419 \(REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
1420 whose names match REGEXP.
1421
1422 For example:
1423 \((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
1424  mail-decode-encoded-word-string
1425  (\"chinese\" . rfc1843-decode-string))")
1426
1427 (defvar gnus-decode-encoded-word-methods-cache nil)
1428
1429 (defun gnus-multi-decode-encoded-word-string (string)
1430   "Apply the functions from `gnus-encoded-word-methods' that match."
1431   (unless (and gnus-decode-encoded-word-methods-cache
1432                (eq gnus-newsgroup-name
1433                    (car gnus-decode-encoded-word-methods-cache)))
1434     (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
1435     (mapcar (lambda (x)
1436               (if (symbolp x)
1437                   (nconc gnus-decode-encoded-word-methods-cache (list x))
1438                 (if (and gnus-newsgroup-name
1439                          (string-match (car x) gnus-newsgroup-name))
1440                     (nconc gnus-decode-encoded-word-methods-cache
1441                            (list (cdr x))))))
1442             gnus-decode-encoded-word-methods))
1443   (let ((xlist gnus-decode-encoded-word-methods-cache))
1444     (pop xlist)
1445     (while xlist
1446       (setq string (funcall (pop xlist) string))))
1447   string)
1448
1449 ;; Subject simplification.
1450
1451 (defun gnus-simplify-whitespace (str)
1452   "Remove excessive whitespace from STR."
1453   ;; Multiple spaces.
1454   (while (string-match "[ \t][ \t]+" str)
1455     (setq str (concat (substring str 0 (match-beginning 0))
1456                         " "
1457                         (substring str (match-end 0)))))
1458   ;; Leading spaces.
1459   (when (string-match "^[ \t]+" str)
1460     (setq str (substring str (match-end 0))))
1461   ;; Trailing spaces.
1462   (when (string-match "[ \t]+$" str)
1463     (setq str (substring str 0 (match-beginning 0))))
1464   str)
1465
1466 (defun gnus-simplify-all-whitespace (str)
1467   "Remove all whitespace from STR."
1468   (while (string-match "[ \t\n]+" str)
1469     (setq str (replace-match "" nil nil str)))
1470   str)
1471
1472 (defsubst gnus-simplify-subject-re (subject)
1473   "Remove \"Re:\" from subject lines."
1474   (if (string-match message-subject-re-regexp subject)
1475       (substring subject (match-end 0))
1476     subject))
1477
1478 (defun gnus-simplify-subject (subject &optional re-only)
1479   "Remove `Re:' and words in parentheses.
1480 If RE-ONLY is non-nil, strip leading `Re:'s only."
1481   (let ((case-fold-search t))           ;Ignore case.
1482     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1483     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1484       (setq subject (substring subject (match-end 0))))
1485     ;; Remove uninteresting prefixes.
1486     (when (and (not re-only)
1487                gnus-simplify-ignored-prefixes
1488                (string-match gnus-simplify-ignored-prefixes subject))
1489       (setq subject (substring subject (match-end 0))))
1490     ;; Remove words in parentheses from end.
1491     (unless re-only
1492       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1493         (setq subject (substring subject 0 (match-beginning 0)))))
1494     ;; Return subject string.
1495     subject))
1496
1497 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1498 ;; all whitespace.
1499 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1500   (goto-char (point-min))
1501   (while (re-search-forward regexp nil t)
1502     (replace-match (or newtext ""))))
1503
1504 (defun gnus-simplify-buffer-fuzzy ()
1505   "Simplify string in the buffer fuzzily.
1506 The string in the accessible portion of the current buffer is simplified.
1507 It is assumed to be a single-line subject.
1508 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1509 matter is removed.  Additional things can be deleted by setting
1510 `gnus-simplify-subject-fuzzy-regexp'."
1511   (let ((case-fold-search t)
1512         (modified-tick))
1513     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1514
1515     (while (not (eq modified-tick (buffer-modified-tick)))
1516       (setq modified-tick (buffer-modified-tick))
1517       (cond
1518        ((listp gnus-simplify-subject-fuzzy-regexp)
1519         (mapcar 'gnus-simplify-buffer-fuzzy-step
1520                 gnus-simplify-subject-fuzzy-regexp))
1521        (gnus-simplify-subject-fuzzy-regexp
1522         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1523       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1524       (gnus-simplify-buffer-fuzzy-step
1525        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1526       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1527
1528     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1529     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1530     (gnus-simplify-buffer-fuzzy-step " $")
1531     (gnus-simplify-buffer-fuzzy-step "^ +")))
1532
1533 (defun gnus-simplify-subject-fuzzy (subject)
1534   "Simplify a subject string fuzzily.
1535 See `gnus-simplify-buffer-fuzzy' for details."
1536   (save-excursion
1537     (gnus-set-work-buffer)
1538     (let ((case-fold-search t))
1539       ;; Remove uninteresting prefixes.
1540       (when (and gnus-simplify-ignored-prefixes
1541                  (string-match gnus-simplify-ignored-prefixes subject))
1542         (setq subject (substring subject (match-end 0))))
1543       (insert subject)
1544       (inline (gnus-simplify-buffer-fuzzy))
1545       (buffer-string))))
1546
1547 (defsubst gnus-simplify-subject-fully (subject)
1548   "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1549   (cond
1550    (gnus-simplify-subject-functions
1551     (gnus-map-function gnus-simplify-subject-functions subject))
1552    ((null gnus-summary-gather-subject-limit)
1553     (gnus-simplify-subject-re subject))
1554    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1555     (gnus-simplify-subject-fuzzy subject))
1556    ((numberp gnus-summary-gather-subject-limit)
1557     (gnus-limit-string (gnus-simplify-subject-re subject)
1558                        gnus-summary-gather-subject-limit))
1559    (t
1560     subject)))
1561
1562 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1563   "Check whether two subjects are equal.
1564 If optional argument SIMPLE-FIRST is t, first argument is already
1565 simplified."
1566   (cond
1567    ((null simple-first)
1568     (equal (gnus-simplify-subject-fully s1)
1569            (gnus-simplify-subject-fully s2)))
1570    (t
1571     (equal s1
1572            (gnus-simplify-subject-fully s2)))))
1573
1574 (defun gnus-summary-bubble-group ()
1575   "Increase the score of the current group.
1576 This is a handy function to add to `gnus-summary-exit-hook' to
1577 increase the score of each group you read."
1578   (gnus-group-add-score gnus-newsgroup-name))
1579
1580 \f
1581 ;;;
1582 ;;; Gnus summary mode
1583 ;;;
1584
1585 (put 'gnus-summary-mode 'mode-class 'special)
1586
1587 (defvar gnus-article-commands-menu)
1588
1589 ;; Non-orthogonal keys
1590
1591 (gnus-define-keys gnus-summary-mode-map
1592   " " gnus-summary-next-page
1593   "\177" gnus-summary-prev-page
1594   [delete] gnus-summary-prev-page
1595   [backspace] gnus-summary-prev-page
1596   "\r" gnus-summary-scroll-up
1597   "\M-\r" gnus-summary-scroll-down
1598   "n" gnus-summary-next-unread-article
1599   "p" gnus-summary-prev-unread-article
1600   "N" gnus-summary-next-article
1601   "P" gnus-summary-prev-article
1602   "\M-\C-n" gnus-summary-next-same-subject
1603   "\M-\C-p" gnus-summary-prev-same-subject
1604   "\M-n" gnus-summary-next-unread-subject
1605   "\M-p" gnus-summary-prev-unread-subject
1606   "." gnus-summary-first-unread-article
1607   "," gnus-summary-best-unread-article
1608   "\M-s" gnus-summary-search-article-forward
1609   "\M-r" gnus-summary-search-article-backward
1610   "<" gnus-summary-beginning-of-article
1611   ">" gnus-summary-end-of-article
1612   "j" gnus-summary-goto-article
1613   "^" gnus-summary-refer-parent-article
1614   "\M-^" gnus-summary-refer-article
1615   "u" gnus-summary-tick-article-forward
1616   "!" gnus-summary-tick-article-forward
1617   "U" gnus-summary-tick-article-backward
1618   "d" gnus-summary-mark-as-read-forward
1619   "D" gnus-summary-mark-as-read-backward
1620   "E" gnus-summary-mark-as-expirable
1621   "\M-u" gnus-summary-clear-mark-forward
1622   "\M-U" gnus-summary-clear-mark-backward
1623   "k" gnus-summary-kill-same-subject-and-select
1624   "\C-k" gnus-summary-kill-same-subject
1625   "\M-\C-k" gnus-summary-kill-thread
1626   "\M-\C-l" gnus-summary-lower-thread
1627   "e" gnus-summary-edit-article
1628   "#" gnus-summary-mark-as-processable
1629   "\M-#" gnus-summary-unmark-as-processable
1630   "\M-\C-t" gnus-summary-toggle-threads
1631   "\M-\C-s" gnus-summary-show-thread
1632   "\M-\C-h" gnus-summary-hide-thread
1633   "\M-\C-f" gnus-summary-next-thread
1634   "\M-\C-b" gnus-summary-prev-thread
1635   [(meta down)] gnus-summary-next-thread
1636   [(meta up)] gnus-summary-prev-thread
1637   "\M-\C-u" gnus-summary-up-thread
1638   "\M-\C-d" gnus-summary-down-thread
1639   "&" gnus-summary-execute-command
1640   "c" gnus-summary-catchup-and-exit
1641   "\C-w" gnus-summary-mark-region-as-read
1642   "\C-t" gnus-summary-toggle-truncation
1643   "?" gnus-summary-mark-as-dormant
1644   "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1645   "\C-c\C-s\C-n" gnus-summary-sort-by-number
1646   "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1647   "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1648   "\C-c\C-s\C-a" gnus-summary-sort-by-author
1649   "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1650   "\C-c\C-s\C-d" gnus-summary-sort-by-date
1651   "\C-c\C-s\C-i" gnus-summary-sort-by-score
1652   "\C-c\C-s\C-o" gnus-summary-sort-by-original
1653   "\C-c\C-s\C-r" gnus-summary-sort-by-random
1654   "=" gnus-summary-expand-window
1655   "\C-x\C-s" gnus-summary-reselect-current-group
1656   "\M-g" gnus-summary-rescan-group
1657   "w" gnus-summary-stop-page-breaking
1658   "\C-c\C-r" gnus-summary-caesar-message
1659   "f" gnus-summary-followup
1660   "F" gnus-summary-followup-with-original
1661   "C" gnus-summary-cancel-article
1662   "r" gnus-summary-reply
1663   "R" gnus-summary-reply-with-original
1664   "\C-c\C-f" gnus-summary-mail-forward
1665   "o" gnus-summary-save-article
1666   "\C-o" gnus-summary-save-article-mail
1667   "|" gnus-summary-pipe-output
1668   "\M-k" gnus-summary-edit-local-kill
1669   "\M-K" gnus-summary-edit-global-kill
1670   ;; "V" gnus-version
1671   "\C-c\C-d" gnus-summary-describe-group
1672   "q" gnus-summary-exit
1673   "Q" gnus-summary-exit-no-update
1674   "\C-c\C-i" gnus-info-find-node
1675   gnus-mouse-2 gnus-mouse-pick-article
1676   "m" gnus-summary-mail-other-window
1677   "a" gnus-summary-post-news
1678   "i" gnus-summary-news-other-window
1679   "x" gnus-summary-limit-to-unread
1680   "s" gnus-summary-isearch-article
1681   "t" gnus-summary-toggle-header
1682   "g" gnus-summary-show-article
1683   "l" gnus-summary-goto-last-article
1684   "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1685   "\C-d" gnus-summary-enter-digest-group
1686   "\M-\C-d" gnus-summary-read-document
1687   "\M-\C-e" gnus-summary-edit-parameters
1688   "\M-\C-a" gnus-summary-customize-parameters
1689   "\C-c\C-b" gnus-bug
1690   "*" gnus-cache-enter-article
1691   "\M-*" gnus-cache-remove-article
1692   "\M-&" gnus-summary-universal-argument
1693   "\C-l" gnus-recenter
1694   "I" gnus-summary-increase-score
1695   "L" gnus-summary-lower-score
1696   "\M-i" gnus-symbolic-argument
1697   "h" gnus-summary-select-article-buffer
1698
1699   "b" gnus-article-view-part
1700   "\M-t" gnus-summary-toggle-display-buttonized
1701
1702   "V" gnus-summary-score-map
1703   "X" gnus-uu-extract-map
1704   "S" gnus-summary-send-map)
1705
1706 ;; Sort of orthogonal keymap
1707 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1708   "t" gnus-summary-tick-article-forward
1709   "!" gnus-summary-tick-article-forward
1710   "d" gnus-summary-mark-as-read-forward
1711   "r" gnus-summary-mark-as-read-forward
1712   "c" gnus-summary-clear-mark-forward
1713   " " gnus-summary-clear-mark-forward
1714   "e" gnus-summary-mark-as-expirable
1715   "x" gnus-summary-mark-as-expirable
1716   "?" gnus-summary-mark-as-dormant
1717   "b" gnus-summary-set-bookmark
1718   "B" gnus-summary-remove-bookmark
1719   "#" gnus-summary-mark-as-processable
1720   "\M-#" gnus-summary-unmark-as-processable
1721   "S" gnus-summary-limit-include-expunged
1722   "C" gnus-summary-catchup
1723   "H" gnus-summary-catchup-to-here
1724   "h" gnus-summary-catchup-from-here
1725   "\C-c" gnus-summary-catchup-all
1726   "k" gnus-summary-kill-same-subject-and-select
1727   "K" gnus-summary-kill-same-subject
1728   "P" gnus-uu-mark-map)
1729
1730 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1731   "c" gnus-summary-clear-above
1732   "u" gnus-summary-tick-above
1733   "m" gnus-summary-mark-above
1734   "k" gnus-summary-kill-below)
1735
1736 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1737   "/" gnus-summary-limit-to-subject
1738   "n" gnus-summary-limit-to-articles
1739   "w" gnus-summary-pop-limit
1740   "s" gnus-summary-limit-to-subject
1741   "a" gnus-summary-limit-to-author
1742   "u" gnus-summary-limit-to-unread
1743   "m" gnus-summary-limit-to-marks
1744   "M" gnus-summary-limit-exclude-marks
1745   "v" gnus-summary-limit-to-score
1746   "*" gnus-summary-limit-include-cached
1747   "D" gnus-summary-limit-include-dormant
1748   "T" gnus-summary-limit-include-thread
1749   "d" gnus-summary-limit-exclude-dormant
1750   "t" gnus-summary-limit-to-age
1751   "." gnus-summary-limit-to-unseen
1752   "x" gnus-summary-limit-to-extra
1753   "p" gnus-summary-limit-to-display-predicate
1754   "E" gnus-summary-limit-include-expunged
1755   "c" gnus-summary-limit-exclude-childless-dormant
1756   "C" gnus-summary-limit-mark-excluded-as-read
1757   "o" gnus-summary-insert-old-articles
1758   "N" gnus-summary-insert-new-articles
1759   "r" gnus-summary-limit-to-replied)
1760
1761 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1762   "n" gnus-summary-next-unread-article
1763   "p" gnus-summary-prev-unread-article
1764   "N" gnus-summary-next-article
1765   "P" gnus-summary-prev-article
1766   "\C-n" gnus-summary-next-same-subject
1767   "\C-p" gnus-summary-prev-same-subject
1768   "\M-n" gnus-summary-next-unread-subject
1769   "\M-p" gnus-summary-prev-unread-subject
1770   "f" gnus-summary-first-unread-article
1771   "b" gnus-summary-best-unread-article
1772   "j" gnus-summary-goto-article
1773   "g" gnus-summary-goto-subject
1774   "l" gnus-summary-goto-last-article
1775   "o" gnus-summary-pop-article)
1776
1777 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1778   "k" gnus-summary-kill-thread
1779   "l" gnus-summary-lower-thread
1780   "i" gnus-summary-raise-thread
1781   "T" gnus-summary-toggle-threads
1782   "t" gnus-summary-rethread-current
1783   "^" gnus-summary-reparent-thread
1784   "s" gnus-summary-show-thread
1785   "S" gnus-summary-show-all-threads
1786   "h" gnus-summary-hide-thread
1787   "H" gnus-summary-hide-all-threads
1788   "n" gnus-summary-next-thread
1789   "p" gnus-summary-prev-thread
1790   "u" gnus-summary-up-thread
1791   "o" gnus-summary-top-thread
1792   "d" gnus-summary-down-thread
1793   "#" gnus-uu-mark-thread
1794   "\M-#" gnus-uu-unmark-thread)
1795
1796 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1797   "g" gnus-summary-prepare
1798   "c" gnus-summary-insert-cached-articles
1799   "d" gnus-summary-insert-dormant-articles)
1800
1801 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1802   "c" gnus-summary-catchup-and-exit
1803   "C" gnus-summary-catchup-all-and-exit
1804   "E" gnus-summary-exit-no-update
1805   "Q" gnus-summary-exit
1806   "Z" gnus-summary-exit
1807   "n" gnus-summary-catchup-and-goto-next-group
1808   "R" gnus-summary-reselect-current-group
1809   "G" gnus-summary-rescan-group
1810   "N" gnus-summary-next-group
1811   "s" gnus-summary-save-newsrc
1812   "P" gnus-summary-prev-group)
1813
1814 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1815   " " gnus-summary-next-page
1816   "n" gnus-summary-next-page
1817   "\177" gnus-summary-prev-page
1818   [delete] gnus-summary-prev-page
1819   "p" gnus-summary-prev-page
1820   "\r" gnus-summary-scroll-up
1821   "\M-\r" gnus-summary-scroll-down
1822   "<" gnus-summary-beginning-of-article
1823   ">" gnus-summary-end-of-article
1824   "b" gnus-summary-beginning-of-article
1825   "e" gnus-summary-end-of-article
1826   "^" gnus-summary-refer-parent-article
1827   "r" gnus-summary-refer-parent-article
1828   "D" gnus-summary-enter-digest-group
1829   "R" gnus-summary-refer-references
1830   "T" gnus-summary-refer-thread
1831   "g" gnus-summary-show-article
1832   "s" gnus-summary-isearch-article
1833   "P" gnus-summary-print-article
1834   "M" gnus-mailing-list-insinuate
1835   "t" gnus-article-babel)
1836
1837 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1838   "b" gnus-article-add-buttons
1839   "B" gnus-article-add-buttons-to-head
1840   "o" gnus-article-treat-overstrike
1841   "e" gnus-article-emphasize
1842   "w" gnus-article-fill-cited-article
1843   "Q" gnus-article-fill-long-lines
1844   "C" gnus-article-capitalize-sentences
1845   "c" gnus-article-remove-cr
1846   "q" gnus-article-de-quoted-unreadable
1847   "6" gnus-article-de-base64-unreadable
1848   "Z" gnus-article-decode-HZ
1849   "A" gnus-article-treat-ansi-sequences
1850   "h" gnus-article-wash-html
1851   "u" gnus-article-unsplit-urls
1852   "s" gnus-summary-force-verify-and-decrypt
1853   "f" gnus-article-display-x-face
1854   "l" gnus-summary-stop-page-breaking
1855   "r" gnus-summary-caesar-message
1856   "m" gnus-summary-morse-message
1857   "t" gnus-summary-toggle-header
1858   "g" gnus-treat-smiley
1859   "v" gnus-summary-verbose-headers
1860   "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
1861   "p" gnus-article-verify-x-pgp-sig
1862   "d" gnus-article-treat-dumbquotes)
1863
1864 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
1865   ;; mnemonic: deuglif*Y*
1866   "u" gnus-article-outlook-unwrap-lines
1867   "a" gnus-article-outlook-repair-attribution
1868   "c" gnus-article-outlook-rearrange-citation
1869   "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
1870
1871 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1872   "a" gnus-article-hide
1873   "h" gnus-article-hide-headers
1874   "b" gnus-article-hide-boring-headers
1875   "s" gnus-article-hide-signature
1876   "c" gnus-article-hide-citation
1877   "C" gnus-article-hide-citation-in-followups
1878   "l" gnus-article-hide-list-identifiers
1879   "B" gnus-article-strip-banner
1880   "P" gnus-article-hide-pem
1881   "\C-c" gnus-article-hide-citation-maybe)
1882
1883 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1884   "a" gnus-article-highlight
1885   "h" gnus-article-highlight-headers
1886   "c" gnus-article-highlight-citation
1887   "s" gnus-article-highlight-signature)
1888
1889 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
1890   "f" gnus-article-treat-fold-headers
1891   "u" gnus-article-treat-unfold-headers
1892   "n" gnus-article-treat-fold-newsgroups)
1893
1894 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
1895   "x" gnus-article-display-x-face
1896   "d" gnus-article-display-face
1897   "s" gnus-treat-smiley
1898   "D" gnus-article-remove-images
1899   "f" gnus-treat-from-picon
1900   "m" gnus-treat-mail-picon
1901   "n" gnus-treat-newsgroups-picon)
1902
1903 (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
1904   "w" gnus-article-decode-mime-words
1905   "c" gnus-article-decode-charset
1906   "v" gnus-mime-view-all-parts
1907   "b" gnus-article-view-part)
1908
1909 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1910   "z" gnus-article-date-ut
1911   "u" gnus-article-date-ut
1912   "l" gnus-article-date-local
1913   "p" gnus-article-date-english
1914   "e" gnus-article-date-lapsed
1915   "o" gnus-article-date-original
1916   "i" gnus-article-date-iso8601
1917   "s" gnus-article-date-user)
1918
1919 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1920   "t" gnus-article-remove-trailing-blank-lines
1921   "l" gnus-article-strip-leading-blank-lines
1922   "m" gnus-article-strip-multiple-blank-lines
1923   "a" gnus-article-strip-blank-lines
1924   "A" gnus-article-strip-all-blank-lines
1925   "s" gnus-article-strip-leading-space
1926   "e" gnus-article-strip-trailing-space
1927   "w" gnus-article-remove-leading-whitespace)
1928
1929 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1930   "v" gnus-version
1931   "f" gnus-summary-fetch-faq
1932   "d" gnus-summary-describe-group
1933   "h" gnus-summary-describe-briefly
1934   "i" gnus-info-find-node
1935   "c" gnus-group-fetch-charter
1936   "C" gnus-group-fetch-control)
1937
1938 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
1939   "e" gnus-summary-expire-articles
1940   "\M-\C-e" gnus-summary-expire-articles-now
1941   "\177" gnus-summary-delete-article
1942   [delete] gnus-summary-delete-article
1943   [backspace] gnus-summary-delete-article
1944   "m" gnus-summary-move-article
1945   "r" gnus-summary-respool-article
1946   "w" gnus-summary-edit-article
1947   "c" gnus-summary-copy-article
1948   "B" gnus-summary-crosspost-article
1949   "q" gnus-summary-respool-query
1950   "t" gnus-summary-respool-trace
1951   "i" gnus-summary-import-article
1952   "I" gnus-summary-create-article
1953   "p" gnus-summary-article-posted-p)
1954
1955 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
1956   "o" gnus-summary-save-article
1957   "m" gnus-summary-save-article-mail
1958   "F" gnus-summary-write-article-file
1959   "r" gnus-summary-save-article-rmail
1960   "f" gnus-summary-save-article-file
1961   "b" gnus-summary-save-article-body-file
1962   "h" gnus-summary-save-article-folder
1963   "v" gnus-summary-save-article-vm
1964   "p" gnus-summary-pipe-output
1965   "P" gnus-summary-muttprint
1966   "s" gnus-soup-add-article)
1967
1968 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
1969   "b" gnus-summary-display-buttonized
1970   "m" gnus-summary-repair-multipart
1971   "v" gnus-article-view-part
1972   "o" gnus-article-save-part
1973   "c" gnus-article-copy-part
1974   "C" gnus-article-view-part-as-charset
1975   "e" gnus-article-view-part-externally
1976   "E" gnus-article-encrypt-body
1977   "i" gnus-article-inline-part
1978   "|" gnus-article-pipe-part)
1979
1980 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
1981   "p" gnus-summary-mark-as-processable
1982   "u" gnus-summary-unmark-as-processable
1983   "U" gnus-summary-unmark-all-processable
1984   "v" gnus-uu-mark-over
1985   "s" gnus-uu-mark-series
1986   "r" gnus-uu-mark-region
1987   "g" gnus-uu-unmark-region
1988   "R" gnus-uu-mark-by-regexp
1989   "G" gnus-uu-unmark-by-regexp
1990   "t" gnus-uu-mark-thread
1991   "T" gnus-uu-unmark-thread
1992   "a" gnus-uu-mark-all
1993   "b" gnus-uu-mark-buffer
1994   "S" gnus-uu-mark-sparse
1995   "k" gnus-summary-kill-process-mark
1996   "y" gnus-summary-yank-process-mark
1997   "w" gnus-summary-save-process-mark
1998   "i" gnus-uu-invert-processable)
1999
2000 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2001   ;;"x" gnus-uu-extract-any
2002   "m" gnus-summary-save-parts
2003   "u" gnus-uu-decode-uu
2004   "U" gnus-uu-decode-uu-and-save
2005   "s" gnus-uu-decode-unshar
2006   "S" gnus-uu-decode-unshar-and-save
2007   "o" gnus-uu-decode-save
2008   "O" gnus-uu-decode-save
2009   "b" gnus-uu-decode-binhex
2010   "B" gnus-uu-decode-binhex
2011   "p" gnus-uu-decode-postscript
2012   "P" gnus-uu-decode-postscript-and-save)
2013
2014 (gnus-define-keys
2015     (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2016   "u" gnus-uu-decode-uu-view
2017   "U" gnus-uu-decode-uu-and-save-view
2018   "s" gnus-uu-decode-unshar-view
2019   "S" gnus-uu-decode-unshar-and-save-view
2020   "o" gnus-uu-decode-save-view
2021   "O" gnus-uu-decode-save-view
2022   "b" gnus-uu-decode-binhex-view
2023   "B" gnus-uu-decode-binhex-view
2024   "p" gnus-uu-decode-postscript-view
2025   "P" gnus-uu-decode-postscript-and-save-view)
2026
2027 (defvar gnus-article-post-menu nil)
2028
2029 (defconst gnus-summary-menu-maxlen 20)
2030
2031 (defun gnus-summary-menu-split (menu)
2032   ;; If we have lots of elements, divide them into groups of 20
2033   ;; and make a pane (or submenu) for each one.
2034   (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2035       (let ((menu menu) sublists next
2036             (i 1))
2037         (while menu
2038           ;; Pull off the next gnus-summary-menu-maxlen elements
2039           ;; and make them the next element of sublist.
2040           (setq next (nthcdr gnus-summary-menu-maxlen menu))
2041           (if next
2042               (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2043                       nil))
2044           (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2045                                              (aref (car (last menu)) 0)) menu)
2046                                sublists))
2047           (setq i (1+ i))
2048           (setq menu next))
2049         (nreverse sublists))
2050     ;; Few elements--put them all in one pane.
2051     menu))
2052
2053 (defun gnus-summary-make-menu-bar ()
2054   (gnus-turn-off-edit-menu 'summary)
2055
2056   (unless (boundp 'gnus-summary-misc-menu)
2057
2058     (easy-menu-define
2059       gnus-summary-kill-menu gnus-summary-mode-map ""
2060       (cons
2061        "Score"
2062        (nconc
2063         (list
2064          ["Customize" gnus-score-customize t])
2065         (gnus-make-score-map 'increase)
2066         (gnus-make-score-map 'lower)
2067         '(("Mark"
2068            ["Kill below" gnus-summary-kill-below t]
2069            ["Mark above" gnus-summary-mark-above t]
2070            ["Tick above" gnus-summary-tick-above t]
2071            ["Clear above" gnus-summary-clear-above t])
2072           ["Current score" gnus-summary-current-score t]
2073           ["Set score" gnus-summary-set-score t]
2074           ["Switch current score file..." gnus-score-change-score-file t]
2075           ["Set mark below..." gnus-score-set-mark-below t]
2076           ["Set expunge below..." gnus-score-set-expunge-below t]
2077           ["Edit current score file" gnus-score-edit-current-scores t]
2078           ["Edit score file" gnus-score-edit-file t]
2079           ["Trace score" gnus-score-find-trace t]
2080           ["Find words" gnus-score-find-favourite-words t]
2081           ["Rescore buffer" gnus-summary-rescore t]
2082           ["Increase score..." gnus-summary-increase-score t]
2083           ["Lower score..." gnus-summary-lower-score t]))))
2084
2085     ;; Define both the Article menu in the summary buffer and the
2086     ;; equivalent Commands menu in the article buffer here for
2087     ;; consistency.
2088     (let ((innards
2089            `(("Hide"
2090               ["All" gnus-article-hide t]
2091               ["Headers" gnus-article-hide-headers t]
2092               ["Signature" gnus-article-hide-signature t]
2093               ["Citation" gnus-article-hide-citation t]
2094               ["List identifiers" gnus-article-hide-list-identifiers t]
2095               ["Banner" gnus-article-strip-banner t]
2096               ["Boring headers" gnus-article-hide-boring-headers t])
2097              ("Highlight"
2098               ["All" gnus-article-highlight t]
2099               ["Headers" gnus-article-highlight-headers t]
2100               ["Signature" gnus-article-highlight-signature t]
2101               ["Citation" gnus-article-highlight-citation t])
2102              ("MIME"
2103               ["Words" gnus-article-decode-mime-words t]
2104               ["Charset" gnus-article-decode-charset t]
2105               ["QP" gnus-article-de-quoted-unreadable t]
2106               ["Base64" gnus-article-de-base64-unreadable t]
2107               ["View MIME buttons" gnus-summary-display-buttonized t]
2108               ["View all" gnus-mime-view-all-parts t]
2109               ["Verify and Decrypt" gnus-summary-force-verify-and-decrypt t]
2110               ["Encrypt body" gnus-article-encrypt-body
2111                :active (not (gnus-group-read-only-p))
2112                ,@(if (featurep 'xemacs) nil
2113                    '(:help "Encrypt the message body on disk"))]
2114               ["Extract all parts..." gnus-summary-save-parts t]
2115               ("Multipart"
2116                ["Repair multipart" gnus-summary-repair-multipart t]
2117                ["Pipe part..." gnus-article-pipe-part t]
2118                ["Inline part" gnus-article-inline-part t]
2119                ["Encrypt body" gnus-article-encrypt-body
2120                 :active (not (gnus-group-read-only-p))
2121                ,@(if (featurep 'xemacs) nil
2122                    '(:help "Encrypt the message body on disk"))]
2123                ["View part externally" gnus-article-view-part-externally t]
2124                ["View part with charset..." gnus-article-view-part-as-charset t]
2125                ["Copy part" gnus-article-copy-part t]
2126                ["Save part..." gnus-article-save-part t]
2127                ["View part" gnus-article-view-part t]))
2128              ("Date"
2129               ["Local" gnus-article-date-local t]
2130               ["ISO8601" gnus-article-date-iso8601 t]
2131               ["UT" gnus-article-date-ut t]
2132               ["Original" gnus-article-date-original t]
2133               ["Lapsed" gnus-article-date-lapsed t]
2134               ["User-defined" gnus-article-date-user t])
2135              ("Display"
2136               ["Remove images" gnus-article-remove-images t]
2137               ["Toggle smiley" gnus-treat-smiley t]
2138               ["Show X-Face" gnus-article-display-x-face t]
2139               ["Show picons in From" gnus-treat-from-picon t]
2140               ["Show picons in mail headers" gnus-treat-mail-picon t]
2141               ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2142               ("View as different encoding"
2143                ,@(gnus-summary-menu-split
2144                   (mapcar
2145                    (lambda (cs)
2146                      ;; Since easymenu under Emacs doesn't allow
2147                      ;; lambda forms for menu commands, we should
2148                      ;; provide intern'ed function symbols.
2149                      (let ((command (intern (format "\
2150 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2151                        (fset command
2152                              `(lambda ()
2153                                 (interactive)
2154                                 (let ((gnus-summary-show-article-charset-alist
2155                                        '((1 . ,cs))))
2156                                   (gnus-summary-show-article 1))))
2157                        `[,(symbol-name cs) ,command t]))
2158                    (sort (if (fboundp 'coding-system-list)
2159                              (coding-system-list)
2160                            (mapcar 'car mm-mime-mule-charset-alist))
2161                          'string<)))))
2162              ("Washing"
2163               ("Remove Blanks"
2164                ["Leading" gnus-article-strip-leading-blank-lines t]
2165                ["Multiple" gnus-article-strip-multiple-blank-lines t]
2166                ["Trailing" gnus-article-remove-trailing-blank-lines t]
2167                ["All of the above" gnus-article-strip-blank-lines t]
2168                ["All" gnus-article-strip-all-blank-lines t]
2169                ["Leading space" gnus-article-strip-leading-space t]
2170                ["Trailing space" gnus-article-strip-trailing-space t]
2171                ["Leading space in headers"
2172                 gnus-article-remove-leading-whitespace t])
2173               ["Overstrike" gnus-article-treat-overstrike t]
2174               ["Dumb quotes" gnus-article-treat-dumbquotes t]
2175               ["Emphasis" gnus-article-emphasize t]
2176               ["Word wrap" gnus-article-fill-cited-article t]
2177               ["Fill long lines" gnus-article-fill-long-lines t]
2178               ["Capitalize sentences" gnus-article-capitalize-sentences t]
2179               ["Remove CR" gnus-article-remove-cr t]
2180               ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
2181               ["Base64" gnus-article-de-base64-unreadable t]
2182               ["Rot 13" gnus-summary-caesar-message
2183                ,@(if (featurep 'xemacs) '(t)
2184                    '(:help "\"Caesar rotate\" article by 13"))]
2185               ["Morse decode" gnus-summary-morse-message t]
2186               ["Unix pipe..." gnus-summary-pipe-message t]
2187               ["Add buttons" gnus-article-add-buttons t]
2188               ["Add buttons to head" gnus-article-add-buttons-to-head t]
2189               ["Stop page breaking" gnus-summary-stop-page-breaking t]
2190               ["Verbose header" gnus-summary-verbose-headers t]
2191               ["Toggle header" gnus-summary-toggle-header t]
2192               ["Unfold headers" gnus-article-treat-unfold-headers t]
2193               ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2194               ["Html" gnus-article-wash-html t]
2195               ["Unsplit URLs" gnus-article-unsplit-urls t]
2196               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2197               ["Decode HZ" gnus-article-decode-HZ t]
2198               ["ANSI sequences" gnus-article-treat-ansi-sequences t]
2199               ("(Outlook) Deuglify"
2200                ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2201                ["Repair attribution" gnus-article-outlook-repair-attribution t]
2202                ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2203                ["Full (Outlook) deuglify"
2204                 gnus-article-outlook-deuglify-article t])
2205               )
2206              ("Output"
2207               ["Save in default format..." gnus-summary-save-article
2208                ,@(if (featurep 'xemacs) '(t)
2209                    '(:help "Save article using default method"))]
2210               ["Save in file..." gnus-summary-save-article-file
2211                ,@(if (featurep 'xemacs) '(t)
2212                    '(:help "Save article in file"))]
2213               ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2214               ["Save in MH folder..." gnus-summary-save-article-folder t]
2215               ["Save in VM folder..." gnus-summary-save-article-vm t]
2216               ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2217               ["Save body in file..." gnus-summary-save-article-body-file t]
2218               ["Pipe through a filter..." gnus-summary-pipe-output t]
2219               ["Add to SOUP packet" gnus-soup-add-article t]
2220               ["Print with Muttprint..." gnus-summary-muttprint t]
2221               ["Print" gnus-summary-print-article t])
2222              ("Backend"
2223               ["Respool article..." gnus-summary-respool-article t]
2224               ["Move article..." gnus-summary-move-article
2225                (gnus-check-backend-function
2226                 'request-move-article gnus-newsgroup-name)]
2227               ["Copy article..." gnus-summary-copy-article t]
2228               ["Crosspost article..." gnus-summary-crosspost-article
2229                (gnus-check-backend-function
2230                 'request-replace-article gnus-newsgroup-name)]
2231               ["Import file..." gnus-summary-import-article
2232                (gnus-check-backend-function
2233                 'request-accept-article gnus-newsgroup-name)]
2234               ["Create article..." gnus-summary-create-article
2235                (gnus-check-backend-function
2236                 'request-accept-article gnus-newsgroup-name)]
2237               ["Check if posted" gnus-summary-article-posted-p t]
2238               ["Edit article" gnus-summary-edit-article
2239                (not (gnus-group-read-only-p))]
2240               ["Delete article" gnus-summary-delete-article
2241                (gnus-check-backend-function
2242                 'request-expire-articles gnus-newsgroup-name)]
2243               ["Query respool" gnus-summary-respool-query t]
2244               ["Trace respool" gnus-summary-respool-trace t]
2245               ["Delete expirable articles" gnus-summary-expire-articles-now
2246                (gnus-check-backend-function
2247                 'request-expire-articles gnus-newsgroup-name)])
2248              ("Extract"
2249               ["Uudecode" gnus-uu-decode-uu
2250                ,@(if (featurep 'xemacs) '(t)
2251                    '(:help "Decode uuencoded article(s)"))]
2252               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2253               ["Unshar" gnus-uu-decode-unshar t]
2254               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2255               ["Save" gnus-uu-decode-save t]
2256               ["Binhex" gnus-uu-decode-binhex t]
2257               ["Postscript" gnus-uu-decode-postscript t]
2258               ["All MIME parts" gnus-summary-save-parts t])
2259              ("Cache"
2260               ["Enter article" gnus-cache-enter-article t]
2261               ["Remove article" gnus-cache-remove-article t])
2262              ["Translate" gnus-article-babel t]
2263              ["Select article buffer" gnus-summary-select-article-buffer t]
2264              ["Enter digest buffer" gnus-summary-enter-digest-group t]
2265              ["Isearch article..." gnus-summary-isearch-article t]
2266              ["Beginning of the article" gnus-summary-beginning-of-article t]
2267              ["End of the article" gnus-summary-end-of-article t]
2268              ["Fetch parent of article" gnus-summary-refer-parent-article t]
2269              ["Fetch referenced articles" gnus-summary-refer-references t]
2270              ["Fetch current thread" gnus-summary-refer-thread t]
2271              ["Fetch article with id..." gnus-summary-refer-article t]
2272              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2273              ["Redisplay" gnus-summary-show-article t]
2274              ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2275       (easy-menu-define
2276         gnus-summary-article-menu gnus-summary-mode-map ""
2277         (cons "Article" innards))
2278
2279       (if (not (keymapp gnus-summary-article-menu))
2280           (easy-menu-define
2281             gnus-article-commands-menu gnus-article-mode-map ""
2282             (cons "Commands" innards))
2283         ;; in Emacs, don't share menu.
2284         (setq gnus-article-commands-menu
2285               (copy-keymap gnus-summary-article-menu))
2286         (define-key gnus-article-mode-map [menu-bar commands]
2287           (cons "Commands" gnus-article-commands-menu))))
2288
2289     (easy-menu-define
2290       gnus-summary-thread-menu gnus-summary-mode-map ""
2291       '("Threads"
2292         ["Find all messages in thread" gnus-summary-refer-thread t]
2293         ["Toggle threading" gnus-summary-toggle-threads t]
2294         ["Hide threads" gnus-summary-hide-all-threads t]
2295         ["Show threads" gnus-summary-show-all-threads t]
2296         ["Hide thread" gnus-summary-hide-thread t]
2297         ["Show thread" gnus-summary-show-thread t]
2298         ["Go to next thread" gnus-summary-next-thread t]
2299         ["Go to previous thread" gnus-summary-prev-thread t]
2300         ["Go down thread" gnus-summary-down-thread t]
2301         ["Go up thread" gnus-summary-up-thread t]
2302         ["Top of thread" gnus-summary-top-thread t]
2303         ["Mark thread as read" gnus-summary-kill-thread t]
2304         ["Lower thread score" gnus-summary-lower-thread t]
2305         ["Raise thread score" gnus-summary-raise-thread t]
2306         ["Rethread current" gnus-summary-rethread-current t]))
2307
2308     (easy-menu-define
2309       gnus-summary-post-menu gnus-summary-mode-map ""
2310       `("Post"
2311         ["Send a message (mail or news)" gnus-summary-post-news
2312          ,@(if (featurep 'xemacs) '(t)
2313              '(:help "Post an article"))]
2314         ["Followup" gnus-summary-followup
2315          ,@(if (featurep 'xemacs) '(t)
2316              '(:help "Post followup to this article"))]
2317         ["Followup and yank" gnus-summary-followup-with-original
2318          ,@(if (featurep 'xemacs) '(t)
2319              '(:help "Post followup to this article, quoting its contents"))]
2320         ["Supersede article" gnus-summary-supersede-article t]
2321         ["Cancel article" gnus-summary-cancel-article
2322          ,@(if (featurep 'xemacs) '(t)
2323              '(:help "Cancel an article you posted"))]
2324         ["Reply" gnus-summary-reply t]
2325         ["Reply and yank" gnus-summary-reply-with-original t]
2326         ["Wide reply" gnus-summary-wide-reply t]
2327         ["Wide reply and yank" gnus-summary-wide-reply-with-original
2328          ,@(if (featurep 'xemacs) '(t)
2329              '(:help "Mail a reply, quoting this article"))]
2330         ["Very wide reply" gnus-summary-very-wide-reply t]
2331         ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2332          ,@(if (featurep 'xemacs) '(t)
2333              '(:help "Mail a very wide reply, quoting this article"))]
2334         ["Mail forward" gnus-summary-mail-forward t]
2335         ["Post forward" gnus-summary-post-forward t]
2336         ["Digest and mail" gnus-uu-digest-mail-forward t]
2337         ["Digest and post" gnus-uu-digest-post-forward t]
2338         ["Resend message" gnus-summary-resend-message t]
2339         ["Resend message edit" gnus-summary-resend-message-edit t]
2340         ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2341         ["Send a mail" gnus-summary-mail-other-window t]
2342         ["Create a local message" gnus-summary-news-other-window t]
2343         ["Uuencode and post" gnus-uu-post-news
2344          ,@(if (featurep 'xemacs) '(t)
2345              '(:help "Post a uuencoded article"))]
2346         ["Followup via news" gnus-summary-followup-to-mail t]
2347         ["Followup via news and yank"
2348          gnus-summary-followup-to-mail-with-original t]
2349         ;;("Draft"
2350         ;;["Send" gnus-summary-send-draft t]
2351         ;;["Send bounced" gnus-resend-bounced-mail t])
2352         ))
2353
2354     (cond
2355      ((not (keymapp gnus-summary-post-menu))
2356       (setq gnus-article-post-menu gnus-summary-post-menu))
2357      ((not gnus-article-post-menu)
2358       ;; Don't share post menu.
2359       (setq gnus-article-post-menu
2360             (copy-keymap gnus-summary-post-menu))))
2361     (define-key gnus-article-mode-map [menu-bar post]
2362       (cons "Post" gnus-article-post-menu))
2363
2364     (easy-menu-define
2365       gnus-summary-misc-menu gnus-summary-mode-map ""
2366       `("Gnus"
2367         ("Mark Read"
2368          ["Mark as read" gnus-summary-mark-as-read-forward t]
2369          ["Mark same subject and select"
2370           gnus-summary-kill-same-subject-and-select t]
2371          ["Mark same subject" gnus-summary-kill-same-subject t]
2372          ["Catchup" gnus-summary-catchup
2373           ,@(if (featurep 'xemacs) '(t)
2374               '(:help "Mark unread articles in this group as read"))]
2375          ["Catchup all" gnus-summary-catchup-all t]
2376          ["Catchup to here" gnus-summary-catchup-to-here t]
2377          ["Catchup from here" gnus-summary-catchup-from-here t]
2378          ["Catchup region" gnus-summary-mark-region-as-read
2379           (gnus-mark-active-p)]
2380          ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2381         ("Mark Various"
2382          ["Tick" gnus-summary-tick-article-forward t]
2383          ["Mark as dormant" gnus-summary-mark-as-dormant t]
2384          ["Remove marks" gnus-summary-clear-mark-forward t]
2385          ["Set expirable mark" gnus-summary-mark-as-expirable t]
2386          ["Set bookmark" gnus-summary-set-bookmark t]
2387          ["Remove bookmark" gnus-summary-remove-bookmark t])
2388         ("Limit to"
2389          ["Marks..." gnus-summary-limit-to-marks t]
2390          ["Subject..." gnus-summary-limit-to-subject t]
2391          ["Author..." gnus-summary-limit-to-author t]
2392          ["Age..." gnus-summary-limit-to-age t]
2393          ["Extra..." gnus-summary-limit-to-extra t]
2394          ["Score..." gnus-summary-limit-to-score t]
2395          ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2396          ["Unread" gnus-summary-limit-to-unread t]
2397          ["Unseen" gnus-summary-limit-to-unseen t]
2398          ["Replied" gnus-summary-limit-to-replied t]
2399          ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2400          ["Next articles" gnus-summary-limit-to-articles t]
2401          ["Pop limit" gnus-summary-pop-limit t]
2402          ["Show dormant" gnus-summary-limit-include-dormant t]
2403          ["Hide childless dormant"
2404           gnus-summary-limit-exclude-childless-dormant t]
2405          ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2406          ["Hide marked" gnus-summary-limit-exclude-marks t]
2407          ["Show expunged" gnus-summary-limit-include-expunged t])
2408         ("Process Mark"
2409          ["Set mark" gnus-summary-mark-as-processable t]
2410          ["Remove mark" gnus-summary-unmark-as-processable t]
2411          ["Remove all marks" gnus-summary-unmark-all-processable t]
2412          ["Mark above" gnus-uu-mark-over t]
2413          ["Mark series" gnus-uu-mark-series t]
2414          ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2415          ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2416          ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2417          ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2418          ["Mark all" gnus-uu-mark-all t]
2419          ["Mark buffer" gnus-uu-mark-buffer t]
2420          ["Mark sparse" gnus-uu-mark-sparse t]
2421          ["Mark thread" gnus-uu-mark-thread t]
2422          ["Unmark thread" gnus-uu-unmark-thread t]
2423          ("Process Mark Sets"
2424           ["Kill" gnus-summary-kill-process-mark t]
2425           ["Yank" gnus-summary-yank-process-mark
2426            gnus-newsgroup-process-stack]
2427           ["Save" gnus-summary-save-process-mark t]
2428           ["Run command on marked..." gnus-summary-universal-argument t]))
2429         ("Scroll article"
2430          ["Page forward" gnus-summary-next-page
2431           ,@(if (featurep 'xemacs) '(t)
2432               '(:help "Show next page of article"))]
2433          ["Page backward" gnus-summary-prev-page
2434           ,@(if (featurep 'xemacs) '(t)
2435               '(:help "Show previous page of article"))]
2436          ["Line forward" gnus-summary-scroll-up t])
2437         ("Move"
2438          ["Next unread article" gnus-summary-next-unread-article t]
2439          ["Previous unread article" gnus-summary-prev-unread-article t]
2440          ["Next article" gnus-summary-next-article t]
2441          ["Previous article" gnus-summary-prev-article t]
2442          ["Next unread subject" gnus-summary-next-unread-subject t]
2443          ["Previous unread subject" gnus-summary-prev-unread-subject t]
2444          ["Next article same subject" gnus-summary-next-same-subject t]
2445          ["Previous article same subject" gnus-summary-prev-same-subject t]
2446          ["First unread article" gnus-summary-first-unread-article t]
2447          ["Best unread article" gnus-summary-best-unread-article t]
2448          ["Go to subject number..." gnus-summary-goto-subject t]
2449          ["Go to article number..." gnus-summary-goto-article t]
2450          ["Go to the last article" gnus-summary-goto-last-article t]
2451          ["Pop article off history" gnus-summary-pop-article t])
2452         ("Sort"
2453          ["Sort by number" gnus-summary-sort-by-number t]
2454          ["Sort by author" gnus-summary-sort-by-author t]
2455          ["Sort by subject" gnus-summary-sort-by-subject t]
2456          ["Sort by date" gnus-summary-sort-by-date t]
2457          ["Sort by score" gnus-summary-sort-by-score t]
2458          ["Sort by lines" gnus-summary-sort-by-lines t]
2459          ["Sort by characters" gnus-summary-sort-by-chars t]
2460          ["Randomize" gnus-summary-sort-by-random t]
2461          ["Original sort" gnus-summary-sort-by-original t])
2462         ("Help"
2463          ["Fetch group FAQ" gnus-summary-fetch-faq t]
2464          ["Describe group" gnus-summary-describe-group t]
2465          ["Fetch charter" gnus-group-fetch-charter
2466           ,@(if (featurep 'xemacs) nil
2467               '(:help "Display the charter of the current group"))]
2468          ["Fetch control message" gnus-group-fetch-control
2469           ,@(if (featurep 'xemacs) nil
2470               '(:help "Display the archived control message for the current group"))]
2471          ["Read manual" gnus-info-find-node t])
2472         ("Modes"
2473          ["Pick and read" gnus-pick-mode t]
2474          ["Binary" gnus-binary-mode t])
2475         ("Regeneration"
2476          ["Regenerate" gnus-summary-prepare t]
2477          ["Insert cached articles" gnus-summary-insert-cached-articles t]
2478          ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2479          ["Toggle threading" gnus-summary-toggle-threads t])
2480         ["See old articles" gnus-summary-insert-old-articles t]
2481         ["See new articles" gnus-summary-insert-new-articles t]
2482         ["Filter articles..." gnus-summary-execute-command t]
2483         ["Run command on articles..." gnus-summary-universal-argument t]
2484         ["Search articles forward..." gnus-summary-search-article-forward t]
2485         ["Search articles backward..." gnus-summary-search-article-backward t]
2486         ["Toggle line truncation" gnus-summary-toggle-truncation t]
2487         ["Expand window" gnus-summary-expand-window t]
2488         ["Expire expirable articles" gnus-summary-expire-articles
2489          (gnus-check-backend-function
2490           'request-expire-articles gnus-newsgroup-name)]
2491         ["Edit local kill file" gnus-summary-edit-local-kill t]
2492         ["Edit main kill file" gnus-summary-edit-global-kill t]
2493         ["Edit group parameters" gnus-summary-edit-parameters t]
2494         ["Customize group parameters" gnus-summary-customize-parameters t]
2495         ["Send a bug report" gnus-bug t]
2496         ("Exit"
2497          ["Catchup and exit" gnus-summary-catchup-and-exit
2498           ,@(if (featurep 'xemacs) '(t)
2499               '(:help "Mark unread articles in this group as read, then exit"))]
2500          ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2501          ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2502          ["Exit group" gnus-summary-exit
2503           ,@(if (featurep 'xemacs) '(t)
2504               '(:help "Exit current group, return to group selection mode"))]
2505          ["Exit group without updating" gnus-summary-exit-no-update t]
2506          ["Exit and goto next group" gnus-summary-next-group t]
2507          ["Exit and goto prev group" gnus-summary-prev-group t]
2508          ["Reselect group" gnus-summary-reselect-current-group t]
2509          ["Rescan group" gnus-summary-rescan-group t]
2510          ["Update dribble" gnus-summary-save-newsrc t])))
2511
2512     (gnus-run-hooks 'gnus-summary-menu-hook)))
2513
2514 (defvar gnus-summary-tool-bar-map nil)
2515
2516 ;; Emacs 21 tool bar.  Should be no-op otherwise.
2517 (defun gnus-summary-make-tool-bar ()
2518   (if (and (fboundp 'tool-bar-add-item-from-menu)
2519            (default-value 'tool-bar-mode)
2520            (not gnus-summary-tool-bar-map))
2521       (setq gnus-summary-tool-bar-map
2522             (let ((tool-bar-map (make-sparse-keymap))
2523                   (load-path (mm-image-load-path)))
2524               (tool-bar-add-item-from-menu
2525                'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map)
2526               (tool-bar-add-item-from-menu
2527                'gnus-summary-next-unread "next-ur" gnus-summary-mode-map)
2528               (tool-bar-add-item-from-menu
2529                'gnus-summary-post-news "post" gnus-summary-mode-map)
2530               (tool-bar-add-item-from-menu
2531                'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map)
2532               (tool-bar-add-item-from-menu
2533                'gnus-summary-followup "followup" gnus-summary-mode-map)
2534               (tool-bar-add-item-from-menu
2535                'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map)
2536               (tool-bar-add-item-from-menu
2537                'gnus-summary-reply "reply" gnus-summary-mode-map)
2538               (tool-bar-add-item-from-menu
2539                'gnus-summary-caesar-message "rot13" gnus-summary-mode-map)
2540               (tool-bar-add-item-from-menu
2541                'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map)
2542               (tool-bar-add-item-from-menu
2543                'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map)
2544               (tool-bar-add-item-from-menu
2545                'gnus-summary-save-article "save-art" gnus-summary-mode-map)
2546               (tool-bar-add-item-from-menu
2547                'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2548               (tool-bar-add-item-from-menu
2549                'gnus-summary-catchup "catchup" gnus-summary-mode-map)
2550               (tool-bar-add-item-from-menu
2551                'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map)
2552               (tool-bar-add-item-from-menu
2553                'gnus-summary-exit "exit-summ" gnus-summary-mode-map)
2554               tool-bar-map)))
2555   (if gnus-summary-tool-bar-map
2556       (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
2557
2558 (defun gnus-score-set-default (var value)
2559   "A version of set that updates the GNU Emacs menu-bar."
2560   (set var value)
2561   ;; It is the message that forces the active status to be updated.
2562   (message ""))
2563
2564 (defun gnus-make-score-map (type)
2565   "Make a summary score map of type TYPE."
2566   (if t
2567       nil
2568     (let ((headers '(("author" "from" string)
2569                      ("subject" "subject" string)
2570                      ("article body" "body" string)
2571                      ("article head" "head" string)
2572                      ("xref" "xref" string)
2573                      ("extra header" "extra" string)
2574                      ("lines" "lines" number)
2575                      ("followups to author" "followup" string)))
2576           (types '((number ("less than" <)
2577                            ("greater than" >)
2578                            ("equal" =))
2579                    (string ("substring" s)
2580                            ("exact string" e)
2581                            ("fuzzy string" f)
2582                            ("regexp" r))))
2583           (perms '(("temporary" (current-time-string))
2584                    ("permanent" nil)
2585                    ("immediate" now)))
2586           header)
2587       (list
2588        (apply
2589         'nconc
2590         (list
2591          (if (eq type 'lower)
2592              "Lower score"
2593            "Increase score"))
2594         (let (outh)
2595           (while headers
2596             (setq header (car headers))
2597             (setq outh
2598                   (cons
2599                    (apply
2600                     'nconc
2601                     (list (car header))
2602                     (let ((ts (cdr (assoc (nth 2 header) types)))
2603                           outt)
2604                       (while ts
2605                         (setq outt
2606                               (cons
2607                                (apply
2608                                 'nconc
2609                                 (list (caar ts))
2610                                 (let ((ps perms)
2611                                       outp)
2612                                   (while ps
2613                                     (setq outp
2614                                           (cons
2615                                            (vector
2616                                             (caar ps)
2617                                             (list
2618                                              'gnus-summary-score-entry
2619                                              (nth 1 header)
2620                                              (if (or (string= (nth 1 header)
2621                                                               "head")
2622                                                      (string= (nth 1 header)
2623                                                               "body"))
2624                                                  ""
2625                                                (list 'gnus-summary-header
2626                                                      (nth 1 header)))
2627                                              (list 'quote (nth 1 (car ts)))
2628                                              (list 'gnus-score-delta-default
2629                                                    nil)
2630                                              (nth 1 (car ps))
2631                                              t)
2632                                             t)
2633                                            outp))
2634                                     (setq ps (cdr ps)))
2635                                   (list (nreverse outp))))
2636                                outt))
2637                         (setq ts (cdr ts)))
2638                       (list (nreverse outt))))
2639                    outh))
2640             (setq headers (cdr headers)))
2641           (list (nreverse outh))))))))
2642
2643 \f
2644
2645 (defun gnus-summary-mode (&optional group)
2646   "Major mode for reading articles.
2647
2648 All normal editing commands are switched off.
2649 \\<gnus-summary-mode-map>
2650 Each line in this buffer represents one article.  To read an
2651 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
2652 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2653 respectively.
2654
2655 You can also post articles and send mail from this buffer.  To
2656 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
2657 of an article, type `\\[gnus-summary-reply]'.
2658
2659 There are approx. one gazillion commands you can execute in this
2660 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2661
2662 The following commands are available:
2663
2664 \\{gnus-summary-mode-map}"
2665   (interactive)
2666   (kill-all-local-variables)
2667   (when (gnus-visual-p 'summary-menu 'menu)
2668     (gnus-summary-make-menu-bar)
2669     (gnus-summary-make-tool-bar))
2670   (gnus-summary-make-local-variables)
2671   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
2672     (gnus-summary-make-local-variables))
2673   (gnus-make-thread-indent-array)
2674   (gnus-simplify-mode-line)
2675   (setq major-mode 'gnus-summary-mode)
2676   (setq mode-name "Summary")
2677   (make-local-variable 'minor-mode-alist)
2678   (use-local-map gnus-summary-mode-map)
2679   (buffer-disable-undo)
2680   (setq buffer-read-only t)             ;Disable modification
2681   (setq truncate-lines t)
2682   (setq selective-display t)
2683   (setq selective-display-ellipses t)   ;Display `...'
2684   (gnus-summary-set-display-table)
2685   (gnus-set-default-directory)
2686   (setq gnus-newsgroup-name group)
2687   (make-local-variable 'gnus-summary-line-format)
2688   (make-local-variable 'gnus-summary-line-format-spec)
2689   (make-local-variable 'gnus-summary-dummy-line-format)
2690   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2691   (make-local-variable 'gnus-summary-mark-positions)
2692   (gnus-make-local-hook 'pre-command-hook)
2693   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2694   (gnus-run-hooks 'gnus-summary-mode-hook)
2695   (turn-on-gnus-mailing-list-mode)
2696   (mm-enable-multibyte)
2697   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2698   (gnus-update-summary-mark-positions))
2699
2700 (defun gnus-summary-make-local-variables ()
2701   "Make all the local summary buffer variables."
2702   (let (global)
2703     (dolist (local gnus-summary-local-variables)
2704       (if (consp local)
2705           (progn
2706             (if (eq (cdr local) 'global)
2707                 ;; Copy the global value of the variable.
2708                 (setq global (symbol-value (car local)))
2709               ;; Use the value from the list.
2710               (setq global (eval (cdr local))))
2711             (set (make-local-variable (car local)) global))
2712         ;; Simple nil-valued local variable.
2713         (set (make-local-variable local) nil)))))
2714
2715 (defun gnus-summary-clear-local-variables ()
2716   (let ((locals gnus-summary-local-variables))
2717     (while locals
2718       (if (consp (car locals))
2719           (and (vectorp (caar locals))
2720                (set (caar locals) nil))
2721         (and (vectorp (car locals))
2722              (set (car locals) nil)))
2723       (setq locals (cdr locals)))))
2724
2725 ;; Summary data functions.
2726
2727 (defmacro gnus-data-number (data)
2728   `(car ,data))
2729
2730 (defmacro gnus-data-set-number (data number)
2731   `(setcar ,data ,number))
2732
2733 (defmacro gnus-data-mark (data)
2734   `(nth 1 ,data))
2735
2736 (defmacro gnus-data-set-mark (data mark)
2737   `(setcar (nthcdr 1 ,data) ,mark))
2738
2739 (defmacro gnus-data-pos (data)
2740   `(nth 2 ,data))
2741
2742 (defmacro gnus-data-set-pos (data pos)
2743   `(setcar (nthcdr 2 ,data) ,pos))
2744
2745 (defmacro gnus-data-header (data)
2746   `(nth 3 ,data))
2747
2748 (defmacro gnus-data-set-header (data header)
2749   `(setf (nth 3 ,data) ,header))
2750
2751 (defmacro gnus-data-level (data)
2752   `(nth 4 ,data))
2753
2754 (defmacro gnus-data-unread-p (data)
2755   `(= (nth 1 ,data) gnus-unread-mark))
2756
2757 (defmacro gnus-data-read-p (data)
2758   `(/= (nth 1 ,data) gnus-unread-mark))
2759
2760 (defmacro gnus-data-pseudo-p (data)
2761   `(consp (nth 3 ,data)))
2762
2763 (defmacro gnus-data-find (number)
2764   `(assq ,number gnus-newsgroup-data))
2765
2766 (defmacro gnus-data-find-list (number &optional data)
2767   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2768      (memq (assq ,number bdata)
2769            bdata)))
2770
2771 (defmacro gnus-data-make (number mark pos header level)
2772   `(list ,number ,mark ,pos ,header ,level))
2773
2774 (defun gnus-data-enter (after-article number mark pos header level offset)
2775   (let ((data (gnus-data-find-list after-article)))
2776     (unless data
2777       (error "No such article: %d" after-article))
2778     (setcdr data (cons (gnus-data-make number mark pos header level)
2779                        (cdr data)))
2780     (setq gnus-newsgroup-data-reverse nil)
2781     (gnus-data-update-list (cddr data) offset)))
2782
2783 (defun gnus-data-enter-list (after-article list &optional offset)
2784   (when list
2785     (let ((data (and after-article (gnus-data-find-list after-article)))
2786           (ilist list))
2787       (if (not (or data
2788                    after-article))
2789           (let ((odata gnus-newsgroup-data))
2790             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2791             (when offset
2792               (gnus-data-update-list odata offset)))
2793       ;; Find the last element in the list to be spliced into the main
2794         ;; list.
2795         (while (cdr list)
2796           (setq list (cdr list)))
2797         (if (not data)
2798             (progn
2799               (setcdr list gnus-newsgroup-data)
2800               (setq gnus-newsgroup-data ilist)
2801               (when offset
2802                 (gnus-data-update-list (cdr list) offset)))
2803           (setcdr list (cdr data))
2804           (setcdr data ilist)
2805           (when offset
2806             (gnus-data-update-list (cdr list) offset))))
2807       (setq gnus-newsgroup-data-reverse nil))))
2808
2809 (defun gnus-data-remove (article &optional offset)
2810   (let ((data gnus-newsgroup-data))
2811     (if (= (gnus-data-number (car data)) article)
2812         (progn
2813           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2814                 gnus-newsgroup-data-reverse nil)
2815           (when offset
2816             (gnus-data-update-list gnus-newsgroup-data offset)))
2817       (while (cdr data)
2818         (when (= (gnus-data-number (cadr data)) article)
2819           (setcdr data (cddr data))
2820           (when offset
2821             (gnus-data-update-list (cdr data) offset))
2822           (setq data nil
2823                 gnus-newsgroup-data-reverse nil))
2824         (setq data (cdr data))))))
2825
2826 (defmacro gnus-data-list (backward)
2827   `(if ,backward
2828        (or gnus-newsgroup-data-reverse
2829            (setq gnus-newsgroup-data-reverse
2830                  (reverse gnus-newsgroup-data)))
2831      gnus-newsgroup-data))
2832
2833 (defun gnus-data-update-list (data offset)
2834   "Add OFFSET to the POS of all data entries in DATA."
2835   (setq gnus-newsgroup-data-reverse nil)
2836   (while data
2837     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2838     (setq data (cdr data))))
2839
2840 (defun gnus-summary-article-pseudo-p (article)
2841   "Say whether this article is a pseudo article or not."
2842   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2843
2844 (defmacro gnus-summary-article-sparse-p (article)
2845   "Say whether this article is a sparse article or not."
2846   `(memq ,article gnus-newsgroup-sparse))
2847
2848 (defmacro gnus-summary-article-ancient-p (article)
2849   "Say whether this article is a sparse article or not."
2850   `(memq ,article gnus-newsgroup-ancient))
2851
2852 (defun gnus-article-parent-p (number)
2853   "Say whether this article is a parent or not."
2854   (let ((data (gnus-data-find-list number)))
2855     (and (cdr data)              ; There has to be an article after...
2856          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2857             (gnus-data-level (nth 1 data))))))
2858
2859 (defun gnus-article-children (number)
2860   "Return a list of all children to NUMBER."
2861   (let* ((data (gnus-data-find-list number))
2862          (level (gnus-data-level (car data)))
2863          children)
2864     (setq data (cdr data))
2865     (while (and data
2866                 (= (gnus-data-level (car data)) (1+ level)))
2867       (push (gnus-data-number (car data)) children)
2868       (setq data (cdr data)))
2869     children))
2870
2871 (defmacro gnus-summary-skip-intangible ()
2872   "If the current article is intangible, then jump to a different article."
2873   '(let ((to (get-text-property (point) 'gnus-intangible)))
2874      (and to (gnus-summary-goto-subject to))))
2875
2876 (defmacro gnus-summary-article-intangible-p ()
2877   "Say whether this article is intangible or not."
2878   '(get-text-property (point) 'gnus-intangible))
2879
2880 (defun gnus-article-read-p (article)
2881   "Say whether ARTICLE is read or not."
2882   (not (or (memq article gnus-newsgroup-marked)
2883            (memq article gnus-newsgroup-spam-marked)
2884            (memq article gnus-newsgroup-unreads)
2885            (memq article gnus-newsgroup-unselected)
2886            (memq article gnus-newsgroup-dormant))))
2887
2888 ;; Some summary mode macros.
2889
2890 (defmacro gnus-summary-article-number ()
2891   "The article number of the article on the current line.
2892 If there isn't an article number here, then we return the current
2893 article number."
2894   '(progn
2895      (gnus-summary-skip-intangible)
2896      (or (get-text-property (point) 'gnus-number)
2897          (gnus-summary-last-subject))))
2898
2899 (defmacro gnus-summary-article-header (&optional number)
2900   "Return the header of article NUMBER."
2901   `(gnus-data-header (gnus-data-find
2902                       ,(or number '(gnus-summary-article-number)))))
2903
2904 (defmacro gnus-summary-thread-level (&optional number)
2905   "Return the level of thread that starts with article NUMBER."
2906   `(if (and (eq gnus-summary-make-false-root 'dummy)
2907             (get-text-property (point) 'gnus-intangible))
2908        0
2909      (gnus-data-level (gnus-data-find
2910                        ,(or number '(gnus-summary-article-number))))))
2911
2912 (defmacro gnus-summary-article-mark (&optional number)
2913   "Return the mark of article NUMBER."
2914   `(gnus-data-mark (gnus-data-find
2915                     ,(or number '(gnus-summary-article-number)))))
2916
2917 (defmacro gnus-summary-article-pos (&optional number)
2918   "Return the position of the line of article NUMBER."
2919   `(gnus-data-pos (gnus-data-find
2920                    ,(or number '(gnus-summary-article-number)))))
2921
2922 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2923 (defmacro gnus-summary-article-subject (&optional number)
2924   "Return current subject string or nil if nothing."
2925   `(let ((headers
2926           ,(if number
2927                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2928              '(gnus-data-header (assq (gnus-summary-article-number)
2929                                       gnus-newsgroup-data)))))
2930      (and headers
2931           (vectorp headers)
2932           (mail-header-subject headers))))
2933
2934 (defmacro gnus-summary-article-score (&optional number)
2935   "Return current article score."
2936   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2937                   gnus-newsgroup-scored))
2938        gnus-summary-default-score 0))
2939
2940 (defun gnus-summary-article-children (&optional number)
2941   "Return a list of article numbers that are children of article NUMBER."
2942   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2943          (level (gnus-data-level (car data)))
2944          l children)
2945     (while (and (setq data (cdr data))
2946                 (> (setq l (gnus-data-level (car data))) level))
2947       (and (= (1+ level) l)
2948            (push (gnus-data-number (car data))
2949                  children)))
2950     (nreverse children)))
2951
2952 (defun gnus-summary-article-parent (&optional number)
2953   "Return the article number of the parent of article NUMBER."
2954   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2955                                     (gnus-data-list t)))
2956          (level (gnus-data-level (car data))))
2957     (if (zerop level)
2958         ()                              ; This is a root.
2959       ;; We search until we find an article with a level less than
2960       ;; this one.  That function has to be the parent.
2961       (while (and (setq data (cdr data))
2962                   (not (< (gnus-data-level (car data)) level))))
2963       (and data (gnus-data-number (car data))))))
2964
2965 (defun gnus-unread-mark-p (mark)
2966   "Say whether MARK is the unread mark."
2967   (= mark gnus-unread-mark))
2968
2969 (defun gnus-read-mark-p (mark)
2970   "Say whether MARK is one of the marks that mark as read.
2971 This is all marks except unread, ticked, dormant, and expirable."
2972   (not (or (= mark gnus-unread-mark)
2973            (= mark gnus-ticked-mark)
2974            (= mark gnus-spam-mark)
2975            (= mark gnus-dormant-mark)
2976            (= mark gnus-expirable-mark))))
2977
2978 (defmacro gnus-article-mark (number)
2979   "Return the MARK of article NUMBER.
2980 This macro should only be used when computing the mark the \"first\"
2981 time; i.e., when generating the summary lines.  After that,
2982 `gnus-summary-article-mark' should be used to examine the
2983 marks of articles."
2984   `(cond
2985     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
2986     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
2987     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
2988     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
2989     ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
2990     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
2991     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
2992     (t (or (cdr (assq ,number gnus-newsgroup-reads))
2993            gnus-ancient-mark))))
2994
2995 ;; Saving hidden threads.
2996
2997 (defmacro gnus-save-hidden-threads (&rest forms)
2998   "Save hidden threads, eval FORMS, and restore the hidden threads."
2999   (let ((config (make-symbol "config")))
3000     `(let ((,config (gnus-hidden-threads-configuration)))
3001        (unwind-protect
3002            (save-excursion
3003              ,@forms)
3004          (gnus-restore-hidden-threads-configuration ,config)))))
3005 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3006 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3007
3008 (defun gnus-data-compute-positions ()
3009   "Compute the positions of all articles."
3010   (setq gnus-newsgroup-data-reverse nil)
3011   (let ((data gnus-newsgroup-data))
3012     (save-excursion
3013       (gnus-save-hidden-threads
3014         (gnus-summary-show-all-threads)
3015         (goto-char (point-min))
3016         (while data
3017           (while (get-text-property (point) 'gnus-intangible)
3018             (forward-line 1))
3019           (gnus-data-set-pos (car data) (+ (point) 3))
3020           (setq data (cdr data))
3021           (forward-line 1))))))
3022
3023 (defun gnus-hidden-threads-configuration ()
3024   "Return the current hidden threads configuration."
3025   (save-excursion
3026     (let (config)
3027       (goto-char (point-min))
3028       (while (search-forward "\r" nil t)
3029         (push (1- (point)) config))
3030       config)))
3031
3032 (defun gnus-restore-hidden-threads-configuration (config)
3033   "Restore hidden threads configuration from CONFIG."
3034   (save-excursion
3035     (let (point buffer-read-only)
3036       (while (setq point (pop config))
3037         (when (and (< point (point-max))
3038                    (goto-char point)
3039                    (eq (char-after) ?\n))
3040           (subst-char-in-region point (1+ point) ?\n ?\r))))))
3041
3042 ;; Various summary mode internalish functions.
3043
3044 (defun gnus-mouse-pick-article (e)
3045   (interactive "e")
3046   (mouse-set-point e)
3047   (gnus-summary-next-page nil t))
3048
3049 (defun gnus-summary-set-display-table ()
3050   "Change the display table.
3051 Odd characters have a tendency to mess
3052 up nicely formatted displays - we make all possible glyphs
3053 display only a single character."
3054
3055   ;; We start from the standard display table, if any.
3056   (let ((table (or (copy-sequence standard-display-table)
3057                    (make-display-table)))
3058         (i 32))
3059     ;; Nix out all the control chars...
3060     (while (>= (setq i (1- i)) 0)
3061       (aset table i [??]))
3062    ;; ... but not newline and cr, of course.  (cr is necessary for the
3063     ;; selective display).
3064     (aset table ?\n nil)
3065     (aset table ?\r nil)
3066     ;; We keep TAB as well.
3067     (aset table ?\t nil)
3068     ;; We nix out any glyphs over 126 that are not set already.
3069     (let ((i 256))
3070       (while (>= (setq i (1- i)) 127)
3071         ;; Only modify if the entry is nil.
3072         (unless (aref table i)
3073           (aset table i [??]))))
3074     (setq buffer-display-table table)))
3075
3076 (defun gnus-summary-set-article-display-arrow (pos)
3077   "Update the overlay arrow to point to line at position POS."
3078   (when (and gnus-summary-display-arrow
3079              (boundp 'overlay-arrow-position)
3080              (boundp 'overlay-arrow-string))
3081     (save-excursion
3082       (goto-char pos)
3083       (beginning-of-line)
3084       (unless overlay-arrow-position
3085         (setq overlay-arrow-position (make-marker)))
3086       (setq overlay-arrow-string "=>"
3087             overlay-arrow-position (set-marker overlay-arrow-position
3088                                                (point)
3089                                                (current-buffer))))))
3090
3091 (defun gnus-summary-setup-buffer (group)
3092   "Initialize summary buffer."
3093   (let ((buffer (gnus-summary-buffer-name group))
3094         (dead-name (concat "*Dead Summary "
3095                            (gnus-group-decoded-name group) "*")))
3096     ;; If a dead summary buffer exists, we kill it.
3097     (when (gnus-buffer-live-p dead-name)
3098       (gnus-kill-buffer dead-name))
3099     (if (get-buffer buffer)
3100         (progn
3101           (set-buffer buffer)
3102           (setq gnus-summary-buffer (current-buffer))
3103           (not gnus-newsgroup-prepared))
3104       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3105       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3106       (gnus-summary-mode group)
3107       (when gnus-carpal
3108         (gnus-carpal-setup-buffer 'summary))
3109       (unless gnus-single-article-buffer
3110         (make-local-variable 'gnus-article-buffer)
3111         (make-local-variable 'gnus-article-current)
3112         (make-local-variable 'gnus-original-article-buffer))
3113       (setq gnus-newsgroup-name group)
3114       ;; Set any local variables in the group parameters.
3115       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3116       t)))
3117
3118 (defun gnus-set-global-variables ()
3119   "Set the global equivalents of the buffer-local variables.
3120 They are set to the latest values they had.  These reflect the summary
3121 buffer that was in action when the last article was fetched."
3122   (when (eq major-mode 'gnus-summary-mode)
3123     (setq gnus-summary-buffer (current-buffer))
3124     (let ((name gnus-newsgroup-name)
3125           (marked gnus-newsgroup-marked)
3126           (spam gnus-newsgroup-spam-marked)
3127           (unread gnus-newsgroup-unreads)
3128           (headers gnus-current-headers)
3129           (data gnus-newsgroup-data)
3130           (summary gnus-summary-buffer)
3131           (article-buffer gnus-article-buffer)
3132           (original gnus-original-article-buffer)
3133           (gac gnus-article-current)
3134           (reffed gnus-reffed-article-number)
3135           (score-file gnus-current-score-file)
3136           (default-charset gnus-newsgroup-charset)
3137           vlist)
3138       (let ((locals gnus-newsgroup-variables))
3139         (while locals
3140           (if (consp (car locals))
3141               (push (eval (caar locals)) vlist)
3142             (push (eval (car locals)) vlist))
3143           (setq locals (cdr locals)))
3144         (setq vlist (nreverse vlist)))
3145       (save-excursion
3146         (set-buffer gnus-group-buffer)
3147         (setq gnus-newsgroup-name name
3148               gnus-newsgroup-marked marked
3149               gnus-newsgroup-spam-marked spam
3150               gnus-newsgroup-unreads unread
3151               gnus-current-headers headers
3152               gnus-newsgroup-data data
3153               gnus-article-current gac
3154               gnus-summary-buffer summary
3155               gnus-article-buffer article-buffer
3156               gnus-original-article-buffer original
3157               gnus-reffed-article-number reffed
3158               gnus-current-score-file score-file
3159               gnus-newsgroup-charset default-charset)
3160         (let ((locals gnus-newsgroup-variables))
3161           (while locals
3162             (if (consp (car locals))
3163                 (set (caar locals) (pop vlist))
3164               (set (car locals) (pop vlist)))
3165             (setq locals (cdr locals))))
3166         ;; The article buffer also has local variables.
3167         (when (gnus-buffer-live-p gnus-article-buffer)
3168           (set-buffer gnus-article-buffer)
3169           (setq gnus-summary-buffer summary))))))
3170
3171 (defun gnus-summary-article-unread-p (article)
3172   "Say whether ARTICLE is unread or not."
3173   (memq article gnus-newsgroup-unreads))
3174
3175 (defun gnus-summary-first-article-p (&optional article)
3176   "Return whether ARTICLE is the first article in the buffer."
3177   (if (not (setq article (or article (gnus-summary-article-number))))
3178       nil
3179     (eq article (caar gnus-newsgroup-data))))
3180
3181 (defun gnus-summary-last-article-p (&optional article)
3182   "Return whether ARTICLE is the last article in the buffer."
3183   (if (not (setq article (or article (gnus-summary-article-number))))
3184       ;; All non-existent numbers are the last article.  :-)
3185       t
3186     (not (cdr (gnus-data-find-list article)))))
3187
3188 (defun gnus-make-thread-indent-array ()
3189   (let ((n 200))
3190     (unless (and gnus-thread-indent-array
3191                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
3192       (setq gnus-thread-indent-array (make-vector 201 "")
3193             gnus-thread-indent-array-level gnus-thread-indent-level)
3194       (while (>= n 0)
3195         (aset gnus-thread-indent-array n
3196               (make-string (* n gnus-thread-indent-level) ? ))
3197         (setq n (1- n))))))
3198
3199 (defun gnus-update-summary-mark-positions ()
3200   "Compute where the summary marks are to go."
3201   (save-excursion
3202     (when (gnus-buffer-exists-p gnus-summary-buffer)
3203       (set-buffer gnus-summary-buffer))
3204     (let ((gnus-replied-mark 129)
3205           (gnus-score-below-mark 130)
3206           (gnus-score-over-mark 130)
3207           (gnus-undownloaded-mark 131)
3208           (spec gnus-summary-line-format-spec)
3209           gnus-visual pos)
3210       (save-excursion
3211         (gnus-set-work-buffer)
3212         (let ((gnus-summary-line-format-spec spec)
3213               (gnus-newsgroup-downloadable '(0)))
3214           (gnus-summary-insert-line
3215            [0 "" "" "05 Apr 2001 23:33:09 +0400" "" "" 0 0 "" nil]
3216            0 nil t 128 t nil "" nil 1)
3217           (goto-char (point-min))
3218           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
3219                                              (- (point) (point-min) 1)))))
3220           (goto-char (point-min))
3221           (push (cons 'replied (and (search-forward "\201" nil t)
3222                                     (- (point) (point-min) 1)))
3223                 pos)
3224           (goto-char (point-min))
3225           (push (cons 'score (and (search-forward "\202" nil t)
3226                                   (- (point) (point-min) 1)))
3227                 pos)
3228           (goto-char (point-min))
3229           (push (cons 'download
3230                       (and (search-forward "\203" nil t)
3231                            (- (point) (point-min) 1)))
3232                 pos)))
3233       (setq gnus-summary-mark-positions pos))))
3234
3235 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3236   "Insert a dummy root in the summary buffer."
3237   (beginning-of-line)
3238   (gnus-add-text-properties
3239    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3240    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3241
3242 (defun gnus-summary-extract-address-component (from)
3243   (or (car (funcall gnus-extract-address-components from))
3244       from))
3245
3246 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3247   (let ((mail-parse-charset gnus-newsgroup-charset)
3248         ; Is it really necessary to do this next part for each summary line?
3249         ; Luckily, doesn't seem to slow things down much.
3250         (mail-parse-ignored-charsets
3251          (with-current-buffer gnus-summary-buffer
3252            gnus-newsgroup-ignored-charsets)))
3253     (or
3254      (and gnus-ignored-from-addresses
3255           (string-match gnus-ignored-from-addresses gnus-tmp-from)
3256           (let ((extra-headers (mail-header-extra header))
3257                 to
3258                 newsgroups)
3259             (cond
3260              ((setq to (cdr (assq 'To extra-headers)))
3261               (concat "-> "
3262                       (inline
3263                         (gnus-summary-extract-address-component
3264                          (funcall gnus-decode-encoded-word-function to)))))
3265              ((setq newsgroups (cdr (assq 'Newsgroups extra-headers)))
3266               (concat "=> " newsgroups)))))
3267      (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3268
3269 (defun gnus-summary-insert-line (gnus-tmp-header
3270                                  gnus-tmp-level gnus-tmp-current
3271                                  undownloaded gnus-tmp-unread gnus-tmp-replied
3272                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
3273                                  &optional gnus-tmp-dummy gnus-tmp-score
3274                                  gnus-tmp-process)
3275   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3276          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3277          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3278          (gnus-tmp-score-char
3279           (if (or (null gnus-summary-default-score)
3280                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3281                       gnus-summary-zcore-fuzz))
3282               ?                         ;Whitespace
3283             (if (< gnus-tmp-score gnus-summary-default-score)
3284                 gnus-score-below-mark gnus-score-over-mark)))
3285          (gnus-tmp-number (mail-header-number gnus-tmp-header))
3286          (gnus-tmp-replied
3287           (cond (gnus-tmp-process gnus-process-mark)
3288                 ((memq gnus-tmp-current gnus-newsgroup-cached)
3289                  gnus-cached-mark)
3290                 (gnus-tmp-replied gnus-replied-mark)
3291                 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3292                  gnus-forwarded-mark)
3293                 ((memq gnus-tmp-current gnus-newsgroup-saved)
3294                  gnus-saved-mark)
3295                 ((memq gnus-tmp-number gnus-newsgroup-recent)
3296                  gnus-recent-mark)
3297                 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3298                  gnus-unseen-mark)
3299                 (t gnus-no-mark)))
3300          (gnus-tmp-downloaded
3301           (cond (undownloaded
3302                  gnus-undownloaded-mark)
3303                 (gnus-newsgroup-agentized
3304                  gnus-downloaded-mark)
3305                 (t
3306                  gnus-no-mark)))
3307          (gnus-tmp-from (mail-header-from gnus-tmp-header))
3308          (gnus-tmp-name
3309           (cond
3310            ((string-match "<[^>]+> *$" gnus-tmp-from)
3311             (let ((beg (match-beginning 0)))
3312               (or (and (string-match "^\".+\"" gnus-tmp-from)
3313                        (substring gnus-tmp-from 1 (1- (match-end 0))))
3314                   (substring gnus-tmp-from 0 beg))))
3315            ((string-match "(.+)" gnus-tmp-from)
3316             (substring gnus-tmp-from
3317                        (1+ (match-beginning 0)) (1- (match-end 0))))
3318            (t gnus-tmp-from)))
3319          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3320          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3321          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3322          (buffer-read-only nil))
3323     (when (string= gnus-tmp-name "")
3324       (setq gnus-tmp-name gnus-tmp-from))
3325     (unless (numberp gnus-tmp-lines)
3326       (setq gnus-tmp-lines -1))
3327     (if (= gnus-tmp-lines -1)
3328         (setq gnus-tmp-lines "?")
3329       (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3330       (gnus-put-text-property
3331      (point)
3332      (progn (eval gnus-summary-line-format-spec) (point))
3333        'gnus-number gnus-tmp-number)
3334     (when (gnus-visual-p 'summary-highlight 'highlight)
3335       (forward-line -1)
3336       (gnus-run-hooks 'gnus-summary-update-hook)
3337       (forward-line 1))))
3338
3339 (defun gnus-summary-update-line (&optional dont-update)
3340   "Update summary line after change."
3341   (when (and gnus-summary-default-score
3342              (not gnus-summary-inhibit-highlight))
3343     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3344            (article (gnus-summary-article-number))
3345            (score (gnus-summary-article-score article)))
3346       (unless dont-update
3347         (if (and gnus-summary-mark-below
3348                  (< (gnus-summary-article-score)
3349                     gnus-summary-mark-below))
3350             ;; This article has a low score, so we mark it as read.
3351             (when (memq article gnus-newsgroup-unreads)
3352               (gnus-summary-mark-article-as-read gnus-low-score-mark))
3353           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3354             ;; This article was previously marked as read on account
3355             ;; of a low score, but now it has risen, so we mark it as
3356             ;; unread.
3357             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3358         (gnus-summary-update-mark
3359          (if (or (null gnus-summary-default-score)
3360                  (<= (abs (- score gnus-summary-default-score))
3361                      gnus-summary-zcore-fuzz))
3362              ?                          ;Whitespace
3363            (if (< score gnus-summary-default-score)
3364                gnus-score-below-mark gnus-score-over-mark))
3365          'score))
3366       ;; Do visual highlighting.
3367       (when (gnus-visual-p 'summary-highlight 'highlight)
3368         (gnus-run-hooks 'gnus-summary-update-hook)))))
3369
3370 (defvar gnus-tmp-new-adopts nil)
3371
3372 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3373   "Return the number of articles in THREAD.
3374 This may be 0 in some cases -- if none of the articles in
3375 the thread are to be displayed."
3376   (let* ((number
3377          ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3378           (cond
3379            ((not (listp thread))
3380             1)
3381            ((and (consp thread) (cdr thread))
3382             (apply
3383              '+ 1 (mapcar
3384                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
3385            ((null thread)
3386             1)
3387            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3388             1)
3389            (t 0))))
3390     (when (and level (zerop level) gnus-tmp-new-adopts)
3391       (incf number
3392             (apply '+ (mapcar
3393                        'gnus-summary-number-of-articles-in-thread
3394                        gnus-tmp-new-adopts))))
3395     (if char
3396         (if (> number 1) gnus-not-empty-thread-mark
3397           gnus-empty-thread-mark)
3398       number)))
3399
3400 (defsubst gnus-summary-line-message-size (head)
3401   "Return pretty-printed version of message size.
3402 This function is intended to be used in
3403 `gnus-summary-line-format-alist'."
3404   (let ((c (or (mail-header-chars head) -1)))
3405     (cond ((< c 0) "n/a")               ; chars not available
3406           ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3407           ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3408           ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3409           (t (format "%dM" (/ c (* 1024.0 1024)))))))
3410
3411
3412 (defun gnus-summary-set-local-parameters (group)
3413   "Go through the local params of GROUP and set all variable specs in that list."
3414   (let ((params (gnus-group-find-parameter group))
3415         (vars '(quit-config))           ; Ignore quit-config.
3416         elem)
3417     (while params
3418       (setq elem (car params)
3419             params (cdr params))
3420       (and (consp elem)                 ; Has to be a cons.
3421            (consp (cdr elem))           ; The cdr has to be a list.
3422            (symbolp (car elem))         ; Has to be a symbol in there.
3423            (not (memq (car elem) vars))
3424            (ignore-errors               ; So we set it.
3425              (push (car elem) vars)
3426              (make-local-variable (car elem))
3427              (set (car elem) (eval (nth 1 elem))))))))
3428
3429 (defun gnus-summary-read-group (group &optional show-all no-article
3430                                       kill-buffer no-display backward
3431                                       select-articles)
3432   "Start reading news in newsgroup GROUP.
3433 If SHOW-ALL is non-nil, already read articles are also listed.
3434 If NO-ARTICLE is non-nil, no article is selected initially.
3435 If NO-DISPLAY, don't generate a summary buffer."
3436   (let (result)
3437     (while (and group
3438                 (null (setq result
3439                             (let ((gnus-auto-select-next nil))
3440                               (or (gnus-summary-read-group-1
3441                                    group show-all no-article
3442                                    kill-buffer no-display
3443                                    select-articles)
3444                                   (setq show-all nil
3445                                         select-articles nil)))))
3446                 (eq gnus-auto-select-next 'quietly))
3447       (set-buffer gnus-group-buffer)
3448       ;; The entry function called above goes to the next
3449       ;; group automatically, so we go two groups back
3450       ;; if we are searching for the previous group.
3451       (when backward
3452         (gnus-group-prev-unread-group 2))
3453       (if (not (equal group (gnus-group-group-name)))
3454           (setq group (gnus-group-group-name))
3455         (setq group nil)))
3456     result))
3457
3458 (defun gnus-summary-read-group-1 (group show-all no-article
3459                                         kill-buffer no-display
3460                                         &optional select-articles)
3461   ;; Killed foreign groups can't be entered.
3462   ;;  (when (and (not (gnus-group-native-p group))
3463   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
3464   ;;    (error "Dead non-native groups can't be entered"))
3465   (gnus-message 5 "Retrieving newsgroup: %s..."
3466                 (gnus-group-decoded-name group))
3467   (let* ((new-group (gnus-summary-setup-buffer group))
3468          (quit-config (gnus-group-quit-config group))
3469          (did-select (and new-group (gnus-select-newsgroup
3470                                      group show-all select-articles))))
3471     (cond
3472      ;; This summary buffer exists already, so we just select it.
3473      ((not new-group)
3474       (gnus-set-global-variables)
3475       (when kill-buffer
3476         (gnus-kill-or-deaden-summary kill-buffer))
3477       (gnus-configure-windows 'summary 'force)
3478       (gnus-set-mode-line 'summary)
3479       (gnus-summary-position-point)
3480       (message "")
3481       t)
3482      ;; We couldn't select this group.
3483      ((null did-select)
3484       (when (and (eq major-mode 'gnus-summary-mode)
3485                  (not (equal (current-buffer) kill-buffer)))
3486         (kill-buffer (current-buffer))
3487         (if (not quit-config)
3488             (progn
3489               ;; Update the info -- marks might need to be removed,
3490               ;; for instance.
3491               (gnus-summary-update-info)
3492               (set-buffer gnus-group-buffer)
3493               (gnus-group-jump-to-group group)
3494               (gnus-group-next-unread-group 1))
3495           (gnus-handle-ephemeral-exit quit-config)))
3496       (let ((grpinfo (gnus-get-info group)))
3497         (if (null (gnus-info-read grpinfo))
3498             (gnus-message 3 "Group %s contains no messages"
3499                           (gnus-group-decoded-name group))
3500           (gnus-message 3 "Can't select group")))
3501       nil)
3502      ;; The user did a `C-g' while prompting for number of articles,
3503      ;; so we exit this group.
3504      ((eq did-select 'quit)
3505       (and (eq major-mode 'gnus-summary-mode)
3506            (not (equal (current-buffer) kill-buffer))
3507            (kill-buffer (current-buffer)))
3508       (when kill-buffer
3509         (gnus-kill-or-deaden-summary kill-buffer))
3510       (if (not quit-config)
3511           (progn
3512             (set-buffer gnus-group-buffer)
3513             (gnus-group-jump-to-group group)
3514             (gnus-group-next-unread-group 1)
3515             (gnus-configure-windows 'group 'force))
3516         (gnus-handle-ephemeral-exit quit-config))
3517       ;; Finally signal the quit.
3518       (signal 'quit nil))
3519      ;; The group was successfully selected.
3520      (t
3521       (gnus-set-global-variables)
3522       ;; Save the active value in effect when the group was entered.
3523       (setq gnus-newsgroup-active
3524             (gnus-copy-sequence
3525              (gnus-active gnus-newsgroup-name)))
3526       ;; You can change the summary buffer in some way with this hook.
3527       (gnus-run-hooks 'gnus-select-group-hook)
3528       (gnus-update-format-specifications
3529        nil 'summary 'summary-mode 'summary-dummy)
3530       (gnus-update-summary-mark-positions)
3531       ;; Do score processing.
3532       (when gnus-use-scoring
3533         (gnus-possibly-score-headers))
3534       ;; Check whether to fill in the gaps in the threads.
3535       (when gnus-build-sparse-threads
3536         (gnus-build-sparse-threads))
3537       ;; Find the initial limit.
3538       (if gnus-show-threads
3539           (if show-all
3540               (let ((gnus-newsgroup-dormant nil))
3541                 (gnus-summary-initial-limit show-all))
3542             (gnus-summary-initial-limit show-all))
3543         ;; When unthreaded, all articles are always shown.
3544         (setq gnus-newsgroup-limit
3545               (mapcar
3546                (lambda (header) (mail-header-number header))
3547                gnus-newsgroup-headers)))
3548       ;; Generate the summary buffer.
3549       (unless no-display
3550         (gnus-summary-prepare))
3551       (when gnus-use-trees
3552         (gnus-tree-open group)
3553         (setq gnus-summary-highlight-line-function
3554               'gnus-tree-highlight-article))
3555       ;; If the summary buffer is empty, but there are some low-scored
3556       ;; articles or some excluded dormants, we include these in the
3557       ;; buffer.
3558       (when (and (zerop (buffer-size))
3559                  (not no-display))
3560         (cond (gnus-newsgroup-dormant
3561                (gnus-summary-limit-include-dormant))
3562               ((and gnus-newsgroup-scored show-all)
3563                (gnus-summary-limit-include-expunged t))))
3564       ;; Function `gnus-apply-kill-file' must be called in this hook.
3565       (gnus-run-hooks 'gnus-apply-kill-hook)
3566       (if (and (zerop (buffer-size))
3567                (not no-display))
3568           (progn
3569             ;; This newsgroup is empty.
3570             (gnus-summary-catchup-and-exit nil t)
3571             (gnus-message 6 "No unread news")
3572             (when kill-buffer
3573               (gnus-kill-or-deaden-summary kill-buffer))
3574             ;; Return nil from this function.
3575             nil)
3576         ;; Hide conversation thread subtrees.  We cannot do this in
3577         ;; gnus-summary-prepare-hook since kill processing may not
3578         ;; work with hidden articles.
3579         (gnus-summary-maybe-hide-threads)
3580         (when kill-buffer
3581           (gnus-kill-or-deaden-summary kill-buffer))
3582         (gnus-summary-auto-select-subject)
3583         ;; Show first unread article if requested.
3584         (if (and (not no-article)
3585                  (not no-display)
3586                  gnus-newsgroup-unreads
3587                  gnus-auto-select-first)
3588             (progn
3589               (gnus-configure-windows 'summary)
3590               (let ((art (gnus-summary-article-number)))
3591                 (unless (and (not gnus-plugged)
3592                              (or (memq art gnus-newsgroup-undownloaded)
3593                                  (memq art gnus-newsgroup-downloadable)))
3594                   (gnus-summary-goto-article art))))
3595           ;; Don't select any articles.
3596           (gnus-summary-position-point)
3597           (gnus-configure-windows 'summary 'force)
3598           (gnus-set-mode-line 'summary))
3599         (when (and gnus-auto-center-group
3600                    (get-buffer-window gnus-group-buffer t))
3601           ;; Gotta use windows, because recenter does weird stuff if
3602           ;; the current buffer ain't the displayed window.
3603           (let ((owin (selected-window)))
3604             (select-window (get-buffer-window gnus-group-buffer t))
3605             (when (gnus-group-goto-group group)
3606               (recenter))
3607             (select-window owin)))
3608         ;; Mark this buffer as "prepared".
3609         (setq gnus-newsgroup-prepared t)
3610         (gnus-run-hooks 'gnus-summary-prepared-hook)
3611         (unless (gnus-ephemeral-group-p group)
3612           (gnus-group-update-group group))
3613         t)))))
3614
3615 (defun gnus-summary-auto-select-subject ()
3616   "Select the subject line on initial group entry."
3617   (goto-char (point-min))
3618   (cond
3619    ((eq gnus-auto-select-subject 'best)
3620     (gnus-summary-best-unread-subject))
3621    ((eq gnus-auto-select-subject 'unread)
3622     (gnus-summary-first-unread-subject))
3623    ((eq gnus-auto-select-subject 'unseen)
3624     (gnus-summary-first-unseen-subject))
3625    ((eq gnus-auto-select-subject 'unseen-or-unread)
3626     (gnus-summary-first-unseen-or-unread-subject))
3627    ((eq gnus-auto-select-subject 'first)
3628     ;; Do nothing.
3629     )
3630    ((functionp gnus-auto-select-subject)
3631     (funcall gnus-auto-select-subject))))
3632
3633 (defun gnus-summary-prepare ()
3634   "Generate the summary buffer."
3635   (interactive)
3636   (let ((buffer-read-only nil))
3637     (erase-buffer)
3638     (setq gnus-newsgroup-data nil
3639           gnus-newsgroup-data-reverse nil)
3640     (gnus-run-hooks 'gnus-summary-generate-hook)
3641     ;; Generate the buffer, either with threads or without.
3642     (when gnus-newsgroup-headers
3643       (gnus-summary-prepare-threads
3644        (if gnus-show-threads
3645            (gnus-sort-gathered-threads
3646             (funcall gnus-summary-thread-gathering-function
3647                      (gnus-sort-threads
3648                       (gnus-cut-threads (gnus-make-threads)))))
3649          ;; Unthreaded display.
3650          (gnus-sort-articles gnus-newsgroup-headers))))
3651     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
3652     ;; Call hooks for modifying summary buffer.
3653     (goto-char (point-min))
3654     (gnus-run-hooks 'gnus-summary-prepare-hook)))
3655
3656 (defsubst gnus-general-simplify-subject (subject)
3657   "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
3658   (setq subject
3659         (cond
3660          ;; Truncate the subject.
3661          (gnus-simplify-subject-functions
3662           (gnus-map-function gnus-simplify-subject-functions subject))
3663          ((numberp gnus-summary-gather-subject-limit)
3664           (setq subject (gnus-simplify-subject-re subject))
3665           (if (> (length subject) gnus-summary-gather-subject-limit)
3666               (substring subject 0 gnus-summary-gather-subject-limit)
3667             subject))
3668          ;; Fuzzily simplify it.
3669          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3670           (gnus-simplify-subject-fuzzy subject))
3671          ;; Just remove the leading "Re:".
3672          (t
3673           (gnus-simplify-subject-re subject))))
3674
3675   (if (and gnus-summary-gather-exclude-subject
3676            (string-match gnus-summary-gather-exclude-subject subject))
3677       nil                         ; This article shouldn't be gathered
3678     subject))
3679
3680 (defun gnus-summary-simplify-subject-query ()
3681   "Query where the respool algorithm would put this article."
3682   (interactive)
3683   (gnus-summary-select-article)
3684   (message (gnus-general-simplify-subject (gnus-summary-article-subject))))
3685
3686 (defun gnus-gather-threads-by-subject (threads)
3687   "Gather threads by looking at Subject headers."
3688   (if (not gnus-summary-make-false-root)
3689       threads
3690     (let ((hashtb (gnus-make-hashtable 1024))
3691           (prev threads)
3692           (result threads)
3693           subject hthread whole-subject)
3694       (while threads
3695         (setq subject (gnus-general-simplify-subject
3696                        (setq whole-subject (mail-header-subject
3697                                             (caar threads)))))
3698         (when subject
3699           (if (setq hthread (gnus-gethash subject hashtb))
3700               (progn
3701                 ;; We enter a dummy root into the thread, if we
3702                 ;; haven't done that already.
3703                 (unless (stringp (caar hthread))
3704                   (setcar hthread (list whole-subject (car hthread))))
3705                 ;; We add this new gathered thread to this gathered
3706                 ;; thread.
3707                 (setcdr (car hthread)
3708                         (nconc (cdar hthread) (list (car threads))))
3709                 ;; Remove it from the list of threads.
3710                 (setcdr prev (cdr threads))
3711                 (setq threads prev))
3712             ;; Enter this thread into the hash table.
3713             (gnus-sethash subject
3714                           (if gnus-summary-make-false-root-always
3715                               (progn
3716                                 ;; If you want a dummy root above all
3717                                 ;; threads...
3718                                 (setcar threads (list whole-subject
3719                                                       (car threads)))
3720                                 threads)
3721                             threads)
3722                           hashtb)))
3723         (setq prev threads)
3724         (setq threads (cdr threads)))
3725       result)))
3726
3727 (defun gnus-gather-threads-by-references (threads)
3728   "Gather threads by looking at References headers."
3729   (let ((idhashtb (gnus-make-hashtable 1024))
3730         (thhashtb (gnus-make-hashtable 1024))
3731         (prev threads)
3732         (result threads)
3733         ids references id gthread gid entered ref)
3734     (while threads
3735       (when (setq references (mail-header-references (caar threads)))
3736         (setq id (mail-header-id (caar threads))
3737               ids (inline (gnus-split-references references))
3738               entered nil)
3739         (while (setq ref (pop ids))
3740           (setq ids (delete ref ids))
3741           (if (not (setq gid (gnus-gethash ref idhashtb)))
3742               (progn
3743                 (gnus-sethash ref id idhashtb)
3744                 (gnus-sethash id threads thhashtb))
3745             (setq gthread (gnus-gethash gid thhashtb))
3746             (unless entered
3747               ;; We enter a dummy root into the thread, if we
3748               ;; haven't done that already.
3749               (unless (stringp (caar gthread))
3750                 (setcar gthread (list (mail-header-subject (caar gthread))
3751                                       (car gthread))))
3752               ;; We add this new gathered thread to this gathered
3753               ;; thread.
3754               (setcdr (car gthread)
3755                       (nconc (cdar gthread) (list (car threads)))))
3756             ;; Add it into the thread hash table.
3757             (gnus-sethash id gthread thhashtb)
3758             (setq entered t)
3759             ;; Remove it from the list of threads.
3760             (setcdr prev (cdr threads))
3761             (setq threads prev))))
3762       (setq prev threads)
3763       (setq threads (cdr threads)))
3764     result))
3765
3766 (defun gnus-sort-gathered-threads (threads)
3767   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3768   (let ((result threads))
3769     (while threads
3770       (when (stringp (caar threads))
3771         (setcdr (car threads)
3772                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3773       (setq threads (cdr threads)))
3774     result))
3775
3776 (defun gnus-thread-loop-p (root thread)
3777   "Say whether ROOT is in THREAD."
3778   (let ((stack (list thread))
3779         (infloop 0)
3780         th)
3781     (while (setq thread (pop stack))
3782       (setq th (cdr thread))
3783       (while (and th
3784                   (not (eq (caar th) root)))
3785         (pop th))
3786       (if th
3787           ;; We have found a loop.
3788           (let (ref-dep)
3789             (setcdr thread (delq (car th) (cdr thread)))
3790             (if (boundp (setq ref-dep (intern "none"
3791                                               gnus-newsgroup-dependencies)))
3792                 (setcdr (symbol-value ref-dep)
3793                         (nconc (cdr (symbol-value ref-dep))
3794                                (list (car th))))
3795               (set ref-dep (list nil (car th))))
3796             (setq infloop 1
3797                   stack nil))
3798         ;; Push all the subthreads onto the stack.
3799         (push (cdr thread) stack)))
3800     infloop))
3801
3802 (defun gnus-make-threads ()
3803   "Go through the dependency hashtb and find the roots.  Return all threads."
3804   (let (threads)
3805     (while (catch 'infloop
3806              (mapatoms
3807               (lambda (refs)
3808                 ;; Deal with self-referencing References loops.
3809                 (when (and (car (symbol-value refs))
3810                            (not (zerop
3811                                  (apply
3812                                   '+
3813                                   (mapcar
3814                                    (lambda (thread)
3815                                      (gnus-thread-loop-p
3816                                       (car (symbol-value refs)) thread))
3817                                    (cdr (symbol-value refs)))))))
3818                   (setq threads nil)
3819                   (throw 'infloop t))
3820                 (unless (car (symbol-value refs))
3821                   ;; These threads do not refer back to any other
3822                   ;; articles, so they're roots.
3823                   (setq threads (append (cdr (symbol-value refs)) threads))))
3824               gnus-newsgroup-dependencies)))
3825     threads))
3826
3827 ;; Build the thread tree.
3828 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3829   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3830
3831 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3832 if it was already present.
3833
3834 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3835 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3836 Message-IDs will be renamed to a unique Message-ID before being
3837 entered.
3838
3839 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3840   (let* ((id (mail-header-id header))
3841          (id-dep (and id (intern id dependencies)))
3842          parent-id ref ref-dep ref-header replaced)
3843     ;; Enter this `header' in the `dependencies' table.
3844     (cond
3845      ((not id-dep)
3846       (setq header nil))
3847      ;; The first two cases do the normal part: enter a new `header'
3848      ;; in the `dependencies' table.
3849      ((not (boundp id-dep))
3850       (set id-dep (list header)))
3851      ((null (car (symbol-value id-dep)))
3852       (setcar (symbol-value id-dep) header))
3853
3854      ;; From here the `header' was already present in the
3855      ;; `dependencies' table.
3856      (force-new
3857       ;; Overrides an existing entry;
3858       ;; just set the header part of the entry.
3859       (setcar (symbol-value id-dep) header)
3860       (setq replaced t))
3861
3862      ;; Renames the existing `header' to a unique Message-ID.
3863      ((not gnus-summary-ignore-duplicates)
3864       ;; An article with this Message-ID has already been seen.
3865       ;; We rename the Message-ID.
3866       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3867            (list header))
3868       (mail-header-set-id header id))
3869
3870      ;; The last case ignores an existing entry, except it adds any
3871      ;; additional Xrefs (in case the two articles came from different
3872      ;; servers.
3873      ;; Also sets `header' to `nil' meaning that the `dependencies'
3874      ;; table was *not* modified.
3875      (t
3876       (mail-header-set-xref
3877        (car (symbol-value id-dep))
3878        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3879                    "")
3880                (or (mail-header-xref header) "")))
3881       (setq header nil)))
3882
3883     (when (and header (not replaced))
3884       ;; First check that we are not creating a References loop.
3885       (setq parent-id (gnus-parent-id (mail-header-references header)))
3886       (setq ref parent-id)
3887       (while (and ref
3888                   (setq ref-dep (intern-soft ref dependencies))
3889                   (boundp ref-dep)
3890                   (setq ref-header (car (symbol-value ref-dep))))
3891         (if (string= id ref)
3892             ;; Yuk!  This is a reference loop.  Make the article be a
3893             ;; root article.
3894             (progn
3895               (mail-header-set-references (car (symbol-value id-dep)) "none")
3896               (setq ref nil)
3897               (setq parent-id nil))
3898           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3899       (setq ref-dep (intern (or parent-id "none") dependencies))
3900       (if (boundp ref-dep)
3901           (setcdr (symbol-value ref-dep)
3902                   (nconc (cdr (symbol-value ref-dep))
3903                          (list (symbol-value id-dep))))
3904         (set ref-dep (list nil (symbol-value id-dep)))))
3905     header))
3906
3907 (defun gnus-extract-message-id-from-in-reply-to (string)
3908   (if (string-match "<[^>]+>" string)
3909       (substring string (match-beginning 0) (match-end 0))
3910     nil))
3911
3912 (defun gnus-build-sparse-threads ()
3913   (let ((headers gnus-newsgroup-headers)
3914         (mail-parse-charset gnus-newsgroup-charset)
3915         (gnus-summary-ignore-duplicates t)
3916         header references generation relations
3917         subject child end new-child date)
3918     ;; First we create an alist of generations/relations, where
3919     ;; generations is how much we trust the relation, and the relation
3920     ;; is parent/child.
3921     (gnus-message 7 "Making sparse threads...")
3922     (save-excursion
3923       (nnheader-set-temp-buffer " *gnus sparse threads*")
3924       (while (setq header (pop headers))
3925         (when (and (setq references (mail-header-references header))
3926                    (not (string= references "")))
3927           (insert references)
3928           (setq child (mail-header-id header)
3929                 subject (mail-header-subject header)
3930                 date (mail-header-date header)
3931                 generation 0)
3932           (while (search-backward ">" nil t)
3933             (setq end (1+ (point)))
3934             (when (search-backward "<" nil t)
3935               (setq new-child (buffer-substring (point) end))
3936               (push (list (incf generation)
3937                           child (setq child new-child)
3938                           subject date)
3939                     relations)))
3940           (when child
3941             (push (list (1+ generation) child nil subject) relations))
3942           (erase-buffer)))
3943       (kill-buffer (current-buffer)))
3944     ;; Sort over trustworthiness.
3945     (mapcar
3946      (lambda (relation)
3947        (when (gnus-dependencies-add-header
3948               (make-full-mail-header
3949                gnus-reffed-article-number
3950                (nth 3 relation) "" (or (nth 4 relation) "")
3951                (nth 1 relation)
3952                (or (nth 2 relation) "") 0 0 "")
3953               gnus-newsgroup-dependencies nil)
3954          (push gnus-reffed-article-number gnus-newsgroup-limit)
3955          (push gnus-reffed-article-number gnus-newsgroup-sparse)
3956          (push (cons gnus-reffed-article-number gnus-sparse-mark)
3957                gnus-newsgroup-reads)
3958          (decf gnus-reffed-article-number)))
3959      (sort relations 'car-less-than-car))
3960     (gnus-message 7 "Making sparse threads...done")))
3961
3962 (defun gnus-build-old-threads ()
3963   ;; Look at all the articles that refer back to old articles, and
3964   ;; fetch the headers for the articles that aren't there.  This will
3965   ;; build complete threads - if the roots haven't been expired by the
3966   ;; server, that is.
3967   (let ((mail-parse-charset gnus-newsgroup-charset)
3968         id heads)
3969     (mapatoms
3970      (lambda (refs)
3971        (when (not (car (symbol-value refs)))
3972          (setq heads (cdr (symbol-value refs)))
3973          (while heads
3974            (if (memq (mail-header-number (caar heads))
3975                      gnus-newsgroup-dormant)
3976                (setq heads (cdr heads))
3977              (setq id (symbol-name refs))
3978              (while (and (setq id (gnus-build-get-header id))
3979                          (not (car (gnus-id-to-thread id)))))
3980              (setq heads nil)))))
3981      gnus-newsgroup-dependencies)))
3982
3983 (defsubst gnus-remove-odd-characters (string)
3984   "Translate STRING into something that doesn't contain weird characters."
3985   (mm-subst-char-in-string
3986    ?\r ?\-
3987    (mm-subst-char-in-string ?\n ?\- string t) t))
3988
3989 ;; This function has to be called with point after the article number
3990 ;; on the beginning of the line.
3991 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
3992   (let ((eol (point-at-eol))
3993         (buffer (current-buffer))
3994         header references in-reply-to)
3995
3996     ;; overview: [num subject from date id refs chars lines misc]
3997     (unwind-protect
3998         (let (x)
3999           (narrow-to-region (point) eol)
4000           (unless (eobp)
4001             (forward-char))
4002
4003           (setq header
4004                 (make-full-mail-header
4005                  number                 ; number
4006                  (condition-case ()     ; subject
4007                      (gnus-remove-odd-characters
4008                       (funcall gnus-decode-encoded-word-function
4009                                (setq x (nnheader-nov-field))))
4010                    (error x))
4011                  (condition-case ()     ; from
4012                      (gnus-remove-odd-characters
4013                       (funcall gnus-decode-encoded-word-function
4014                                (setq x (nnheader-nov-field))))
4015                    (error x))
4016                  (nnheader-nov-field)   ; date
4017                  (nnheader-nov-read-message-id) ; id
4018                  (setq references (nnheader-nov-field)) ; refs
4019                  (nnheader-nov-read-integer) ; chars
4020                  (nnheader-nov-read-integer) ; lines
4021                  (unless (eobp)
4022                    (if (looking-at "Xref: ")
4023                        (goto-char (match-end 0)))
4024                    (nnheader-nov-field)) ; Xref
4025                  (nnheader-nov-parse-extra)))) ; extra
4026
4027       (widen))
4028
4029     (when (and (string= references "")
4030                (setq in-reply-to (mail-header-extra header))
4031                (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4032       (mail-header-set-references
4033        header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4034
4035     (when gnus-alter-header-function
4036       (funcall gnus-alter-header-function header))
4037     (gnus-dependencies-add-header header dependencies force-new)))
4038
4039 (defun gnus-build-get-header (id)
4040   "Look through the buffer of NOV lines and find the header to ID.
4041 Enter this line into the dependencies hash table, and return
4042 the id of the parent article (if any)."
4043   (let ((deps gnus-newsgroup-dependencies)
4044         found header)
4045     (prog1
4046         (save-excursion
4047           (set-buffer nntp-server-buffer)
4048           (let ((case-fold-search nil))
4049             (goto-char (point-min))
4050             (while (and (not found)
4051                         (search-forward id nil t))
4052               (beginning-of-line)
4053               (setq found (looking-at
4054                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4055                                    (regexp-quote id))))
4056               (or found (beginning-of-line 2)))
4057             (when found
4058               (beginning-of-line)
4059               (and
4060                (setq header (gnus-nov-parse-line
4061                              (read (current-buffer)) deps))
4062                (gnus-parent-id (mail-header-references header))))))
4063       (when header
4064         (let ((number (mail-header-number header)))
4065           (push number gnus-newsgroup-limit)
4066           (push header gnus-newsgroup-headers)
4067           (if (memq number gnus-newsgroup-unselected)
4068               (progn
4069                 (setq gnus-newsgroup-unreads
4070                       (gnus-add-to-sorted-list gnus-newsgroup-unreads
4071                                                number))
4072                 (setq gnus-newsgroup-unselected
4073                       (delq number gnus-newsgroup-unselected)))
4074             (push number gnus-newsgroup-ancient)))))))
4075
4076 (defun gnus-build-all-threads ()
4077   "Read all the headers."
4078   (let ((gnus-summary-ignore-duplicates t)
4079         (mail-parse-charset gnus-newsgroup-charset)
4080         (dependencies gnus-newsgroup-dependencies)
4081         header article)
4082     (save-excursion
4083       (set-buffer nntp-server-buffer)
4084       (let ((case-fold-search nil))
4085         (goto-char (point-min))
4086         (while (not (eobp))
4087           (ignore-errors
4088             (setq article (read (current-buffer))
4089                   header (gnus-nov-parse-line article dependencies)))
4090           (when header
4091             (save-excursion
4092               (set-buffer gnus-summary-buffer)
4093               (push header gnus-newsgroup-headers)
4094               (if (memq (setq article (mail-header-number header))
4095                         gnus-newsgroup-unselected)
4096                   (progn
4097                     (setq gnus-newsgroup-unreads
4098                           (gnus-add-to-sorted-list
4099                            gnus-newsgroup-unreads article))
4100                     (setq gnus-newsgroup-unselected
4101                           (delq article gnus-newsgroup-unselected)))
4102                 (push article gnus-newsgroup-ancient)))
4103             (forward-line 1)))))))
4104
4105 (defun gnus-summary-update-article-line (article header)
4106   "Update the line for ARTICLE using HEADER."
4107   (let* ((id (mail-header-id header))
4108          (thread (gnus-id-to-thread id)))
4109     (unless thread
4110       (error "Article in no thread"))
4111     ;; Update the thread.
4112     (setcar thread header)
4113     (gnus-summary-goto-subject article)
4114     (let* ((datal (gnus-data-find-list article))
4115            (data (car datal))
4116            (buffer-read-only nil)
4117            (level (gnus-summary-thread-level)))
4118       (gnus-delete-line)
4119       (let ((inserted (- (point)
4120                          (progn
4121                            (gnus-summary-insert-line
4122                             header level nil
4123                             (memq article gnus-newsgroup-undownloaded)
4124                             (gnus-article-mark article)
4125                             (memq article gnus-newsgroup-replied)
4126                             (memq article gnus-newsgroup-expirable)
4127                             ;; Only insert the Subject string when it's different
4128                             ;; from the previous Subject string.
4129                             (if (and
4130                                  gnus-show-threads
4131                                  (gnus-subject-equal
4132                                   (condition-case ()
4133                                       (mail-header-subject
4134                                        (gnus-data-header
4135                                         (cadr
4136                                          (gnus-data-find-list
4137                                           article
4138                                           (gnus-data-list t)))))
4139                                     ;; Error on the side of excessive subjects.
4140                                     (error ""))
4141                                   (mail-header-subject header)))
4142                                 ""
4143                               (mail-header-subject header))
4144                             nil (cdr (assq article gnus-newsgroup-scored))
4145                             (memq article gnus-newsgroup-processable))
4146                            (point)))))
4147         (when (cdr datal)
4148           (gnus-data-update-list
4149            (cdr datal)
4150            (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4151
4152 (defun gnus-summary-update-article (article &optional iheader)
4153   "Update ARTICLE in the summary buffer."
4154   (set-buffer gnus-summary-buffer)
4155   (let* ((header (gnus-summary-article-header article))
4156          (id (mail-header-id header))
4157          (data (gnus-data-find article))
4158          (thread (gnus-id-to-thread id))
4159          (references (mail-header-references header))
4160          (parent
4161           (gnus-id-to-thread
4162            (or (gnus-parent-id
4163                 (when (and references
4164                            (not (equal "" references)))
4165                   references))
4166                "none")))
4167          (buffer-read-only nil)
4168          (old (car thread)))
4169     (when thread
4170       (unless iheader
4171         (setcar thread nil)
4172         (when parent
4173           (delq thread parent)))
4174       (if (gnus-summary-insert-subject id header)
4175           ;; Set the (possibly) new article number in the data structure.
4176           (gnus-data-set-number data (gnus-id-to-article id))
4177         (setcar thread old)
4178         nil))))
4179
4180 (defun gnus-rebuild-thread (id &optional line)
4181   "Rebuild the thread containing ID.
4182 If LINE, insert the rebuilt thread starting on line LINE."
4183   (let ((buffer-read-only nil)
4184         old-pos current thread data)
4185     (if (not gnus-show-threads)
4186         (setq thread (list (car (gnus-id-to-thread id))))
4187       ;; Get the thread this article is part of.
4188       (setq thread (gnus-remove-thread id)))
4189     (setq old-pos (point-at-bol))
4190     (setq current (save-excursion
4191                     (and (re-search-backward "[\r\n]" nil t)
4192                          (gnus-summary-article-number))))
4193     ;; If this is a gathered thread, we have to go some re-gathering.
4194     (when (stringp (car thread))
4195       (let ((subject (car thread))
4196             roots thr)
4197         (setq thread (cdr thread))
4198         (while thread
4199           (unless (memq (setq thr (gnus-id-to-thread
4200                                    (gnus-root-id
4201                                     (mail-header-id (caar thread)))))
4202                         roots)
4203             (push thr roots))
4204           (setq thread (cdr thread)))
4205         ;; We now have all (unique) roots.
4206         (if (= (length roots) 1)
4207             ;; All the loose roots are now one solid root.
4208             (setq thread (car roots))
4209           (setq thread (cons subject (gnus-sort-threads roots))))))
4210     (let (threads)
4211       ;; We then insert this thread into the summary buffer.
4212       (when line
4213         (goto-char (point-min))
4214         (forward-line (1- line)))
4215       (let (gnus-newsgroup-data gnus-newsgroup-threads)
4216         (if gnus-show-threads
4217             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4218           (gnus-summary-prepare-unthreaded thread))
4219         (setq data (nreverse gnus-newsgroup-data))
4220         (setq threads gnus-newsgroup-threads))
4221       ;; We splice the new data into the data structure.
4222       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
4223       ;;!!! then we want to insert at the beginning of the buffer.
4224       ;;!!! That happens to be true with Gnus now, but that may
4225       ;;!!! change in the future.  Perhaps.
4226       (gnus-data-enter-list
4227        (if line nil current) data (- (point) old-pos))
4228       (setq gnus-newsgroup-threads
4229             (nconc threads gnus-newsgroup-threads))
4230       (gnus-data-compute-positions))))
4231
4232 (defun gnus-number-to-header (number)
4233   "Return the header for article NUMBER."
4234   (let ((headers gnus-newsgroup-headers))
4235     (while (and headers
4236                 (not (= number (mail-header-number (car headers)))))
4237       (pop headers))
4238     (when headers
4239       (car headers))))
4240
4241 (defun gnus-parent-headers (in-headers &optional generation)
4242   "Return the headers of the GENERATIONeth parent of HEADERS."
4243   (unless generation
4244     (setq generation 1))
4245   (let ((parent t)
4246         (headers in-headers)
4247         references)
4248     (while (and parent
4249                 (not (zerop generation))
4250                 (setq references (mail-header-references headers)))
4251       (setq headers (if (and references
4252                              (setq parent (gnus-parent-id references)))
4253                         (car (gnus-id-to-thread parent))
4254                       nil))
4255       (decf generation))
4256     (and (not (eq headers in-headers))
4257          headers)))
4258
4259 (defun gnus-id-to-thread (id)
4260   "Return the (sub-)thread where ID appears."
4261   (gnus-gethash id gnus-newsgroup-dependencies))
4262
4263 (defun gnus-id-to-article (id)
4264   "Return the article number of ID."
4265   (let ((thread (gnus-id-to-thread id)))
4266     (when (and thread
4267                (car thread))
4268       (mail-header-number (car thread)))))
4269
4270 (defun gnus-id-to-header (id)
4271   "Return the article headers of ID."
4272   (car (gnus-id-to-thread id)))
4273
4274 (defun gnus-article-displayed-root-p (article)
4275   "Say whether ARTICLE is a root(ish) article."
4276   (let ((level (gnus-summary-thread-level article))
4277         (refs (mail-header-references  (gnus-summary-article-header article)))
4278         particle)
4279     (cond
4280      ((null level) nil)
4281      ((zerop level) t)
4282      ((null refs) t)
4283      ((null (gnus-parent-id refs)) t)
4284      ((and (= 1 level)
4285            (null (setq particle (gnus-id-to-article
4286                                  (gnus-parent-id refs))))
4287            (null (gnus-summary-thread-level particle)))))))
4288
4289 (defun gnus-root-id (id)
4290   "Return the id of the root of the thread where ID appears."
4291   (let (last-id prev)
4292     (while (and id (setq prev (car (gnus-id-to-thread id))))
4293       (setq last-id id
4294             id (gnus-parent-id (mail-header-references prev))))
4295     last-id))
4296
4297 (defun gnus-articles-in-thread (thread)
4298   "Return the list of articles in THREAD."
4299   (cons (mail-header-number (car thread))
4300         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4301
4302 (defun gnus-remove-thread (id &optional dont-remove)
4303   "Remove the thread that has ID in it."
4304   (let (headers thread last-id)
4305     ;; First go up in this thread until we find the root.
4306     (setq last-id (gnus-root-id id)
4307           headers (message-flatten-list (gnus-id-to-thread last-id)))
4308     ;; We have now found the real root of this thread.  It might have
4309     ;; been gathered into some loose thread, so we have to search
4310     ;; through the threads to find the thread we wanted.
4311     (let ((threads gnus-newsgroup-threads)
4312           sub)
4313       (while threads
4314         (setq sub (car threads))
4315         (if (stringp (car sub))
4316             ;; This is a gathered thread, so we look at the roots
4317             ;; below it to find whether this article is in this
4318             ;; gathered root.
4319             (progn
4320               (setq sub (cdr sub))
4321               (while sub
4322                 (when (member (caar sub) headers)
4323                   (setq thread (car threads)
4324                         threads nil
4325                         sub nil))
4326                 (setq sub (cdr sub))))
4327           ;; It's an ordinary thread, so we check it.
4328           (when (eq (car sub) (car headers))
4329             (setq thread sub
4330                   threads nil)))
4331         (setq threads (cdr threads)))
4332       ;; If this article is in no thread, then it's a root.
4333       (if thread
4334           (unless dont-remove
4335             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4336         (setq thread (gnus-id-to-thread last-id)))
4337       (when thread
4338         (prog1
4339             thread                      ; We return this thread.
4340           (unless dont-remove
4341             (if (stringp (car thread))
4342                 (progn
4343                   ;; If we use dummy roots, then we have to remove the
4344                   ;; dummy root as well.
4345                   (when (eq gnus-summary-make-false-root 'dummy)
4346                     ;; We go to the dummy root by going to
4347                     ;; the first sub-"thread", and then one line up.
4348                     (gnus-summary-goto-article
4349                      (mail-header-number (caadr thread)))
4350                     (forward-line -1)
4351                     (gnus-delete-line)
4352                     (gnus-data-compute-positions))
4353                   (setq thread (cdr thread))
4354                   (while thread
4355                     (gnus-remove-thread-1 (car thread))
4356                     (setq thread (cdr thread))))
4357               (gnus-remove-thread-1 thread))))))))
4358
4359 (defun gnus-remove-thread-1 (thread)
4360   "Remove the thread THREAD recursively."
4361   (let ((number (mail-header-number (pop thread)))
4362         d)
4363     (setq thread (reverse thread))
4364     (while thread
4365       (gnus-remove-thread-1 (pop thread)))
4366     (when (setq d (gnus-data-find number))
4367       (goto-char (gnus-data-pos d))
4368       (gnus-summary-show-thread)
4369       (gnus-data-remove
4370        number
4371        (- (point-at-bol)
4372           (prog1
4373               (1+ (point-at-eol))
4374             (gnus-delete-line)))))))
4375
4376 (defun gnus-sort-threads-1 (threads func)
4377   (sort (mapcar (lambda (thread)
4378                   (cons (car thread)
4379                         (and (cdr thread)
4380                              (gnus-sort-threads-1 (cdr thread) func))))
4381                 threads) func))
4382
4383 (defun gnus-sort-threads (threads)
4384   "Sort THREADS."
4385   (if (not gnus-thread-sort-functions)
4386       threads
4387     (gnus-message 8 "Sorting threads...")
4388     (let ((max-lisp-eval-depth 5000))
4389       (prog1 (gnus-sort-threads-1
4390          threads
4391          (gnus-make-sort-function gnus-thread-sort-functions))
4392         (gnus-message 8 "Sorting threads...done")))))
4393
4394 (defun gnus-sort-articles (articles)
4395   "Sort ARTICLES."
4396   (when gnus-article-sort-functions
4397     (gnus-message 7 "Sorting articles...")
4398     (prog1
4399         (setq gnus-newsgroup-headers
4400               (sort articles (gnus-make-sort-function
4401                               gnus-article-sort-functions)))
4402       (gnus-message 7 "Sorting articles...done"))))
4403
4404 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4405 (defmacro gnus-thread-header (thread)
4406   "Return header of first article in THREAD.
4407 Note that THREAD must never, ever be anything else than a variable -
4408 using some other form will lead to serious barfage."
4409   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4410   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4411   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4412         (vector thread) 2))
4413
4414 (defsubst gnus-article-sort-by-number (h1 h2)
4415   "Sort articles by article number."
4416   (< (mail-header-number h1)
4417      (mail-header-number h2)))
4418
4419 (defun gnus-thread-sort-by-number (h1 h2)
4420   "Sort threads by root article number."
4421   (gnus-article-sort-by-number
4422    (gnus-thread-header h1) (gnus-thread-header h2)))
4423
4424 (defsubst gnus-article-sort-by-random (h1 h2)
4425   "Sort articles by article number."
4426   (zerop (random 2)))
4427
4428 (defun gnus-thread-sort-by-random (h1 h2)
4429   "Sort threads by root article number."
4430   (gnus-article-sort-by-random
4431    (gnus-thread-header h1) (gnus-thread-header h2)))
4432
4433 (defsubst gnus-article-sort-by-lines (h1 h2)
4434   "Sort articles by article Lines header."
4435   (< (mail-header-lines h1)
4436      (mail-header-lines h2)))
4437
4438 (defun gnus-thread-sort-by-lines (h1 h2)
4439   "Sort threads by root article Lines header."
4440   (gnus-article-sort-by-lines
4441    (gnus-thread-header h1) (gnus-thread-header h2)))
4442
4443 (defsubst gnus-article-sort-by-chars (h1 h2)
4444   "Sort articles by octet length."
4445   (< (mail-header-chars h1)
4446      (mail-header-chars h2)))
4447
4448 (defun gnus-thread-sort-by-chars (h1 h2)
4449   "Sort threads by root article octet length."
4450   (gnus-article-sort-by-chars
4451    (gnus-thread-header h1) (gnus-thread-header h2)))
4452
4453 (defsubst gnus-article-sort-by-author (h1 h2)
4454   "Sort articles by root author."
4455   (string-lessp
4456    (let ((extract (funcall
4457                    gnus-extract-address-components
4458                    (mail-header-from h1))))
4459      (or (car extract) (cadr extract) ""))
4460    (let ((extract (funcall
4461                    gnus-extract-address-components
4462                    (mail-header-from h2))))
4463      (or (car extract) (cadr extract) ""))))
4464
4465 (defun gnus-thread-sort-by-author (h1 h2)
4466   "Sort threads by root author."
4467   (gnus-article-sort-by-author
4468    (gnus-thread-header h1)  (gnus-thread-header h2)))
4469
4470 (defsubst gnus-article-sort-by-subject (h1 h2)
4471   "Sort articles by root subject."
4472   (string-lessp
4473    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4474    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4475
4476 (defun gnus-thread-sort-by-subject (h1 h2)
4477   "Sort threads by root subject."
4478   (gnus-article-sort-by-subject
4479    (gnus-thread-header h1) (gnus-thread-header h2)))
4480
4481 (defsubst gnus-article-sort-by-date (h1 h2)
4482   "Sort articles by root article date."
4483   (time-less-p
4484    (gnus-date-get-time (mail-header-date h1))
4485    (gnus-date-get-time (mail-header-date h2))))
4486
4487 (defun gnus-thread-sort-by-date (h1 h2)
4488   "Sort threads by root article date."
4489   (gnus-article-sort-by-date
4490    (gnus-thread-header h1) (gnus-thread-header h2)))
4491
4492 (defsubst gnus-article-sort-by-score (h1 h2)
4493   "Sort articles by root article score.
4494 Unscored articles will be counted as having a score of zero."
4495   (> (or (cdr (assq (mail-header-number h1)
4496                     gnus-newsgroup-scored))
4497          gnus-summary-default-score 0)
4498      (or (cdr (assq (mail-header-number h2)
4499                     gnus-newsgroup-scored))
4500          gnus-summary-default-score 0)))
4501
4502 (defun gnus-thread-sort-by-score (h1 h2)
4503   "Sort threads by root article score."
4504   (gnus-article-sort-by-score
4505    (gnus-thread-header h1) (gnus-thread-header h2)))
4506
4507 (defun gnus-thread-sort-by-total-score (h1 h2)
4508   "Sort threads by the sum of all scores in the thread.
4509 Unscored articles will be counted as having a score of zero."
4510   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4511
4512 (defun gnus-thread-total-score (thread)
4513   ;; This function find the total score of THREAD.
4514   (cond
4515    ((null thread)
4516     0)
4517    ((consp thread)
4518     (if (stringp (car thread))
4519         (apply gnus-thread-score-function 0
4520                (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4521       (gnus-thread-total-score-1 thread)))
4522    (t
4523     (gnus-thread-total-score-1 (list thread)))))
4524
4525 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4526   "Sort threads such that the thread with the most recently arrived article comes first."
4527   (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4528
4529 (defun gnus-thread-highest-number (thread)
4530   "Return the highest article number in THREAD."
4531   (apply 'max (mapcar (lambda (header)
4532                         (mail-header-number header))
4533                       (message-flatten-list thread))))
4534
4535 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4536   "Sort threads such that the thread with the most recently dated article comes first."
4537   (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4538
4539 (defun gnus-thread-latest-date (thread)
4540   "Return the highest article date in THREAD."
4541   (let ((previous-time 0))
4542     (apply 'max
4543            (mapcar
4544             (lambda (header)
4545               (setq previous-time
4546                     (condition-case ()
4547                         (time-to-seconds (mail-header-parse-date
4548                                           (mail-header-date header)))
4549                       (error previous-time))))
4550             (sort
4551              (message-flatten-list thread)
4552              (lambda (h1 h2)
4553                (< (mail-header-number h1)
4554                   (mail-header-number h2))))))))
4555
4556 (defun gnus-thread-total-score-1 (root)
4557   ;; This function find the total score of the thread below ROOT.
4558   (setq root (car root))
4559   (apply gnus-thread-score-function
4560          (or (append
4561               (mapcar 'gnus-thread-total-score
4562                       (cdr (gnus-id-to-thread (mail-header-id root))))
4563               (when (> (mail-header-number root) 0)
4564                 (list (or (cdr (assq (mail-header-number root)
4565                                      gnus-newsgroup-scored))
4566                           gnus-summary-default-score 0))))
4567              (list gnus-summary-default-score)
4568              '(0))))
4569
4570 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
4571 (defvar gnus-tmp-prev-subject nil)
4572 (defvar gnus-tmp-false-parent nil)
4573 (defvar gnus-tmp-root-expunged nil)
4574 (defvar gnus-tmp-dummy-line nil)
4575
4576 (eval-when-compile (defvar gnus-tmp-header))
4577 (defun gnus-extra-header (type &optional header)
4578   "Return the extra header of TYPE."
4579   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
4580       ""))
4581
4582 (defvar gnus-tmp-thread-tree-header-string "")
4583
4584 (defcustom gnus-sum-thread-tree-root "> "
4585   "With %B spec, used for the root of a thread.
4586 If nil, use subject instead."
4587   :type '(radio (const :format "%v  " nil) (string :size 0))
4588   :group 'gnus-thread)
4589 (defcustom gnus-sum-thread-tree-false-root "> "
4590   "With %B spec, used for a false root of a thread.
4591 If nil, use subject instead."
4592   :type '(radio (const :format "%v  " nil) (string :size 0))
4593   :group 'gnus-thread)
4594 (defcustom gnus-sum-thread-tree-single-indent ""
4595   "With %B spec, used for a thread with just one message.
4596 If nil, use subject instead."
4597   :type '(radio (const :format "%v  " nil) (string :size 0))
4598   :group 'gnus-thread)
4599 (defcustom gnus-sum-thread-tree-vertical "| "
4600   "With %B spec, used for drawing a vertical line."
4601   :type 'string
4602   :group 'gnus-thread)
4603 (defcustom gnus-sum-thread-tree-indent "  "
4604   "With %B spec, used for indenting."
4605   :type 'string
4606   :group 'gnus-thread)
4607 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
4608   "With %B spec, used for a leaf with brothers."
4609   :type 'string
4610   :group 'gnus-thread)
4611 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
4612   "With %B spec, used for a leaf without brothers."
4613   :type 'string
4614   :group 'gnus-thread)
4615
4616 (defun gnus-summary-prepare-threads (threads)
4617   "Prepare summary buffer from THREADS and indentation LEVEL.
4618 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
4619 or a straight list of headers."
4620   (gnus-message 7 "Generating summary...")
4621
4622   (setq gnus-newsgroup-threads threads)
4623   (beginning-of-line)
4624
4625   (let ((gnus-tmp-level 0)
4626         (default-score (or gnus-summary-default-score 0))
4627         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
4628         (building-line-count gnus-summary-display-while-building)
4629         (building-count (integerp gnus-summary-display-while-building))
4630         thread number subject stack state gnus-tmp-gathered beg-match
4631         new-roots gnus-tmp-new-adopts thread-end simp-subject
4632         gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
4633         gnus-tmp-replied gnus-tmp-subject-or-nil
4634         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
4635         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
4636         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
4637         tree-stack)
4638
4639     (setq gnus-tmp-prev-subject nil
4640           gnus-tmp-thread-tree-header-string "")
4641
4642     (if (vectorp (car threads))
4643         ;; If this is a straight (sic) list of headers, then a
4644         ;; threaded summary display isn't required, so we just create
4645         ;; an unthreaded one.
4646         (gnus-summary-prepare-unthreaded threads)
4647
4648       ;; Do the threaded display.
4649
4650       (if gnus-summary-display-while-building
4651           (switch-to-buffer (buffer-name)))
4652       (while (or threads stack gnus-tmp-new-adopts new-roots)
4653
4654         (if (and (= gnus-tmp-level 0)
4655                  (or (not stack)
4656                      (= (caar stack) 0))
4657                  (not gnus-tmp-false-parent)
4658                  (or gnus-tmp-new-adopts new-roots))
4659             (if gnus-tmp-new-adopts
4660                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
4661                       thread (list (car gnus-tmp-new-adopts))
4662                       gnus-tmp-header (caar thread)
4663                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
4664               (when new-roots
4665                 (setq thread (list (car new-roots))
4666                       gnus-tmp-header (caar thread)
4667                       new-roots (cdr new-roots))))
4668
4669           (if threads
4670               ;; If there are some threads, we do them before the
4671               ;; threads on the stack.
4672               (setq thread threads
4673                     gnus-tmp-header (caar thread))
4674             ;; There were no current threads, so we pop something off
4675             ;; the stack.
4676             (setq state (car stack)
4677                   gnus-tmp-level (car state)
4678                   tree-stack (cadr state)
4679                   thread (caddr state)
4680                   stack (cdr stack)
4681                   gnus-tmp-header (caar thread))))
4682
4683         (setq gnus-tmp-false-parent nil)
4684         (setq gnus-tmp-root-expunged nil)
4685         (setq thread-end nil)
4686
4687         (if (stringp gnus-tmp-header)
4688             ;; The header is a dummy root.
4689             (cond
4690              ((eq gnus-summary-make-false-root 'adopt)
4691               ;; We let the first article adopt the rest.
4692               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
4693                                                (cddar thread)))
4694               (setq gnus-tmp-gathered
4695                     (nconc (mapcar
4696                             (lambda (h) (mail-header-number (car h)))
4697                             (cddar thread))
4698                            gnus-tmp-gathered))
4699               (setq thread (cons (list (caar thread)
4700                                        (cadar thread))
4701                                  (cdr thread)))
4702               (setq gnus-tmp-level -1
4703                     gnus-tmp-false-parent t))
4704              ((eq gnus-summary-make-false-root 'empty)
4705               ;; We print adopted articles with empty subject fields.
4706               (setq gnus-tmp-gathered
4707                     (nconc (mapcar
4708                             (lambda (h) (mail-header-number (car h)))
4709                             (cddar thread))
4710                            gnus-tmp-gathered))
4711               (setq gnus-tmp-level -1))
4712              ((eq gnus-summary-make-false-root 'dummy)
4713               ;; We remember that we probably want to output a dummy
4714               ;; root.
4715               (setq gnus-tmp-dummy-line gnus-tmp-header)
4716               (setq gnus-tmp-prev-subject gnus-tmp-header))
4717              (t
4718               ;; We do not make a root for the gathered
4719               ;; sub-threads at all.
4720               (setq gnus-tmp-level -1)))
4721
4722           (setq number (mail-header-number gnus-tmp-header)
4723                 subject (mail-header-subject gnus-tmp-header)
4724                 simp-subject (gnus-simplify-subject-fully subject))
4725
4726           (cond
4727            ;; If the thread has changed subject, we might want to make
4728            ;; this subthread into a root.
4729            ((and (null gnus-thread-ignore-subject)
4730                  (not (zerop gnus-tmp-level))
4731                  gnus-tmp-prev-subject
4732                  (not (string= gnus-tmp-prev-subject simp-subject)))
4733             (setq new-roots (nconc new-roots (list (car thread)))
4734                   thread-end t
4735                   gnus-tmp-header nil))
4736            ;; If the article lies outside the current limit,
4737            ;; then we do not display it.
4738            ((not (memq number gnus-newsgroup-limit))
4739             (setq gnus-tmp-gathered
4740                   (nconc (mapcar
4741                           (lambda (h) (mail-header-number (car h)))
4742                           (cdar thread))
4743                          gnus-tmp-gathered))
4744             (setq gnus-tmp-new-adopts (if (cdar thread)
4745                                           (append gnus-tmp-new-adopts
4746                                                   (cdar thread))
4747                                         gnus-tmp-new-adopts)
4748                   thread-end t
4749                   gnus-tmp-header nil)
4750             (when (zerop gnus-tmp-level)
4751               (setq gnus-tmp-root-expunged t)))
4752            ;; Perhaps this article is to be marked as read?
4753            ((and gnus-summary-mark-below
4754                  (< (or (cdr (assq number gnus-newsgroup-scored))
4755                         default-score)
4756                     gnus-summary-mark-below)
4757                  ;; Don't touch sparse articles.
4758                  (not (gnus-summary-article-sparse-p number))
4759                  (not (gnus-summary-article-ancient-p number)))
4760             (setq gnus-newsgroup-unreads
4761                   (delq number gnus-newsgroup-unreads))
4762             (if gnus-newsgroup-auto-expire
4763                 (setq gnus-newsgroup-expirable
4764                       (gnus-add-to-sorted-list
4765                        gnus-newsgroup-expirable number))
4766               (push (cons number gnus-low-score-mark)
4767                     gnus-newsgroup-reads))))
4768
4769           (when gnus-tmp-header
4770             ;; We may have an old dummy line to output before this
4771             ;; article.
4772             (when (and gnus-tmp-dummy-line
4773                        (gnus-subject-equal
4774                         gnus-tmp-dummy-line
4775                         (mail-header-subject gnus-tmp-header)))
4776               (gnus-summary-insert-dummy-line
4777                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
4778               (setq gnus-tmp-dummy-line nil))
4779
4780             ;; Compute the mark.
4781             (setq gnus-tmp-unread (gnus-article-mark number))
4782
4783             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
4784                                   gnus-tmp-header gnus-tmp-level)
4785                   gnus-newsgroup-data)
4786
4787             ;; Actually insert the line.
4788             (setq
4789              gnus-tmp-subject-or-nil
4790              (cond
4791               ((and gnus-thread-ignore-subject
4792                     gnus-tmp-prev-subject
4793                     (not (string= gnus-tmp-prev-subject simp-subject)))
4794                subject)
4795               ((zerop gnus-tmp-level)
4796                (if (and (eq gnus-summary-make-false-root 'empty)
4797                         (memq number gnus-tmp-gathered)
4798                         gnus-tmp-prev-subject
4799                         (string= gnus-tmp-prev-subject simp-subject))
4800                    gnus-summary-same-subject
4801                  subject))
4802               (t gnus-summary-same-subject)))
4803             (if (and (eq gnus-summary-make-false-root 'adopt)
4804                      (= gnus-tmp-level 1)
4805                      (memq number gnus-tmp-gathered))
4806                 (setq gnus-tmp-opening-bracket ?\<
4807                       gnus-tmp-closing-bracket ?\>)
4808               (setq gnus-tmp-opening-bracket ?\[
4809                     gnus-tmp-closing-bracket ?\]))
4810             (setq
4811              gnus-tmp-indentation
4812              (aref gnus-thread-indent-array gnus-tmp-level)
4813              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4814              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4815                                 gnus-summary-default-score 0)
4816              gnus-tmp-score-char
4817              (if (or (null gnus-summary-default-score)
4818                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4819                          gnus-summary-zcore-fuzz))
4820                  ?                      ;Whitespace
4821                (if (< gnus-tmp-score gnus-summary-default-score)
4822                    gnus-score-below-mark gnus-score-over-mark))
4823              gnus-tmp-replied
4824              (cond ((memq number gnus-newsgroup-processable)
4825                     gnus-process-mark)
4826                    ((memq number gnus-newsgroup-cached)
4827                     gnus-cached-mark)
4828                    ((memq number gnus-newsgroup-replied)
4829                     gnus-replied-mark)
4830                    ((memq number gnus-newsgroup-forwarded)
4831                     gnus-forwarded-mark)
4832                    ((memq number gnus-newsgroup-saved)
4833                     gnus-saved-mark)
4834                    ((memq number gnus-newsgroup-recent)
4835                     gnus-recent-mark)
4836                    ((memq number gnus-newsgroup-unseen)
4837                     gnus-unseen-mark)
4838                    (t gnus-no-mark))
4839              gnus-tmp-downloaded
4840              (cond ((memq number gnus-newsgroup-undownloaded)
4841                     gnus-undownloaded-mark)
4842                    (gnus-newsgroup-agentized
4843                     gnus-downloaded-mark)
4844                    (t
4845                     gnus-no-mark))
4846              gnus-tmp-from (mail-header-from gnus-tmp-header)
4847              gnus-tmp-name
4848              (cond
4849               ((string-match "<[^>]+> *$" gnus-tmp-from)
4850                (setq beg-match (match-beginning 0))
4851                (or (and (string-match "^\".+\"" gnus-tmp-from)
4852                         (substring gnus-tmp-from 1 (1- (match-end 0))))
4853                    (substring gnus-tmp-from 0 beg-match)))
4854               ((string-match "(.+)" gnus-tmp-from)
4855                (substring gnus-tmp-from
4856                           (1+ (match-beginning 0)) (1- (match-end 0))))
4857               (t gnus-tmp-from))
4858
4859              ;; Do the %B string
4860              gnus-tmp-thread-tree-header-string
4861              (cond
4862               ((not gnus-show-threads) "")
4863               ((zerop gnus-tmp-level)
4864                (cond ((cdar thread)
4865                       (or gnus-sum-thread-tree-root subject))
4866                      (gnus-tmp-new-adopts
4867                       (or gnus-sum-thread-tree-false-root subject))
4868                      (t
4869                       (or gnus-sum-thread-tree-single-indent subject))))
4870               (t
4871                (concat (apply 'concat
4872                               (mapcar (lambda (item)
4873                                         (if (= item 1)
4874                                             gnus-sum-thread-tree-vertical
4875                                           gnus-sum-thread-tree-indent))
4876                                       (cdr (reverse tree-stack))))
4877                        (if (nth 1 thread)
4878                            gnus-sum-thread-tree-leaf-with-other
4879                          gnus-sum-thread-tree-single-leaf)))))
4880             (when (string= gnus-tmp-name "")
4881               (setq gnus-tmp-name gnus-tmp-from))
4882             (unless (numberp gnus-tmp-lines)
4883               (setq gnus-tmp-lines -1))
4884             (if (= gnus-tmp-lines -1)
4885                 (setq gnus-tmp-lines "?")
4886               (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
4887               (gnus-put-text-property
4888              (point)
4889              (progn (eval gnus-summary-line-format-spec) (point))
4890                'gnus-number number)
4891             (when gnus-visual-p
4892               (forward-line -1)
4893               (gnus-run-hooks 'gnus-summary-update-hook)
4894               (forward-line 1))
4895
4896             (setq gnus-tmp-prev-subject simp-subject)))
4897
4898         (when (nth 1 thread)
4899           (push (list (max 0 gnus-tmp-level)
4900                       (copy-sequence tree-stack)
4901                       (nthcdr 1 thread))
4902                 stack))
4903         (push (if (nth 1 thread) 1 0) tree-stack)
4904         (incf gnus-tmp-level)
4905         (setq threads (if thread-end nil (cdar thread)))
4906         (if gnus-summary-display-while-building
4907             (if building-count
4908                 (progn
4909                   ;; use a set frequency
4910                   (setq building-line-count (1- building-line-count))
4911                   (when (= building-line-count 0)
4912                     (sit-for 0)
4913                     (setq building-line-count
4914                           gnus-summary-display-while-building)))
4915               ;; always
4916               (sit-for 0)))
4917         (unless threads
4918           (setq gnus-tmp-level 0)))))
4919   (gnus-message 7 "Generating summary...done"))
4920
4921 (defun gnus-summary-prepare-unthreaded (headers)
4922   "Generate an unthreaded summary buffer based on HEADERS."
4923   (let (header number mark)
4924
4925     (beginning-of-line)
4926
4927     (while headers
4928       ;; We may have to root out some bad articles...
4929       (when (memq (setq number (mail-header-number
4930                                 (setq header (pop headers))))
4931                   gnus-newsgroup-limit)
4932         ;; Mark article as read when it has a low score.
4933         (when (and gnus-summary-mark-below
4934                    (< (or (cdr (assq number gnus-newsgroup-scored))
4935                           gnus-summary-default-score 0)
4936                       gnus-summary-mark-below)
4937                    (not (gnus-summary-article-ancient-p number)))
4938           (setq gnus-newsgroup-unreads
4939                 (delq number gnus-newsgroup-unreads))
4940           (if gnus-newsgroup-auto-expire
4941               (push number gnus-newsgroup-expirable)
4942             (push (cons number gnus-low-score-mark)
4943                   gnus-newsgroup-reads)))
4944
4945         (setq mark (gnus-article-mark number))
4946         (push (gnus-data-make number mark (1+ (point)) header 0)
4947               gnus-newsgroup-data)
4948         (gnus-summary-insert-line
4949          header 0 number
4950          (memq number gnus-newsgroup-undownloaded)
4951          mark (memq number gnus-newsgroup-replied)
4952          (memq number gnus-newsgroup-expirable)
4953          (mail-header-subject header) nil
4954          (cdr (assq number gnus-newsgroup-scored))
4955          (memq number gnus-newsgroup-processable))))))
4956
4957 (defun gnus-summary-remove-list-identifiers ()
4958   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
4959   (let ((regexp (if (consp gnus-list-identifiers)
4960                     (mapconcat 'identity gnus-list-identifiers " *\\|")
4961                   gnus-list-identifiers))
4962         changed subject)
4963     (when regexp
4964       (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
4965       (dolist (header gnus-newsgroup-headers)
4966         (setq subject (mail-header-subject header)
4967               changed nil)
4968         (while (string-match regexp subject)
4969           (setq subject
4970                 (concat (substring subject 0 (match-beginning 1))
4971                         (substring subject (match-end 0)))
4972                 changed t))
4973         (when changed
4974           (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
4975             (setq subject
4976                   (concat (substring subject 0 (match-beginning 1))
4977                           (substring subject (match-end 1)))))
4978           (mail-header-set-subject header subject))))))
4979
4980 (defun gnus-fetch-headers (articles)
4981   "Fetch headers of ARTICLES."
4982   (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
4983     (gnus-message 5 "Fetching headers for %s..." name)
4984     (prog1
4985         (if (eq 'nov
4986                 (setq gnus-headers-retrieved-by
4987                       (gnus-retrieve-headers
4988                        articles gnus-newsgroup-name
4989                        ;; We might want to fetch old headers, but
4990                        ;; not if there is only 1 article.
4991                        (and (or (and
4992                                  (not (eq gnus-fetch-old-headers 'some))
4993                                  (not (numberp gnus-fetch-old-headers)))
4994                                 (> (length articles) 1))
4995                             gnus-fetch-old-headers))))
4996             (gnus-get-newsgroup-headers-xover
4997              articles nil nil gnus-newsgroup-name t)
4998           (gnus-get-newsgroup-headers))
4999       (gnus-message 5 "Fetching headers for %s...done" name))))
5000
5001 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5002   "Select newsgroup GROUP.
5003 If READ-ALL is non-nil, all articles in the group are selected.
5004 If SELECT-ARTICLES, only select those articles from GROUP."
5005   (let* ((entry (gnus-group-entry group))
5006          ;;!!! Dirty hack; should be removed.
5007          (gnus-summary-ignore-duplicates
5008           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5009               t
5010             gnus-summary-ignore-duplicates))
5011          (info (nth 2 entry))
5012          articles fetched-articles cached)
5013
5014     (unless (gnus-check-server
5015              (set (make-local-variable 'gnus-current-select-method)
5016                   (gnus-find-method-for-group group)))
5017       (error "Couldn't open server"))
5018
5019     (or (and entry (not (eq (car entry) t))) ; Either it's active...
5020         (gnus-activate-group group)     ; Or we can activate it...
5021         (progn                          ; Or we bug out.
5022           (when (equal major-mode 'gnus-summary-mode)
5023             (gnus-kill-buffer (current-buffer)))
5024           (error "Couldn't activate group %s: %s"
5025                  group (gnus-status-message group))))
5026
5027     (unless (gnus-request-group group t)
5028       (when (equal major-mode 'gnus-summary-mode)
5029         (gnus-kill-buffer (current-buffer)))
5030       (error "Couldn't request group %s: %s"
5031              group (gnus-status-message group)))
5032
5033     (when gnus-agent
5034       ;; The agent may be storing articles that are no longer in the
5035       ;; server's active range.  If that is the case, the active range
5036       ;; needs to be expanded such that the agent's articles can be
5037       ;; included in the summary.
5038       (let* ((gnus-command-method (gnus-find-method-for-group group))
5039              (alist (gnus-agent-load-alist group))
5040              (active (gnus-active group)))
5041         (if (and (car alist)
5042                  (< (caar alist) (car active)))
5043             (gnus-set-active group (cons (caar alist) (cdr active)))))
5044
5045       (setq gnus-summary-use-undownloaded-faces
5046             (gnus-agent-find-parameter
5047              group
5048              'agent-enable-undownloaded-faces)))
5049
5050     (setq gnus-newsgroup-name group
5051           gnus-newsgroup-unselected nil
5052           gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5053
5054     (let ((display (gnus-group-find-parameter group 'display)))
5055       (setq gnus-newsgroup-display
5056             (cond
5057              ((not (zerop (or (car-safe read-all) 0)))
5058               ;; The user entered the group with C-u SPC/RET, let's show
5059               ;; all articles.
5060               'gnus-not-ignore)
5061              ((eq display 'all)
5062               'gnus-not-ignore)
5063              ((arrayp display)
5064               (gnus-summary-display-make-predicate (mapcar 'identity display)))
5065              ((numberp display)
5066               ;; The following is probably the "correct" solution, but
5067               ;; it makes Gnus fetch all headers and then limit the
5068               ;; articles (which is slow), so instead we hack the
5069               ;; select-articles parameter instead. -- Simon Josefsson
5070               ;; <jas@kth.se>
5071               ;;
5072               ;; (gnus-byte-compile
5073               ;;  `(lambda () (> number ,(- (cdr (gnus-active group))
5074               ;;                         display)))))
5075               (setq select-articles
5076                     (gnus-uncompress-range
5077                      (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5078                              (if (> tmp 0)
5079                                  tmp
5080                                1))
5081                            (cdr (gnus-active group)))))
5082               nil)
5083              (t
5084               nil))))
5085
5086     (gnus-summary-setup-default-charset)
5087
5088     ;; Kludge to avoid having cached articles nixed out in virtual groups.
5089     (when (gnus-virtual-group-p group)
5090       (setq cached gnus-newsgroup-cached))
5091
5092     (setq gnus-newsgroup-unreads
5093           (gnus-sorted-ndifference
5094            (gnus-sorted-ndifference gnus-newsgroup-unreads
5095                                     gnus-newsgroup-marked)
5096            gnus-newsgroup-dormant))
5097
5098     (setq gnus-newsgroup-processable nil)
5099
5100     (gnus-update-read-articles group gnus-newsgroup-unreads)
5101
5102     ;; Adjust and set lists of article marks.
5103     (when info
5104       (gnus-adjust-marked-articles info))
5105     (if (setq articles select-articles)
5106         (setq gnus-newsgroup-unselected
5107               (gnus-sorted-difference gnus-newsgroup-unreads articles))
5108       (setq articles (gnus-articles-to-read group read-all)))
5109
5110     (cond
5111      ((null articles)
5112       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5113       'quit)
5114      ((eq articles 0) nil)
5115      (t
5116       ;; Init the dependencies hash table.
5117       (setq gnus-newsgroup-dependencies
5118             (gnus-make-hashtable (length articles)))
5119       (gnus-set-global-variables)
5120       ;; Retrieve the headers and read them in.
5121
5122       (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5123
5124       ;; Kludge to avoid having cached articles nixed out in virtual groups.
5125       (when cached
5126         (setq gnus-newsgroup-cached cached))
5127
5128       ;; Suppress duplicates?
5129       (when gnus-suppress-duplicates
5130         (gnus-dup-suppress-articles))
5131
5132       ;; Set the initial limit.
5133       (setq gnus-newsgroup-limit (copy-sequence articles))
5134       ;; Remove canceled articles from the list of unread articles.
5135       (setq fetched-articles
5136             (mapcar (lambda (headers) (mail-header-number headers))
5137                     gnus-newsgroup-headers))
5138       (setq gnus-newsgroup-articles fetched-articles)
5139       (setq gnus-newsgroup-unreads
5140             (gnus-sorted-nintersection
5141              gnus-newsgroup-unreads fetched-articles))
5142       (gnus-compute-unseen-list)
5143
5144       ;; Removed marked articles that do not exist.
5145       (gnus-update-missing-marks
5146        (gnus-sorted-difference articles fetched-articles))
5147       ;; We might want to build some more threads first.
5148       (when (and gnus-fetch-old-headers
5149                  (eq gnus-headers-retrieved-by 'nov))
5150         (if (eq gnus-fetch-old-headers 'invisible)
5151             (gnus-build-all-threads)
5152           (gnus-build-old-threads)))
5153       ;; Let the Gnus agent mark articles as read.
5154       (when gnus-agent
5155         (gnus-agent-get-undownloaded-list))
5156       ;; Remove list identifiers from subject
5157       (when gnus-list-identifiers
5158         (gnus-summary-remove-list-identifiers))
5159       ;; Check whether auto-expire is to be done in this group.
5160       (setq gnus-newsgroup-auto-expire
5161             (gnus-group-auto-expirable-p group))
5162       ;; Set up the article buffer now, if necessary.
5163       (unless gnus-single-article-buffer
5164         (gnus-article-setup-buffer))
5165       ;; First and last article in this newsgroup.
5166       (when gnus-newsgroup-headers
5167         (setq gnus-newsgroup-begin
5168               (mail-header-number (car gnus-newsgroup-headers))
5169               gnus-newsgroup-end
5170               (mail-header-number
5171                (gnus-last-element gnus-newsgroup-headers))))
5172       ;; GROUP is successfully selected.
5173       (or gnus-newsgroup-headers t)))))
5174
5175 (defun gnus-compute-unseen-list ()
5176   ;; The `seen' marks are treated specially.
5177   (if (not gnus-newsgroup-seen)
5178       (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5179     (setq gnus-newsgroup-unseen
5180           (gnus-inverse-list-range-intersection
5181            gnus-newsgroup-articles gnus-newsgroup-seen))))
5182
5183 (defun gnus-summary-display-make-predicate (display)
5184   (require 'gnus-agent)
5185   (when (= (length display) 1)
5186     (setq display (car display)))
5187   (unless gnus-summary-display-cache
5188     (dolist (elem (append '((unread . unread)
5189                             (read . read)
5190                             (unseen . unseen))
5191                           gnus-article-mark-lists))
5192       (push (cons (cdr elem)
5193                   (gnus-byte-compile
5194                    `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5195             gnus-summary-display-cache)))
5196   (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5197         (gnus-category-predicate-cache gnus-summary-display-cache))
5198     (gnus-get-predicate display)))
5199
5200 ;; Uses the dynamically bound `number' variable.
5201 (eval-when-compile
5202   (defvar number))
5203 (defun gnus-article-marked-p (type &optional article)
5204   (let ((article (or article number)))
5205     (cond
5206      ((eq type 'tick)
5207       (memq article gnus-newsgroup-marked))
5208      ((eq type 'spam)
5209       (memq article gnus-newsgroup-spam-marked))
5210      ((eq type 'unsend)
5211       (memq article gnus-newsgroup-unsendable))
5212      ((eq type 'undownload)
5213       (memq article gnus-newsgroup-undownloaded))
5214      ((eq type 'download)
5215       (memq article gnus-newsgroup-downloadable))
5216      ((eq type 'unread)
5217       (memq article gnus-newsgroup-unreads))
5218      ((eq type 'read)
5219       (memq article gnus-newsgroup-reads))
5220      ((eq type 'dormant)
5221       (memq article gnus-newsgroup-dormant) )
5222      ((eq type 'expire)
5223       (memq article gnus-newsgroup-expirable))
5224      ((eq type 'reply)
5225       (memq article gnus-newsgroup-replied))
5226      ((eq type 'killed)
5227       (memq article gnus-newsgroup-killed))
5228      ((eq type 'bookmark)
5229       (assq article gnus-newsgroup-bookmarks))
5230      ((eq type 'score)
5231       (assq article gnus-newsgroup-scored))
5232      ((eq type 'save)
5233       (memq article gnus-newsgroup-saved))
5234      ((eq type 'cache)
5235       (memq article gnus-newsgroup-cached))
5236      ((eq type 'forward)
5237       (memq article gnus-newsgroup-forwarded))
5238      ((eq type 'seen)
5239       (not (memq article gnus-newsgroup-unseen)))
5240      ((eq type 'recent)
5241       (memq article gnus-newsgroup-recent))
5242      (t t))))
5243
5244 (defun gnus-articles-to-read (group &optional read-all)
5245   "Find out what articles the user wants to read."
5246   (let* ((display (gnus-group-find-parameter group 'display))
5247          (articles
5248           ;; Select all articles if `read-all' is non-nil, or if there
5249           ;; are no unread articles.
5250           (if (or read-all
5251                   (and (zerop (length gnus-newsgroup-marked))
5252                        (zerop (length gnus-newsgroup-unreads)))
5253                   ;; Fetch all if the predicate is non-nil.
5254                   gnus-newsgroup-display)
5255               ;; We want to select the headers for all the articles in
5256               ;; the group, so we select either all the active
5257               ;; articles in the group, or (if that's nil), the
5258               ;; articles in the cache.
5259               (or
5260                (gnus-uncompress-range (gnus-active group))
5261                (gnus-cache-articles-in-group group))
5262             ;; Select only the "normal" subset of articles.
5263             (gnus-sorted-nunion
5264              (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5265              gnus-newsgroup-unreads)))
5266          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5267          (scored (length scored-list))
5268          (number (length articles))
5269          (marked (+ (length gnus-newsgroup-marked)
5270                     (length gnus-newsgroup-dormant)))
5271          (select
5272           (cond
5273            ((numberp read-all)
5274             read-all)
5275            ((numberp gnus-newsgroup-display)
5276             gnus-newsgroup-display)
5277            (t
5278             (condition-case ()
5279                 (cond
5280                  ((and (or (<= scored marked) (= scored number))
5281                        (numberp gnus-large-newsgroup)
5282                        (> number gnus-large-newsgroup))
5283                   (let* ((cursor-in-echo-area nil)
5284                          (initial (gnus-parameter-large-newsgroup-initial
5285                                    gnus-newsgroup-name))
5286                          (input
5287                           (read-string
5288                            (format
5289                             "How many articles from %s (%s %d): "
5290                             (gnus-limit-string
5291                              (gnus-group-decoded-name gnus-newsgroup-name)
5292                              35)
5293                             (if initial "max" "default")
5294                             number)
5295                            (if initial
5296                                (cons (number-to-string initial)
5297                                      0)))))
5298                     (if (string-match "^[ \t]*$" input) number input)))
5299                  ((and (> scored marked) (< scored number)
5300                        (> (- scored number) 20))
5301                   (let ((input
5302                          (read-string
5303                           (format "%s %s (%d scored, %d total): "
5304                                   "How many articles from"
5305                                   (gnus-group-decoded-name group)
5306                                   scored number))))
5307                     (if (string-match "^[ \t]*$" input)
5308                         number input)))
5309                  (t number))
5310               (quit
5311                (message "Quit getting the articles to read")
5312                nil))))))
5313     (setq select (if (stringp select) (string-to-number select) select))
5314     (if (or (null select) (zerop select))
5315         select
5316       (if (and (not (zerop scored)) (<= (abs select) scored))
5317           (progn
5318             (setq articles (sort scored-list '<))
5319             (setq number (length articles)))
5320         (setq articles (copy-sequence articles)))
5321
5322       (when (< (abs select) number)
5323         (if (< select 0)
5324             ;; Select the N oldest articles.
5325             (setcdr (nthcdr (1- (abs select)) articles) nil)
5326           ;; Select the N most recent articles.
5327           (setq articles (nthcdr (- number select) articles))))
5328       (setq gnus-newsgroup-unselected
5329             (gnus-sorted-difference gnus-newsgroup-unreads articles))
5330       (when gnus-alter-articles-to-read-function
5331         (setq articles
5332               (sort
5333                (funcall gnus-alter-articles-to-read-function
5334                         gnus-newsgroup-name articles)
5335                '<)))
5336       articles)))
5337
5338 (defun gnus-killed-articles (killed articles)
5339   (let (out)
5340     (while articles
5341       (when (inline (gnus-member-of-range (car articles) killed))
5342         (push (car articles) out))
5343       (setq articles (cdr articles)))
5344     out))
5345
5346 (defun gnus-uncompress-marks (marks)
5347   "Uncompress the mark ranges in MARKS."
5348   (let ((uncompressed '(score bookmark))
5349         out)
5350     (while marks
5351       (if (memq (caar marks) uncompressed)
5352           (push (car marks) out)
5353         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5354       (setq marks (cdr marks)))
5355     out))
5356
5357 (defun gnus-article-mark-to-type (mark)
5358   "Return the type of MARK."
5359   (or (cadr (assq mark gnus-article-special-mark-lists))
5360       'list))
5361
5362 (defun gnus-article-unpropagatable-p (mark)
5363   "Return whether MARK should be propagated to back end."
5364   (memq mark gnus-article-unpropagated-mark-lists))
5365
5366 (defun gnus-adjust-marked-articles (info)
5367   "Set all article lists and remove all marks that are no longer valid."
5368   (let* ((marked-lists (gnus-info-marks info))
5369          (active (gnus-active (gnus-info-group info)))
5370          (min (car active))
5371          (max (cdr active))
5372          (types gnus-article-mark-lists)
5373          marks var articles article mark mark-type)
5374
5375     (dolist (marks marked-lists)
5376       (setq mark (car marks)
5377             mark-type (gnus-article-mark-to-type mark)
5378             var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5379
5380       ;; We set the variable according to the type of the marks list,
5381       ;; and then adjust the marks to a subset of the active articles.
5382       (cond
5383        ;; Adjust "simple" lists.
5384        ((eq mark-type 'list)
5385         (set var (setq articles (gnus-uncompress-range (cdr marks))))
5386         (when (memq mark '(tick dormant expire reply save))
5387           (while articles
5388             (when (or (< (setq article (pop articles)) min) (> article max))
5389               (set var (delq article (symbol-value var)))))))
5390        ;; Adjust assocs.
5391        ((eq mark-type 'tuple)
5392         (set var (setq articles (cdr marks)))
5393         (when (not (listp (cdr (symbol-value var))))
5394           (set var (list (symbol-value var))))
5395         (when (not (listp (cdr articles)))
5396           (setq articles (list articles)))
5397         (while articles
5398           (when (or (not (consp (setq article (pop articles))))
5399                     (< (car article) min)
5400                     (> (car article) max))
5401             (set var (delq article (symbol-value var))))))
5402        ;; Adjust ranges (sloppily).
5403        ((eq mark-type 'range)
5404         (cond
5405          ((eq mark 'seen)
5406           ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5407           ;; It should be (seen (NUM1 . NUM2)).
5408           (when (numberp (cddr marks))
5409             (setcdr marks (list (cdr marks))))
5410           (setq articles (cdr marks))
5411           (while (and articles
5412                       (or (and (consp (car articles))
5413                                (> min (cdar articles)))
5414                           (and (numberp (car articles))
5415                                (> min (car articles)))))
5416             (pop articles))
5417           (set var articles))))))))
5418
5419 (defun gnus-update-missing-marks (missing)
5420   "Go through the list of MISSING articles and remove them from the mark lists."
5421   (when missing
5422     (let (var m)
5423       ;; Go through all types.
5424       (dolist (elem gnus-article-mark-lists)
5425         (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5426           (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5427           (when (symbol-value var)
5428             ;; This list has articles.  So we delete all missing
5429             ;; articles from it.
5430             (setq m missing)
5431             (while m
5432               (set var (delq (pop m) (symbol-value var))))))))))
5433
5434 (defun gnus-update-marks ()
5435   "Enter the various lists of marked articles into the newsgroup info list."
5436   (let ((types gnus-article-mark-lists)
5437         (info (gnus-get-info gnus-newsgroup-name))
5438         type list newmarked symbol delta-marks)
5439     (when info
5440       ;; Add all marks lists to the list of marks lists.
5441       (while (setq type (pop types))
5442         (setq list (symbol-value
5443                     (setq symbol
5444                           (intern (format "gnus-newsgroup-%s" (car type))))))
5445
5446         (when list
5447           ;; Get rid of the entries of the articles that have the
5448           ;; default score.
5449           (when (and (eq (cdr type) 'score)
5450                      gnus-save-score
5451                      list)
5452             (let* ((arts list)
5453                    (prev (cons nil list))
5454                    (all prev))
5455               (while arts
5456                 (if (or (not (consp (car arts)))
5457                         (= (cdar arts) gnus-summary-default-score))
5458                     (setcdr prev (cdr arts))
5459                   (setq prev arts))
5460                 (setq arts (cdr arts)))
5461               (setq list (cdr all)))))
5462
5463         (when (eq (cdr type) 'seen)
5464           (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5465
5466         (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5467           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5468
5469         (when (and (gnus-check-backend-function
5470                     'request-set-mark gnus-newsgroup-name)
5471                    (not (gnus-article-unpropagatable-p (cdr type))))
5472           (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5473                  (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5474                  (add (gnus-remove-from-range
5475                        (gnus-copy-sequence list) old)))
5476             (when add
5477               (push (list add 'add (list (cdr type))) delta-marks))
5478             (when del
5479               (push (list del 'del (list (cdr type))) delta-marks))))
5480
5481         (when list
5482           (push (cons (cdr type) list) newmarked)))
5483
5484       (when delta-marks
5485         (unless (gnus-check-group gnus-newsgroup-name)
5486           (error "Can't open server for %s" gnus-newsgroup-name))
5487         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5488
5489       ;; Enter these new marks into the info of the group.
5490       (if (nthcdr 3 info)
5491           (setcar (nthcdr 3 info) newmarked)
5492         ;; Add the marks lists to the end of the info.
5493         (when newmarked
5494           (setcdr (nthcdr 2 info) (list newmarked))))
5495
5496       ;; Cut off the end of the info if there's nothing else there.
5497       (let ((i 5))
5498         (while (and (> i 2)
5499                     (not (nth i info)))
5500           (when (nthcdr (decf i) info)
5501             (setcdr (nthcdr i info) nil)))))))
5502
5503 (defun gnus-set-mode-line (where)
5504   "Set the mode line of the article or summary buffers.
5505 If WHERE is `summary', the summary mode line format will be used."
5506   ;; Is this mode line one we keep updated?
5507   (when (and (memq where gnus-updated-mode-lines)
5508              (symbol-value
5509               (intern (format "gnus-%s-mode-line-format-spec" where))))
5510     (let (mode-string)
5511       (save-excursion
5512         ;; We evaluate this in the summary buffer since these
5513         ;; variables are buffer-local to that buffer.
5514         (set-buffer gnus-summary-buffer)
5515        ;; We bind all these variables that are used in the `eval' form
5516         ;; below.
5517         (let* ((mformat (symbol-value
5518                          (intern
5519                           (format "gnus-%s-mode-line-format-spec" where))))
5520                (gnus-tmp-group-name (gnus-group-decoded-name
5521                                      gnus-newsgroup-name))
5522                (gnus-tmp-article-number (or gnus-current-article 0))
5523                (gnus-tmp-unread gnus-newsgroup-unreads)
5524                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
5525                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
5526                (gnus-tmp-unread-and-unselected
5527                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
5528                             (zerop gnus-tmp-unselected))
5529                        "")
5530                       ((zerop gnus-tmp-unselected)
5531                        (format "{%d more}" gnus-tmp-unread-and-unticked))
5532                       (t (format "{%d(+%d) more}"
5533                                  gnus-tmp-unread-and-unticked
5534                                  gnus-tmp-unselected))))
5535                (gnus-tmp-subject
5536                 (if (and gnus-current-headers
5537                          (vectorp gnus-current-headers))
5538                     (gnus-mode-string-quote
5539                      (mail-header-subject gnus-current-headers))
5540                   ""))
5541                bufname-length max-len
5542                gnus-tmp-header) ;; passed as argument to any user-format-funcs
5543           (setq mode-string (eval mformat))
5544           (setq bufname-length (if (string-match "%b" mode-string)
5545                                    (- (length
5546                                        (buffer-name
5547                                         (if (eq where 'summary)
5548                                             nil
5549                                           (get-buffer gnus-article-buffer))))
5550                                       2)
5551                                  0))
5552           (setq max-len (max 4 (if gnus-mode-non-string-length
5553                                    (- (window-width)
5554                                       gnus-mode-non-string-length
5555                                       bufname-length)
5556                                  (length mode-string))))
5557           ;; We might have to chop a bit of the string off...
5558           (when (> (length mode-string) max-len)
5559             (setq mode-string
5560                   (concat (truncate-string-to-width mode-string (- max-len 3))
5561                           "...")))
5562           ;; Pad the mode string a bit.
5563           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
5564       ;; Update the mode line.
5565       (setq mode-line-buffer-identification
5566             (gnus-mode-line-buffer-identification (list mode-string)))
5567       (set-buffer-modified-p t))))
5568
5569 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
5570   "Go through the HEADERS list and add all Xrefs to a hash table.
5571 The resulting hash table is returned, or nil if no Xrefs were found."
5572   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
5573          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
5574          (xref-hashtb (gnus-make-hashtable))
5575          start group entry number xrefs header)
5576     (while headers
5577       (setq header (pop headers))
5578       (when (and (setq xrefs (mail-header-xref header))
5579                  (not (memq (setq number (mail-header-number header))
5580                             unreads)))
5581         (setq start 0)
5582         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
5583           (setq start (match-end 0))
5584           (setq group (if prefix
5585                           (concat prefix (substring xrefs (match-beginning 1)
5586                                                     (match-end 1)))
5587                         (substring xrefs (match-beginning 1) (match-end 1))))
5588           (setq number
5589                 (string-to-int (substring xrefs (match-beginning 2)
5590                                           (match-end 2))))
5591           (if (setq entry (gnus-gethash group xref-hashtb))
5592               (setcdr entry (cons number (cdr entry)))
5593             (gnus-sethash group (cons number nil) xref-hashtb)))))
5594     (and start xref-hashtb)))
5595
5596 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
5597   "Look through all the headers and mark the Xrefs as read."
5598   (let ((virtual (gnus-virtual-group-p from-newsgroup))
5599         name info xref-hashtb idlist method nth4)
5600     (save-excursion
5601       (set-buffer gnus-group-buffer)
5602       (when (setq xref-hashtb
5603                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
5604         (mapatoms
5605          (lambda (group)
5606            (unless (string= from-newsgroup (setq name (symbol-name group)))
5607              (setq idlist (symbol-value group))
5608              ;; Dead groups are not updated.
5609              (and (prog1
5610                       (setq info (gnus-get-info name))
5611                     (when (stringp (setq nth4 (gnus-info-method info)))
5612                       (setq nth4 (gnus-server-to-method nth4))))
5613                   ;; Only do the xrefs if the group has the same
5614                   ;; select method as the group we have just read.
5615                   (or (gnus-methods-equal-p
5616                        nth4 (gnus-find-method-for-group from-newsgroup))
5617                       virtual
5618                       (equal nth4 (setq method (gnus-find-method-for-group
5619                                                 from-newsgroup)))
5620                       (and (equal (car nth4) (car method))
5621                            (equal (nth 1 nth4) (nth 1 method))))
5622                   gnus-use-cross-reference
5623                   (or (not (eq gnus-use-cross-reference t))
5624                       virtual
5625                       ;; Only do cross-references on subscribed
5626                       ;; groups, if that is what is wanted.
5627                       (<= (gnus-info-level info) gnus-level-subscribed))
5628                   (gnus-group-make-articles-read name idlist))))
5629          xref-hashtb)))))
5630
5631 (defun gnus-compute-read-articles (group articles)
5632   (let* ((entry (gnus-group-entry group))
5633          (info (nth 2 entry))
5634          (active (gnus-active group))
5635          ninfo)
5636     (when entry
5637       ;; First peel off all invalid article numbers.
5638       (when active
5639         (let ((ids articles)
5640               id first)
5641           (while (setq id (pop ids))
5642             (when (and first (> id (cdr active)))
5643               ;; We'll end up in this situation in one particular
5644               ;; obscure situation.  If you re-scan a group and get
5645               ;; a new article that is cross-posted to a different
5646               ;; group that has not been re-scanned, you might get
5647               ;; crossposted article that has a higher number than
5648               ;; Gnus believes possible.  So we re-activate this
5649               ;; group as well.  This might mean doing the
5650               ;; crossposting thingy will *increase* the number
5651               ;; of articles in some groups.  Tsk, tsk.
5652               (setq active (or (gnus-activate-group group) active)))
5653             (when (or (> id (cdr active))
5654                       (< id (car active)))
5655               (setq articles (delq id articles))))))
5656       ;; If the read list is nil, we init it.
5657       (if (and active
5658                (null (gnus-info-read info))
5659                (> (car active) 1))
5660           (setq ninfo (cons 1 (1- (car active))))
5661         (setq ninfo (gnus-info-read info)))
5662       ;; Then we add the read articles to the range.
5663       (gnus-add-to-range
5664        ninfo (setq articles (sort articles '<))))))
5665
5666 (defun gnus-group-make-articles-read (group articles)
5667   "Update the info of GROUP to say that ARTICLES are read."
5668   (let* ((num 0)
5669          (entry (gnus-group-entry group))
5670          (info (nth 2 entry))
5671          (active (gnus-active group))
5672          range)
5673     (when entry
5674       (setq range (gnus-compute-read-articles group articles))
5675       (with-current-buffer gnus-group-buffer
5676         (gnus-undo-register
5677           `(progn
5678              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
5679              (gnus-info-set-read ',info ',(gnus-info-read info))
5680              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
5681              (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
5682              (gnus-group-update-group ,group t))))
5683       ;; Add the read articles to the range.
5684       (gnus-info-set-read info range)
5685       (gnus-request-set-mark group (list (list range 'add '(read))))
5686       ;; Then we have to re-compute how many unread
5687       ;; articles there are in this group.
5688       (when active
5689         (cond
5690          ((not range)
5691           (setq num (- (1+ (cdr active)) (car active))))
5692          ((not (listp (cdr range)))
5693           (setq num (- (cdr active) (- (1+ (cdr range))
5694                                        (car range)))))
5695          (t
5696           (while range
5697             (if (numberp (car range))
5698                 (setq num (1+ num))
5699               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
5700             (setq range (cdr range)))
5701           (setq num (- (cdr active) num))))
5702         ;; Update the number of unread articles.
5703         (setcar entry num)
5704         ;; Update the group buffer.
5705         (unless (gnus-ephemeral-group-p group)
5706           (gnus-group-update-group group t))))))
5707
5708 (defvar gnus-newsgroup-none-id 0)
5709
5710 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
5711   (let ((cur nntp-server-buffer)
5712         (dependencies
5713          (or dependencies
5714              (save-excursion (set-buffer gnus-summary-buffer)
5715                              gnus-newsgroup-dependencies)))
5716         headers id end ref
5717         (mail-parse-charset gnus-newsgroup-charset)
5718         (mail-parse-ignored-charsets
5719          (save-excursion (condition-case nil
5720                              (set-buffer gnus-summary-buffer)
5721                            (error))
5722                          gnus-newsgroup-ignored-charsets)))
5723     (save-excursion
5724       (set-buffer nntp-server-buffer)
5725       ;; Translate all TAB characters into SPACE characters.
5726       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
5727       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5728       (ietf-drums-unfold-fws)
5729       (gnus-run-hooks 'gnus-parse-headers-hook)
5730       (let ((case-fold-search t)
5731             in-reply-to header p lines chars)
5732         (goto-char (point-min))
5733         ;; Search to the beginning of the next header.  Error messages
5734         ;; do not begin with 2 or 3.
5735         (while (re-search-forward "^[23][0-9]+ " nil t)
5736           (setq id nil
5737                 ref nil)
5738           ;; This implementation of this function, with nine
5739           ;; search-forwards instead of the one re-search-forward and
5740           ;; a case (which basically was the old function) is actually
5741           ;; about twice as fast, even though it looks messier.  You
5742           ;; can't have everything, I guess.  Speed and elegance
5743           ;; doesn't always go hand in hand.
5744           (setq
5745            header
5746            (vector
5747             ;; Number.
5748             (prog1
5749                 (read cur)
5750               (end-of-line)
5751               (setq p (point))
5752               (narrow-to-region (point)
5753                                 (or (and (search-forward "\n.\n" nil t)
5754                                          (- (point) 2))
5755                                     (point))))
5756             ;; Subject.
5757             (progn
5758               (goto-char p)
5759               (if (search-forward "\nsubject:" nil t)
5760                   (funcall gnus-decode-encoded-word-function
5761                            (nnheader-header-value))
5762                 "(none)"))
5763             ;; From.
5764             (progn
5765               (goto-char p)
5766               (if (search-forward "\nfrom:" nil t)
5767                   (funcall gnus-decode-encoded-word-function
5768                            (nnheader-header-value))
5769                 "(nobody)"))
5770             ;; Date.
5771             (progn
5772               (goto-char p)
5773               (if (search-forward "\ndate:" nil t)
5774                   (nnheader-header-value) ""))
5775             ;; Message-ID.
5776             (progn
5777               (goto-char p)
5778               (setq id (if (re-search-forward
5779                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
5780                            ;; We do it this way to make sure the Message-ID
5781                            ;; is (somewhat) syntactically valid.
5782                            (buffer-substring (match-beginning 1)
5783                                              (match-end 1))
5784                          ;; If there was no message-id, we just fake one
5785                          ;; to make subsequent routines simpler.
5786                          (nnheader-generate-fake-message-id))))
5787             ;; References.
5788             (progn
5789               (goto-char p)
5790               (if (search-forward "\nreferences:" nil t)
5791                   (progn
5792                     (setq end (point))
5793                     (prog1
5794                         (nnheader-header-value)
5795                       (setq ref
5796                             (buffer-substring
5797                              (progn
5798                                (end-of-line)
5799                                (search-backward ">" end t)
5800                                (1+ (point)))
5801                              (progn
5802                                (search-backward "<" end t)
5803                                (point))))))
5804                 ;; Get the references from the in-reply-to header if there
5805                 ;; were no references and the in-reply-to header looks
5806                 ;; promising.
5807                 (if (and (search-forward "\nin-reply-to:" nil t)
5808                          (setq in-reply-to (nnheader-header-value))
5809                          (string-match "<[^>]+>" in-reply-to))
5810                     (let (ref2)
5811                       (setq ref (substring in-reply-to (match-beginning 0)
5812                                            (match-end 0)))
5813                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
5814                         (setq ref2 (substring in-reply-to (match-beginning 0)
5815                                               (match-end 0)))
5816                         (when (> (length ref2) (length ref))
5817                           (setq ref ref2)))
5818                       ref)
5819                   (setq ref nil))))
5820             ;; Chars.
5821             (progn
5822               (goto-char p)
5823               (if (search-forward "\nchars: " nil t)
5824                   (if (numberp (setq chars (ignore-errors (read cur))))
5825                       chars -1)
5826                 -1))
5827             ;; Lines.
5828             (progn
5829               (goto-char p)
5830               (if (search-forward "\nlines: " nil t)
5831                   (if (numberp (setq lines (ignore-errors (read cur))))
5832                       lines -1)
5833                 -1))
5834             ;; Xref.
5835             (progn
5836               (goto-char p)
5837               (and (search-forward "\nxref:" nil t)
5838                    (nnheader-header-value)))
5839             ;; Extra.
5840             (when gnus-extra-headers
5841               (let ((extra gnus-extra-headers)
5842                     out)
5843                 (while extra
5844                   (goto-char p)
5845                   (when (search-forward
5846                          (concat "\n" (symbol-name (car extra)) ":") nil t)
5847                     (push (cons (car extra) (nnheader-header-value))
5848                           out))
5849                   (pop extra))
5850                 out))))
5851           (when (equal id ref)
5852             (setq ref nil))
5853
5854           (when gnus-alter-header-function
5855             (funcall gnus-alter-header-function header)
5856             (setq id (mail-header-id header)
5857                   ref (gnus-parent-id (mail-header-references header))))
5858
5859           (when (setq header
5860                       (gnus-dependencies-add-header
5861                        header dependencies force-new))
5862             (push header headers))
5863           (goto-char (point-max))
5864           (widen))
5865         (nreverse headers)))))
5866
5867 ;; Goes through the xover lines and returns a list of vectors
5868 (defun gnus-get-newsgroup-headers-xover (sequence &optional
5869                                                   force-new dependencies
5870                                                   group also-fetch-heads)
5871   "Parse the news overview data in the server buffer.
5872 Return a list of headers that match SEQUENCE (see
5873 `nntp-retrieve-headers')."
5874   ;; Get the Xref when the users reads the articles since most/some
5875   ;; NNTP servers do not include Xrefs when using XOVER.
5876   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
5877   (let ((mail-parse-charset gnus-newsgroup-charset)
5878         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
5879         (cur nntp-server-buffer)
5880         (dependencies (or dependencies gnus-newsgroup-dependencies))
5881         (allp (cond
5882                ((eq gnus-read-all-available-headers t)
5883                 t)
5884                ((stringp gnus-read-all-available-headers)
5885                 (string-match gnus-read-all-available-headers group))
5886                (t
5887                 nil)))
5888         number headers header)
5889     (save-excursion
5890       (set-buffer nntp-server-buffer)
5891       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
5892       ;; Allow the user to mangle the headers before parsing them.
5893       (gnus-run-hooks 'gnus-parse-headers-hook)
5894       (goto-char (point-min))
5895       (gnus-parse-without-error
5896         (while (and (or sequence allp)
5897                     (not (eobp)))
5898           (setq number (read cur))
5899           (when (not allp)
5900             (while (and sequence
5901                         (< (car sequence) number))
5902               (setq sequence (cdr sequence))))
5903           (when (and (or allp
5904                          (and sequence
5905                               (eq number (car sequence))))
5906                      (progn
5907                        (setq sequence (cdr sequence))
5908                        (setq header (inline
5909                                       (gnus-nov-parse-line
5910                                        number dependencies force-new)))))
5911             (push header headers))
5912           (forward-line 1)))
5913       ;; A common bug in inn is that if you have posted an article and
5914       ;; then retrieves the active file, it will answer correctly --
5915       ;; the new article is included.  However, a NOV entry for the
5916       ;; article may not have been generated yet, so this may fail.
5917       ;; We work around this problem by retrieving the last few
5918       ;; headers using HEAD.
5919       (if (or (not also-fetch-heads)
5920               (not sequence))
5921           ;; We (probably) got all the headers.
5922           (nreverse headers)
5923         (let ((gnus-nov-is-evil t))
5924           (nconc
5925            (nreverse headers)
5926            (when (eq (gnus-retrieve-headers sequence group) 'headers)
5927              (gnus-get-newsgroup-headers))))))))
5928
5929 (defun gnus-article-get-xrefs ()
5930   "Fill in the Xref value in `gnus-current-headers', if necessary.
5931 This is meant to be called in `gnus-article-internal-prepare-hook'."
5932   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
5933                                  gnus-current-headers)))
5934     (or (not gnus-use-cross-reference)
5935         (not headers)
5936         (and (mail-header-xref headers)
5937              (not (string= (mail-header-xref headers) "")))
5938         (let ((case-fold-search t)
5939               xref)
5940           (save-restriction
5941             (nnheader-narrow-to-headers)
5942             (goto-char (point-min))
5943             (when (or (and (not (eobp))
5944                            (eq (downcase (char-after)) ?x)
5945                            (looking-at "Xref:"))
5946                       (search-forward "\nXref:" nil t))
5947               (goto-char (1+ (match-end 0)))
5948               (setq xref (buffer-substring (point) (point-at-eol)))
5949               (mail-header-set-xref headers xref)))))))
5950
5951 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
5952   "Find article ID and insert the summary line for that article.
5953 OLD-HEADER can either be a header or a line number to insert
5954 the subject line on."
5955   (let* ((line (and (numberp old-header) old-header))
5956          (old-header (and (vectorp old-header) old-header))
5957          (header (cond ((and old-header use-old-header)
5958                         old-header)
5959                        ((and (numberp id)
5960                              (gnus-number-to-header id))
5961                         (gnus-number-to-header id))
5962                        (t
5963                         (gnus-read-header id))))
5964          (number (and (numberp id) id))
5965          d)
5966     (when header
5967       ;; Rebuild the thread that this article is part of and go to the
5968       ;; article we have fetched.
5969       (when (and (not gnus-show-threads)
5970                  old-header)
5971         (when (and number
5972                    (setq d (gnus-data-find (mail-header-number old-header))))
5973           (goto-char (gnus-data-pos d))
5974           (gnus-data-remove
5975            number
5976            (- (point-at-bol)
5977               (prog1
5978                   (1+ (point-at-eol))
5979                 (gnus-delete-line))))))
5980       (when old-header
5981         (mail-header-set-number header (mail-header-number old-header)))
5982       (setq gnus-newsgroup-sparse
5983             (delq (setq number (mail-header-number header))
5984                   gnus-newsgroup-sparse))
5985       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
5986       (push number gnus-newsgroup-limit)
5987       (gnus-rebuild-thread (mail-header-id header) line)
5988       (gnus-summary-goto-subject number nil t))
5989     (when (and (numberp number)
5990                (> number 0))
5991       ;; We have to update the boundaries even if we can't fetch the
5992       ;; article if ID is a number -- so that the next `P' or `N'
5993       ;; command will fetch the previous (or next) article even
5994       ;; if the one we tried to fetch this time has been canceled.
5995       (when (> number gnus-newsgroup-end)
5996         (setq gnus-newsgroup-end number))
5997       (when (< number gnus-newsgroup-begin)
5998         (setq gnus-newsgroup-begin number))
5999       (setq gnus-newsgroup-unselected
6000             (delq number gnus-newsgroup-unselected)))
6001     ;; Report back a success?
6002     (and header (mail-header-number header))))
6003
6004 ;;; Process/prefix in the summary buffer
6005
6006 (defun gnus-summary-work-articles (n)
6007   "Return a list of articles to be worked upon.
6008 The prefix argument, the list of process marked articles, and the
6009 current article will be taken into consideration."
6010   (save-excursion
6011     (set-buffer gnus-summary-buffer)
6012     (cond
6013      (n
6014       ;; A numerical prefix has been given.
6015       (setq n (prefix-numeric-value n))
6016       (let ((backward (< n 0))
6017             (n (abs (prefix-numeric-value n)))
6018             articles article)
6019         (save-excursion
6020           (while
6021               (and (> n 0)
6022                    (push (setq article (gnus-summary-article-number))
6023                          articles)
6024                    (if backward
6025                        (gnus-summary-find-prev nil article)
6026                      (gnus-summary-find-next nil article)))
6027             (decf n)))
6028         (nreverse articles)))
6029      ((and (gnus-region-active-p) (mark))
6030       (message "region active")
6031       ;; Work on the region between point and mark.
6032       (let ((max (max (point) (mark)))
6033             articles article)
6034         (save-excursion
6035           (goto-char (min (min (point) (mark))))
6036           (while
6037               (and
6038                (push (setq article (gnus-summary-article-number)) articles)
6039                (gnus-summary-find-next nil article)
6040                (< (point) max)))
6041           (nreverse articles))))
6042      (gnus-newsgroup-processable
6043       ;; There are process-marked articles present.
6044       ;; Save current state.
6045       (gnus-summary-save-process-mark)
6046       ;; Return the list.
6047       (reverse gnus-newsgroup-processable))
6048      (t
6049       ;; Just return the current article.
6050       (list (gnus-summary-article-number))))))
6051
6052 (defmacro gnus-summary-iterate (arg &rest forms)
6053   "Iterate over the process/prefixed articles and do FORMS.
6054 ARG is the interactive prefix given to the command.  FORMS will be
6055 executed with point over the summary line of the articles."
6056   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6057     `(let ((,articles (gnus-summary-work-articles ,arg)))
6058        (while ,articles
6059          (gnus-summary-goto-subject (car ,articles))
6060          ,@forms
6061          (pop ,articles)))))
6062
6063 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6064 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6065
6066 (defun gnus-summary-save-process-mark ()
6067   "Push the current set of process marked articles on the stack."
6068   (interactive)
6069   (push (copy-sequence gnus-newsgroup-processable)
6070         gnus-newsgroup-process-stack))
6071
6072 (defun gnus-summary-kill-process-mark ()
6073   "Push the current set of process marked articles on the stack and unmark."
6074   (interactive)
6075   (gnus-summary-save-process-mark)
6076   (gnus-summary-unmark-all-processable))
6077
6078 (defun gnus-summary-yank-process-mark ()
6079   "Pop the last process mark state off the stack and restore it."
6080   (interactive)
6081   (unless gnus-newsgroup-process-stack
6082     (error "Empty mark stack"))
6083   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6084
6085 (defun gnus-summary-process-mark-set (set)
6086   "Make SET into the current process marked articles."
6087   (gnus-summary-unmark-all-processable)
6088   (while set
6089     (gnus-summary-set-process-mark (pop set))))
6090
6091 ;;; Searching and stuff
6092
6093 (defun gnus-summary-search-group (&optional backward use-level)
6094   "Search for next unread newsgroup.
6095 If optional argument BACKWARD is non-nil, search backward instead."
6096   (save-excursion
6097     (set-buffer gnus-group-buffer)
6098     (when (gnus-group-search-forward
6099            backward nil (if use-level (gnus-group-group-level) nil))
6100       (gnus-group-group-name))))
6101
6102 (defun gnus-summary-best-group (&optional exclude-group)
6103   "Find the name of the best unread group.
6104 If EXCLUDE-GROUP, do not go to this group."
6105   (save-excursion
6106     (set-buffer gnus-group-buffer)
6107     (save-excursion
6108       (gnus-group-best-unread-group exclude-group))))
6109
6110 (defun gnus-summary-find-next (&optional unread article backward)
6111   (if backward
6112       (gnus-summary-find-prev unread article)
6113     (let* ((dummy (gnus-summary-article-intangible-p))
6114            (article (or article (gnus-summary-article-number)))
6115            (data (gnus-data-find-list article))
6116            result)
6117       (when (and (not dummy)
6118                  (or (not gnus-summary-check-current)
6119                      (not unread)
6120                      (not (gnus-data-unread-p (car data)))))
6121         (setq data (cdr data)))
6122       (when (setq result
6123                   (if unread
6124                       (progn
6125                         (while data
6126                           (unless (memq (gnus-data-number (car data))
6127                                         (cond
6128                                          ((eq gnus-auto-goto-ignores
6129                                               'always-undownloaded)
6130                                           gnus-newsgroup-undownloaded)
6131                                          (gnus-plugged
6132                                           nil)
6133                                          ((eq gnus-auto-goto-ignores
6134                                               'unfetched)
6135                                           gnus-newsgroup-unfetched)
6136                                          ((eq gnus-auto-goto-ignores
6137                                               'undownloaded)
6138                                           gnus-newsgroup-undownloaded)))
6139                             (when (gnus-data-unread-p (car data))
6140                               (setq result (car data)
6141                                     data nil)))
6142                           (setq data (cdr data)))
6143                         result)
6144                     (car data)))
6145         (goto-char (gnus-data-pos result))
6146         (gnus-data-number result)))))
6147
6148 (defun gnus-summary-find-prev (&optional unread article)
6149   (let* ((eobp (eobp))
6150          (article (or article (gnus-summary-article-number)))
6151          (data (gnus-data-find-list article (gnus-data-list 'rev)))
6152          result)
6153     (when (and (not eobp)
6154                (or (not gnus-summary-check-current)
6155                    (not unread)
6156                    (not (gnus-data-unread-p (car data)))))
6157       (setq data (cdr data)))
6158     (when (setq result
6159                 (if unread
6160                     (progn
6161                       (while data
6162                         (unless (memq (gnus-data-number (car data))
6163                                       (cond
6164                                        ((eq gnus-auto-goto-ignores
6165                                             'always-undownloaded)
6166                                         gnus-newsgroup-undownloaded)
6167                                        (gnus-plugged
6168                                         nil)
6169                                        ((eq gnus-auto-goto-ignores
6170                                             'unfetched)
6171                                         gnus-newsgroup-unfetched)
6172                                        ((eq gnus-auto-goto-ignores
6173                                             'undownloaded)
6174                                         gnus-newsgroup-undownloaded)))
6175                           (when (gnus-data-unread-p (car data))
6176                             (setq result (car data)
6177                                   data nil)))
6178                         (setq data (cdr data)))
6179                       result)
6180                   (car data)))
6181       (goto-char (gnus-data-pos result))
6182       (gnus-data-number result))))
6183
6184 (defun gnus-summary-find-subject (subject &optional unread backward article)
6185   (let* ((simp-subject (gnus-simplify-subject-fully subject))
6186          (article (or article (gnus-summary-article-number)))
6187          (articles (gnus-data-list backward))
6188          (arts (gnus-data-find-list article articles))
6189          result)
6190     (when (or (not gnus-summary-check-current)
6191               (not unread)
6192               (not (gnus-data-unread-p (car arts))))
6193       (setq arts (cdr arts)))
6194     (while arts
6195       (and (or (not unread)
6196                (gnus-data-unread-p (car arts)))
6197            (vectorp (gnus-data-header (car arts)))
6198            (gnus-subject-equal
6199             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6200            (setq result (car arts)
6201                  arts nil))
6202       (setq arts (cdr arts)))
6203     (and result
6204          (goto-char (gnus-data-pos result))
6205          (gnus-data-number result))))
6206
6207 (defun gnus-summary-search-forward (&optional unread subject backward)
6208   "Search forward for an article.
6209 If UNREAD, look for unread articles.  If SUBJECT, look for
6210 articles with that subject.  If BACKWARD, search backward instead."
6211   (cond (subject (gnus-summary-find-subject subject unread backward))
6212         (backward (gnus-summary-find-prev unread))
6213         (t (gnus-summary-find-next unread))))
6214
6215 (defun gnus-recenter (&optional n)
6216   "Center point in window and redisplay frame.
6217 Also do horizontal recentering."
6218   (interactive "P")
6219   (when (and gnus-auto-center-summary
6220              (not (eq gnus-auto-center-summary 'vertical)))
6221     (gnus-horizontal-recenter))
6222   (recenter n))
6223
6224 (defun gnus-summary-recenter ()
6225   "Center point in the summary window.
6226 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6227 displayed, no centering will be performed."
6228   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6229   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
6230   (interactive)
6231   ;; The user has to want it.
6232   (when gnus-auto-center-summary
6233     (let* ((top (cond ((< (window-height) 4) 0)
6234                       ((< (window-height) 7) 1)
6235                       (t (if (numberp gnus-auto-center-summary)
6236                              gnus-auto-center-summary
6237                            2))))
6238            (height (1- (window-height)))
6239            (bottom (save-excursion (goto-char (point-max))
6240                                    (forward-line (- height))
6241                                    (point)))
6242            (window (get-buffer-window (current-buffer))))
6243       (when (get-buffer-window gnus-article-buffer)
6244         ;; Only do recentering when the article buffer is displayed,
6245         ;; Set the window start to either `bottom', which is the biggest
6246         ;; possible valid number, or the second line from the top,
6247         ;; whichever is the least.
6248         (let ((top-pos (save-excursion (forward-line (- top)) (point))))
6249           (if (> bottom top-pos)
6250               ;; Keep the second line from the top visible
6251               (set-window-start window top-pos t)
6252             ;; Try to keep the bottom line visible; if it's partially
6253             ;; obscured, either scroll one more line to make it fully
6254             ;; visible, or revert to using TOP-POS.
6255             (save-excursion
6256               (goto-char (point-max))
6257               (forward-line -1)
6258               (let ((last-line-start (point)))
6259                 (goto-char bottom)
6260                 (set-window-start window (point) t)
6261                 (when (not (pos-visible-in-window-p last-line-start window))
6262                   (forward-line 1)
6263                   (set-window-start window (min (point) top-pos) t)))))))
6264       ;; Do horizontal recentering while we're at it.
6265       (when (and (get-buffer-window (current-buffer) t)
6266                  (not (eq gnus-auto-center-summary 'vertical)))
6267         (let ((selected (selected-window)))
6268           (select-window (get-buffer-window (current-buffer) t))
6269           (gnus-summary-position-point)
6270           (gnus-horizontal-recenter)
6271           (select-window selected))))))
6272
6273 (defun gnus-summary-jump-to-group (newsgroup)
6274   "Move point to NEWSGROUP in group mode buffer."
6275   ;; Keep update point of group mode buffer if visible.
6276   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6277       (save-window-excursion
6278         ;; Take care of tree window mode.
6279         (when (get-buffer-window gnus-group-buffer)
6280           (pop-to-buffer gnus-group-buffer))
6281         (gnus-group-jump-to-group newsgroup))
6282     (save-excursion
6283       ;; Take care of tree window mode.
6284       (if (get-buffer-window gnus-group-buffer)
6285           (pop-to-buffer gnus-group-buffer)
6286         (set-buffer gnus-group-buffer))
6287       (gnus-group-jump-to-group newsgroup))))
6288
6289 ;; This function returns a list of article numbers based on the
6290 ;; difference between the ranges of read articles in this group and
6291 ;; the range of active articles.
6292 (defun gnus-list-of-unread-articles (group)
6293   (let* ((read (gnus-info-read (gnus-get-info group)))
6294          (active (or (gnus-active group) (gnus-activate-group group)))
6295          (last (cdr active))
6296          first nlast unread)
6297     ;; If none are read, then all are unread.
6298     (if (not read)
6299         (setq first (car active))
6300       ;; If the range of read articles is a single range, then the
6301       ;; first unread article is the article after the last read
6302       ;; article.  Sounds logical, doesn't it?
6303       (if (and (not (listp (cdr read)))
6304                (or (< (car read) (car active))
6305                    (progn (setq read (list read))
6306                           nil)))
6307           (setq first (max (car active) (1+ (cdr read))))
6308         ;; `read' is a list of ranges.
6309         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6310                                   (caar read)))
6311                   1)
6312           (setq first (car active)))
6313         (while read
6314           (when first
6315             (while (< first nlast)
6316               (push first unread)
6317               (setq first (1+ first))))
6318           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6319           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6320           (setq read (cdr read)))))
6321     ;; And add the last unread articles.
6322     (while (<= first last)
6323       (push first unread)
6324       (setq first (1+ first)))
6325     ;; Return the list of unread articles.
6326     (delq 0 (nreverse unread))))
6327
6328 (defun gnus-list-of-read-articles (group)
6329   "Return a list of unread, unticked and non-dormant articles."
6330   (let* ((info (gnus-get-info group))
6331          (marked (gnus-info-marks info))
6332          (active (gnus-active group)))
6333     (and info active
6334          (gnus-list-range-difference
6335           (gnus-list-range-difference
6336            (gnus-sorted-complement
6337             (gnus-uncompress-range active)
6338             (gnus-list-of-unread-articles group))
6339            (cdr (assq 'dormant marked)))
6340           (cdr (assq 'tick marked))))))
6341
6342 ;; Various summary commands
6343
6344 (defun gnus-summary-select-article-buffer ()
6345   "Reconfigure windows to show article buffer."
6346   (interactive)
6347   (if (not (gnus-buffer-live-p gnus-article-buffer))
6348       (error "There is no article buffer for this summary buffer")
6349     (gnus-configure-windows 'article)
6350     (select-window (get-buffer-window gnus-article-buffer))))
6351
6352 (defun gnus-summary-universal-argument (arg)
6353   "Perform any operation on all articles that are process/prefixed."
6354   (interactive "P")
6355   (let ((articles (gnus-summary-work-articles arg))
6356         func article)
6357     (if (eq
6358          (setq
6359           func
6360           (key-binding
6361            (read-key-sequence
6362             (substitute-command-keys
6363              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6364          'undefined)
6365         (gnus-error 1 "Undefined key")
6366       (save-excursion
6367         (while articles
6368           (gnus-summary-goto-subject (setq article (pop articles)))
6369           (let (gnus-newsgroup-processable)
6370             (command-execute func))
6371           (gnus-summary-remove-process-mark article)))))
6372   (gnus-summary-position-point))
6373
6374 (defun gnus-summary-toggle-truncation (&optional arg)
6375   "Toggle truncation of summary lines.
6376 With ARG, turn line truncation on if ARG is positive."
6377   (interactive "P")
6378   (setq truncate-lines
6379         (if (null arg) (not truncate-lines)
6380           (> (prefix-numeric-value arg) 0)))
6381   (redraw-display))
6382
6383 (defun gnus-summary-find-for-reselect ()
6384   "Return the number of an article to stay on across a reselect.
6385 The current article is considered, then following articles, then previous
6386 articles.  An article is sought which is not cancelled and isn't a temporary
6387 insertion from another group.  If there's no such then return a dummy 0."
6388   (let (found)
6389     (dolist (rev '(nil t))
6390       (unless found      ; don't demand the reverse list if we don't need it
6391         (let ((data (gnus-data-find-list
6392                      (gnus-summary-article-number) (gnus-data-list rev))))
6393           (while (and data (not found))
6394             (if (and (< 0 (gnus-data-number (car data)))
6395                      (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6396                 (setq found (gnus-data-number (car data))))
6397             (setq data (cdr data))))))
6398     (or found 0)))
6399
6400 (defun gnus-summary-reselect-current-group (&optional all rescan)
6401   "Exit and then reselect the current newsgroup.
6402 The prefix argument ALL means to select all articles."
6403   (interactive "P")
6404   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6405     (error "Ephemeral groups can't be reselected"))
6406   (let ((current-subject (gnus-summary-find-for-reselect))
6407         (group gnus-newsgroup-name))
6408     (setq gnus-newsgroup-begin nil)
6409     (gnus-summary-exit nil 'leave-hidden)
6410     ;; We have to adjust the point of group mode buffer because
6411     ;; point was moved to the next unread newsgroup by exiting.
6412     (gnus-summary-jump-to-group group)
6413     (when rescan
6414       (save-excursion
6415         (gnus-group-get-new-news-this-group 1)))
6416     (gnus-group-read-group all t)
6417     (gnus-summary-goto-subject current-subject nil t)))
6418
6419 (defun gnus-summary-rescan-group (&optional all)
6420   "Exit the newsgroup, ask for new articles, and select the newsgroup."
6421   (interactive "P")
6422   (gnus-summary-reselect-current-group all t))
6423
6424 (defun gnus-summary-update-info (&optional non-destructive)
6425   (save-excursion
6426     (let ((group gnus-newsgroup-name))
6427       (when group
6428         (when gnus-newsgroup-kill-headers
6429           (setq gnus-newsgroup-killed
6430                 (gnus-compress-sequence
6431                  (gnus-sorted-union
6432                   (gnus-list-range-intersection
6433                    gnus-newsgroup-unselected gnus-newsgroup-killed)
6434                   gnus-newsgroup-unreads)
6435                  t)))
6436         (unless (listp (cdr gnus-newsgroup-killed))
6437           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
6438         (let ((headers gnus-newsgroup-headers))
6439           ;; Set the new ranges of read articles.
6440           (save-excursion
6441             (set-buffer gnus-group-buffer)
6442             (gnus-undo-force-boundary))
6443           (gnus-update-read-articles
6444            group (gnus-sorted-union
6445                   gnus-newsgroup-unreads gnus-newsgroup-unselected))
6446           ;; Set the current article marks.
6447           (let ((gnus-newsgroup-scored
6448                  (if (and (not gnus-save-score)
6449                           (not non-destructive))
6450                      nil
6451                    gnus-newsgroup-scored)))
6452             (save-excursion
6453               (gnus-update-marks)))
6454           ;; Do the cross-ref thing.
6455           (when gnus-use-cross-reference
6456             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
6457           ;; Do not switch windows but change the buffer to work.
6458           (set-buffer gnus-group-buffer)
6459           (unless (gnus-ephemeral-group-p group)
6460             (gnus-group-update-group group)))))))
6461
6462 (defun gnus-summary-save-newsrc (&optional force)
6463   "Save the current number of read/marked articles in the dribble buffer.
6464 The dribble buffer will then be saved.
6465 If FORCE (the prefix), also save the .newsrc file(s)."
6466   (interactive "P")
6467   (gnus-summary-update-info t)
6468   (if force
6469       (gnus-save-newsrc-file)
6470     (gnus-dribble-save)))
6471
6472 (defun gnus-summary-exit (&optional temporary leave-hidden)
6473   "Exit reading current newsgroup, and then return to group selection mode.
6474 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
6475   (interactive)
6476   (gnus-set-global-variables)
6477   (when (gnus-buffer-live-p gnus-article-buffer)
6478     (save-excursion
6479       (set-buffer gnus-article-buffer)
6480       (mm-destroy-parts gnus-article-mime-handles)
6481       ;; Set it to nil for safety reason.
6482       (setq gnus-article-mime-handle-alist nil)
6483       (setq gnus-article-mime-handles nil)))
6484   (gnus-kill-save-kill-buffer)
6485   (gnus-async-halt-prefetch)
6486   (let* ((group gnus-newsgroup-name)
6487          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
6488          (gnus-group-is-exiting-p t)
6489          (mode major-mode)
6490          (group-point nil)
6491          (buf (current-buffer)))
6492     (unless quit-config
6493       ;; Do adaptive scoring, and possibly save score files.
6494       (when gnus-newsgroup-adaptive
6495         (gnus-score-adaptive))
6496       (when gnus-use-scoring
6497         (gnus-score-save)))
6498     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
6499     ;; If we have several article buffers, we kill them at exit.
6500     (unless gnus-single-article-buffer
6501       (gnus-kill-buffer gnus-original-article-buffer)
6502       (setq gnus-article-current nil))
6503     (when gnus-use-cache
6504       (gnus-cache-possibly-remove-articles)
6505       (gnus-cache-save-buffers))
6506     (gnus-async-prefetch-remove-group group)
6507     (when gnus-suppress-duplicates
6508       (gnus-dup-enter-articles))
6509     (when gnus-use-trees
6510       (gnus-tree-close group))
6511     (when gnus-use-cache
6512       (gnus-cache-write-active))
6513     ;; Remove entries for this group.
6514     (nnmail-purge-split-history (gnus-group-real-name group))
6515     ;; Make all changes in this group permanent.
6516     (unless quit-config
6517       (gnus-run-hooks 'gnus-exit-group-hook)
6518       (gnus-summary-update-info))
6519     (gnus-close-group group)
6520     ;; Make sure where we were, and go to next newsgroup.
6521     (set-buffer gnus-group-buffer)
6522     (unless quit-config
6523       (gnus-group-jump-to-group group))
6524     (gnus-run-hooks 'gnus-summary-exit-hook)
6525     (unless (or quit-config
6526                 ;; If this group has disappeared from the summary
6527                 ;; buffer, don't skip forwards.
6528                 (not (string= group (gnus-group-group-name))))
6529       (gnus-group-next-unread-group 1))
6530     (setq group-point (point))
6531     (if temporary
6532         nil                             ;Nothing to do.
6533       ;; If we have several article buffers, we kill them at exit.
6534       (unless gnus-single-article-buffer
6535         (gnus-kill-buffer gnus-article-buffer)
6536         (gnus-kill-buffer gnus-original-article-buffer)
6537         (setq gnus-article-current nil))
6538       (set-buffer buf)
6539       (if (not gnus-kill-summary-on-exit)
6540           (progn
6541             (gnus-deaden-summary)
6542             (setq mode nil))
6543         ;; We set all buffer-local variables to nil.  It is unclear why
6544         ;; this is needed, but if we don't, buffer-local variables are
6545         ;; not garbage-collected, it seems.  This would the lead to en
6546         ;; ever-growing Emacs.
6547         (gnus-summary-clear-local-variables)
6548         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6549           (gnus-summary-clear-local-variables))
6550         (when (get-buffer gnus-article-buffer)
6551           (bury-buffer gnus-article-buffer))
6552         ;; We clear the global counterparts of the buffer-local
6553         ;; variables as well, just to be on the safe side.
6554         (set-buffer gnus-group-buffer)
6555         (gnus-summary-clear-local-variables)
6556         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6557           (gnus-summary-clear-local-variables))
6558         ;; Return to group mode buffer.
6559         (when (eq mode 'gnus-summary-mode)
6560           (gnus-kill-buffer buf)))
6561       (setq gnus-current-select-method gnus-select-method)
6562       (if leave-hidden
6563           (set-buffer gnus-group-buffer)
6564         (pop-to-buffer gnus-group-buffer))
6565       (if (not quit-config)
6566           (progn
6567             (goto-char group-point)
6568             (unless leave-hidden
6569               (gnus-configure-windows 'group 'force)))
6570         (gnus-handle-ephemeral-exit quit-config))
6571       ;; Clear the current group name.
6572       (unless quit-config
6573         (setq gnus-newsgroup-name nil)))))
6574
6575 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
6576 (defun gnus-summary-exit-no-update (&optional no-questions)
6577   "Quit reading current newsgroup without updating read article info."
6578   (interactive)
6579   (let* ((group gnus-newsgroup-name)
6580          (gnus-group-is-exiting-p t)
6581          (gnus-group-is-exiting-without-update-p t)
6582          (quit-config (gnus-group-quit-config group)))
6583     (when (or no-questions
6584               gnus-expert-user
6585               (gnus-y-or-n-p "Discard changes to this group and exit? "))
6586       (gnus-async-halt-prefetch)
6587       (run-hooks 'gnus-summary-prepare-exit-hook)
6588       (when (gnus-buffer-live-p gnus-article-buffer)
6589         (save-excursion
6590           (set-buffer gnus-article-buffer)
6591           (mm-destroy-parts gnus-article-mime-handles)
6592           ;; Set it to nil for safety reason.
6593           (setq gnus-article-mime-handle-alist nil)
6594           (setq gnus-article-mime-handles nil)))
6595       ;; If we have several article buffers, we kill them at exit.
6596       (unless gnus-single-article-buffer
6597         (gnus-kill-buffer gnus-article-buffer)
6598         (gnus-kill-buffer gnus-original-article-buffer)
6599         (setq gnus-article-current nil))
6600       (if (not gnus-kill-summary-on-exit)
6601           (gnus-deaden-summary)
6602         (gnus-close-group group)
6603         (gnus-summary-clear-local-variables)
6604         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6605           (gnus-summary-clear-local-variables))
6606         (set-buffer gnus-group-buffer)
6607         (gnus-summary-clear-local-variables)
6608         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6609           (gnus-summary-clear-local-variables))
6610         (gnus-kill-buffer gnus-summary-buffer))
6611       (unless gnus-single-article-buffer
6612         (setq gnus-article-current nil))
6613       (when gnus-use-trees
6614         (gnus-tree-close group))
6615       (gnus-async-prefetch-remove-group group)
6616       (when (get-buffer gnus-article-buffer)
6617         (bury-buffer gnus-article-buffer))
6618       ;; Return to the group buffer.
6619       (gnus-configure-windows 'group 'force)
6620       ;; Clear the current group name.
6621       (setq gnus-newsgroup-name nil)
6622       (unless (gnus-ephemeral-group-p group)
6623         (gnus-group-update-group group))
6624       (when (equal (gnus-group-group-name) group)
6625         (gnus-group-next-unread-group 1))
6626       (when quit-config
6627         (gnus-handle-ephemeral-exit quit-config)))))
6628
6629 (defun gnus-handle-ephemeral-exit (quit-config)
6630   "Handle movement when leaving an ephemeral group.
6631 The state which existed when entering the ephemeral is reset."
6632   (if (not (buffer-name (car quit-config)))
6633       (gnus-configure-windows 'group 'force)
6634     (set-buffer (car quit-config))
6635     (cond ((eq major-mode 'gnus-summary-mode)
6636            (gnus-set-global-variables))
6637           ((eq major-mode 'gnus-article-mode)
6638            (save-excursion
6639              ;; The `gnus-summary-buffer' variable may point
6640              ;; to the old summary buffer when using a single
6641              ;; article buffer.
6642              (unless (gnus-buffer-live-p gnus-summary-buffer)
6643                (set-buffer gnus-group-buffer))
6644              (set-buffer gnus-summary-buffer)
6645              (gnus-set-global-variables))))
6646     (if (or (eq (cdr quit-config) 'article)
6647             (eq (cdr quit-config) 'pick))
6648         (progn
6649           ;; The current article may be from the ephemeral group
6650           ;; thus it is best that we reload this article
6651           ;;
6652           ;; If we're exiting from a large digest, this can be
6653           ;; extremely slow.  So, it's better not to reload it. -- jh.
6654           ;;(gnus-summary-show-article)
6655           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
6656               (gnus-configure-windows 'pick 'force)
6657             (gnus-configure-windows (cdr quit-config) 'force)))
6658       (gnus-configure-windows (cdr quit-config) 'force))
6659     (when (eq major-mode 'gnus-summary-mode)
6660       (gnus-summary-next-subject 1 nil t)
6661       (gnus-summary-recenter)
6662       (gnus-summary-position-point))))
6663
6664 ;;; Dead summaries.
6665
6666 (defvar gnus-dead-summary-mode-map nil)
6667
6668 (unless gnus-dead-summary-mode-map
6669   (setq gnus-dead-summary-mode-map (make-keymap))
6670   (suppress-keymap gnus-dead-summary-mode-map)
6671   (substitute-key-definition
6672    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
6673   (dolist (key '("\C-d" "\r" "\177" [delete]))
6674     (define-key gnus-dead-summary-mode-map
6675       key 'gnus-summary-wake-up-the-dead))
6676   (dolist (key '("q" "Q"))
6677     (define-key gnus-dead-summary-mode-map key 'bury-buffer)))
6678
6679 (defvar gnus-dead-summary-mode nil
6680   "Minor mode for Gnus summary buffers.")
6681
6682 (defun gnus-dead-summary-mode (&optional arg)
6683   "Minor mode for Gnus summary buffers."
6684   (interactive "P")
6685   (when (eq major-mode 'gnus-summary-mode)
6686     (make-local-variable 'gnus-dead-summary-mode)
6687     (setq gnus-dead-summary-mode
6688           (if (null arg) (not gnus-dead-summary-mode)
6689             (> (prefix-numeric-value arg) 0)))
6690     (when gnus-dead-summary-mode
6691       (add-minor-mode
6692        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
6693
6694 (defun gnus-deaden-summary ()
6695   "Make the current summary buffer into a dead summary buffer."
6696   ;; Kill any previous dead summary buffer.
6697   (when (and gnus-dead-summary
6698              (buffer-name gnus-dead-summary))
6699     (save-excursion
6700       (set-buffer gnus-dead-summary)
6701       (when gnus-dead-summary-mode
6702         (kill-buffer (current-buffer)))))
6703   ;; Make this the current dead summary.
6704   (setq gnus-dead-summary (current-buffer))
6705   (gnus-dead-summary-mode 1)
6706   (let ((name (buffer-name)))
6707     (when (string-match "Summary" name)
6708       (rename-buffer
6709        (concat (substring name 0 (match-beginning 0)) "Dead "
6710                (substring name (match-beginning 0)))
6711        t)
6712       (bury-buffer))))
6713
6714 (defun gnus-kill-or-deaden-summary (buffer)
6715   "Kill or deaden the summary BUFFER."
6716   (save-excursion
6717     (when (and (buffer-name buffer)
6718                (not gnus-single-article-buffer))
6719       (save-excursion
6720         (set-buffer buffer)
6721         (gnus-kill-buffer gnus-article-buffer)
6722         (gnus-kill-buffer gnus-original-article-buffer)))
6723     (cond
6724      ;; Kill the buffer.
6725      (gnus-kill-summary-on-exit
6726       (when (and gnus-use-trees
6727                  (gnus-buffer-exists-p buffer))
6728         (save-excursion
6729           (set-buffer buffer)
6730           (gnus-tree-close gnus-newsgroup-name)))
6731       (gnus-kill-buffer buffer))
6732      ;; Deaden the buffer.
6733      ((gnus-buffer-exists-p buffer)
6734       (save-excursion
6735         (set-buffer buffer)
6736         (gnus-deaden-summary))))))
6737
6738 (defun gnus-summary-wake-up-the-dead (&rest args)
6739   "Wake up the dead summary buffer."
6740   (interactive)
6741   (gnus-dead-summary-mode -1)
6742   (let ((name (buffer-name)))
6743     (when (string-match "Dead " name)
6744       (rename-buffer
6745        (concat (substring name 0 (match-beginning 0))
6746                (substring name (match-end 0)))
6747        t)))
6748   (gnus-message 3 "This dead summary is now alive again"))
6749
6750 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
6751 (defun gnus-summary-fetch-faq (&optional faq-dir)
6752   "Fetch the FAQ for the current group.
6753 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
6754 in."
6755   (interactive
6756    (list
6757     (when current-prefix-arg
6758       (completing-read
6759        "FAQ dir: " (and (listp gnus-group-faq-directory)
6760                         (mapcar (lambda (file) (list file))
6761                                 gnus-group-faq-directory))))))
6762   (let (gnus-faq-buffer)
6763     (when (setq gnus-faq-buffer
6764                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
6765       (gnus-configure-windows 'summary-faq))))
6766
6767 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
6768 (defun gnus-summary-describe-group (&optional force)
6769   "Describe the current newsgroup."
6770   (interactive "P")
6771   (gnus-group-describe-group force gnus-newsgroup-name))
6772
6773 (defun gnus-summary-describe-briefly ()
6774   "Describe summary mode commands briefly."
6775   (interactive)
6776   (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")))
6777
6778 ;; Walking around group mode buffer from summary mode.
6779
6780 (defun gnus-summary-next-group (&optional no-article target-group backward)
6781   "Exit current newsgroup and then select next unread newsgroup.
6782 If prefix argument NO-ARTICLE is non-nil, no article is selected
6783 initially.  If TARGET-GROUP, go to this group.  If BACKWARD, go to
6784 previous group instead."
6785   (interactive "P")
6786   ;; Stop pre-fetching.
6787   (gnus-async-halt-prefetch)
6788   (let ((current-group gnus-newsgroup-name)
6789         (current-buffer (current-buffer))
6790         entered)
6791     ;; First we semi-exit this group to update Xrefs and all variables.
6792     ;; We can't do a real exit, because the window conf must remain
6793     ;; the same in case the user is prompted for info, and we don't
6794     ;; want the window conf to change before that...
6795     (gnus-summary-exit t)
6796     (while (not entered)
6797       ;; Then we find what group we are supposed to enter.
6798       (set-buffer gnus-group-buffer)
6799       (gnus-group-jump-to-group current-group)
6800       (setq target-group
6801             (or target-group
6802                 (if (eq gnus-keep-same-level 'best)
6803                     (gnus-summary-best-group gnus-newsgroup-name)
6804                   (gnus-summary-search-group backward gnus-keep-same-level))))
6805       (if (not target-group)
6806           ;; There are no further groups, so we return to the group
6807           ;; buffer.
6808           (progn
6809             (gnus-message 5 "Returning to the group buffer")
6810             (setq entered t)
6811             (when (gnus-buffer-live-p current-buffer)
6812               (set-buffer current-buffer)
6813               (gnus-summary-exit))
6814             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
6815         ;; We try to enter the target group.
6816         (gnus-group-jump-to-group target-group)
6817         (let ((unreads (gnus-group-group-unread)))
6818           (if (and (or (eq t unreads)
6819                        (and unreads (not (zerop unreads))))
6820                    (gnus-summary-read-group
6821                     target-group nil no-article
6822                     (and (buffer-name current-buffer) current-buffer)
6823                     nil backward))
6824               (setq entered t)
6825             (setq current-group target-group
6826                   target-group nil)))))))
6827
6828 (defun gnus-summary-prev-group (&optional no-article)
6829   "Exit current newsgroup and then select previous unread newsgroup.
6830 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
6831   (interactive "P")
6832   (gnus-summary-next-group no-article nil t))
6833
6834 ;; Walking around summary lines.
6835
6836 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
6837   "Go to the first subject satisfying any non-nil constraint.
6838 If UNREAD is non-nil, the article should be unread.
6839 If UNDOWNLOADED is non-nil, the article should be undownloaded.
6840 If UNSEEN is non-nil, the article should be unseen.
6841 Returns the article selected or nil if there are no matching articles."
6842   (interactive "P")
6843   (cond
6844    ;; Empty summary.
6845    ((null gnus-newsgroup-data)
6846     (gnus-message 3 "No articles in the group")
6847     nil)
6848    ;; Pick the first article.
6849    ((not (or unread undownloaded unseen))
6850     (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
6851     (gnus-data-number (car gnus-newsgroup-data)))
6852    ;; Find the first unread article.
6853    (t
6854     (let ((data gnus-newsgroup-data))
6855       (while (and data
6856                   (let ((num (gnus-data-number (car data))))
6857                     (or (memq num gnus-newsgroup-unfetched)
6858                         (not (or (and unread
6859                                       (memq num gnus-newsgroup-unreads))
6860                                  (and undownloaded
6861                                       (memq num gnus-newsgroup-undownloaded))
6862                                  (and unseen
6863                                       (memq num gnus-newsgroup-unseen)))))))
6864         (setq data (cdr data)))
6865       (prog1
6866           (if data
6867               (progn
6868                 (goto-char (gnus-data-pos (car data)))
6869                 (gnus-data-number (car data)))
6870             (gnus-message 3 "No more%s articles"
6871                           (let* ((r (when unread " unread"))
6872                                  (d (when undownloaded " undownloaded"))
6873                                  (s (when unseen " unseen"))
6874                                  (l (delq nil (list r d s))))
6875                             (cond ((= 3 (length l))
6876                                    (concat r "," d ", or" s))
6877                                   ((= 2 (length l))
6878                                    (concat (car l) ", or" (cadr l)))
6879                                   ((= 1 (length l))
6880                                    (car l))
6881                                   (t
6882                                    ""))))
6883             nil
6884             )
6885         (gnus-summary-position-point))))))
6886
6887 (defun gnus-summary-next-subject (n &optional unread dont-display)
6888   "Go to next N'th summary line.
6889 If N is negative, go to the previous N'th subject line.
6890 If UNREAD is non-nil, only unread articles are selected.
6891 The difference between N and the actual number of steps taken is
6892 returned."
6893   (interactive "p")
6894   (let ((backward (< n 0))
6895         (n (abs n)))
6896     (while (and (> n 0)
6897                 (if backward
6898                     (gnus-summary-find-prev unread)
6899                   (gnus-summary-find-next unread)))
6900       (unless (zerop (setq n (1- n)))
6901         (gnus-summary-show-thread)))
6902     (when (/= 0 n)
6903       (gnus-message 7 "No more%s articles"
6904                     (if unread " unread" "")))
6905     (unless dont-display
6906       (gnus-summary-recenter)
6907       (gnus-summary-position-point))
6908     n))
6909
6910 (defun gnus-summary-next-unread-subject (n)
6911   "Go to next N'th unread summary line."
6912   (interactive "p")
6913   (gnus-summary-next-subject n t))
6914
6915 (defun gnus-summary-prev-subject (n &optional unread)
6916   "Go to previous N'th summary line.
6917 If optional argument UNREAD is non-nil, only unread article is selected."
6918   (interactive "p")
6919   (gnus-summary-next-subject (- n) unread))
6920
6921 (defun gnus-summary-prev-unread-subject (n)
6922   "Go to previous N'th unread summary line."
6923   (interactive "p")
6924   (gnus-summary-next-subject (- n) t))
6925
6926 (defun gnus-summary-goto-subjects (articles)
6927   "Insert the subject header for ARTICLES in the current buffer."
6928   (save-excursion
6929     (dolist (article articles)
6930       (gnus-summary-goto-subject article t)))
6931   (gnus-summary-limit (append articles gnus-newsgroup-limit))
6932   (gnus-summary-position-point))
6933  
6934 (defun gnus-summary-goto-subject (article &optional force silent)
6935   "Go the subject line of ARTICLE.
6936 If FORCE, also allow jumping to articles not currently shown."
6937   (interactive "nArticle number: ")
6938   (unless (numberp article)
6939     (error "Article %s is not a number" article))
6940   (let ((b (point))
6941         (data (gnus-data-find article)))
6942     ;; We read in the article if we have to.
6943     (and (not data)
6944          force
6945          (gnus-summary-insert-subject
6946           article
6947           (if (or (numberp force) (vectorp force)) force)
6948           t)
6949          (setq data (gnus-data-find article)))
6950     (goto-char b)
6951     (if (not data)
6952         (progn
6953           (unless silent
6954             (gnus-message 3 "Can't find article %d" article))
6955           nil)
6956       (let ((pt (gnus-data-pos data)))
6957         (goto-char pt)
6958         (gnus-summary-set-article-display-arrow pt))
6959       (gnus-summary-position-point)
6960       article)))
6961
6962 ;; Walking around summary lines with displaying articles.
6963
6964 (defun gnus-summary-expand-window (&optional arg)
6965   "Make the summary buffer take up the entire Emacs frame.
6966 Given a prefix, will force an `article' buffer configuration."
6967   (interactive "P")
6968   (if arg
6969       (gnus-configure-windows 'article 'force)
6970     (gnus-configure-windows 'summary 'force)))
6971
6972 (defun gnus-summary-display-article (article &optional all-header)
6973   "Display ARTICLE in article buffer."
6974   (when (gnus-buffer-live-p gnus-article-buffer)
6975     (with-current-buffer gnus-article-buffer
6976       (mm-enable-multibyte)))
6977   (gnus-set-global-variables)
6978   (when (gnus-buffer-live-p gnus-article-buffer)
6979     (with-current-buffer gnus-article-buffer
6980       (setq gnus-article-charset gnus-newsgroup-charset)
6981       (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
6982       (mm-enable-multibyte)))
6983   (if (null article)
6984       nil
6985     (prog1
6986         (if gnus-summary-display-article-function
6987             (funcall gnus-summary-display-article-function article all-header)
6988           (gnus-article-prepare article all-header))
6989       (gnus-run-hooks 'gnus-select-article-hook)
6990       (when (and gnus-current-article
6991                  (not (zerop gnus-current-article)))
6992         (gnus-summary-goto-subject gnus-current-article))
6993       (gnus-summary-recenter)
6994       (when (and gnus-use-trees gnus-show-threads)
6995         (gnus-possibly-generate-tree article)
6996         (gnus-highlight-selected-tree article))
6997       ;; Successfully display article.
6998       (gnus-article-set-window-start
6999        (cdr (assq article gnus-newsgroup-bookmarks))))))
7000
7001 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7002   "Select the current article.
7003 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
7004 non-nil, the article will be re-fetched even if it already present in
7005 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
7006 be displayed."
7007   ;; Make sure we are in the summary buffer to work around bbdb bug.
7008   (unless (eq major-mode 'gnus-summary-mode)
7009     (set-buffer gnus-summary-buffer))
7010   (let ((article (or article (gnus-summary-article-number)))
7011         (all-headers (not (not all-headers))) ;Must be t or nil.
7012         gnus-summary-display-article-function)
7013     (and (not pseudo)
7014          (gnus-summary-article-pseudo-p article)
7015          (error "This is a pseudo-article"))
7016     (save-excursion
7017       (set-buffer gnus-summary-buffer)
7018       (if (or (and gnus-single-article-buffer
7019                    (or (null gnus-current-article)
7020                        (null gnus-article-current)
7021                        (null (get-buffer gnus-article-buffer))
7022                        (not (eq article (cdr gnus-article-current)))
7023                        (not (equal (car gnus-article-current)
7024                                    gnus-newsgroup-name))))
7025               (and (not gnus-single-article-buffer)
7026                    (or (null gnus-current-article)
7027                        (not (eq gnus-current-article article))))
7028               force)
7029           ;; The requested article is different from the current article.
7030           (progn
7031             (gnus-summary-display-article article all-headers)
7032             (when (gnus-buffer-live-p gnus-article-buffer)
7033               (with-current-buffer gnus-article-buffer
7034                 (if (not gnus-article-decoded-p) ;; a local variable
7035                     (mm-disable-multibyte))))
7036             (gnus-article-set-window-start
7037              (cdr (assq article gnus-newsgroup-bookmarks)))
7038             article)
7039         'old))))
7040
7041 (defun gnus-summary-force-verify-and-decrypt ()
7042   "Display buttons for signed/encrypted parts and verify/decrypt them."
7043   (interactive)
7044   (let ((mm-verify-option 'known)
7045         (mm-decrypt-option 'known)
7046         (gnus-article-emulate-mime t)
7047         (gnus-buttonized-mime-types (append (list "multipart/signed"
7048                                                   "multipart/encrypted")
7049                                             gnus-buttonized-mime-types)))
7050     (gnus-summary-select-article nil 'force)))
7051
7052 (defun gnus-summary-set-current-mark (&optional current-mark)
7053   "Obsolete function."
7054   nil)
7055
7056 (defun gnus-summary-next-article (&optional unread subject backward push)
7057   "Select the next article.
7058 If UNREAD, only unread articles are selected.
7059 If SUBJECT, only articles with SUBJECT are selected.
7060 If BACKWARD, the previous article is selected instead of the next."
7061   (interactive "P")
7062   (cond
7063    ;; Is there such an article?
7064    ((and (gnus-summary-search-forward unread subject backward)
7065          (or (gnus-summary-display-article (gnus-summary-article-number))
7066              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7067     (gnus-summary-position-point))
7068    ;; If not, we try the first unread, if that is wanted.
7069    ((and subject
7070          gnus-auto-select-same
7071          (gnus-summary-first-unread-article))
7072     (gnus-summary-position-point)
7073     (gnus-message 6 "Wrapped"))
7074    ;; Try to get next/previous article not displayed in this group.
7075    ((and gnus-auto-extend-newsgroup
7076          (not unread) (not subject))
7077     (gnus-summary-goto-article
7078      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7079      nil (count-lines (point-min) (point))))
7080    ;; Go to next/previous group.
7081    (t
7082     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7083       (gnus-summary-jump-to-group gnus-newsgroup-name))
7084     (let ((cmd last-command-char)
7085           (point
7086            (save-excursion
7087              (set-buffer gnus-group-buffer)
7088              (point)))
7089           (group
7090            (if (eq gnus-keep-same-level 'best)
7091                (gnus-summary-best-group gnus-newsgroup-name)
7092              (gnus-summary-search-group backward gnus-keep-same-level))))
7093       ;; For some reason, the group window gets selected.  We change
7094       ;; it back.
7095       (select-window (get-buffer-window (current-buffer)))
7096       ;; Select next unread newsgroup automagically.
7097       (cond
7098        ((or (not gnus-auto-select-next)
7099             (not cmd))
7100         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7101        ((or (eq gnus-auto-select-next 'quietly)
7102             (and (eq gnus-auto-select-next 'slightly-quietly)
7103                  push)
7104             (and (eq gnus-auto-select-next 'almost-quietly)
7105                  (gnus-summary-last-article-p)))
7106         ;; Select quietly.
7107         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7108             (gnus-summary-exit)
7109           (gnus-message 7 "No more%s articles (%s)..."
7110                         (if unread " unread" "")
7111                         (if group (concat "selecting " group)
7112                           "exiting"))
7113           (gnus-summary-next-group nil group backward)))
7114        (t
7115         (when (gnus-key-press-event-p last-input-event)
7116           (gnus-summary-walk-group-buffer
7117            gnus-newsgroup-name cmd unread backward point))))))))
7118
7119 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7120   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7121                       (?\C-p (gnus-group-prev-unread-group 1))))
7122         (cursor-in-echo-area t)
7123         keve key group ended prompt)
7124     (save-excursion
7125       (set-buffer gnus-group-buffer)
7126       (goto-char start)
7127       (setq group
7128             (if (eq gnus-keep-same-level 'best)
7129                 (gnus-summary-best-group gnus-newsgroup-name)
7130               (gnus-summary-search-group backward gnus-keep-same-level))))
7131     (while (not ended)
7132       (setq prompt
7133             (format
7134              "No more%s articles%s " (if unread " unread" "")
7135              (if (and group
7136                       (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7137                  (format " (Type %s for %s [%s])"
7138                          (single-key-description cmd) group
7139                          (gnus-group-unread group))
7140                (format " (Type %s to exit %s)"
7141                        (single-key-description cmd)
7142                        gnus-newsgroup-name))))
7143       ;; Confirm auto selection.
7144       (setq key (car (setq keve (gnus-read-event-char prompt)))
7145             ended t)
7146       (cond
7147        ((assq key keystrokes)
7148         (let ((obuf (current-buffer)))
7149           (switch-to-buffer gnus-group-buffer)
7150           (when group
7151             (gnus-group-jump-to-group group))
7152           (eval (cadr (assq key keystrokes)))
7153           (setq group (gnus-group-group-name))
7154           (switch-to-buffer obuf))
7155         (setq ended nil))
7156        ((equal key cmd)
7157         (if (or (not group)
7158                 (gnus-ephemeral-group-p gnus-newsgroup-name))
7159             (gnus-summary-exit)
7160           (gnus-summary-next-group nil group backward)))
7161        (t
7162         (push (cdr keve) unread-command-events))))))
7163
7164 (defun gnus-summary-next-unread-article ()
7165   "Select unread article after current one."
7166   (interactive)
7167   (gnus-summary-next-article
7168    (or (not (eq gnus-summary-goto-unread 'never))
7169        (gnus-summary-last-article-p (gnus-summary-article-number)))
7170    (and gnus-auto-select-same
7171         (gnus-summary-article-subject))))
7172
7173 (defun gnus-summary-prev-article (&optional unread subject)
7174   "Select the article after the current one.
7175 If UNREAD is non-nil, only unread articles are selected."
7176   (interactive "P")
7177   (gnus-summary-next-article unread subject t))
7178
7179 (defun gnus-summary-prev-unread-article ()
7180   "Select unread article before current one."
7181   (interactive)
7182   (gnus-summary-prev-article
7183    (or (not (eq gnus-summary-goto-unread 'never))
7184        (gnus-summary-first-article-p (gnus-summary-article-number)))
7185    (and gnus-auto-select-same
7186         (gnus-summary-article-subject))))
7187
7188 (defun gnus-summary-next-page (&optional lines circular stop)
7189   "Show next page of the selected article.
7190 If at the end of the current article, select the next article.
7191 LINES says how many lines should be scrolled up.
7192
7193 If CIRCULAR is non-nil, go to the start of the article instead of
7194 selecting the next article when reaching the end of the current
7195 article.
7196
7197 If STOP is non-nil, just stop when reaching the end of the message.
7198
7199 Also see the variable `gnus-article-skip-boring'."
7200   (interactive "P")
7201   (setq gnus-summary-buffer (current-buffer))
7202   (gnus-set-global-variables)
7203   (let ((article (gnus-summary-article-number))
7204         (article-window (get-buffer-window gnus-article-buffer t))
7205         endp)
7206     ;; If the buffer is empty, we have no article.
7207     (unless article
7208       (error "No article to select"))
7209     (gnus-configure-windows 'article)
7210     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7211         (if (and (eq gnus-summary-goto-unread 'never)
7212                  (not (gnus-summary-last-article-p article)))
7213             (gnus-summary-next-article)
7214           (gnus-summary-next-unread-article))
7215       (if (or (null gnus-current-article)
7216               (null gnus-article-current)
7217               (/= article (cdr gnus-article-current))
7218               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7219           ;; Selected subject is different from current article's.
7220           (gnus-summary-display-article article)
7221         (when article-window
7222           (gnus-eval-in-buffer-window gnus-article-buffer
7223             (setq endp (or (gnus-article-next-page lines)
7224                            (gnus-article-only-boring-p))))
7225           (when endp
7226             (cond (stop
7227                    (gnus-message 3 "End of message"))
7228                   (circular
7229                    (gnus-summary-beginning-of-article))
7230                   (lines
7231                    (gnus-message 3 "End of message"))
7232                   ((null lines)
7233                    (if (and (eq gnus-summary-goto-unread 'never)
7234                             (not (gnus-summary-last-article-p article)))
7235                        (gnus-summary-next-article)
7236                      (gnus-summary-next-unread-article))))))))
7237     (gnus-summary-recenter)
7238     (gnus-summary-position-point)))
7239
7240 (defun gnus-summary-prev-page (&optional lines move)
7241   "Show previous page of selected article.
7242 Argument LINES specifies lines to be scrolled down.
7243 If MOVE, move to the previous unread article if point is at
7244 the beginning of the buffer."
7245   (interactive "P")
7246   (let ((article (gnus-summary-article-number))
7247         (article-window (get-buffer-window gnus-article-buffer t))
7248         endp)
7249     (gnus-configure-windows 'article)
7250     (if (or (null gnus-current-article)
7251             (null gnus-article-current)
7252             (/= article (cdr gnus-article-current))
7253             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7254         ;; Selected subject is different from current article's.
7255         (gnus-summary-display-article article)
7256       (gnus-summary-recenter)
7257       (when article-window
7258         (gnus-eval-in-buffer-window gnus-article-buffer
7259           (setq endp (gnus-article-prev-page lines)))
7260         (when (and move endp)
7261           (cond (lines
7262                  (gnus-message 3 "Beginning of message"))
7263                 ((null lines)
7264                  (if (and (eq gnus-summary-goto-unread 'never)
7265                           (not (gnus-summary-first-article-p article)))
7266                      (gnus-summary-prev-article)
7267                    (gnus-summary-prev-unread-article))))))))
7268   (gnus-summary-position-point))
7269
7270 (defun gnus-summary-prev-page-or-article (&optional lines)
7271   "Show previous page of selected article.
7272 Argument LINES specifies lines to be scrolled down.
7273 If at the beginning of the article, go to the next article."
7274   (interactive "P")
7275   (gnus-summary-prev-page lines t))
7276
7277 (defun gnus-summary-scroll-up (lines)
7278   "Scroll up (or down) one line current article.
7279 Argument LINES specifies lines to be scrolled up (or down if negative)."
7280   (interactive "p")
7281   (gnus-configure-windows 'article)
7282   (gnus-summary-show-thread)
7283   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7284     (gnus-eval-in-buffer-window gnus-article-buffer
7285       (cond ((> lines 0)
7286              (when (gnus-article-next-page lines)
7287                (gnus-message 3 "End of message")))
7288             ((< lines 0)
7289              (gnus-article-prev-page (- lines))))))
7290   (gnus-summary-recenter)
7291   (gnus-summary-position-point))
7292
7293 (defun gnus-summary-scroll-down (lines)
7294   "Scroll down (or up) one line current article.
7295 Argument LINES specifies lines to be scrolled down (or up if negative)."
7296   (interactive "p")
7297   (gnus-summary-scroll-up (- lines)))
7298
7299 (defun gnus-summary-next-same-subject ()
7300   "Select next article which has the same subject as current one."
7301   (interactive)
7302   (gnus-summary-next-article nil (gnus-summary-article-subject)))
7303
7304 (defun gnus-summary-prev-same-subject ()
7305   "Select previous article which has the same subject as current one."
7306   (interactive)
7307   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7308
7309 (defun gnus-summary-next-unread-same-subject ()
7310   "Select next unread article which has the same subject as current one."
7311   (interactive)
7312   (gnus-summary-next-article t (gnus-summary-article-subject)))
7313
7314 (defun gnus-summary-prev-unread-same-subject ()
7315   "Select previous unread article which has the same subject as current one."
7316   (interactive)
7317   (gnus-summary-prev-article t (gnus-summary-article-subject)))
7318
7319 (defun gnus-summary-first-unread-article ()
7320   "Select the first unread article.
7321 Return nil if there are no unread articles."
7322   (interactive)
7323   (prog1
7324       (when (gnus-summary-first-subject t)
7325         (gnus-summary-show-thread)
7326         (gnus-summary-first-subject t)
7327         (gnus-summary-display-article (gnus-summary-article-number)))
7328     (gnus-summary-position-point)))
7329
7330 (defun gnus-summary-first-unread-subject ()
7331   "Place the point on the subject line of the first unread article.
7332 Return nil if there are no unread articles."
7333   (interactive)
7334   (prog1
7335       (when (gnus-summary-first-subject t)
7336         (gnus-summary-show-thread)
7337         (gnus-summary-first-subject t))
7338     (gnus-summary-position-point)))
7339
7340 (defun gnus-summary-first-unseen-subject ()
7341   "Place the point on the subject line of the first unseen article.
7342 Return nil if there are no unseen articles."
7343   (interactive)
7344   (prog1
7345       (when (gnus-summary-first-subject nil nil t)
7346         (gnus-summary-show-thread)
7347         (gnus-summary-first-subject nil nil t))
7348     (gnus-summary-position-point)))
7349
7350 (defun gnus-summary-first-unseen-or-unread-subject ()
7351   "Place the point on the subject line of the first unseen article or,
7352 if all article have been seen, on the subject line of the first unread
7353 article."
7354   (interactive)
7355   (prog1
7356       (unless (when (gnus-summary-first-subject nil nil t)
7357                 (gnus-summary-show-thread)
7358                 (gnus-summary-first-subject nil nil t))
7359         (when (gnus-summary-first-subject t)
7360           (gnus-summary-show-thread)
7361           (gnus-summary-first-subject t)))
7362     (gnus-summary-position-point)))
7363
7364 (defun gnus-summary-first-article ()
7365   "Select the first article.
7366 Return nil if there are no articles."
7367   (interactive)
7368   (prog1
7369       (when (gnus-summary-first-subject)
7370         (gnus-summary-show-thread)
7371         (gnus-summary-first-subject)
7372         (gnus-summary-display-article (gnus-summary-article-number)))
7373     (gnus-summary-position-point)))
7374
7375 (defun gnus-summary-best-unread-article (&optional arg)
7376   "Select the unread article with the highest score.
7377 If given a prefix argument, select the next unread article that has a
7378 score higher than the default score."
7379   (interactive "P")
7380   (let ((article (if arg
7381                      (gnus-summary-better-unread-subject)
7382                    (gnus-summary-best-unread-subject))))
7383     (if article
7384         (gnus-summary-goto-article article)
7385       (error "No unread articles"))))
7386
7387 (defun gnus-summary-best-unread-subject ()
7388   "Select the unread subject with the highest score."
7389   (interactive)
7390   (let ((best -1000000)
7391         (data gnus-newsgroup-data)
7392         article score)
7393     (while data
7394       (and (gnus-data-unread-p (car data))
7395            (> (setq score
7396                     (gnus-summary-article-score (gnus-data-number (car data))))
7397               best)
7398            (setq best score
7399                  article (gnus-data-number (car data))))
7400       (setq data (cdr data)))
7401     (when article
7402       (gnus-summary-goto-subject article))
7403     (gnus-summary-position-point)
7404     article))
7405
7406 (defun gnus-summary-better-unread-subject ()
7407   "Select the first unread subject that has a score over the default score."
7408   (interactive)
7409   (let ((data gnus-newsgroup-data)
7410         article score)
7411     (while (and (setq article (gnus-data-number (car data)))
7412                 (or (gnus-data-read-p (car data))
7413                     (not (> (gnus-summary-article-score article)
7414                             gnus-summary-default-score))))
7415       (setq data (cdr data)))
7416     (when article
7417       (gnus-summary-goto-subject article))
7418     (gnus-summary-position-point)
7419     article))
7420
7421 (defun gnus-summary-last-subject ()
7422   "Go to the last displayed subject line in the group."
7423   (let ((article (gnus-data-number (car (gnus-data-list t)))))
7424     (when article
7425       (gnus-summary-goto-subject article))))
7426
7427 (defun gnus-summary-goto-article (article &optional all-headers force)
7428   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7429 If ALL-HEADERS is non-nil, no header lines are hidden.
7430 If FORCE, go to the article even if it isn't displayed.  If FORCE
7431 is a number, it is the line the article is to be displayed on."
7432   (interactive
7433    (list
7434     (completing-read
7435      "Article number or Message-ID: "
7436      (mapcar (lambda (number) (list (int-to-string number)))
7437              gnus-newsgroup-limit))
7438     current-prefix-arg
7439     t))
7440   (prog1
7441       (if (and (stringp article)
7442                (string-match "@\\|%40" article))
7443           (gnus-summary-refer-article article)
7444         (when (stringp article)
7445           (setq article (string-to-number article)))
7446         (if (gnus-summary-goto-subject article force)
7447             (gnus-summary-display-article article all-headers)
7448           (gnus-message 4 "Couldn't go to article %s" article) nil))
7449     (gnus-summary-position-point)))
7450
7451 (defun gnus-summary-goto-last-article ()
7452   "Go to the previously read article."
7453   (interactive)
7454   (prog1
7455       (when gnus-last-article
7456         (gnus-summary-goto-article gnus-last-article nil t))
7457     (gnus-summary-position-point)))
7458
7459 (defun gnus-summary-pop-article (number)
7460   "Pop one article off the history and go to the previous.
7461 NUMBER articles will be popped off."
7462   (interactive "p")
7463   (let (to)
7464     (setq gnus-newsgroup-history
7465           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
7466     (if to
7467         (gnus-summary-goto-article (car to) nil t)
7468       (error "Article history empty")))
7469   (gnus-summary-position-point))
7470
7471 ;; Summary commands and functions for limiting the summary buffer.
7472
7473 (defun gnus-summary-limit-to-articles (n)
7474   "Limit the summary buffer to the next N articles.
7475 If not given a prefix, use the process marked articles instead."
7476   (interactive "P")
7477   (prog1
7478       (let ((articles (gnus-summary-work-articles n)))
7479         (setq gnus-newsgroup-processable nil)
7480         (gnus-summary-limit articles))
7481     (gnus-summary-position-point)))
7482
7483 (defun gnus-summary-pop-limit (&optional total)
7484   "Restore the previous limit.
7485 If given a prefix, remove all limits."
7486   (interactive "P")
7487   (when total
7488     (setq gnus-newsgroup-limits
7489           (list (mapcar (lambda (h) (mail-header-number h))
7490                         gnus-newsgroup-headers))))
7491   (unless gnus-newsgroup-limits
7492     (error "No limit to pop"))
7493   (prog1
7494       (gnus-summary-limit nil 'pop)
7495     (gnus-summary-position-point)))
7496
7497 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
7498   "Limit the summary buffer to articles that have subjects that match a regexp.
7499 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
7500   (interactive
7501    (list (read-string (if current-prefix-arg
7502                           "Exclude subject (regexp): "
7503                         "Limit to subject (regexp): "))
7504          nil current-prefix-arg))
7505   (unless header
7506     (setq header "subject"))
7507   (when (not (equal "" subject))
7508     (prog1
7509         (let ((articles (gnus-summary-find-matching
7510                          (or header "subject") subject 'all nil nil
7511                          not-matching)))
7512           (unless articles
7513             (error "Found no matches for \"%s\"" subject))
7514           (gnus-summary-limit articles))
7515       (gnus-summary-position-point))))
7516
7517 (defun gnus-summary-limit-to-author (from &optional not-matching)
7518   "Limit the summary buffer to articles that have authors that match a regexp.
7519 If NOT-MATCHING, excluding articles that have authors that match a regexp."
7520   (interactive
7521    (list (read-string (if current-prefix-arg
7522                           "Exclude author (regexp): "
7523                         "Limit to author (regexp): "))
7524          current-prefix-arg))
7525   (gnus-summary-limit-to-subject from "from" not-matching))
7526
7527 (defun gnus-summary-limit-to-age (age &optional younger-p)
7528   "Limit the summary buffer to articles that are older than (or equal) AGE days.
7529 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
7530 articles that are younger than AGE days."
7531   (interactive
7532    (let ((younger current-prefix-arg)
7533          (days-got nil)
7534          days)
7535      (while (not days-got)
7536        (setq days (if younger
7537                       (read-string "Limit to articles younger than (in days, older when negative): ")
7538                     (read-string
7539                      "Limit to articles older than (in days, younger when negative): ")))
7540        (when (> (length days) 0)
7541          (setq days (read days)))
7542        (if (numberp days)
7543            (progn
7544              (setq days-got t)
7545              (if (< days 0)
7546                  (progn
7547                    (setq younger (not younger))
7548                    (setq days (* days -1)))))
7549          (message "Please enter a number.")
7550          (sleep-for 1)))
7551      (list days younger)))
7552   (prog1
7553       (let ((data gnus-newsgroup-data)
7554             (cutoff (days-to-time age))
7555             articles d date is-younger)
7556         (while (setq d (pop data))
7557           (when (and (vectorp (gnus-data-header d))
7558                      (setq date (mail-header-date (gnus-data-header d))))
7559             (setq is-younger (time-less-p
7560                               (time-since (condition-case ()
7561                                               (date-to-time date)
7562                                             (error '(0 0))))
7563                               cutoff))
7564             (when (if younger-p
7565                       is-younger
7566                     (not is-younger))
7567               (push (gnus-data-number d) articles))))
7568         (gnus-summary-limit (nreverse articles)))
7569     (gnus-summary-position-point)))
7570
7571 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
7572   "Limit the summary buffer to articles that match an 'extra' header."
7573   (interactive
7574    (let ((header
7575           (intern
7576            (gnus-completing-read-with-default
7577             (symbol-name (car gnus-extra-headers))
7578             (if current-prefix-arg
7579                 "Exclude extra header:"
7580               "Limit extra header:")
7581             (mapcar (lambda (x)
7582                       (cons (symbol-name x) x))
7583                     gnus-extra-headers)
7584             nil
7585             t))))
7586      (list header
7587            (read-string (format "%s header %s (regexp): "
7588                                 (if current-prefix-arg "Exclude" "Limit to")
7589                                 header))
7590            current-prefix-arg)))
7591   (when (not (equal "" regexp))
7592     (prog1
7593         (let ((articles (gnus-summary-find-matching
7594                          (cons 'extra header) regexp 'all nil nil
7595                          not-matching)))
7596           (unless articles
7597             (error "Found no matches for \"%s\"" regexp))
7598           (gnus-summary-limit articles))
7599       (gnus-summary-position-point))))
7600
7601 (defun gnus-summary-limit-to-display-predicate ()
7602   "Limit the summary buffer to the predicated in the `display' group parameter."
7603   (interactive)
7604   (unless gnus-newsgroup-display
7605     (error "There is no `display' group parameter"))
7606   (let (articles)
7607     (dolist (number gnus-newsgroup-articles)
7608       (when (funcall gnus-newsgroup-display)
7609         (push number articles)))
7610     (gnus-summary-limit articles))
7611   (gnus-summary-position-point))
7612
7613 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7614 (make-obsolete
7615  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7616
7617 (defun gnus-summary-limit-to-unread (&optional all)
7618   "Limit the summary buffer to articles that are not marked as read.
7619 If ALL is non-nil, limit strictly to unread articles."
7620   (interactive "P")
7621   (if all
7622       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
7623     (gnus-summary-limit-to-marks
7624      ;; Concat all the marks that say that an article is read and have
7625      ;; those removed.
7626      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
7627            gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
7628            gnus-low-score-mark gnus-expirable-mark
7629            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
7630            gnus-duplicate-mark gnus-souped-mark)
7631      'reverse)))
7632
7633 (defun gnus-summary-limit-to-replied (&optional unreplied)
7634   "Limit the summary buffer to replied articles.
7635 If UNREPLIED (the prefix), limit to unreplied articles."
7636   (interactive "P")
7637   (if unreplied
7638       (gnus-summary-limit
7639        (gnus-set-difference gnus-newsgroup-articles
7640         gnus-newsgroup-replied))
7641     (gnus-summary-limit gnus-newsgroup-replied))
7642   (gnus-summary-position-point))
7643
7644 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
7645 (make-obsolete 'gnus-summary-delete-marked-with
7646                'gnus-summary-limit-exclude-marks)
7647
7648 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
7649   "Exclude articles that are marked with MARKS (e.g. \"DK\").
7650 If REVERSE, limit the summary buffer to articles that are marked
7651 with MARKS.  MARKS can either be a string of marks or a list of marks.
7652 Returns how many articles were removed."
7653   (interactive "sMarks: ")
7654   (gnus-summary-limit-to-marks marks t))
7655
7656 (defun gnus-summary-limit-to-marks (marks &optional reverse)
7657   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
7658 If REVERSE (the prefix), limit the summary buffer to articles that are
7659 not marked with MARKS.  MARKS can either be a string of marks or a
7660 list of marks.
7661 Returns how many articles were removed."
7662   (interactive "sMarks: \nP")
7663   (prog1
7664       (let ((data gnus-newsgroup-data)
7665             (marks (if (listp marks) marks
7666                      (append marks nil))) ; Transform to list.
7667             articles)
7668         (while data
7669           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
7670                   (memq (gnus-data-mark (car data)) marks))
7671             (push (gnus-data-number (car data)) articles))
7672           (setq data (cdr data)))
7673         (gnus-summary-limit articles))
7674     (gnus-summary-position-point)))
7675
7676 (defun gnus-summary-limit-to-score (score)
7677   "Limit to articles with score at or above SCORE."
7678   (interactive "NLimit to articles with score of at least: ")
7679   (let ((data gnus-newsgroup-data)
7680         articles)
7681     (while data
7682       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
7683                 score)
7684         (push (gnus-data-number (car data)) articles))
7685       (setq data (cdr data)))
7686     (prog1
7687         (gnus-summary-limit articles)
7688       (gnus-summary-position-point))))
7689
7690 (defun gnus-summary-limit-to-unseen ()
7691   "Limit to unseen articles."
7692   (interactive)
7693   (prog1
7694       (gnus-summary-limit gnus-newsgroup-unseen)
7695     (gnus-summary-position-point)))
7696
7697 (defun gnus-summary-limit-include-thread (id)
7698   "Display all the hidden articles that is in the thread with ID in it.
7699 When called interactively, ID is the Message-ID of the current
7700 article."
7701   (interactive (list (mail-header-id (gnus-summary-article-header))))
7702   (let ((articles (gnus-articles-in-thread
7703                    (gnus-id-to-thread (gnus-root-id id)))))
7704     (prog1
7705         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7706       (gnus-summary-limit-include-matching-articles
7707        "subject"
7708        (regexp-quote (gnus-simplify-subject-re
7709                       (mail-header-subject (gnus-id-to-header id)))))
7710       (gnus-summary-position-point))))
7711
7712 (defun gnus-summary-limit-include-matching-articles (header regexp)
7713   "Display all the hidden articles that have HEADERs that match REGEXP."
7714   (interactive (list (read-string "Match on header: ")
7715                      (read-string "Regexp: ")))
7716   (let ((articles (gnus-find-matching-articles header regexp)))
7717     (prog1
7718         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7719       (gnus-summary-position-point))))
7720
7721 (defun gnus-summary-insert-dormant-articles ()
7722   "Insert all the dormant articles for this group into the current buffer."
7723   (interactive)
7724   (let ((gnus-verbose (max 6 gnus-verbose)))
7725     (if (not gnus-newsgroup-dormant)
7726         (gnus-message 3 "No cached articles for this group")
7727       (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
7728
7729 (defun gnus-summary-limit-include-dormant ()
7730   "Display all the hidden articles that are marked as dormant.
7731 Note that this command only works on a subset of the articles currently
7732 fetched for this group."
7733   (interactive)
7734   (unless gnus-newsgroup-dormant
7735     (error "There are no dormant articles in this group"))
7736   (prog1
7737       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
7738     (gnus-summary-position-point)))
7739
7740 (defun gnus-summary-limit-exclude-dormant ()
7741   "Hide all dormant articles."
7742   (interactive)
7743   (prog1
7744       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
7745     (gnus-summary-position-point)))
7746
7747 (defun gnus-summary-limit-exclude-childless-dormant ()
7748   "Hide all dormant articles that have no children."
7749   (interactive)
7750   (let ((data (gnus-data-list t))
7751         articles d children)
7752     ;; Find all articles that are either not dormant or have
7753     ;; children.
7754     (while (setq d (pop data))
7755       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
7756                 (and (setq children
7757                            (gnus-article-children (gnus-data-number d)))
7758                      (let (found)
7759                        (while children
7760                          (when (memq (car children) articles)
7761                            (setq children nil
7762                                  found t))
7763                          (pop children))
7764                        found)))
7765         (push (gnus-data-number d) articles)))
7766     ;; Do the limiting.
7767     (prog1
7768         (gnus-summary-limit articles)
7769       (gnus-summary-position-point))))
7770
7771 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
7772   "Mark all unread excluded articles as read.
7773 If ALL, mark even excluded ticked and dormants as read."
7774   (interactive "P")
7775   (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
7776   (let ((articles (gnus-sorted-ndifference
7777                    (sort
7778                     (mapcar (lambda (h) (mail-header-number h))
7779                             gnus-newsgroup-headers)
7780                     '<)
7781                    gnus-newsgroup-limit))
7782         article)
7783     (setq gnus-newsgroup-unreads
7784           (gnus-sorted-intersection gnus-newsgroup-unreads
7785                                     gnus-newsgroup-limit))
7786     (if all
7787         (setq gnus-newsgroup-dormant nil
7788               gnus-newsgroup-marked nil
7789               gnus-newsgroup-reads
7790               (nconc
7791                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
7792                gnus-newsgroup-reads))
7793       (while (setq article (pop articles))
7794         (unless (or (memq article gnus-newsgroup-dormant)
7795                     (memq article gnus-newsgroup-marked))
7796           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
7797
7798 (defun gnus-summary-limit (articles &optional pop)
7799   (if pop
7800       ;; We pop the previous limit off the stack and use that.
7801       (setq articles (car gnus-newsgroup-limits)
7802             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
7803     ;; We use the new limit, so we push the old limit on the stack.
7804     (push gnus-newsgroup-limit gnus-newsgroup-limits))
7805   ;; Set the limit.
7806   (setq gnus-newsgroup-limit articles)
7807   (let ((total (length gnus-newsgroup-data))
7808         (data (gnus-data-find-list (gnus-summary-article-number)))
7809         (gnus-summary-mark-below nil)   ; Inhibit this.
7810         found)
7811     ;; This will do all the work of generating the new summary buffer
7812     ;; according to the new limit.
7813     (gnus-summary-prepare)
7814     ;; Hide any threads, possibly.
7815     (gnus-summary-maybe-hide-threads)
7816     ;; Try to return to the article you were at, or one in the
7817     ;; neighborhood.
7818     (when data
7819       ;; We try to find some article after the current one.
7820       (while data
7821         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
7822           (setq data nil
7823                 found t))
7824         (setq data (cdr data))))
7825     (unless found
7826       ;; If there is no data, that means that we were after the last
7827       ;; article.  The same goes when we can't find any articles
7828       ;; after the current one.
7829       (goto-char (point-max))
7830       (gnus-summary-find-prev))
7831     (gnus-set-mode-line 'summary)
7832     ;; We return how many articles were removed from the summary
7833     ;; buffer as a result of the new limit.
7834     (- total (length gnus-newsgroup-data))))
7835
7836 (defsubst gnus-invisible-cut-children (threads)
7837   (let ((num 0))
7838     (while threads
7839       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
7840         (incf num))
7841       (pop threads))
7842     (< num 2)))
7843
7844 (defsubst gnus-cut-thread (thread)
7845   "Go forwards in the thread until we find an article that we want to display."
7846   (when (or (eq gnus-fetch-old-headers 'some)
7847             (eq gnus-fetch-old-headers 'invisible)
7848             (numberp gnus-fetch-old-headers)
7849             (eq gnus-build-sparse-threads 'some)
7850             (eq gnus-build-sparse-threads 'more))
7851     ;; Deal with old-fetched headers and sparse threads.
7852     (while (and
7853             thread
7854             (or
7855              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
7856              (gnus-summary-article-ancient-p
7857               (mail-header-number (car thread))))
7858             (if (or (<= (length (cdr thread)) 1)
7859                     (eq gnus-fetch-old-headers 'invisible))
7860                 (setq gnus-newsgroup-limit
7861                       (delq (mail-header-number (car thread))
7862                             gnus-newsgroup-limit)
7863                       thread (cadr thread))
7864               (when (gnus-invisible-cut-children (cdr thread))
7865                 (let ((th (cdr thread)))
7866                   (while th
7867                     (if (memq (mail-header-number (caar th))
7868                               gnus-newsgroup-limit)
7869                         (setq thread (car th)
7870                               th nil)
7871                       (setq th (cdr th))))))))))
7872   thread)
7873
7874 (defun gnus-cut-threads (threads)
7875   "Cut off all uninteresting articles from the beginning of THREADS."
7876   (when (or (eq gnus-fetch-old-headers 'some)
7877             (eq gnus-fetch-old-headers 'invisible)
7878             (numberp gnus-fetch-old-headers)
7879             (eq gnus-build-sparse-threads 'some)
7880             (eq gnus-build-sparse-threads 'more))
7881     (let ((th threads))
7882       (while th
7883         (setcar th (gnus-cut-thread (car th)))
7884         (setq th (cdr th)))))
7885   ;; Remove nixed out threads.
7886   (delq nil threads))
7887
7888 (defun gnus-summary-initial-limit (&optional show-if-empty)
7889   "Figure out what the initial limit is supposed to be on group entry.
7890 This entails weeding out unwanted dormants, low-scored articles,
7891 fetch-old-headers verbiage, and so on."
7892   ;; Most groups have nothing to remove.
7893   (if (or gnus-inhibit-limiting
7894           (and (null gnus-newsgroup-dormant)
7895                (eq gnus-newsgroup-display 'gnus-not-ignore)
7896                (not (eq gnus-fetch-old-headers 'some))
7897                (not (numberp gnus-fetch-old-headers))
7898                (not (eq gnus-fetch-old-headers 'invisible))
7899                (null gnus-summary-expunge-below)
7900                (not (eq gnus-build-sparse-threads 'some))
7901                (not (eq gnus-build-sparse-threads 'more))
7902                (null gnus-thread-expunge-below)
7903                (not gnus-use-nocem)))
7904       ()                                ; Do nothing.
7905     (push gnus-newsgroup-limit gnus-newsgroup-limits)
7906     (setq gnus-newsgroup-limit nil)
7907     (mapatoms
7908      (lambda (node)
7909        (unless (car (symbol-value node))
7910          ;; These threads have no parents -- they are roots.
7911          (let ((nodes (cdr (symbol-value node)))
7912                thread)
7913            (while nodes
7914              (if (and gnus-thread-expunge-below
7915                       (< (gnus-thread-total-score (car nodes))
7916                          gnus-thread-expunge-below))
7917                  (gnus-expunge-thread (pop nodes))
7918                (setq thread (pop nodes))
7919                (gnus-summary-limit-children thread))))))
7920      gnus-newsgroup-dependencies)
7921     ;; If this limitation resulted in an empty group, we might
7922     ;; pop the previous limit and use it instead.
7923     (when (and (not gnus-newsgroup-limit)
7924                show-if-empty)
7925       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
7926     gnus-newsgroup-limit))
7927
7928 (defun gnus-summary-limit-children (thread)
7929   "Return 1 if this subthread is visible and 0 if it is not."
7930   ;; First we get the number of visible children to this thread.  This
7931   ;; is done by recursing down the thread using this function, so this
7932   ;; will really go down to a leaf article first, before slowly
7933   ;; working its way up towards the root.
7934   (when thread
7935     (let* ((max-lisp-eval-depth 5000)
7936            (children
7937            (if (cdr thread)
7938                (apply '+ (mapcar 'gnus-summary-limit-children
7939                                  (cdr thread)))
7940              0))
7941           (number (mail-header-number (car thread)))
7942           score)
7943       (if (and
7944            (not (memq number gnus-newsgroup-marked))
7945            (or
7946             ;; If this article is dormant and has absolutely no visible
7947             ;; children, then this article isn't visible.
7948             (and (memq number gnus-newsgroup-dormant)
7949                  (zerop children))
7950             ;; If this is "fetch-old-headered" and there is no
7951             ;; visible children, then we don't want this article.
7952             (and (or (eq gnus-fetch-old-headers 'some)
7953                      (numberp gnus-fetch-old-headers))
7954                  (gnus-summary-article-ancient-p number)
7955                  (zerop children))
7956             ;; If this is "fetch-old-headered" and `invisible', then
7957             ;; we don't want this article.
7958             (and (eq gnus-fetch-old-headers 'invisible)
7959                  (gnus-summary-article-ancient-p number))
7960             ;; If this is a sparsely inserted article with no children,
7961             ;; we don't want it.
7962             (and (eq gnus-build-sparse-threads 'some)
7963                  (gnus-summary-article-sparse-p number)
7964                  (zerop children))
7965             ;; If we use expunging, and this article is really
7966             ;; low-scored, then we don't want this article.
7967             (when (and gnus-summary-expunge-below
7968                        (< (setq score
7969                                 (or (cdr (assq number gnus-newsgroup-scored))
7970                                     gnus-summary-default-score))
7971                           gnus-summary-expunge-below))
7972               ;; We increase the expunge-tally here, but that has
7973               ;; nothing to do with the limits, really.
7974               (incf gnus-newsgroup-expunged-tally)
7975               ;; We also mark as read here, if that's wanted.
7976               (when (and gnus-summary-mark-below
7977                          (< score gnus-summary-mark-below))
7978                 (setq gnus-newsgroup-unreads
7979                       (delq number gnus-newsgroup-unreads))
7980                 (if gnus-newsgroup-auto-expire
7981                     (push number gnus-newsgroup-expirable)
7982                   (push (cons number gnus-low-score-mark)
7983                         gnus-newsgroup-reads)))
7984               t)
7985             ;; Do the `display' group parameter.
7986             (and gnus-newsgroup-display
7987                  (not (funcall gnus-newsgroup-display)))
7988             ;; Check NoCeM things.
7989             (if (and gnus-use-nocem
7990                      (gnus-nocem-unwanted-article-p
7991                       (mail-header-id (car thread))))
7992                 (progn
7993                   (setq gnus-newsgroup-unreads
7994                         (delq number gnus-newsgroup-unreads))
7995                   t))))
7996           ;; Nope, invisible article.
7997           0
7998         ;; Ok, this article is to be visible, so we add it to the limit
7999         ;; and return 1.
8000         (push number gnus-newsgroup-limit)
8001         1))))
8002
8003 (defun gnus-expunge-thread (thread)
8004   "Mark all articles in THREAD as read."
8005   (let* ((number (mail-header-number (car thread))))
8006     (incf gnus-newsgroup-expunged-tally)
8007     ;; We also mark as read here, if that's wanted.
8008     (setq gnus-newsgroup-unreads
8009           (delq number gnus-newsgroup-unreads))
8010     (if gnus-newsgroup-auto-expire
8011         (push number gnus-newsgroup-expirable)
8012       (push (cons number gnus-low-score-mark)
8013             gnus-newsgroup-reads)))
8014   ;; Go recursively through all subthreads.
8015   (mapcar 'gnus-expunge-thread (cdr thread)))
8016
8017 ;; Summary article oriented commands
8018
8019 (defun gnus-summary-refer-parent-article (n)
8020   "Refer parent article N times.
8021 If N is negative, go to ancestor -N instead.
8022 The difference between N and the number of articles fetched is returned."
8023   (interactive "p")
8024   (let ((skip 1)
8025         error header ref)
8026     (when (not (natnump n))
8027       (setq skip (abs n)
8028             n 1))
8029     (while (and (> n 0)
8030                 (not error))
8031       (setq header (gnus-summary-article-header))
8032       (if (and (eq (mail-header-number header)
8033                    (cdr gnus-article-current))
8034                (equal gnus-newsgroup-name
8035                       (car gnus-article-current)))
8036           ;; If we try to find the parent of the currently
8037           ;; displayed article, then we take a look at the actual
8038           ;; References header, since this is slightly more
8039           ;; reliable than the References field we got from the
8040           ;; server.
8041           (save-excursion
8042             (set-buffer gnus-original-article-buffer)
8043             (nnheader-narrow-to-headers)
8044             (unless (setq ref (message-fetch-field "references"))
8045               (when (setq ref (message-fetch-field "in-reply-to"))
8046                 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8047             (widen))
8048         (setq ref
8049               ;; It's not the current article, so we take a bet on
8050               ;; the value we got from the server.
8051               (mail-header-references header)))
8052       (if (and ref
8053                (not (equal ref "")))
8054           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8055             (gnus-message 1 "Couldn't find parent"))
8056         (gnus-message 1 "No references in article %d"
8057                       (gnus-summary-article-number))
8058         (setq error t))
8059       (decf n))
8060     (gnus-summary-position-point)
8061     n))
8062
8063 (defun gnus-summary-refer-references ()
8064   "Fetch all articles mentioned in the References header.
8065 Return the number of articles fetched."
8066   (interactive)
8067   (let ((ref (mail-header-references (gnus-summary-article-header)))
8068         (current (gnus-summary-article-number))
8069         (n 0))
8070     (if (or (not ref)
8071             (equal ref ""))
8072         (error "No References in the current article")
8073       ;; For each Message-ID in the References header...
8074       (while (string-match "<[^>]*>" ref)
8075         (incf n)
8076         ;; ... fetch that article.
8077         (gnus-summary-refer-article
8078          (prog1 (match-string 0 ref)
8079            (setq ref (substring ref (match-end 0))))))
8080       (gnus-summary-goto-subject current)
8081       (gnus-summary-position-point)
8082       n)))
8083
8084 (defun gnus-summary-refer-thread (&optional limit)
8085   "Fetch all articles in the current thread.
8086 If LIMIT (the numerical prefix), fetch that many old headers instead
8087 of what's specified by the `gnus-refer-thread-limit' variable."
8088   (interactive "P")
8089   (let ((id (mail-header-id (gnus-summary-article-header)))
8090         (limit (if limit (prefix-numeric-value limit)
8091                  gnus-refer-thread-limit)))
8092     (unless (eq gnus-fetch-old-headers 'invisible)
8093       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8094       ;; Retrieve the headers and read them in.
8095       (if (eq (if (numberp limit)
8096                   (gnus-retrieve-headers
8097                    (list (min
8098                           (+ (mail-header-number
8099                               (gnus-summary-article-header))
8100                              limit)
8101                           gnus-newsgroup-end))
8102                    gnus-newsgroup-name (* limit 2))
8103                 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8104                 ;; headers.
8105                 (gnus-retrieve-headers (list gnus-newsgroup-end)
8106                                        gnus-newsgroup-name limit))
8107               'nov)
8108           (gnus-build-all-threads)
8109         (error "Can't fetch thread from back ends that don't support NOV"))
8110       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8111     (gnus-summary-limit-include-thread id)))
8112
8113 (defun gnus-summary-refer-article (message-id)
8114   "Fetch an article specified by MESSAGE-ID."
8115   (interactive "sMessage-ID: ")
8116   (when (and (stringp message-id)
8117              (not (zerop (length message-id))))
8118     (setq message-id (gnus-replace-in-string message-id " " ""))
8119     ;; Construct the correct Message-ID if necessary.
8120     ;; Suggested by tale@pawl.rpi.edu.
8121     (unless (string-match "^<" message-id)
8122       (setq message-id (concat "<" message-id)))
8123     (unless (string-match ">$" message-id)
8124       (setq message-id (concat message-id ">")))
8125     ;; People often post MIDs from URLs, so unhex it:
8126     (unless (string-match "@" message-id)
8127       (setq message-id (gnus-url-unhex-string message-id)))
8128     (let* ((header (gnus-id-to-header message-id))
8129            (sparse (and header
8130                         (gnus-summary-article-sparse-p
8131                          (mail-header-number header))
8132                         (memq (mail-header-number header)
8133                               gnus-newsgroup-limit)))
8134            number)
8135       (cond
8136        ;; If the article is present in the buffer we just go to it.
8137        ((and header
8138              (or (not (gnus-summary-article-sparse-p
8139                        (mail-header-number header)))
8140                  sparse))
8141         (prog1
8142             (gnus-summary-goto-article
8143              (mail-header-number header) nil t)
8144           (when sparse
8145             (gnus-summary-update-article (mail-header-number header)))))
8146        (t
8147         ;; We fetch the article.
8148         (catch 'found
8149           (dolist (gnus-override-method (gnus-refer-article-methods))
8150             (when (and (gnus-check-server gnus-override-method)
8151                        ;; Fetch the header,
8152                        (setq number (gnus-summary-insert-subject message-id)))
8153               ;; and display the article.
8154               (gnus-summary-select-article nil nil nil number)
8155               (throw 'found t)))
8156           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8157
8158 (defun gnus-refer-article-methods ()
8159   "Return a list of referable methods."
8160   (cond
8161    ;; No method, so we default to current and native.
8162    ((null gnus-refer-article-method)
8163     (list gnus-current-select-method gnus-select-method))
8164    ;; Current.
8165    ((eq 'current gnus-refer-article-method)
8166     (list gnus-current-select-method))
8167    ;; List of select methods.
8168    ((not (and (symbolp (car gnus-refer-article-method))
8169               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8170     (let (out)
8171       (dolist (method gnus-refer-article-method)
8172         (push (if (eq 'current method)
8173                   gnus-current-select-method
8174                 method)
8175               out))
8176       (nreverse out)))
8177    ;; One single select method.
8178    (t
8179     (list gnus-refer-article-method))))
8180
8181 (defun gnus-summary-edit-parameters ()
8182   "Edit the group parameters of the current group."
8183   (interactive)
8184   (gnus-group-edit-group gnus-newsgroup-name 'params))
8185
8186 (defun gnus-summary-customize-parameters ()
8187   "Customize the group parameters of the current group."
8188   (interactive)
8189   (gnus-group-customize gnus-newsgroup-name))
8190
8191 (defun gnus-summary-enter-digest-group (&optional force)
8192   "Enter an nndoc group based on the current article.
8193 If FORCE, force a digest interpretation.  If not, try
8194 to guess what the document format is."
8195   (interactive "P")
8196   (let ((conf gnus-current-window-configuration))
8197     (save-window-excursion
8198       (save-excursion
8199         (let (gnus-article-prepare-hook
8200               gnus-display-mime-function
8201               gnus-break-pages)
8202           (gnus-summary-select-article))))
8203     (setq gnus-current-window-configuration conf)
8204     (let* ((name (format "%s-%d"
8205                          (gnus-group-prefixed-name
8206                           gnus-newsgroup-name (list 'nndoc ""))
8207                          (save-excursion
8208                            (set-buffer gnus-summary-buffer)
8209                            gnus-current-article)))
8210            (ogroup gnus-newsgroup-name)
8211            (params (append (gnus-info-params (gnus-get-info ogroup))
8212                            (list (cons 'to-group ogroup))
8213                            (list (cons 'parent-group ogroup))
8214                            (list (cons 'save-article-group ogroup))))
8215            (case-fold-search t)
8216            (buf (current-buffer))
8217            dig to-address)
8218       (save-excursion
8219         (set-buffer gnus-original-article-buffer)
8220         ;; Have the digest group inherit the main mail address of
8221         ;; the parent article.
8222         (when (setq to-address (or (gnus-fetch-field "reply-to")
8223                                    (gnus-fetch-field "from")))
8224           (setq params (append
8225                         (list (cons 'to-address
8226                                     (funcall gnus-decode-encoded-word-function
8227                                              to-address))))))
8228         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8229         (insert-buffer-substring gnus-original-article-buffer)
8230         ;; Remove lines that may lead nndoc to misinterpret the
8231         ;; document type.
8232         (narrow-to-region
8233          (goto-char (point-min))
8234          (or (search-forward "\n\n" nil t) (point)))
8235         (goto-char (point-min))
8236         (delete-matching-lines "^Path:\\|^From ")
8237         (widen))
8238       (unwind-protect
8239           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8240                     (gnus-newsgroup-ephemeral-ignored-charsets
8241                      gnus-newsgroup-ignored-charsets))
8242                 (gnus-group-read-ephemeral-group
8243                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8244                               (nndoc-article-type
8245                                ,(if force 'mbox 'guess)))
8246                  t nil nil nil
8247                  `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8248                                                         "ADAPT")))))
8249               ;; Make all postings to this group go to the parent group.
8250               (nconc (gnus-info-params (gnus-get-info name))
8251                      params)
8252             ;; Couldn't select this doc group.
8253             (switch-to-buffer buf)
8254             (gnus-set-global-variables)
8255             (gnus-configure-windows 'summary)
8256             (gnus-message 3 "Article couldn't be entered?"))
8257         (kill-buffer dig)))))
8258
8259 (defun gnus-summary-read-document (n)
8260   "Open a new group based on the current article(s).
8261 This will allow you to read digests and other similar
8262 documents as newsgroups.
8263 Obeys the standard process/prefix convention."
8264   (interactive "P")
8265   (let* ((articles (gnus-summary-work-articles n))
8266          (ogroup gnus-newsgroup-name)
8267          (params (append (gnus-info-params (gnus-get-info ogroup))
8268                          (list (cons 'to-group ogroup))))
8269          article group egroup groups vgroup)
8270     (while (setq article (pop articles))
8271       (setq group (format "%s-%d" gnus-newsgroup-name article))
8272       (gnus-summary-remove-process-mark article)
8273       (when (gnus-summary-display-article article)
8274         (save-excursion
8275           (with-temp-buffer
8276             (insert-buffer-substring gnus-original-article-buffer)
8277             ;; Remove some headers that may lead nndoc to make
8278             ;; the wrong guess.
8279             (message-narrow-to-head)
8280             (goto-char (point-min))
8281             (delete-matching-lines "^Path:\\|^From ")
8282             (widen)
8283             (if (setq egroup
8284                       (gnus-group-read-ephemeral-group
8285                        group `(nndoc ,group (nndoc-address ,(current-buffer))
8286                                      (nndoc-article-type guess))
8287                        t nil t))
8288                 (progn
8289             ;; Make all postings to this group go to the parent group.
8290                   (nconc (gnus-info-params (gnus-get-info egroup))
8291                          params)
8292                   (push egroup groups))
8293               ;; Couldn't select this doc group.
8294               (gnus-error 3 "Article couldn't be entered"))))))
8295     ;; Now we have selected all the documents.
8296     (cond
8297      ((not groups)
8298       (error "None of the articles could be interpreted as documents"))
8299      ((gnus-group-read-ephemeral-group
8300        (setq vgroup (format
8301                      "nnvirtual:%s-%s" gnus-newsgroup-name
8302                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
8303        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
8304        t
8305        (cons (current-buffer) 'summary)))
8306      (t
8307       (error "Couldn't select virtual nndoc group")))))
8308
8309 (defun gnus-summary-isearch-article (&optional regexp-p)
8310   "Do incremental search forward on the current article.
8311 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
8312   (interactive "P")
8313   (gnus-summary-select-article)
8314   (gnus-configure-windows 'article)
8315   (gnus-eval-in-buffer-window gnus-article-buffer
8316     (save-restriction
8317       (widen)
8318       (isearch-forward regexp-p))))
8319
8320 (defun gnus-summary-search-article-forward (regexp &optional backward)
8321   "Search for an article containing REGEXP forward.
8322 If BACKWARD, search backward instead."
8323   (interactive
8324    (list (read-string
8325           (format "Search article %s (regexp%s): "
8326                   (if current-prefix-arg "backward" "forward")
8327                   (if gnus-last-search-regexp
8328                       (concat ", default " gnus-last-search-regexp)
8329                     "")))
8330          current-prefix-arg))
8331   (if (string-equal regexp "")
8332       (setq regexp (or gnus-last-search-regexp ""))
8333     (setq gnus-last-search-regexp regexp)
8334     (setq gnus-article-before-search gnus-current-article))
8335   ;; Intentionally set gnus-last-article.
8336   (setq gnus-last-article gnus-article-before-search)
8337   (let ((gnus-last-article gnus-last-article))
8338     (if (gnus-summary-search-article regexp backward)
8339         (gnus-summary-show-thread)
8340       (error "Search failed: \"%s\"" regexp))))
8341
8342 (defun gnus-summary-search-article-backward (regexp)
8343   "Search for an article containing REGEXP backward."
8344   (interactive
8345    (list (read-string
8346           (format "Search article backward (regexp%s): "
8347                   (if gnus-last-search-regexp
8348                       (concat ", default " gnus-last-search-regexp)
8349                     "")))))
8350   (gnus-summary-search-article-forward regexp 'backward))
8351
8352 (defun gnus-summary-search-article (regexp &optional backward)
8353   "Search for an article containing REGEXP.
8354 Optional argument BACKWARD means do search for backward.
8355 `gnus-select-article-hook' is not called during the search."
8356   ;; We have to require this here to make sure that the following
8357   ;; dynamic binding isn't shadowed by autoloading.
8358   (require 'gnus-async)
8359   (require 'gnus-art)
8360   (let ((gnus-select-article-hook nil)  ;Disable hook.
8361         (gnus-article-prepare-hook nil)
8362         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
8363         (gnus-use-article-prefetch nil)
8364         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
8365         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
8366         (gnus-visual nil)
8367         (gnus-keep-backlog nil)
8368         (gnus-break-pages nil)
8369         (gnus-summary-display-arrow nil)
8370         (gnus-updated-mode-lines nil)
8371         (gnus-auto-center-summary nil)
8372         (sum (current-buffer))
8373         (gnus-display-mime-function nil)
8374         (found nil)
8375         point)
8376     (gnus-save-hidden-threads
8377       (gnus-summary-select-article)
8378       (set-buffer gnus-article-buffer)
8379       (goto-char (window-point (get-buffer-window (current-buffer))))
8380       (when backward
8381         (forward-line -1))
8382       (while (not found)
8383         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
8384         (if (if backward
8385                 (re-search-backward regexp nil t)
8386               (re-search-forward regexp nil t))
8387             ;; We found the regexp.
8388             (progn
8389               (setq found 'found)
8390               (beginning-of-line)
8391               (set-window-start
8392                (get-buffer-window (current-buffer))
8393                (point))
8394               (forward-line 1)
8395               (set-window-point
8396                (get-buffer-window (current-buffer))
8397                (point))
8398               (set-buffer sum)
8399               (setq point (point)))
8400           ;; We didn't find it, so we go to the next article.
8401           (set-buffer sum)
8402           (setq found 'not)
8403           (while (eq found 'not)
8404             (if (not (if backward (gnus-summary-find-prev)
8405                        (gnus-summary-find-next)))
8406                 ;; No more articles.
8407                 (setq found t)
8408               ;; Select the next article and adjust point.
8409               (unless (gnus-summary-article-sparse-p
8410                        (gnus-summary-article-number))
8411                 (setq found nil)
8412                 (gnus-summary-select-article)
8413                 (set-buffer gnus-article-buffer)
8414                 (widen)
8415                 (goto-char (if backward (point-max) (point-min))))))))
8416       (gnus-message 7 ""))
8417     ;; Return whether we found the regexp.
8418     (when (eq found 'found)
8419       (goto-char point)
8420       (gnus-summary-show-thread)
8421       (gnus-summary-goto-subject gnus-current-article)
8422       (gnus-summary-position-point)
8423       t)))
8424
8425 (defun gnus-find-matching-articles (header regexp)
8426   "Return a list of all articles that match REGEXP on HEADER.
8427 This search includes all articles in the current group that Gnus has
8428 fetched headers for, whether they are displayed or not."
8429   (let ((articles nil)
8430         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
8431         (case-fold-search t))
8432     (dolist (header gnus-newsgroup-headers)
8433       (when (string-match regexp (funcall func header))
8434         (push (mail-header-number header) articles)))
8435     (nreverse articles)))
8436
8437 (defun gnus-summary-find-matching (header regexp &optional backward unread
8438                                           not-case-fold not-matching)
8439   "Return a list of all articles that match REGEXP on HEADER.
8440 The search stars on the current article and goes forwards unless
8441 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
8442 If UNREAD is non-nil, only unread articles will
8443 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
8444 in the comparisons. If NOT-MATCHING, return a list of all articles that
8445 not match REGEXP on HEADER."
8446   (let ((case-fold-search (not not-case-fold))
8447         articles d func)
8448     (if (consp header)
8449         (if (eq (car header) 'extra)
8450             (setq func
8451                   `(lambda (h)
8452                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
8453                          "")))
8454           (error "%s is an invalid header" header))
8455       (unless (fboundp (intern (concat "mail-header-" header)))
8456         (error "%s is not a valid header" header))
8457       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
8458     (dolist (d (if (eq backward 'all)
8459                    gnus-newsgroup-data
8460                  (gnus-data-find-list
8461                   (gnus-summary-article-number)
8462                   (gnus-data-list backward))))
8463       (when (and (or (not unread)       ; We want all articles...
8464                      (gnus-data-unread-p d)) ; Or just unreads.
8465                  (vectorp (gnus-data-header d)) ; It's not a pseudo.
8466                  (if not-matching
8467                      (not (string-match
8468                            regexp
8469                            (funcall func (gnus-data-header d))))
8470                    (string-match regexp
8471                                  (funcall func (gnus-data-header d)))))
8472         (push (gnus-data-number d) articles))) ; Success!
8473     (nreverse articles)))
8474
8475 (defun gnus-summary-execute-command (header regexp command &optional backward)
8476   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
8477 If HEADER is an empty string (or nil), the match is done on the entire
8478 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
8479   (interactive
8480    (list (let ((completion-ignore-case t))
8481            (completing-read
8482             "Header name: "
8483             (mapcar (lambda (header) (list (format "%s" header)))
8484                     (append
8485                      '("Number" "Subject" "From" "Lines" "Date"
8486                        "Message-ID" "Xref" "References" "Body")
8487                      gnus-extra-headers))
8488             nil 'require-match))
8489          (read-string "Regexp: ")
8490          (read-key-sequence "Command: ")
8491          current-prefix-arg))
8492   (when (equal header "Body")
8493     (setq header ""))
8494   ;; Hidden thread subtrees must be searched as well.
8495   (gnus-summary-show-all-threads)
8496   ;; We don't want to change current point nor window configuration.
8497   (save-excursion
8498     (save-window-excursion
8499       (let (gnus-visual
8500             gnus-treat-strip-trailing-blank-lines
8501             gnus-treat-strip-leading-blank-lines
8502             gnus-treat-strip-multiple-blank-lines
8503             gnus-treat-hide-boring-headers
8504             gnus-treat-fold-newsgroups
8505             gnus-article-prepare-hook)
8506         (gnus-message 6 "Executing %s..." (key-description command))
8507         ;; We'd like to execute COMMAND interactively so as to give arguments.
8508         (gnus-execute header regexp
8509                       `(call-interactively ',(key-binding command))
8510                       backward)
8511         (gnus-message 6 "Executing %s...done" (key-description command))))))
8512
8513 (defun gnus-summary-beginning-of-article ()
8514   "Scroll the article back to the beginning."
8515   (interactive)
8516   (gnus-summary-select-article)
8517   (gnus-configure-windows 'article)
8518   (gnus-eval-in-buffer-window gnus-article-buffer
8519     (widen)
8520     (goto-char (point-min))
8521     (when gnus-break-pages
8522       (gnus-narrow-to-page))))
8523
8524 (defun gnus-summary-end-of-article ()
8525   "Scroll to the end of the article."
8526   (interactive)
8527   (gnus-summary-select-article)
8528   (gnus-configure-windows 'article)
8529   (gnus-eval-in-buffer-window gnus-article-buffer
8530     (widen)
8531     (goto-char (point-max))
8532     (recenter -3)
8533     (when gnus-break-pages
8534       (when (re-search-backward page-delimiter nil t)
8535         (narrow-to-region (match-end 0) (point-max)))
8536       (gnus-narrow-to-page))))
8537
8538 (defun gnus-summary-print-truncate-and-quote (string &optional len)
8539   "Truncate to LEN and quote all \"(\"'s in STRING."
8540   (gnus-replace-in-string (if (and len (> (length string) len))
8541                               (substring string 0 len)
8542                             string)
8543                           "[()]" "\\\\\\&"))
8544
8545 (defun gnus-summary-print-article (&optional filename n)
8546   "Generate and print a PostScript image of the process-marked (mail) articles.
8547
8548 If used interactively, print the current article if none are
8549 process-marked.  With prefix arg, prompt the user for the name of the
8550 file to save in.
8551
8552 When used from Lisp, accept two optional args FILENAME and N.  N means
8553 to print the next N articles.  If N is negative, print the N previous
8554 articles.  If N is nil and articles have been marked with the process
8555 mark, print these instead.
8556
8557 If the optional first argument FILENAME is nil, send the image to the
8558 printer.  If FILENAME is a string, save the PostScript image in a file with
8559 that name.  If FILENAME is a number, prompt the user for the name of the file
8560 to save in."
8561   (interactive (list (ps-print-preprint current-prefix-arg)))
8562   (dolist (article (gnus-summary-work-articles n))
8563     (gnus-summary-select-article nil nil 'pseudo article)
8564     (gnus-eval-in-buffer-window gnus-article-buffer
8565       (gnus-print-buffer))
8566     (gnus-summary-remove-process-mark article))
8567   (ps-despool filename))
8568
8569 (defun gnus-print-buffer ()
8570   (let ((buffer (generate-new-buffer " *print*")))
8571     (unwind-protect
8572         (progn
8573           (copy-to-buffer buffer (point-min) (point-max))
8574           (set-buffer buffer)
8575           (gnus-remove-text-with-property 'gnus-decoration)
8576           (when (gnus-visual-p 'article-highlight 'highlight)
8577             ;; Copy-to-buffer doesn't copy overlay.  So redo
8578             ;; highlight.
8579             (let ((gnus-article-buffer buffer))
8580               (gnus-article-highlight-citation t)
8581               (gnus-article-highlight-signature)
8582               (gnus-article-emphasize)
8583               (gnus-article-delete-invisible-text)))
8584           (let ((ps-left-header
8585                  (list
8586                   (concat "("
8587                           (gnus-summary-print-truncate-and-quote
8588                            (mail-header-subject gnus-current-headers)
8589                            66) ")")
8590                   (concat "("
8591                           (gnus-summary-print-truncate-and-quote
8592                            (mail-header-from gnus-current-headers)
8593                            45) ")")))
8594                 (ps-right-header
8595                  (list
8596                   "/pagenumberstring load"
8597                   (concat "("
8598                           (mail-header-date gnus-current-headers) ")"))))
8599             (gnus-run-hooks 'gnus-ps-print-hook)
8600             (save-excursion
8601               (if window-system
8602                   (ps-spool-buffer-with-faces)
8603                 (ps-spool-buffer)))))
8604       (kill-buffer buffer))))
8605
8606 (defun gnus-summary-show-article (&optional arg)
8607   "Force redisplaying of the current article.
8608 If ARG (the prefix) is a number, show the article with the charset
8609 defined in `gnus-summary-show-article-charset-alist', or the charset
8610 input.
8611 If ARG (the prefix) is non-nil and not a number, show the raw article
8612 without any article massaging functions being run.  Normally, the key
8613 strokes are `C-u g'."
8614   (interactive "P")
8615   (cond
8616    ((numberp arg)
8617     (gnus-summary-show-article t)
8618     (let ((gnus-newsgroup-charset
8619            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
8620                (mm-read-coding-system
8621                 "View as charset: " ;; actually it is coding system.
8622                 (save-excursion
8623                   (set-buffer gnus-article-buffer)
8624                   (mm-detect-coding-region (point) (point-max))))))
8625           (gnus-newsgroup-ignored-charsets 'gnus-all))
8626       (gnus-summary-select-article nil 'force)
8627       (let ((deps gnus-newsgroup-dependencies)
8628             head header lines)
8629         (save-excursion
8630           (set-buffer gnus-original-article-buffer)
8631           (save-restriction
8632             (message-narrow-to-head)
8633             (setq head (buffer-string))
8634             (goto-char (point-min))
8635             (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
8636               (goto-char (point-max))
8637               (widen)
8638               (setq lines (1- (count-lines (point) (point-max))))))
8639           (with-temp-buffer
8640             (insert (format "211 %d Article retrieved.\n"
8641                             (cdr gnus-article-current)))
8642             (insert head)
8643             (if lines (insert (format "Lines: %d\n" lines)))
8644             (insert ".\n")
8645             (let ((nntp-server-buffer (current-buffer)))
8646               (setq header (car (gnus-get-newsgroup-headers deps t))))))
8647         (gnus-data-set-header
8648          (gnus-data-find (cdr gnus-article-current))
8649          header)
8650         (gnus-summary-update-article-line
8651          (cdr gnus-article-current) header)
8652         (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
8653           (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
8654    ((not arg)
8655     ;; Select the article the normal way.
8656     (gnus-summary-select-article nil 'force))
8657    (t
8658     ;; We have to require this here to make sure that the following
8659     ;; dynamic binding isn't shadowed by autoloading.
8660     (require 'gnus-async)
8661     (require 'gnus-art)
8662     ;; Bind the article treatment functions to nil.
8663     (let ((gnus-have-all-headers t)
8664           gnus-article-prepare-hook
8665           gnus-article-decode-hook
8666           gnus-display-mime-function
8667           gnus-break-pages)
8668       ;; Destroy any MIME parts.
8669       (when (gnus-buffer-live-p gnus-article-buffer)
8670         (save-excursion
8671           (set-buffer gnus-article-buffer)
8672           (mm-destroy-parts gnus-article-mime-handles)
8673           ;; Set it to nil for safety reason.
8674           (setq gnus-article-mime-handle-alist nil)
8675           (setq gnus-article-mime-handles nil)))
8676       (gnus-summary-select-article nil 'force))))
8677   (gnus-summary-goto-subject gnus-current-article)
8678   (gnus-summary-position-point))
8679
8680 (defun gnus-summary-show-raw-article ()
8681   "Show the raw article without any article massaging functions being run."
8682   (interactive)
8683   (gnus-summary-show-article t))
8684
8685 (defun gnus-summary-verbose-headers (&optional arg)
8686   "Toggle permanent full header display.
8687 If ARG is a positive number, turn header display on.
8688 If ARG is a negative number, turn header display off."
8689   (interactive "P")
8690   (setq gnus-show-all-headers
8691         (cond ((or (not (numberp arg))
8692                    (zerop arg))
8693                (not gnus-show-all-headers))
8694               ((natnump arg)
8695                t)))
8696   (gnus-summary-show-article))
8697
8698 (defun gnus-summary-toggle-header (&optional arg)
8699   "Show the headers if they are hidden, or hide them if they are shown.
8700 If ARG is a positive number, show the entire header.
8701 If ARG is a negative number, hide the unwanted header lines."
8702   (interactive "P")
8703   (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
8704                      (get-buffer-window gnus-article-buffer t))))
8705     (with-current-buffer gnus-article-buffer
8706       (widen)
8707       (article-narrow-to-head)
8708       (let* ((buffer-read-only nil)
8709              (inhibit-point-motion-hooks t)
8710              (hidden (if (numberp arg)
8711                          (>= arg 0)
8712                        (gnus-article-hidden-text-p 'headers)))
8713              s e)
8714         (delete-region (point-min) (point-max))
8715         (with-current-buffer gnus-original-article-buffer
8716           (goto-char (setq s (point-min)))
8717           (setq e (if (search-forward "\n\n" nil t)
8718                       (1- (point))
8719                     (point-max))))
8720         (insert-buffer-substring gnus-original-article-buffer s e)
8721         (run-hooks 'gnus-article-decode-hook)
8722         (if hidden
8723             (let ((gnus-treat-hide-headers nil)
8724                   (gnus-treat-hide-boring-headers nil))
8725               (gnus-delete-wash-type 'headers)
8726               (gnus-treat-article 'head))
8727           (gnus-treat-article 'head))
8728         (widen)
8729         (if window
8730             (set-window-start window (goto-char (point-min))))
8731         (if gnus-break-pages
8732             (gnus-narrow-to-page)
8733           (when (gnus-visual-p 'page-marker)
8734             (let ((buffer-read-only nil))
8735               (gnus-remove-text-with-property 'gnus-prev)
8736               (gnus-remove-text-with-property 'gnus-next))))
8737         (gnus-set-mode-line 'article)))))
8738
8739 (defun gnus-summary-show-all-headers ()
8740   "Make all header lines visible."
8741   (interactive)
8742   (gnus-summary-toggle-header 1))
8743
8744 (defun gnus-summary-caesar-message (&optional arg)
8745   "Caesar rotate the current article by 13.
8746 The numerical prefix specifies how many places to rotate each letter
8747 forward."
8748   (interactive "P")
8749   (gnus-summary-select-article)
8750   (let ((mail-header-separator ""))
8751     (gnus-eval-in-buffer-window gnus-article-buffer
8752       (save-restriction
8753         (widen)
8754         (let ((start (window-start))
8755               buffer-read-only)
8756           (message-caesar-buffer-body arg)
8757           (set-window-start (get-buffer-window (current-buffer)) start))))))
8758
8759 (autoload 'unmorse-region "morse"
8760   "Convert morse coded text in region to ordinary ASCII text."
8761   t)
8762
8763 (defun gnus-summary-morse-message (&optional arg)
8764   "Morse decode the current article."
8765   (interactive "P")
8766   (gnus-summary-select-article)
8767   (let ((mail-header-separator ""))
8768     (gnus-eval-in-buffer-window gnus-article-buffer
8769       (save-excursion
8770         (save-restriction
8771           (widen)
8772           (let ((pos (window-start))
8773                 buffer-read-only)
8774             (goto-char (point-min))
8775             (when (message-goto-body)
8776               (gnus-narrow-to-body))
8777             (goto-char (point-min))
8778             (while (re-search-forward "·" (point-max) t)
8779               (replace-match "."))
8780             (unmorse-region (point-min) (point-max))
8781             (widen)
8782             (set-window-start (get-buffer-window (current-buffer)) pos)))))))
8783
8784 (defun gnus-summary-stop-page-breaking ()
8785   "Stop page breaking in the current article."
8786   (interactive)
8787   (gnus-summary-select-article)
8788   (gnus-eval-in-buffer-window gnus-article-buffer
8789     (widen)
8790     (when (gnus-visual-p 'page-marker)
8791       (let ((buffer-read-only nil))
8792         (gnus-remove-text-with-property 'gnus-prev)
8793         (gnus-remove-text-with-property 'gnus-next))
8794       (setq gnus-page-broken nil))))
8795
8796 (defun gnus-summary-move-article (&optional n to-newsgroup
8797                                             select-method action)
8798   "Move the current article to a different newsgroup.
8799 If N is a positive number, move the N next articles.
8800 If N is a negative number, move the N previous articles.
8801 If N is nil and any articles have been marked with the process mark,
8802 move those articles instead.
8803 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
8804 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
8805 re-spool using this method.
8806
8807 When called interactively with TO-NEWSGROUP being nil, the value of
8808 the variable `gnus-move-split-methods' is used for finding a default
8809 for the target newsgroup.
8810
8811 For this function to work, both the current newsgroup and the
8812 newsgroup that you want to move to have to support the `request-move'
8813 and `request-accept' functions.
8814
8815 ACTION can be either `move' (the default), `crosspost' or `copy'."
8816   (interactive "P")
8817   (unless action
8818     (setq action 'move))
8819   ;; Check whether the source group supports the required functions.
8820   (cond ((and (eq action 'move)
8821               (not (gnus-check-backend-function
8822                     'request-move-article gnus-newsgroup-name)))
8823          (error "The current group does not support article moving"))
8824         ((and (eq action 'crosspost)
8825               (not (gnus-check-backend-function
8826                     'request-replace-article gnus-newsgroup-name)))
8827          (error "The current group does not support article editing")))
8828   (let ((articles (gnus-summary-work-articles n))
8829         (prefix (if (gnus-check-backend-function
8830                      'request-move-article gnus-newsgroup-name)
8831                     (gnus-group-real-prefix gnus-newsgroup-name)
8832                   ""))
8833         (names '((move "Move" "Moving")
8834                  (copy "Copy" "Copying")
8835                  (crosspost "Crosspost" "Crossposting")))
8836         (copy-buf (save-excursion
8837                     (nnheader-set-temp-buffer " *copy article*")))
8838         art-group to-method new-xref article to-groups)
8839     (unless (assq action names)
8840       (error "Unknown action %s" action))
8841     ;; Read the newsgroup name.
8842     (when (and (not to-newsgroup)
8843                (not select-method))
8844       (if (and gnus-move-split-methods
8845                (not
8846                 (and (memq gnus-current-article articles)
8847                      (gnus-buffer-live-p gnus-original-article-buffer))))
8848           ;; When `gnus-move-split-methods' is non-nil, we have to
8849           ;; select an article to give `gnus-read-move-group-name' an
8850           ;; opportunity to suggest an appropriate default.  However,
8851           ;; we needn't render or mark the article.
8852           (let ((gnus-display-mime-function nil)
8853                 (gnus-article-prepare-hook nil)
8854                 (gnus-mark-article-hook nil))
8855             (gnus-summary-select-article nil nil nil (car articles))))
8856       (setq to-newsgroup
8857             (gnus-read-move-group-name
8858              (cadr (assq action names))
8859              (symbol-value (intern (format "gnus-current-%s-group" action)))
8860              articles prefix))
8861       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
8862     (setq to-method (or select-method
8863                         (gnus-server-to-method
8864                          (gnus-group-method to-newsgroup))))
8865     ;; Check the method we are to move this article to...
8866     (unless (gnus-check-backend-function
8867              'request-accept-article (car to-method))
8868       (error "%s does not support article copying" (car to-method)))
8869     (unless (gnus-check-server to-method)
8870       (error "Can't open server %s" (car to-method)))
8871     (gnus-message 6 "%s to %s: %s..."
8872                   (caddr (assq action names))
8873                   (or (car select-method) to-newsgroup) articles)
8874     (while articles
8875       (setq article (pop articles))
8876       (setq
8877        art-group
8878        (cond
8879         ;; Move the article.
8880         ((eq action 'move)
8881          ;; Remove this article from future suppression.
8882          (gnus-dup-unsuppress-article article)
8883          (gnus-request-move-article
8884           article                       ; Article to move
8885           gnus-newsgroup-name           ; From newsgroup
8886           (nth 1 (gnus-find-method-for-group
8887                   gnus-newsgroup-name)) ; Server
8888           (list 'gnus-request-accept-article
8889                 to-newsgroup (list 'quote select-method)
8890                 (not articles) t)       ; Accept form
8891           (not articles)))              ; Only save nov last time
8892         ;; Copy the article.
8893         ((eq action 'copy)
8894          (save-excursion
8895            (set-buffer copy-buf)
8896            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
8897              (gnus-request-accept-article
8898               to-newsgroup select-method (not articles) t))))
8899         ;; Crosspost the article.
8900         ((eq action 'crosspost)
8901          (let ((xref (message-tokenize-header
8902                       (mail-header-xref (gnus-summary-article-header article))
8903                       " ")))
8904            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
8905                                   ":" (number-to-string article)))
8906            (unless xref
8907              (setq xref (list (system-name))))
8908            (setq new-xref
8909                  (concat
8910                   (mapconcat 'identity
8911                              (delete "Xref:" (delete new-xref xref))
8912                              " ")
8913                   " " new-xref))
8914            (save-excursion
8915              (set-buffer copy-buf)
8916              ;; First put the article in the destination group.
8917              (gnus-request-article-this-buffer article gnus-newsgroup-name)
8918              (when (consp (setq art-group
8919                                 (gnus-request-accept-article
8920                                  to-newsgroup select-method (not articles))))
8921                (setq new-xref (concat new-xref " " (car art-group)
8922                                       ":"
8923                                       (number-to-string (cdr art-group))))
8924                ;; Now we have the new Xrefs header, so we insert
8925                ;; it and replace the new article.
8926                (nnheader-replace-header "Xref" new-xref)
8927                (gnus-request-replace-article
8928                 (cdr art-group) to-newsgroup (current-buffer))
8929                art-group))))))
8930       (cond
8931        ((not art-group)
8932         (gnus-message 1 "Couldn't %s article %s: %s"
8933                       (cadr (assq action names)) article
8934                       (nnheader-get-report (car to-method))))
8935        ((eq art-group 'junk)
8936         (when (eq action 'move)
8937           (gnus-summary-mark-article article gnus-canceled-mark)
8938           (gnus-message 4 "Deleted article %s" article)
8939           ;; run the delete hook
8940           (run-hook-with-args 'gnus-summary-article-delete-hook
8941                               action
8942                               (gnus-data-header
8943                                (assoc article (gnus-data-list nil)))
8944                               gnus-newsgroup-name nil
8945                               select-method)))
8946        (t
8947         (let* ((pto-group (gnus-group-prefixed-name
8948                            (car art-group) to-method))
8949                (info (gnus-get-info pto-group))
8950                (to-group (gnus-info-group info))
8951                to-marks)
8952           ;; Update the group that has been moved to.
8953           (when (and info
8954                      (memq action '(move copy)))
8955             (unless (member to-group to-groups)
8956               (push to-group to-groups))
8957
8958             (unless (memq article gnus-newsgroup-unreads)
8959               (push 'read to-marks)
8960               (gnus-info-set-read
8961                info (gnus-add-to-range (gnus-info-read info)
8962                                        (list (cdr art-group)))))
8963
8964             ;; See whether the article is to be put in the cache.
8965             (let ((marks (if (gnus-group-auto-expirable-p to-group)
8966                              gnus-article-mark-lists
8967                            (delete '(expirable . expire)
8968                                    (copy-sequence gnus-article-mark-lists))))
8969                   (to-article (cdr art-group)))
8970
8971               ;; Enter the article into the cache in the new group,
8972               ;; if that is required.
8973               (when gnus-use-cache
8974                 (gnus-cache-possibly-enter-article
8975                  to-group to-article
8976                  (memq article gnus-newsgroup-marked)
8977                  (memq article gnus-newsgroup-dormant)
8978                  (memq article gnus-newsgroup-unreads)))
8979
8980               (when gnus-preserve-marks
8981                 ;; Copy any marks over to the new group.
8982                 (when (and (equal to-group gnus-newsgroup-name)
8983                            (not (memq article gnus-newsgroup-unreads)))
8984                   ;; Mark this article as read in this group.
8985                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
8986                   (setcdr (gnus-active to-group) to-article)
8987                   (setcdr gnus-newsgroup-active to-article))
8988
8989                 (while marks
8990                   (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
8991                     (when (memq article (symbol-value
8992                                          (intern (format "gnus-newsgroup-%s"
8993                                                          (caar marks)))))
8994                       (push (cdar marks) to-marks)
8995                       ;; If the other group is the same as this group,
8996                       ;; then we have to add the mark to the list.
8997                       (when (equal to-group gnus-newsgroup-name)
8998                         (set (intern (format "gnus-newsgroup-%s" (caar marks)))
8999                              (cons to-article
9000                                    (symbol-value
9001                                     (intern (format "gnus-newsgroup-%s"
9002                                                     (caar marks)))))))
9003                       ;; Copy the marks to other group.
9004                       (gnus-add-marked-articles
9005                        to-group (cdar marks) (list to-article) info)))
9006                   (setq marks (cdr marks)))
9007
9008                 (gnus-request-set-mark
9009                  to-group (list (list (list to-article) 'add to-marks))))
9010
9011               (gnus-dribble-enter
9012                (concat "(gnus-group-set-info '"
9013                        (gnus-prin1-to-string (gnus-get-info to-group))
9014                        ")"))))
9015
9016           ;; Update the Xref header in this article to point to
9017           ;; the new crossposted article we have just created.
9018           (when (eq action 'crosspost)
9019             (save-excursion
9020               (set-buffer copy-buf)
9021               (gnus-request-article-this-buffer article gnus-newsgroup-name)
9022               (nnheader-replace-header "Xref" new-xref)
9023               (gnus-request-replace-article
9024                article gnus-newsgroup-name (current-buffer))))
9025
9026           ;; run the move/copy/crosspost/respool hook
9027           (run-hook-with-args 'gnus-summary-article-move-hook
9028                               action
9029                               (gnus-data-header
9030                                (assoc article (gnus-data-list nil)))
9031                               gnus-newsgroup-name
9032                               to-newsgroup
9033                               select-method))
9034
9035         ;;;!!!Why is this necessary?
9036         (set-buffer gnus-summary-buffer)
9037         
9038         (gnus-summary-goto-subject article)
9039         (when (eq action 'move)
9040           (gnus-summary-mark-article article gnus-canceled-mark))))
9041       (gnus-summary-remove-process-mark article))
9042     ;; Re-activate all groups that have been moved to.
9043     (save-excursion
9044       (set-buffer gnus-group-buffer)
9045       (let ((gnus-group-marked to-groups))
9046         (gnus-group-get-new-news-this-group nil t)))
9047
9048     (gnus-kill-buffer copy-buf)
9049     (gnus-summary-position-point)
9050     (gnus-set-mode-line 'summary)))
9051
9052 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9053   "Move the current article to a different newsgroup.
9054 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9055 When called interactively, if TO-NEWSGROUP is nil, use the value of
9056 the variable `gnus-move-split-methods' for finding a default target
9057 newsgroup.
9058 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9059 re-spool using this method."
9060   (interactive "P")
9061   (gnus-summary-move-article n to-newsgroup select-method 'copy))
9062
9063 (defun gnus-summary-crosspost-article (&optional n)
9064   "Crosspost the current article to some other group."
9065   (interactive "P")
9066   (gnus-summary-move-article n nil nil 'crosspost))
9067
9068 (defcustom gnus-summary-respool-default-method nil
9069   "Default method type for respooling an article.
9070 If nil, use to the current newsgroup method."
9071   :type 'symbol
9072   :group 'gnus-summary-mail)
9073
9074 (defcustom gnus-summary-display-while-building nil
9075   "If non-nil, show and update the summary buffer as it's being built.
9076 If the value is t, update the buffer after every line is inserted.  If
9077 the value is an integer (N), update the display every N lines."
9078   :group 'gnus-thread
9079   :type '(choice (const :tag "off" nil)
9080                  number
9081                  (const :tag "frequently" t)))
9082
9083 (defun gnus-summary-respool-article (&optional n method)
9084   "Respool the current article.
9085 The article will be squeezed through the mail spooling process again,
9086 which means that it will be put in some mail newsgroup or other
9087 depending on `nnmail-split-methods'.
9088 If N is a positive number, respool the N next articles.
9089 If N is a negative number, respool the N previous articles.
9090 If N is nil and any articles have been marked with the process mark,
9091 respool those articles instead.
9092
9093 Respooling can be done both from mail groups and \"real\" newsgroups.
9094 In the former case, the articles in question will be moved from the
9095 current group into whatever groups they are destined to.  In the
9096 latter case, they will be copied into the relevant groups."
9097   (interactive
9098    (list current-prefix-arg
9099          (let* ((methods (gnus-methods-using 'respool))
9100                 (methname
9101                  (symbol-name (or gnus-summary-respool-default-method
9102                                   (car (gnus-find-method-for-group
9103                                         gnus-newsgroup-name)))))
9104                 (method
9105                  (gnus-completing-read-with-default
9106                   methname "What backend do you want to use when respooling?"
9107                   methods nil t nil 'gnus-mail-method-history))
9108                 ms)
9109            (cond
9110             ((zerop (length (setq ms (gnus-servers-using-backend
9111                                       (intern method)))))
9112              (list (intern method) ""))
9113             ((= 1 (length ms))
9114              (car ms))
9115             (t
9116              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9117                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9118                            ms-alist))))))))
9119   (unless method
9120     (error "No method given for respooling"))
9121   (if (assoc (symbol-name
9122               (car (gnus-find-method-for-group gnus-newsgroup-name)))
9123              (gnus-methods-using 'respool))
9124       (gnus-summary-move-article n nil method)
9125     (gnus-summary-copy-article n nil method)))
9126
9127 (defun gnus-summary-import-article (file &optional edit)
9128   "Import an arbitrary file into a mail newsgroup."
9129   (interactive "fImport file: \nP")
9130   (let ((group gnus-newsgroup-name)
9131         (now (current-time))
9132         atts lines group-art)
9133     (unless (gnus-check-backend-function 'request-accept-article group)
9134       (error "%s does not support article importing" group))
9135     (or (file-readable-p file)
9136         (not (file-regular-p file))
9137         (error "Can't read %s" file))
9138     (save-excursion
9139       (set-buffer (gnus-get-buffer-create " *import file*"))
9140       (erase-buffer)
9141       (nnheader-insert-file-contents file)
9142       (goto-char (point-min))
9143       (if (nnheader-article-p)
9144           (save-restriction
9145             (goto-char (point-min))
9146             (search-forward "\n\n" nil t)
9147             (narrow-to-region (point-min) (1- (point)))
9148             (goto-char (point-min))
9149             (unless (re-search-forward "^date:" nil t)
9150               (goto-char (point-max))
9151               (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9152        ;; This doesn't look like an article, so we fudge some headers.
9153         (setq atts (file-attributes file)
9154               lines (count-lines (point-min) (point-max)))
9155         (insert "From: " (read-string "From: ") "\n"
9156                 "Subject: " (read-string "Subject: ") "\n"
9157                 "Date: " (message-make-date (nth 5 atts)) "\n"
9158                 "Message-ID: " (message-make-message-id) "\n"
9159                 "Lines: " (int-to-string lines) "\n"
9160                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9161       (setq group-art (gnus-request-accept-article group nil t))
9162       (kill-buffer (current-buffer)))
9163     (setq gnus-newsgroup-active (gnus-activate-group group))
9164     (forward-line 1)
9165     (gnus-summary-goto-article (cdr group-art) nil t)
9166     (when edit
9167       (gnus-summary-edit-article))))
9168
9169 (defun gnus-summary-create-article ()
9170   "Create an article in a mail newsgroup."
9171   (interactive)
9172   (let ((group gnus-newsgroup-name)
9173         (now (current-time))
9174         group-art)
9175     (unless (gnus-check-backend-function 'request-accept-article group)
9176       (error "%s does not support article importing" group))
9177     (save-excursion
9178       (set-buffer (gnus-get-buffer-create " *import file*"))
9179       (erase-buffer)
9180       (goto-char (point-min))
9181       ;; This doesn't look like an article, so we fudge some headers.
9182       (insert "From: " (read-string "From: ") "\n"
9183               "Subject: " (read-string "Subject: ") "\n"
9184               "Date: " (message-make-date now) "\n"
9185               "Message-ID: " (message-make-message-id) "\n")
9186       (setq group-art (gnus-request-accept-article group nil t))
9187       (kill-buffer (current-buffer)))
9188     (setq gnus-newsgroup-active (gnus-activate-group group))
9189     (forward-line 1)
9190     (gnus-summary-goto-article (cdr group-art) nil t)
9191     (gnus-summary-edit-article)))
9192
9193 (defun gnus-summary-article-posted-p ()
9194   "Say whether the current (mail) article is available from news as well.
9195 This will be the case if the article has both been mailed and posted."
9196   (interactive)
9197   (let ((id (mail-header-references (gnus-summary-article-header)))
9198         (gnus-override-method (car (gnus-refer-article-methods))))
9199     (if (gnus-request-head id "")
9200         (gnus-message 2 "The current message was found on %s"
9201                       gnus-override-method)
9202       (gnus-message 2 "The current message couldn't be found on %s"
9203                     gnus-override-method)
9204       nil)))
9205
9206 (defun gnus-summary-expire-articles (&optional now)
9207   "Expire all articles that are marked as expirable in the current group."
9208   (interactive)
9209   (when (and (not gnus-group-is-exiting-without-update-p)
9210              (gnus-check-backend-function
9211               'request-expire-articles gnus-newsgroup-name))
9212     ;; This backend supports expiry.
9213     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
9214            (expirable (if total
9215                           (progn
9216                             ;; We need to update the info for
9217                             ;; this group for `gnus-list-of-read-articles'
9218                             ;; to give us the right answer.
9219                             (gnus-run-hooks 'gnus-exit-group-hook)
9220                             (gnus-summary-update-info)
9221                             (gnus-list-of-read-articles gnus-newsgroup-name))
9222                         (setq gnus-newsgroup-expirable
9223                               (sort gnus-newsgroup-expirable '<))))
9224            (expiry-wait (if now 'immediate
9225                           (gnus-group-find-parameter
9226                            gnus-newsgroup-name 'expiry-wait)))
9227            (nnmail-expiry-target
9228             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
9229                 nnmail-expiry-target))
9230            es)
9231       (when expirable
9232         ;; There are expirable articles in this group, so we run them
9233         ;; through the expiry process.
9234         (gnus-message 6 "Expiring articles...")
9235         (unless (gnus-check-group gnus-newsgroup-name)
9236           (error "Can't open server for %s" gnus-newsgroup-name))
9237         ;; The list of articles that weren't expired is returned.
9238         (save-excursion
9239           (if expiry-wait
9240               (let ((nnmail-expiry-wait-function nil)
9241                     (nnmail-expiry-wait expiry-wait))
9242                 (setq es (gnus-request-expire-articles
9243                           expirable gnus-newsgroup-name)))
9244             (setq es (gnus-request-expire-articles
9245                       expirable gnus-newsgroup-name)))
9246           (unless total
9247             (setq gnus-newsgroup-expirable es))
9248           ;; We go through the old list of expirable, and mark all
9249           ;; really expired articles as nonexistent.
9250           (unless (eq es expirable) ;If nothing was expired, we don't mark.
9251             (let ((gnus-use-cache nil))
9252               (dolist (article expirable)
9253                 (when (and (not (memq article es))
9254                            (gnus-data-find article))
9255                   (gnus-summary-mark-article article gnus-canceled-mark)
9256                   (run-hook-with-args 'gnus-summary-article-expire-hook
9257                                       'delete
9258                                       (gnus-data-header
9259                                        (assoc article (gnus-data-list nil)))
9260                                       gnus-newsgroup-name
9261                                       nil
9262                                       nil))))))
9263         (gnus-message 6 "Expiring articles...done")))))
9264
9265 (defun gnus-summary-expire-articles-now ()
9266   "Expunge all expirable articles in the current group.
9267 This means that *all* articles that are marked as expirable will be
9268 deleted forever, right now."
9269   (interactive)
9270   (or gnus-expert-user
9271       (gnus-yes-or-no-p
9272        "Are you really, really, really sure you want to delete all these messages? ")
9273       (error "Phew!"))
9274   (gnus-summary-expire-articles t))
9275
9276 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
9277 (defun gnus-summary-delete-article (&optional n)
9278   "Delete the N next (mail) articles.
9279 This command actually deletes articles.  This is not a marking
9280 command.  The article will disappear forever from your life, never to
9281 return.
9282
9283 If N is negative, delete backwards.
9284 If N is nil and articles have been marked with the process mark,
9285 delete these instead.
9286
9287 If `gnus-novice-user' is non-nil you will be asked for
9288 confirmation before the articles are deleted."
9289   (interactive "P")
9290   (unless (gnus-check-backend-function 'request-expire-articles
9291                                        gnus-newsgroup-name)
9292     (error "The current newsgroup does not support article deletion"))
9293   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
9294     (error "Couldn't open server"))
9295   ;; Compute the list of articles to delete.
9296   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
9297         (nnmail-expiry-target 'delete)
9298         not-deleted)
9299     (if (and gnus-novice-user
9300              (not (gnus-yes-or-no-p
9301                    (format "Do you really want to delete %s forever? "
9302                            (if (> (length articles) 1)
9303                                (format "these %s articles" (length articles))
9304                              "this article")))))
9305         ()
9306       ;; Delete the articles.
9307       (setq not-deleted (gnus-request-expire-articles
9308                          articles gnus-newsgroup-name 'force))
9309       (while articles
9310         (gnus-summary-remove-process-mark (car articles))
9311         ;; The backend might not have been able to delete the article
9312         ;; after all.
9313         (unless (memq (car articles) not-deleted)
9314           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
9315         (let* ((article (car articles))
9316                (id (mail-header-id (gnus-data-header
9317                                     (assoc article (gnus-data-list nil))))))
9318           (run-hook-with-args 'gnus-summary-article-delete-hook
9319                               'delete id gnus-newsgroup-name nil
9320                               nil))
9321         (setq articles (cdr articles)))
9322       (when not-deleted
9323         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
9324     (gnus-summary-position-point)
9325     (gnus-set-mode-line 'summary)
9326     not-deleted))
9327
9328 (defun gnus-summary-edit-article (&optional arg)
9329   "Edit the current article.
9330 This will have permanent effect only in mail groups.
9331 If ARG is nil, edit the decoded articles.
9332 If ARG is 1, edit the raw articles.
9333 If ARG is 2, edit the raw articles even in read-only groups.
9334 If ARG is 3, edit the articles with the current handles.
9335 Otherwise, allow editing of articles even in read-only
9336 groups."
9337   (interactive "P")
9338   (let (force raw current-handles)
9339     (cond
9340      ((null arg))
9341      ((eq arg 1)
9342       (setq raw t))
9343      ((eq arg 2)
9344       (setq raw t
9345             force t))
9346      ((eq arg 3)
9347       (setq current-handles
9348             (and (gnus-buffer-live-p gnus-article-buffer)
9349                  (with-current-buffer gnus-article-buffer
9350                    (prog1
9351                        gnus-article-mime-handles
9352                      (setq gnus-article-mime-handles nil))))))
9353      (t
9354       (setq force t)))
9355     (when (and raw (not force)
9356                (member gnus-newsgroup-name '("nndraft:delayed"
9357                                              "nndraft:drafts"
9358                                              "nndraft:queue")))
9359       (error "Can't edit the raw article in group %s"
9360              gnus-newsgroup-name))
9361     (save-excursion
9362       (set-buffer gnus-summary-buffer)
9363       (let ((mail-parse-charset gnus-newsgroup-charset)
9364             (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
9365         (gnus-set-global-variables)
9366         (when (and (not force)
9367                    (gnus-group-read-only-p))
9368           (error "The current newsgroup does not support article editing"))
9369         (gnus-summary-show-article t)
9370         (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
9371           (with-current-buffer gnus-article-buffer
9372             (mm-enable-multibyte)))
9373         (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
9374             (setq raw t))
9375         (gnus-article-edit-article
9376          (if raw 'ignore
9377            `(lambda ()
9378               (let ((mbl mml-buffer-list))
9379                 (setq mml-buffer-list nil)
9380                 (mime-to-mml ,'current-handles)
9381                 (let ((mbl1 mml-buffer-list))
9382                   (setq mml-buffer-list mbl)
9383                   (set (make-local-variable 'mml-buffer-list) mbl1))
9384                 (gnus-make-local-hook 'kill-buffer-hook)
9385                 (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
9386          `(lambda (no-highlight)
9387             (let ((mail-parse-charset ',gnus-newsgroup-charset)
9388                   (message-options message-options)
9389                   (message-options-set-recipient)
9390                   (mail-parse-ignored-charsets
9391                    ',gnus-newsgroup-ignored-charsets))
9392               ,(if (not raw) '(progn
9393                                 (mml-to-mime)
9394                                 (mml-destroy-buffers)
9395                                 (remove-hook 'kill-buffer-hook
9396                                              'mml-destroy-buffers t)
9397                                 (kill-local-variable 'mml-buffer-list)))
9398               (gnus-summary-edit-article-done
9399                ,(or (mail-header-references gnus-current-headers) "")
9400                ,(gnus-group-read-only-p)
9401                ,gnus-summary-buffer no-highlight))))))))
9402
9403 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
9404
9405 (defun gnus-summary-edit-article-done (&optional references read-only buffer
9406                                                  no-highlight)
9407   "Make edits to the current article permanent."
9408   (interactive)
9409   (save-excursion
9410    ;; The buffer restriction contains the entire article if it exists.
9411     (when (article-goto-body)
9412       (let ((lines (count-lines (point) (point-max)))
9413             (length (- (point-max) (point)))
9414             (case-fold-search t)
9415             (body (copy-marker (point))))
9416         (goto-char (point-min))
9417         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
9418           (delete-region (match-beginning 1) (match-end 1))
9419           (insert (number-to-string length)))
9420         (goto-char (point-min))
9421         (when (re-search-forward
9422                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
9423           (delete-region (match-beginning 1) (match-end 1))
9424           (insert (number-to-string length)))
9425         (goto-char (point-min))
9426         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
9427           (delete-region (match-beginning 1) (match-end 1))
9428           (insert (number-to-string lines))))))
9429   ;; Replace the article.
9430   (let ((buf (current-buffer)))
9431     (with-temp-buffer
9432       (insert-buffer-substring buf)
9433
9434       (if (and (not read-only)
9435                (not (gnus-request-replace-article
9436                      (cdr gnus-article-current) (car gnus-article-current)
9437                      (current-buffer) t)))
9438           (error "Couldn't replace article")
9439         ;; Update the summary buffer.
9440         (if (and references
9441                  (equal (message-tokenize-header references " ")
9442                         (message-tokenize-header
9443                          (or (message-fetch-field "references") "") " ")))
9444             ;; We only have to update this line.
9445             (save-excursion
9446               (save-restriction
9447                 (message-narrow-to-head)
9448                 (let ((head (buffer-string))
9449                       header)
9450                   (with-temp-buffer
9451                     (insert (format "211 %d Article retrieved.\n"
9452                                     (cdr gnus-article-current)))
9453                     (insert head)
9454                     (insert ".\n")
9455                     (let ((nntp-server-buffer (current-buffer)))
9456                       (setq header (car (gnus-get-newsgroup-headers
9457                                          nil t))))
9458                     (save-excursion
9459                       (set-buffer gnus-summary-buffer)
9460                       (gnus-data-set-header
9461                        (gnus-data-find (cdr gnus-article-current))
9462                        header)
9463                       (gnus-summary-update-article-line
9464                        (cdr gnus-article-current) header)
9465                       (if (gnus-summary-goto-subject
9466                            (cdr gnus-article-current) nil t)
9467                           (gnus-summary-update-secondary-mark
9468                            (cdr gnus-article-current))))))))
9469           ;; Update threads.
9470           (set-buffer (or buffer gnus-summary-buffer))
9471           (gnus-summary-update-article (cdr gnus-article-current))
9472           (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9473               (gnus-summary-update-secondary-mark
9474                (cdr gnus-article-current))))
9475         ;; Prettify the article buffer again.
9476         (unless no-highlight
9477           (save-excursion
9478             (set-buffer gnus-article-buffer)
9479             ;;;!!! Fix this -- article should be rehighlighted.
9480             ;;;(gnus-run-hooks 'gnus-article-display-hook)
9481             (set-buffer gnus-original-article-buffer)
9482             (gnus-request-article
9483              (cdr gnus-article-current)
9484              (car gnus-article-current) (current-buffer))))
9485         ;; Prettify the summary buffer line.
9486         (when (gnus-visual-p 'summary-highlight 'highlight)
9487           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
9488
9489 (defun gnus-summary-edit-wash (key)
9490   "Perform editing command KEY in the article buffer."
9491   (interactive
9492    (list
9493     (progn
9494       (message "%s" (concat (this-command-keys) "- "))
9495       (read-char))))
9496   (message "")
9497   (gnus-summary-edit-article)
9498   (execute-kbd-macro (concat (this-command-keys) key))
9499   (gnus-article-edit-done))
9500
9501 ;;; Respooling
9502
9503 (defun gnus-summary-respool-query (&optional silent trace)
9504   "Query where the respool algorithm would put this article."
9505   (interactive)
9506   (let (gnus-mark-article-hook)
9507     (gnus-summary-select-article)
9508     (save-excursion
9509       (set-buffer gnus-original-article-buffer)
9510       (let ((groups (nnmail-article-group 'identity trace)))
9511         (unless silent
9512           (if groups
9513               (message "This message would go to %s"
9514                        (mapconcat 'car groups ", "))
9515             (message "This message would go to no groups"))
9516           groups)))))
9517
9518 (defun gnus-summary-respool-trace ()
9519   "Trace where the respool algorithm would put this article.
9520 Display a buffer showing all fancy splitting patterns which matched."
9521   (interactive)
9522   (gnus-summary-respool-query nil t))
9523
9524 ;; Summary marking commands.
9525
9526 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
9527   "Mark articles which has the same subject as read, and then select the next.
9528 If UNMARK is positive, remove any kind of mark.
9529 If UNMARK is negative, tick articles."
9530   (interactive "P")
9531   (when unmark
9532     (setq unmark (prefix-numeric-value unmark)))
9533   (let ((count
9534          (gnus-summary-mark-same-subject
9535           (gnus-summary-article-subject) unmark)))
9536     ;; Select next unread article.  If auto-select-same mode, should
9537     ;; select the first unread article.
9538     (gnus-summary-next-article t (and gnus-auto-select-same
9539                                       (gnus-summary-article-subject)))
9540     (gnus-message 7 "%d article%s marked as %s"
9541                   count (if (= count 1) " is" "s are")
9542                   (if unmark "unread" "read"))))
9543
9544 (defun gnus-summary-kill-same-subject (&optional unmark)
9545   "Mark articles which has the same subject as read.
9546 If UNMARK is positive, remove any kind of mark.
9547 If UNMARK is negative, tick articles."
9548   (interactive "P")
9549   (when unmark
9550     (setq unmark (prefix-numeric-value unmark)))
9551   (let ((count
9552          (gnus-summary-mark-same-subject
9553           (gnus-summary-article-subject) unmark)))
9554     ;; If marked as read, go to next unread subject.
9555     (when (null unmark)
9556       ;; Go to next unread subject.
9557       (gnus-summary-next-subject 1 t))
9558     (gnus-message 7 "%d articles are marked as %s"
9559                   count (if unmark "unread" "read"))))
9560
9561 (defun gnus-summary-mark-same-subject (subject &optional unmark)
9562   "Mark articles with same SUBJECT as read, and return marked number.
9563 If optional argument UNMARK is positive, remove any kinds of marks.
9564 If optional argument UNMARK is negative, mark articles as unread instead."
9565   (let ((count 1))
9566     (save-excursion
9567       (cond
9568        ((null unmark)                   ; Mark as read.
9569         (while (and
9570                 (progn
9571                   (gnus-summary-mark-article-as-read gnus-killed-mark)
9572                   (gnus-summary-show-thread) t)
9573                 (gnus-summary-find-subject subject))
9574           (setq count (1+ count))))
9575        ((> unmark 0)                    ; Tick.
9576         (while (and
9577                 (progn
9578                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
9579                   (gnus-summary-show-thread) t)
9580                 (gnus-summary-find-subject subject))
9581           (setq count (1+ count))))
9582        (t                               ; Mark as unread.
9583         (while (and
9584                 (progn
9585                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
9586                   (gnus-summary-show-thread) t)
9587                 (gnus-summary-find-subject subject))
9588           (setq count (1+ count)))))
9589       (gnus-set-mode-line 'summary)
9590       ;; Return the number of marked articles.
9591       count)))
9592
9593 (defun gnus-summary-mark-as-processable (n &optional unmark)
9594   "Set the process mark on the next N articles.
9595 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
9596 the process mark instead.  The difference between N and the actual
9597 number of articles marked is returned."
9598   (interactive "P")
9599   (if (and (null n) (gnus-region-active-p))
9600       (gnus-uu-mark-region (region-beginning) (region-end) unmark)
9601     (setq n (prefix-numeric-value n))
9602     (let ((backward (< n 0))
9603           (n (abs n)))
9604       (while (and
9605               (> n 0)
9606               (if unmark
9607                   (gnus-summary-remove-process-mark
9608                    (gnus-summary-article-number))
9609                 (gnus-summary-set-process-mark (gnus-summary-article-number)))
9610               (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
9611         (setq n (1- n)))
9612       (when (/= 0 n)
9613         (gnus-message 7 "No more articles"))
9614       (gnus-summary-recenter)
9615       (gnus-summary-position-point)
9616       n)))
9617
9618 (defun gnus-summary-unmark-as-processable (n)
9619   "Remove the process mark from the next N articles.
9620 If N is negative, unmark backward instead.  The difference between N and
9621 the actual number of articles unmarked is returned."
9622   (interactive "P")
9623   (gnus-summary-mark-as-processable n t))
9624
9625 (defun gnus-summary-unmark-all-processable ()
9626   "Remove the process mark from all articles."
9627   (interactive)
9628   (save-excursion
9629     (while gnus-newsgroup-processable
9630       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
9631   (gnus-summary-position-point))
9632
9633 (defun gnus-summary-add-mark (article type)
9634   "Mark ARTICLE with a mark of TYPE."
9635   (let ((vtype (car (assq type gnus-article-mark-lists)))
9636         var)
9637     (if (not vtype)
9638         (error "No such mark type: %s" type)
9639       (setq var (intern (format "gnus-newsgroup-%s" type)))
9640       (set var (cons article (symbol-value var)))
9641       (if (memq type '(processable cached replied forwarded recent saved))
9642           (gnus-summary-update-secondary-mark article)
9643         ;;; !!! This is bogus.  We should find out what primary
9644         ;;; !!! mark we want to set.
9645         (gnus-summary-update-mark gnus-del-mark 'unread)))))
9646
9647 (defun gnus-summary-mark-as-expirable (n)
9648   "Mark N articles forward as expirable.
9649 If N is negative, mark backward instead.  The difference between N and
9650 the actual number of articles marked is returned."
9651   (interactive "p")
9652   (gnus-summary-mark-forward n gnus-expirable-mark))
9653
9654 (defun gnus-summary-mark-as-spam (n)
9655   "Mark N articles forward as spam.
9656 If N is negative, mark backward instead.  The difference between N and
9657 the actual number of articles marked is returned."
9658   (interactive "p")
9659   (gnus-summary-mark-forward n gnus-spam-mark))
9660
9661 (defun gnus-summary-mark-article-as-replied (article)
9662   "Mark ARTICLE as replied to and update the summary line.
9663 ARTICLE can also be a list of articles."
9664   (interactive (list (gnus-summary-article-number)))
9665   (let ((articles (if (listp article) article (list article))))
9666     (dolist (article articles)
9667       (unless (numberp article)
9668         (error "%s is not a number" article))
9669       (push article gnus-newsgroup-replied)
9670       (let ((buffer-read-only nil))
9671         (when (gnus-summary-goto-subject article nil t)
9672           (gnus-summary-update-secondary-mark article))))))
9673
9674 (defun gnus-summary-mark-article-as-forwarded (article)
9675   "Mark ARTICLE as forwarded and update the summary line.
9676 ARTICLE can also be a list of articles."
9677   (let ((articles (if (listp article) article (list article))))
9678     (dolist (article articles)
9679       (push article gnus-newsgroup-forwarded)
9680       (let ((buffer-read-only nil))
9681         (when (gnus-summary-goto-subject article nil t)
9682           (gnus-summary-update-secondary-mark article))))))
9683
9684 (defun gnus-summary-set-bookmark (article)
9685   "Set a bookmark in current article."
9686   (interactive (list (gnus-summary-article-number)))
9687   (when (or (not (get-buffer gnus-article-buffer))
9688             (not gnus-current-article)
9689             (not gnus-article-current)
9690             (not (equal gnus-newsgroup-name (car gnus-article-current))))
9691     (error "No current article selected"))
9692   ;; Remove old bookmark, if one exists.
9693   (gnus-pull article gnus-newsgroup-bookmarks)
9694   ;; Set the new bookmark, which is on the form
9695   ;; (article-number . line-number-in-body).
9696   (push
9697    (cons article
9698          (save-excursion
9699            (set-buffer gnus-article-buffer)
9700            (count-lines
9701             (min (point)
9702                  (save-excursion
9703                    (article-goto-body)
9704                    (point)))
9705             (point))))
9706    gnus-newsgroup-bookmarks)
9707   (gnus-message 6 "A bookmark has been added to the current article."))
9708
9709 (defun gnus-summary-remove-bookmark (article)
9710   "Remove the bookmark from the current article."
9711   (interactive (list (gnus-summary-article-number)))
9712   ;; Remove old bookmark, if one exists.
9713   (if (not (assq article gnus-newsgroup-bookmarks))
9714       (gnus-message 6 "No bookmark in current article.")
9715     (gnus-pull article gnus-newsgroup-bookmarks)
9716     (gnus-message 6 "Removed bookmark.")))
9717
9718 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
9719 (defun gnus-summary-mark-as-dormant (n)
9720   "Mark N articles forward as dormant.
9721 If N is negative, mark backward instead.  The difference between N and
9722 the actual number of articles marked is returned."
9723   (interactive "p")
9724   (gnus-summary-mark-forward n gnus-dormant-mark))
9725
9726 (defun gnus-summary-set-process-mark (article)
9727   "Set the process mark on ARTICLE and update the summary line."
9728   (setq gnus-newsgroup-processable
9729         (cons article
9730               (delq article gnus-newsgroup-processable)))
9731   (when (gnus-summary-goto-subject article)
9732     (gnus-summary-show-thread)
9733     (gnus-summary-goto-subject article)
9734     (gnus-summary-update-secondary-mark article)))
9735
9736 (defun gnus-summary-remove-process-mark (article)
9737   "Remove the process mark from ARTICLE and update the summary line."
9738   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
9739   (when (gnus-summary-goto-subject article)
9740     (gnus-summary-show-thread)
9741     (gnus-summary-goto-subject article)
9742     (gnus-summary-update-secondary-mark article)))
9743
9744 (defun gnus-summary-set-saved-mark (article)
9745   "Set the process mark on ARTICLE and update the summary line."
9746   (push article gnus-newsgroup-saved)
9747   (when (gnus-summary-goto-subject article)
9748     (gnus-summary-update-secondary-mark article)))
9749
9750 (defun gnus-summary-mark-forward (n &optional mark no-expire)
9751   "Mark N articles as read forwards.
9752 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
9753 The difference between N and the actual number of articles marked is
9754 returned.
9755 If NO-EXPIRE, auto-expiry will be inhibited."
9756   (interactive "p")
9757   (gnus-summary-show-thread)
9758   (let ((backward (< n 0))
9759         (gnus-summary-goto-unread
9760          (and gnus-summary-goto-unread
9761               (not (eq gnus-summary-goto-unread 'never))
9762               (not (memq mark (list gnus-unread-mark gnus-spam-mark
9763                                     gnus-ticked-mark gnus-dormant-mark)))))
9764         (n (abs n))
9765         (mark (or mark gnus-del-mark)))
9766     (while (and (> n 0)
9767                 (gnus-summary-mark-article nil mark no-expire)
9768                 (zerop (gnus-summary-next-subject
9769                         (if backward -1 1)
9770                         (and gnus-summary-goto-unread
9771                              (not (eq gnus-summary-goto-unread 'never)))
9772                         t)))
9773       (setq n (1- n)))
9774     (when (/= 0 n)
9775       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9776     (gnus-summary-recenter)
9777     (gnus-summary-position-point)
9778     (gnus-set-mode-line 'summary)
9779     n))
9780
9781 (defun gnus-summary-mark-article-as-read (mark)
9782   "Mark the current article quickly as read with MARK."
9783   (let ((article (gnus-summary-article-number)))
9784     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9785     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9786     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
9787     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9788     (push (cons article mark) gnus-newsgroup-reads)
9789     ;; Possibly remove from cache, if that is used.
9790     (when gnus-use-cache
9791       (gnus-cache-enter-remove-article article))
9792     ;; Allow the backend to change the mark.
9793     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9794     ;; Check for auto-expiry.
9795     (when (and gnus-newsgroup-auto-expire
9796                (memq mark gnus-auto-expirable-marks))
9797       (setq mark gnus-expirable-mark)
9798       ;; Let the backend know about the mark change.
9799       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9800       (push article gnus-newsgroup-expirable))
9801     ;; Set the mark in the buffer.
9802     (gnus-summary-update-mark mark 'unread)
9803     t))
9804
9805 (defun gnus-summary-mark-article-as-unread (mark)
9806   "Mark the current article quickly as unread with MARK."
9807   (let* ((article (gnus-summary-article-number))
9808          (old-mark (gnus-summary-article-mark article)))
9809     ;; Allow the backend to change the mark.
9810     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9811     (if (eq mark old-mark)
9812         t
9813       (if (<= article 0)
9814           (progn
9815             (gnus-error 1 "Can't mark negative article numbers")
9816             nil)
9817         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9818         (setq gnus-newsgroup-spam-marked
9819               (delq article gnus-newsgroup-spam-marked))
9820         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9821         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
9822         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
9823         (cond ((= mark gnus-ticked-mark)
9824                (setq gnus-newsgroup-marked
9825                      (gnus-add-to-sorted-list gnus-newsgroup-marked
9826                                               article)))
9827               ((= mark gnus-spam-mark)
9828                (setq gnus-newsgroup-spam-marked
9829                      (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
9830                                               article)))
9831               ((= mark gnus-dormant-mark)
9832                (setq gnus-newsgroup-dormant
9833                      (gnus-add-to-sorted-list gnus-newsgroup-dormant
9834                                               article)))
9835               (t
9836                (setq gnus-newsgroup-unreads
9837                      (gnus-add-to-sorted-list gnus-newsgroup-unreads
9838                                               article))))
9839         (gnus-pull article gnus-newsgroup-reads)
9840
9841         ;; See whether the article is to be put in the cache.
9842         (and gnus-use-cache
9843              (vectorp (gnus-summary-article-header article))
9844              (save-excursion
9845                (gnus-cache-possibly-enter-article
9846                 gnus-newsgroup-name article
9847                 (= mark gnus-ticked-mark)
9848                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
9849
9850         ;; Fix the mark.
9851         (gnus-summary-update-mark mark 'unread)
9852         t))))
9853
9854 (defun gnus-summary-mark-article (&optional article mark no-expire)
9855   "Mark ARTICLE with MARK.  MARK can be any character.
9856 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
9857 `??' (dormant) and `?E' (expirable).
9858 If MARK is nil, then the default character `?r' is used.
9859 If ARTICLE is nil, then the article on the current line will be
9860 marked.
9861 If NO-EXPIRE, auto-expiry will be inhibited."
9862   ;; The mark might be a string.
9863   (when (stringp mark)
9864     (setq mark (aref mark 0)))
9865   ;; If no mark is given, then we check auto-expiring.
9866   (when (null mark)
9867     (setq mark gnus-del-mark))
9868   (when (and (not no-expire)
9869              gnus-newsgroup-auto-expire
9870              (memq mark gnus-auto-expirable-marks))
9871     (setq mark gnus-expirable-mark))
9872   (let ((article (or article (gnus-summary-article-number)))
9873         (old-mark (gnus-summary-article-mark article)))
9874     ;; Allow the backend to change the mark.
9875     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9876     (if (eq mark old-mark)
9877         t
9878       (unless article
9879         (error "No article on current line"))
9880       (if (not (if (or (= mark gnus-unread-mark)
9881                        (= mark gnus-ticked-mark)
9882                        (= mark gnus-spam-mark)
9883                        (= mark gnus-dormant-mark))
9884                    (gnus-mark-article-as-unread article mark)
9885                  (gnus-mark-article-as-read article mark)))
9886           t
9887         ;; See whether the article is to be put in the cache.
9888         (and gnus-use-cache
9889              (not (= mark gnus-canceled-mark))
9890              (vectorp (gnus-summary-article-header article))
9891              (save-excursion
9892                (gnus-cache-possibly-enter-article
9893                 gnus-newsgroup-name article
9894                 (= mark gnus-ticked-mark)
9895                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
9896
9897         (when (gnus-summary-goto-subject article nil t)
9898           (let ((buffer-read-only nil))
9899             (gnus-summary-show-thread)
9900             ;; Fix the mark.
9901             (gnus-summary-update-mark mark 'unread)
9902             t))))))
9903
9904 (defun gnus-summary-update-secondary-mark (article)
9905   "Update the secondary (read, process, cache) mark."
9906   (gnus-summary-update-mark
9907    (cond ((memq article gnus-newsgroup-processable)
9908           gnus-process-mark)
9909          ((memq article gnus-newsgroup-cached)
9910           gnus-cached-mark)
9911          ((memq article gnus-newsgroup-replied)
9912           gnus-replied-mark)
9913          ((memq article gnus-newsgroup-forwarded)
9914           gnus-forwarded-mark)
9915          ((memq article gnus-newsgroup-saved)
9916           gnus-saved-mark)
9917          ((memq article gnus-newsgroup-recent)
9918           gnus-recent-mark)
9919          ((memq article gnus-newsgroup-unseen)
9920           gnus-unseen-mark)
9921          (t gnus-no-mark))
9922    'replied)
9923   (when (gnus-visual-p 'summary-highlight 'highlight)
9924     (gnus-run-hooks 'gnus-summary-update-hook))
9925   t)
9926
9927 (defun gnus-summary-update-download-mark (article)
9928   "Update the download mark."
9929   (gnus-summary-update-mark
9930    (cond ((memq article gnus-newsgroup-undownloaded)
9931           gnus-undownloaded-mark)
9932          (gnus-newsgroup-agentized
9933           gnus-downloaded-mark)
9934          (t
9935           gnus-no-mark))
9936    'download)
9937   (gnus-summary-update-line t)
9938   t)
9939
9940 (defun gnus-summary-update-mark (mark type)
9941   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
9942         (buffer-read-only nil))
9943     (re-search-backward "[\n\r]" (point-at-bol) 'move-to-limit)
9944     (when forward
9945       (when (looking-at "\r")
9946         (incf forward))
9947       (when (<= (+ forward (point)) (point-max))
9948         ;; Go to the right position on the line.
9949         (goto-char (+ forward (point)))
9950         ;; Replace the old mark with the new mark.
9951         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
9952         ;; Optionally update the marks by some user rule.
9953         (when (eq type 'unread)
9954           (gnus-data-set-mark
9955            (gnus-data-find (gnus-summary-article-number)) mark)
9956           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
9957
9958 (defun gnus-mark-article-as-read (article &optional mark)
9959   "Enter ARTICLE in the pertinent lists and remove it from others."
9960   ;; Make the article expirable.
9961   (let ((mark (or mark gnus-del-mark)))
9962     (setq gnus-newsgroup-expirable
9963           (if (= mark gnus-expirable-mark)
9964               (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
9965             (delq article gnus-newsgroup-expirable)))
9966     ;; Remove from unread and marked lists.
9967     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9968     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9969     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
9970     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9971     (push (cons article mark) gnus-newsgroup-reads)
9972     ;; Possibly remove from cache, if that is used.
9973     (when gnus-use-cache
9974       (gnus-cache-enter-remove-article article))
9975     t))
9976
9977 (defun gnus-mark-article-as-unread (article &optional mark)
9978   "Enter ARTICLE in the pertinent lists and remove it from others."
9979   (let ((mark (or mark gnus-ticked-mark)))
9980     (if (<= article 0)
9981         (progn
9982           (gnus-error 1 "Can't mark negative article numbers")
9983           nil)
9984       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
9985             gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
9986             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
9987             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
9988             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9989
9990       ;; Unsuppress duplicates?
9991       (when gnus-suppress-duplicates
9992         (gnus-dup-unsuppress-article article))
9993
9994       (cond ((= mark gnus-ticked-mark)
9995              (setq gnus-newsgroup-marked
9996                    (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
9997             ((= mark gnus-spam-mark)
9998              (setq gnus-newsgroup-spam-marked
9999                    (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10000                                             article)))
10001             ((= mark gnus-dormant-mark)
10002              (setq gnus-newsgroup-dormant
10003                    (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10004             (t
10005              (setq gnus-newsgroup-unreads
10006                    (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10007       (gnus-pull article gnus-newsgroup-reads)
10008       t)))
10009
10010 (defalias 'gnus-summary-mark-as-unread-forward
10011   'gnus-summary-tick-article-forward)
10012 (make-obsolete 'gnus-summary-mark-as-unread-forward
10013                'gnus-summary-tick-article-forward)
10014 (defun gnus-summary-tick-article-forward (n)
10015   "Tick N articles forwards.
10016 If N is negative, tick backwards instead.
10017 The difference between N and the number of articles ticked is returned."
10018   (interactive "p")
10019   (gnus-summary-mark-forward n gnus-ticked-mark))
10020
10021 (defalias 'gnus-summary-mark-as-unread-backward
10022   'gnus-summary-tick-article-backward)
10023 (make-obsolete 'gnus-summary-mark-as-unread-backward
10024                'gnus-summary-tick-article-backward)
10025 (defun gnus-summary-tick-article-backward (n)
10026   "Tick N articles backwards.
10027 The difference between N and the number of articles ticked is returned."
10028   (interactive "p")
10029   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10030
10031 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10032 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10033 (defun gnus-summary-tick-article (&optional article clear-mark)
10034   "Mark current article as unread.
10035 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10036 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10037   (interactive)
10038   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10039                                        gnus-ticked-mark)))
10040
10041 (defun gnus-summary-mark-as-read-forward (n)
10042   "Mark N articles as read forwards.
10043 If N is negative, mark backwards instead.
10044 The difference between N and the actual number of articles marked is
10045 returned."
10046   (interactive "p")
10047   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10048
10049 (defun gnus-summary-mark-as-read-backward (n)
10050   "Mark the N articles as read backwards.
10051 The difference between N and the actual number of articles marked is
10052 returned."
10053   (interactive "p")
10054   (gnus-summary-mark-forward
10055    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10056
10057 (defun gnus-summary-mark-as-read (&optional article mark)
10058   "Mark current article as read.
10059 ARTICLE specifies the article to be marked as read.
10060 MARK specifies a string to be inserted at the beginning of the line."
10061   (gnus-summary-mark-article article mark))
10062
10063 (defun gnus-summary-clear-mark-forward (n)
10064   "Clear marks from N articles forward.
10065 If N is negative, clear backward instead.
10066 The difference between N and the number of marks cleared is returned."
10067   (interactive "p")
10068   (gnus-summary-mark-forward n gnus-unread-mark))
10069
10070 (defun gnus-summary-clear-mark-backward (n)
10071   "Clear marks from N articles backward.
10072 The difference between N and the number of marks cleared is returned."
10073   (interactive "p")
10074   (gnus-summary-mark-forward (- n) gnus-unread-mark))
10075
10076 (defun gnus-summary-mark-unread-as-read ()
10077   "Intended to be used by `gnus-summary-mark-article-hook'."
10078   (when (memq gnus-current-article gnus-newsgroup-unreads)
10079     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10080
10081 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10082   "Intended to be used by `gnus-summary-mark-article-hook'."
10083   (let ((mark (gnus-summary-article-mark)))
10084     (when (or (gnus-unread-mark-p mark)
10085               (gnus-read-mark-p mark))
10086       (gnus-summary-mark-article gnus-current-article
10087                                  (or new-mark gnus-read-mark)))))
10088
10089 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10090   "Intended to be used by `gnus-summary-mark-article-hook'."
10091   (let ((mark (gnus-summary-article-mark)))
10092     (when (or (gnus-unread-mark-p mark)
10093               (gnus-read-mark-p mark))
10094       (gnus-summary-mark-article (gnus-summary-article-number)
10095                                  (or new-mark gnus-read-mark)))))
10096
10097 (defun gnus-summary-mark-unread-as-ticked ()
10098   "Intended to be used by `gnus-summary-mark-article-hook'."
10099   (when (memq gnus-current-article gnus-newsgroup-unreads)
10100     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10101
10102 (defun gnus-summary-mark-region-as-read (point mark all)
10103   "Mark all unread articles between point and mark as read.
10104 If given a prefix, mark all articles between point and mark as read,
10105 even ticked and dormant ones."
10106   (interactive "r\nP")
10107   (save-excursion
10108     (let (article)
10109       (goto-char point)
10110       (beginning-of-line)
10111       (while (and
10112               (< (point) mark)
10113               (progn
10114                 (when (or all
10115                           (memq (setq article (gnus-summary-article-number))
10116                                 gnus-newsgroup-unreads))
10117                   (gnus-summary-mark-article article gnus-del-mark))
10118                 t)
10119               (gnus-summary-find-next))))))
10120
10121 (defun gnus-summary-mark-below (score mark)
10122   "Mark articles with score less than SCORE with MARK."
10123   (interactive "P\ncMark: ")
10124   (setq score (if score
10125                   (prefix-numeric-value score)
10126                 (or gnus-summary-default-score 0)))
10127   (save-excursion
10128     (set-buffer gnus-summary-buffer)
10129     (goto-char (point-min))
10130     (while
10131         (progn
10132           (and (< (gnus-summary-article-score) score)
10133                (gnus-summary-mark-article nil mark))
10134           (gnus-summary-find-next)))))
10135
10136 (defun gnus-summary-kill-below (&optional score)
10137   "Mark articles with score below SCORE as read."
10138   (interactive "P")
10139   (gnus-summary-mark-below score gnus-killed-mark))
10140
10141 (defun gnus-summary-clear-above (&optional score)
10142   "Clear all marks from articles with score above SCORE."
10143   (interactive "P")
10144   (gnus-summary-mark-above score gnus-unread-mark))
10145
10146 (defun gnus-summary-tick-above (&optional score)
10147   "Tick all articles with score above SCORE."
10148   (interactive "P")
10149   (gnus-summary-mark-above score gnus-ticked-mark))
10150
10151 (defun gnus-summary-mark-above (score mark)
10152   "Mark articles with score over SCORE with MARK."
10153   (interactive "P\ncMark: ")
10154   (setq score (if score
10155                   (prefix-numeric-value score)
10156                 (or gnus-summary-default-score 0)))
10157   (save-excursion
10158     (set-buffer gnus-summary-buffer)
10159     (goto-char (point-min))
10160     (while (and (progn
10161                   (when (> (gnus-summary-article-score) score)
10162                     (gnus-summary-mark-article nil mark))
10163                   t)
10164                 (gnus-summary-find-next)))))
10165
10166 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10167 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10168 (defun gnus-summary-limit-include-expunged (&optional no-error)
10169   "Display all the hidden articles that were expunged for low scores."
10170   (interactive)
10171   (let ((buffer-read-only nil))
10172     (let ((scored gnus-newsgroup-scored)
10173           headers h)
10174       (while scored
10175         (unless (gnus-summary-article-header (caar scored))
10176           (and (setq h (gnus-number-to-header (caar scored)))
10177                (< (cdar scored) gnus-summary-expunge-below)
10178                (push h headers)))
10179         (setq scored (cdr scored)))
10180       (if (not headers)
10181           (when (not no-error)
10182             (error "No expunged articles hidden"))
10183         (goto-char (point-min))
10184         (push gnus-newsgroup-limit gnus-newsgroup-limits)
10185         (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
10186         (mapcar (lambda (x) (push (mail-header-number x)
10187                                   gnus-newsgroup-limit))
10188                 headers)
10189         (gnus-summary-prepare-unthreaded (nreverse headers))
10190         (goto-char (point-min))
10191         (gnus-summary-position-point)
10192         t))))
10193
10194 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
10195   "Mark all unread articles in this newsgroup as read.
10196 If prefix argument ALL is non-nil, ticked and dormant articles will
10197 also be marked as read.
10198 If QUIETLY is non-nil, no questions will be asked.
10199
10200 If TO-HERE is non-nil, it should be a point in the buffer.  All
10201 articles before (after, if REVERSE is set) this point will be marked
10202 as read.
10203
10204 Note that this function will only catch up the unread article
10205 in the current summary buffer limitation.
10206
10207 The number of articles marked as read is returned."
10208   (interactive "P")
10209   (prog1
10210       (save-excursion
10211         (when (or quietly
10212                   (not gnus-interactive-catchup) ;Without confirmation?
10213                   gnus-expert-user
10214                   (gnus-y-or-n-p
10215                    (if all
10216                        "Mark absolutely all articles as read? "
10217                      "Mark all unread articles as read? ")))
10218           (if (and not-mark
10219                    (not gnus-newsgroup-adaptive)
10220                    (not gnus-newsgroup-auto-expire)
10221                    (not gnus-suppress-duplicates)
10222                    (or (not gnus-use-cache)
10223                        (eq gnus-use-cache 'passive)))
10224               (progn
10225                 (when all
10226                   (setq gnus-newsgroup-marked nil
10227                         gnus-newsgroup-spam-marked nil
10228                         gnus-newsgroup-dormant nil))
10229                 (setq gnus-newsgroup-unreads
10230                       (gnus-sorted-nunion
10231                        (gnus-intersection gnus-newsgroup-unreads
10232                                           gnus-newsgroup-downloadable)
10233                        gnus-newsgroup-unfetched)))
10234             ;; We actually mark all articles as canceled, which we
10235             ;; have to do when using auto-expiry or adaptive scoring.
10236             (gnus-summary-show-all-threads)
10237             (if (and to-here reverse)
10238                 (progn
10239                   (goto-char to-here)
10240                   (gnus-summary-mark-current-read-and-unread-as-read
10241                    gnus-catchup-mark)
10242                   (while (gnus-summary-find-next (not all))
10243                     (gnus-summary-mark-article-as-read gnus-catchup-mark)))
10244               (when (gnus-summary-first-subject (not all))
10245                 (while (and
10246                         (if to-here (< (point) to-here) t)
10247                         (gnus-summary-mark-article-as-read gnus-catchup-mark)
10248                         (gnus-summary-find-next (not all))))))
10249             (gnus-set-mode-line 'summary))
10250           t))
10251     (gnus-summary-position-point)))
10252
10253 (defun gnus-summary-catchup-to-here (&optional all)
10254   "Mark all unticked articles before the current one as read.
10255 If ALL is non-nil, also mark ticked and dormant articles as read."
10256   (interactive "P")
10257   (save-excursion
10258     (gnus-save-hidden-threads
10259       (let ((beg (point)))
10260         ;; We check that there are unread articles.
10261         (when (or all (gnus-summary-find-prev))
10262           (gnus-summary-catchup all t beg)))))
10263   (gnus-summary-position-point))
10264
10265 (defun gnus-summary-catchup-from-here (&optional all)
10266   "Mark all unticked articles after (and including) the current one as read.
10267 If ALL is non-nil, also mark ticked and dormant articles as read."
10268   (interactive "P")
10269   (save-excursion
10270     (gnus-save-hidden-threads
10271       (let ((beg (point)))
10272         ;; We check that there are unread articles.
10273         (when (or all (gnus-summary-find-next))
10274           (gnus-summary-catchup all t beg nil t)))))
10275   (gnus-summary-position-point))
10276
10277 (defun gnus-summary-catchup-all (&optional quietly)
10278   "Mark all articles in this newsgroup as read.
10279 This command is dangerous.  Normally, you want \\[gnus-summary-catchup]
10280 instead, which marks only unread articles as read."
10281   (interactive "P")
10282   (gnus-summary-catchup t quietly))
10283
10284 (defun gnus-summary-catchup-and-exit (&optional all quietly)
10285   "Mark all unread articles in this group as read, then exit.
10286 If prefix argument ALL is non-nil, all articles are marked as read.
10287 If QUIETLY is non-nil, no questions will be asked."
10288   (interactive "P")
10289   (when (gnus-summary-catchup all quietly nil 'fast)
10290     ;; Select next newsgroup or exit.
10291     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
10292              (eq gnus-auto-select-next 'quietly))
10293         (gnus-summary-next-group nil)
10294       (gnus-summary-exit))))
10295
10296 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
10297   "Mark all articles in this newsgroup as read, and then exit.
10298 This command is dangerous.  Normally, you want \\[gnus-summary-catchup-and-exit]
10299 instead, which marks only unread articles as read."
10300   (interactive "P")
10301   (gnus-summary-catchup-and-exit t quietly))
10302
10303 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
10304   "Mark all articles in this group as read and select the next group.
10305 If given a prefix, mark all articles, unread as well as ticked, as
10306 read."
10307   (interactive "P")
10308   (save-excursion
10309     (gnus-summary-catchup all))
10310   (gnus-summary-next-group))
10311
10312 ;;;
10313 ;;; with article
10314 ;;;
10315
10316 (defmacro gnus-with-article (article &rest forms)
10317   "Select ARTICLE and perform FORMS in the original article buffer.
10318 Then replace the article with the result."
10319   `(progn
10320      ;; We don't want the article to be marked as read.
10321      (let (gnus-mark-article-hook)
10322        (gnus-summary-select-article t t nil ,article))
10323      (set-buffer gnus-original-article-buffer)
10324      ,@forms
10325      (if (not (gnus-check-backend-function
10326                'request-replace-article (car gnus-article-current)))
10327          (gnus-message 5 "Read-only group; not replacing")
10328        (unless (gnus-request-replace-article
10329                 ,article (car gnus-article-current)
10330                 (current-buffer) t)
10331          (error "Couldn't replace article")))
10332      ;; The cache and backlog have to be flushed somewhat.
10333      (when gnus-keep-backlog
10334        (gnus-backlog-remove-article
10335         (car gnus-article-current) (cdr gnus-article-current)))
10336      (when gnus-use-cache
10337        (gnus-cache-update-article
10338         (car gnus-article-current) (cdr gnus-article-current)))))
10339
10340 (put 'gnus-with-article 'lisp-indent-function 1)
10341 (put 'gnus-with-article 'edebug-form-spec '(form body))
10342
10343 ;; Thread-based commands.
10344
10345 (defun gnus-summary-articles-in-thread (&optional article)
10346   "Return a list of all articles in the current thread.
10347 If ARTICLE is non-nil, return all articles in the thread that starts
10348 with that article."
10349   (let* ((article (or article (gnus-summary-article-number)))
10350          (data (gnus-data-find-list article))
10351          (top-level (gnus-data-level (car data)))
10352          (top-subject
10353           (cond ((null gnus-thread-operation-ignore-subject)
10354                  (gnus-simplify-subject-re
10355                   (mail-header-subject (gnus-data-header (car data)))))
10356                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
10357                  (gnus-simplify-subject-fuzzy
10358                   (mail-header-subject (gnus-data-header (car data)))))
10359                 (t nil)))
10360          (end-point (save-excursion
10361                       (if (gnus-summary-go-to-next-thread)
10362                           (point) (point-max))))
10363          articles)
10364     (while (and data
10365                 (< (gnus-data-pos (car data)) end-point))
10366       (when (or (not top-subject)
10367                 (string= top-subject
10368                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
10369                              (gnus-simplify-subject-fuzzy
10370                               (mail-header-subject
10371                                (gnus-data-header (car data))))
10372                            (gnus-simplify-subject-re
10373                             (mail-header-subject
10374                              (gnus-data-header (car data)))))))
10375         (push (gnus-data-number (car data)) articles))
10376       (unless (and (setq data (cdr data))
10377                    (> (gnus-data-level (car data)) top-level))
10378         (setq data nil)))
10379     ;; Return the list of articles.
10380     (nreverse articles)))
10381
10382 (defun gnus-summary-rethread-current ()
10383   "Rethread the thread the current article is part of."
10384   (interactive)
10385   (let* ((gnus-show-threads t)
10386          (article (gnus-summary-article-number))
10387          (id (mail-header-id (gnus-summary-article-header)))
10388          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
10389     (unless id
10390       (error "No article on the current line"))
10391     (gnus-rebuild-thread id)
10392     (gnus-summary-goto-subject article)))
10393
10394 (defun gnus-summary-reparent-thread ()
10395   "Make the current article child of the marked (or previous) article.
10396
10397 Note that the re-threading will only work if `gnus-thread-ignore-subject'
10398 is non-nil or the Subject: of both articles are the same."
10399   (interactive)
10400   (unless (not (gnus-group-read-only-p))
10401     (error "The current newsgroup does not support article editing"))
10402   (unless (<= (length gnus-newsgroup-processable) 1)
10403     (error "No more than one article may be marked"))
10404   (save-window-excursion
10405     (let ((gnus-article-buffer " *reparent*")
10406           (current-article (gnus-summary-article-number))
10407           ;; First grab the marked article, otherwise one line up.
10408           (parent-article (if (not (null gnus-newsgroup-processable))
10409                               (car gnus-newsgroup-processable)
10410                             (save-excursion
10411                               (if (eq (forward-line -1) 0)
10412                                   (gnus-summary-article-number)
10413                                 (error "Beginning of summary buffer"))))))
10414       (unless (not (eq current-article parent-article))
10415         (error "An article may not be self-referential"))
10416       (let ((message-id (mail-header-id
10417                          (gnus-summary-article-header parent-article))))
10418         (unless (and message-id (not (equal message-id "")))
10419           (error "No message-id in desired parent"))
10420         (gnus-with-article current-article
10421           (save-restriction
10422             (goto-char (point-min))
10423             (message-narrow-to-head)
10424             (if (re-search-forward "^References: " nil t)
10425                 (progn
10426                   (re-search-forward "^[^ \t]" nil t)
10427                   (forward-line -1)
10428                   (end-of-line)
10429                   (insert " " message-id))
10430               (insert "References: " message-id "\n"))))
10431         (set-buffer gnus-summary-buffer)
10432         (gnus-summary-unmark-all-processable)
10433         (gnus-summary-update-article current-article)
10434         (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10435             (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
10436         (gnus-summary-rethread-current)
10437         (gnus-message 3 "Article %d is now the child of article %d"
10438                       current-article parent-article)))))
10439
10440 (defun gnus-summary-toggle-threads (&optional arg)
10441   "Toggle showing conversation threads.
10442 If ARG is positive number, turn showing conversation threads on."
10443   (interactive "P")
10444   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
10445     (setq gnus-show-threads
10446           (if (null arg) (not gnus-show-threads)
10447             (> (prefix-numeric-value arg) 0)))
10448     (gnus-summary-prepare)
10449     (gnus-summary-goto-subject current)
10450     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
10451     (gnus-summary-position-point)))
10452
10453 (defun gnus-summary-show-all-threads ()
10454   "Show all threads."
10455   (interactive)
10456   (save-excursion
10457     (let ((buffer-read-only nil))
10458       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
10459   (gnus-summary-position-point))
10460
10461 (defun gnus-summary-show-thread ()
10462   "Show thread subtrees.
10463 Returns nil if no thread was there to be shown."
10464   (interactive)
10465   (let ((buffer-read-only nil)
10466         (orig (point))
10467         (end (point-at-eol))
10468         ;; Leave point at bol
10469         (beg (progn (beginning-of-line) (point))))
10470     (prog1
10471         ;; Any hidden lines here?
10472         (search-forward "\r" end t)
10473       (subst-char-in-region beg end ?\^M ?\n t)
10474       (goto-char orig)
10475       (gnus-summary-position-point))))
10476
10477 (defun gnus-summary-maybe-hide-threads ()
10478   "If requested, hide the threads that should be hidden."
10479   (when (and gnus-show-threads
10480              gnus-thread-hide-subtree)
10481     (gnus-summary-hide-all-threads
10482      (if (or (consp gnus-thread-hide-subtree)
10483              (functionp gnus-thread-hide-subtree))
10484          (gnus-make-predicate gnus-thread-hide-subtree)
10485        nil))))
10486
10487 ;;; Hiding predicates.
10488
10489 (defun gnus-article-unread-p (header)
10490   (memq (mail-header-number header) gnus-newsgroup-unreads))
10491
10492 (defun gnus-article-unseen-p (header)
10493   (memq (mail-header-number header) gnus-newsgroup-unseen))
10494
10495 (defun gnus-map-articles (predicate articles)
10496   "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
10497   (apply 'gnus-or (mapcar predicate
10498                           (mapcar 'gnus-summary-article-header articles))))
10499
10500 (defun gnus-summary-hide-all-threads (&optional predicate)
10501   "Hide all thread subtrees.
10502 If PREDICATE is supplied, threads that satisfy this predicate
10503 will not be hidden."
10504   (interactive)
10505   (save-excursion
10506     (goto-char (point-min))
10507     (let ((end nil))
10508       (while (not end)
10509         (when (or (not predicate)
10510                   (gnus-map-articles
10511                    predicate (gnus-summary-article-children)))
10512             (gnus-summary-hide-thread))
10513         (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
10514   (gnus-summary-position-point))
10515
10516 (defun gnus-summary-hide-thread ()
10517   "Hide thread subtrees.
10518 If PREDICATE is supplied, threads that satisfy this predicate
10519 will not be hidden.
10520 Returns nil if no threads were there to be hidden."
10521   (interactive)
10522   (let ((buffer-read-only nil)
10523         (start (point))
10524         (article (gnus-summary-article-number)))
10525     (goto-char start)
10526     ;; Go forward until either the buffer ends or the subthread
10527     ;; ends.
10528     (when (and (not (eobp))
10529                (or (zerop (gnus-summary-next-thread 1 t))
10530                    (goto-char (point-max))))
10531       (prog1
10532           (if (and (> (point) start)
10533                    (search-backward "\n" start t))
10534               (progn
10535                 (subst-char-in-region start (point) ?\n ?\^M)
10536                 (gnus-summary-goto-subject article))
10537             (goto-char start)
10538             nil)))))
10539
10540 (defun gnus-summary-go-to-next-thread (&optional previous)
10541   "Go to the same level (or less) next thread.
10542 If PREVIOUS is non-nil, go to previous thread instead.
10543 Return the article number moved to, or nil if moving was impossible."
10544   (let ((level (gnus-summary-thread-level))
10545         (way (if previous -1 1))
10546         (beg (point)))
10547     (forward-line way)
10548     (while (and (not (eobp))
10549                 (< level (gnus-summary-thread-level)))
10550       (forward-line way))
10551     (if (eobp)
10552         (progn
10553           (goto-char beg)
10554           nil)
10555       (setq beg (point))
10556       (prog1
10557           (gnus-summary-article-number)
10558         (goto-char beg)))))
10559
10560 (defun gnus-summary-next-thread (n &optional silent)
10561   "Go to the same level next N'th thread.
10562 If N is negative, search backward instead.
10563 Returns the difference between N and the number of skips actually
10564 done.
10565
10566 If SILENT, don't output messages."
10567   (interactive "p")
10568   (let ((backward (< n 0))
10569         (n (abs n)))
10570     (while (and (> n 0)
10571                 (gnus-summary-go-to-next-thread backward))
10572       (decf n))
10573     (unless silent
10574       (gnus-summary-position-point))
10575     (when (and (not silent) (/= 0 n))
10576       (gnus-message 7 "No more threads"))
10577     n))
10578
10579 (defun gnus-summary-prev-thread (n)
10580   "Go to the same level previous N'th thread.
10581 Returns the difference between N and the number of skips actually
10582 done."
10583   (interactive "p")
10584   (gnus-summary-next-thread (- n)))
10585
10586 (defun gnus-summary-go-down-thread ()
10587   "Go down one level in the current thread."
10588   (let ((children (gnus-summary-article-children)))
10589     (when children
10590       (gnus-summary-goto-subject (car children)))))
10591
10592 (defun gnus-summary-go-up-thread ()
10593   "Go up one level in the current thread."
10594   (let ((parent (gnus-summary-article-parent)))
10595     (when parent
10596       (gnus-summary-goto-subject parent))))
10597
10598 (defun gnus-summary-down-thread (n)
10599   "Go down thread N steps.
10600 If N is negative, go up instead.
10601 Returns the difference between N and how many steps down that were
10602 taken."
10603   (interactive "p")
10604   (let ((up (< n 0))
10605         (n (abs n)))
10606     (while (and (> n 0)
10607                 (if up (gnus-summary-go-up-thread)
10608                   (gnus-summary-go-down-thread)))
10609       (setq n (1- n)))
10610     (gnus-summary-position-point)
10611     (when (/= 0 n)
10612       (gnus-message 7 "Can't go further"))
10613     n))
10614
10615 (defun gnus-summary-up-thread (n)
10616   "Go up thread N steps.
10617 If N is negative, go down instead.
10618 Returns the difference between N and how many steps down that were
10619 taken."
10620   (interactive "p")
10621   (gnus-summary-down-thread (- n)))
10622
10623 (defun gnus-summary-top-thread ()
10624   "Go to the top of the thread."
10625   (interactive)
10626   (while (gnus-summary-go-up-thread))
10627   (gnus-summary-article-number))
10628
10629 (defun gnus-summary-kill-thread (&optional unmark)
10630   "Mark articles under current thread as read.
10631 If the prefix argument is positive, remove any kinds of marks.
10632 If the prefix argument is negative, tick articles instead."
10633   (interactive "P")
10634   (when unmark
10635     (setq unmark (prefix-numeric-value unmark)))
10636   (let ((articles (gnus-summary-articles-in-thread)))
10637     (save-excursion
10638       ;; Expand the thread.
10639       (gnus-summary-show-thread)
10640       ;; Mark all the articles.
10641       (while articles
10642         (gnus-summary-goto-subject (car articles))
10643         (cond ((null unmark)
10644                (gnus-summary-mark-article-as-read gnus-killed-mark))
10645               ((> unmark 0)
10646                (gnus-summary-mark-article-as-unread gnus-unread-mark))
10647               (t
10648                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
10649         (setq articles (cdr articles))))
10650     ;; Hide killed subtrees.
10651     (and (null unmark)
10652          gnus-thread-hide-killed
10653          (gnus-summary-hide-thread))
10654     ;; If marked as read, go to next unread subject.
10655     (when (null unmark)
10656       ;; Go to next unread subject.
10657       (gnus-summary-next-subject 1 t)))
10658   (gnus-set-mode-line 'summary))
10659
10660 ;; Summary sorting commands
10661
10662 (defun gnus-summary-sort-by-number (&optional reverse)
10663   "Sort the summary buffer by article number.
10664 Argument REVERSE means reverse order."
10665   (interactive "P")
10666   (gnus-summary-sort 'number reverse))
10667
10668 (defun gnus-summary-sort-by-random (&optional reverse)
10669   "Randomize the order in the summary buffer.
10670 Argument REVERSE means to randomize in reverse order."
10671   (interactive "P")
10672   (gnus-summary-sort 'random reverse))
10673
10674 (defun gnus-summary-sort-by-author (&optional reverse)
10675   "Sort the summary buffer by author name alphabetically.
10676 If `case-fold-search' is non-nil, case of letters is ignored.
10677 Argument REVERSE means reverse order."
10678   (interactive "P")
10679   (gnus-summary-sort 'author reverse))
10680
10681 (defun gnus-summary-sort-by-subject (&optional reverse)
10682   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
10683 If `case-fold-search' is non-nil, case of letters is ignored.
10684 Argument REVERSE means reverse order."
10685   (interactive "P")
10686   (gnus-summary-sort 'subject reverse))
10687
10688 (defun gnus-summary-sort-by-date (&optional reverse)
10689   "Sort the summary buffer by date.
10690 Argument REVERSE means reverse order."
10691   (interactive "P")
10692   (gnus-summary-sort 'date reverse))
10693
10694 (defun gnus-summary-sort-by-score (&optional reverse)
10695   "Sort the summary buffer by score.
10696 Argument REVERSE means reverse order."
10697   (interactive "P")
10698   (gnus-summary-sort 'score reverse))
10699
10700 (defun gnus-summary-sort-by-lines (&optional reverse)
10701   "Sort the summary buffer by the number of lines.
10702 Argument REVERSE means reverse order."
10703   (interactive "P")
10704   (gnus-summary-sort 'lines reverse))
10705
10706 (defun gnus-summary-sort-by-chars (&optional reverse)
10707   "Sort the summary buffer by article length.
10708 Argument REVERSE means reverse order."
10709   (interactive "P")
10710   (gnus-summary-sort 'chars reverse))
10711
10712 (defun gnus-summary-sort-by-original (&optional reverse)
10713   "Sort the summary buffer using the default sorting method.
10714 Argument REVERSE means reverse order."
10715   (interactive "P")
10716   (let* ((buffer-read-only)
10717          (gnus-summary-prepare-hook nil))
10718     ;; We do the sorting by regenerating the threads.
10719     (gnus-summary-prepare)
10720     ;; Hide subthreads if needed.
10721     (gnus-summary-maybe-hide-threads)))
10722
10723 (defun gnus-summary-sort (predicate reverse)
10724   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
10725   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
10726          (article (intern (format "gnus-article-sort-by-%s" predicate)))
10727          (gnus-thread-sort-functions
10728           (if (not reverse)
10729               thread
10730             `(lambda (t1 t2)
10731                (,thread t2 t1))))
10732          (gnus-sort-gathered-threads-function
10733           gnus-thread-sort-functions)
10734          (gnus-article-sort-functions
10735           (if (not reverse)
10736               article
10737             `(lambda (t1 t2)
10738                (,article t2 t1))))
10739          (buffer-read-only)
10740          (gnus-summary-prepare-hook nil))
10741     ;; We do the sorting by regenerating the threads.
10742     (gnus-summary-prepare)
10743     ;; Hide subthreads if needed.
10744     (gnus-summary-maybe-hide-threads)))
10745
10746 ;; Summary saving commands.
10747
10748 (defun gnus-summary-save-article (&optional n not-saved)
10749   "Save the current article using the default saver function.
10750 If N is a positive number, save the N next articles.
10751 If N is a negative number, save the N previous articles.
10752 If N is nil and any articles have been marked with the process mark,
10753 save those articles instead.
10754 The variable `gnus-default-article-saver' specifies the saver function."
10755   (interactive "P")
10756   (let* ((articles (gnus-summary-work-articles n))
10757          (save-buffer (save-excursion
10758                         (nnheader-set-temp-buffer " *Gnus Save*")))
10759          (num (length articles))
10760          header file)
10761     (dolist (article articles)
10762       (setq header (gnus-summary-article-header article))
10763       (if (not (vectorp header))
10764           ;; This is a pseudo-article.
10765           (if (assq 'name header)
10766               (gnus-copy-file (cdr (assq 'name header)))
10767             (gnus-message 1 "Article %d is unsaveable" article))
10768         ;; This is a real article.
10769         (save-window-excursion
10770           (let ((gnus-display-mime-function nil)
10771                 (gnus-article-prepare-hook nil))
10772             (gnus-summary-select-article t nil nil article)))
10773         (save-excursion
10774           (set-buffer save-buffer)
10775           (erase-buffer)
10776           (insert-buffer-substring gnus-original-article-buffer))
10777         (setq file (gnus-article-save save-buffer file num))
10778         (gnus-summary-remove-process-mark article)
10779         (unless not-saved
10780           (gnus-summary-set-saved-mark article))))
10781     (gnus-kill-buffer save-buffer)
10782     (gnus-summary-position-point)
10783     (gnus-set-mode-line 'summary)
10784     n))
10785
10786 (defun gnus-summary-pipe-output (&optional arg headers)
10787   "Pipe the current article to a subprocess.
10788 If N is a positive number, pipe the N next articles.
10789 If N is a negative number, pipe the N previous articles.
10790 If N is nil and any articles have been marked with the process mark,
10791 pipe those articles instead.
10792 If HEADERS (the symbolic prefix), include the headers, too."
10793   (interactive (gnus-interactive "P\ny"))
10794   (require 'gnus-art)
10795   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)
10796         (gnus-save-all-headers (or headers gnus-save-all-headers)))
10797     (gnus-summary-save-article arg t))
10798   (let ((buffer (get-buffer "*Shell Command Output*")))
10799     (when (and buffer
10800                (not (zerop (buffer-size buffer))))
10801       (gnus-configure-windows 'pipe))))
10802
10803 (defun gnus-summary-save-article-mail (&optional arg)
10804   "Append the current article to an mail file.
10805 If N is a positive number, save the N next articles.
10806 If N is a negative number, save the N previous articles.
10807 If N is nil and any articles have been marked with the process mark,
10808 save those articles instead."
10809   (interactive "P")
10810   (require 'gnus-art)
10811   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
10812     (gnus-summary-save-article arg)))
10813
10814 (defun gnus-summary-save-article-rmail (&optional arg)
10815   "Append the current article to an rmail file.
10816 If N is a positive number, save the N next articles.
10817 If N is a negative number, save the N previous articles.
10818 If N is nil and any articles have been marked with the process mark,
10819 save those articles instead."
10820   (interactive "P")
10821   (require 'gnus-art)
10822   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
10823     (gnus-summary-save-article arg)))
10824
10825 (defun gnus-summary-save-article-file (&optional arg)
10826   "Append the current article to a file.
10827 If N is a positive number, save the N next articles.
10828 If N is a negative number, save the N previous articles.
10829 If N is nil and any articles have been marked with the process mark,
10830 save those articles instead."
10831   (interactive "P")
10832   (require 'gnus-art)
10833   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
10834     (gnus-summary-save-article arg)))
10835
10836 (defun gnus-summary-write-article-file (&optional arg)
10837   "Write the current article to a file, deleting the previous file.
10838 If N is a positive number, save the N next articles.
10839 If N is a negative number, save the N previous articles.
10840 If N is nil and any articles have been marked with the process mark,
10841 save those articles instead."
10842   (interactive "P")
10843   (require 'gnus-art)
10844   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
10845     (gnus-summary-save-article arg)))
10846
10847 (defun gnus-summary-save-article-body-file (&optional arg)
10848   "Append the current article body to a file.
10849 If N is a positive number, save the N next articles.
10850 If N is a negative number, save the N previous articles.
10851 If N is nil and any articles have been marked with the process mark,
10852 save those articles instead."
10853   (interactive "P")
10854   (require 'gnus-art)
10855   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
10856     (gnus-summary-save-article arg)))
10857
10858 (defun gnus-summary-muttprint (&optional arg)
10859   "Print the current article using Muttprint.
10860 If N is a positive number, save the N next articles.
10861 If N is a negative number, save the N previous articles.
10862 If N is nil and any articles have been marked with the process mark,
10863 save those articles instead."
10864   (interactive "P")
10865   (require 'gnus-art)
10866   (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
10867     (gnus-summary-save-article arg t)))
10868
10869 (defun gnus-summary-pipe-message (program)
10870   "Pipe the current article through PROGRAM."
10871   (interactive "sProgram: ")
10872   (gnus-summary-select-article)
10873   (let ((mail-header-separator ""))
10874     (gnus-eval-in-buffer-window gnus-article-buffer
10875       (save-restriction
10876         (widen)
10877         (let ((start (window-start))
10878               buffer-read-only)
10879           (message-pipe-buffer-body program)
10880           (set-window-start (get-buffer-window (current-buffer)) start))))))
10881
10882 (defun gnus-get-split-value (methods)
10883   "Return a value based on the split METHODS."
10884   (let (split-name method result match)
10885     (when methods
10886       (save-excursion
10887         (set-buffer gnus-original-article-buffer)
10888         (save-restriction
10889           (nnheader-narrow-to-headers)
10890           (while (and methods (not split-name))
10891             (goto-char (point-min))
10892             (setq method (pop methods))
10893             (setq match (car method))
10894             (when (cond
10895                    ((stringp match)
10896                     ;; Regular expression.
10897                     (ignore-errors
10898                       (re-search-forward match nil t)))
10899                    ((functionp match)
10900                     ;; Function.
10901                     (save-restriction
10902                       (widen)
10903                       (setq result (funcall match gnus-newsgroup-name))))
10904                    ((consp match)
10905                     ;; Form.
10906                     (save-restriction
10907                       (widen)
10908                       (setq result (eval match)))))
10909               (setq split-name (cdr method))
10910               (cond ((stringp result)
10911                      (push (expand-file-name
10912                             result gnus-article-save-directory)
10913                            split-name))
10914                     ((consp result)
10915                      (setq split-name (append result split-name)))))))))
10916     (nreverse split-name)))
10917
10918 (defun gnus-valid-move-group-p (group)
10919   (and (boundp group)
10920        (symbol-name group)
10921        (symbol-value group)
10922        (gnus-get-function (gnus-find-method-for-group
10923                            (symbol-name group)) 'request-accept-article t)))
10924
10925 (defun gnus-read-move-group-name (prompt default articles prefix)
10926   "Read a group name."
10927   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
10928          (minibuffer-confirm-incomplete nil) ; XEmacs
10929          (prom
10930           (format "%s %s to:"
10931                   prompt
10932                   (if (> (length articles) 1)
10933                       (format "these %d articles" (length articles))
10934                     "this article")))
10935          (to-newsgroup
10936           (cond
10937            ((null split-name)
10938             (gnus-completing-read-with-default
10939              default prom
10940              gnus-active-hashtb
10941              'gnus-valid-move-group-p
10942              nil prefix
10943              'gnus-group-history))
10944            ((= 1 (length split-name))
10945             (gnus-completing-read-with-default
10946              (car split-name) prom
10947              gnus-active-hashtb
10948              'gnus-valid-move-group-p
10949              nil nil
10950              'gnus-group-history))
10951            (t
10952             (gnus-completing-read-with-default
10953              nil prom
10954              (mapcar (lambda (el) (list el))
10955                      (nreverse split-name))
10956              nil nil nil
10957              'gnus-group-history))))
10958          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
10959     (when to-newsgroup
10960       (if (or (string= to-newsgroup "")
10961               (string= to-newsgroup prefix))
10962           (setq to-newsgroup default))
10963       (unless to-newsgroup
10964         (error "No group name entered"))
10965       (or (gnus-active to-newsgroup)
10966           (gnus-activate-group to-newsgroup nil nil to-method)
10967           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
10968                                      to-newsgroup))
10969               (or (and (gnus-request-create-group to-newsgroup to-method)
10970                        (gnus-activate-group
10971                         to-newsgroup nil nil to-method)
10972                        (gnus-subscribe-group to-newsgroup))
10973                   (error "Couldn't create group %s" to-newsgroup)))
10974           (error "No such group: %s" to-newsgroup)))
10975     to-newsgroup))
10976
10977 (defun gnus-summary-save-parts (type dir n &optional reverse)
10978   "Save parts matching TYPE to DIR.
10979 If REVERSE, save parts that do not match TYPE."
10980   (interactive
10981    (list (read-string "Save parts of type: "
10982                       (or (car gnus-summary-save-parts-type-history)
10983                           gnus-summary-save-parts-default-mime)
10984                       'gnus-summary-save-parts-type-history)
10985          (setq gnus-summary-save-parts-last-directory
10986                (read-file-name "Save to directory: "
10987                                gnus-summary-save-parts-last-directory
10988                                nil t))
10989          current-prefix-arg))
10990   (gnus-summary-iterate n
10991     (let ((gnus-display-mime-function nil)
10992           (gnus-inhibit-treatment t))
10993       (gnus-summary-select-article))
10994     (save-excursion
10995       (set-buffer gnus-article-buffer)
10996       (let ((handles (or gnus-article-mime-handles
10997                          (mm-dissect-buffer nil gnus-article-loose-mime)
10998                          (and gnus-article-emulate-mime
10999                               (mm-uu-dissect)))))
11000         (when handles
11001           (gnus-summary-save-parts-1 type dir handles reverse)
11002           (unless gnus-article-mime-handles ;; Don't destroy this case.
11003             (mm-destroy-parts handles)))))))
11004
11005 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11006   (if (stringp (car handle))
11007       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11008               (cdr handle))
11009     (when (if reverse
11010               (not (string-match type (mm-handle-media-type handle)))
11011             (string-match type (mm-handle-media-type handle)))
11012       (let ((file (expand-file-name
11013                    (gnus-map-function
11014                     mm-file-name-rewrite-functions
11015                     (file-name-nondirectory
11016                      (or
11017                       (mail-content-type-get
11018                        (mm-handle-disposition handle) 'filename)
11019                       (mail-content-type-get
11020                        (mm-handle-type handle) 'name)
11021                       (concat gnus-newsgroup-name
11022                               "." (number-to-string
11023                                    (cdr gnus-article-current))))))
11024                    dir)))
11025         (unless (file-exists-p file)
11026           (mm-save-part-to-file handle file))))))
11027
11028 ;; Summary extract commands
11029
11030 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
11031   (let ((buffer-read-only nil)
11032         (article (gnus-summary-article-number))
11033         after-article b e)
11034     (unless (gnus-summary-goto-subject article)
11035       (error "No such article: %d" article))
11036     (gnus-summary-position-point)
11037     ;; If all commands are to be bunched up on one line, we collect
11038     ;; them here.
11039     (unless gnus-view-pseudos-separately
11040       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
11041             files action)
11042         (while ps
11043           (setq action (cdr (assq 'action (car ps))))
11044           (setq files (list (cdr (assq 'name (car ps)))))
11045           (while (and ps (cdr ps)
11046                       (string= (or action "1")
11047                                (or (cdr (assq 'action (cadr ps))) "2")))
11048             (push (cdr (assq 'name (cadr ps))) files)
11049             (setcdr ps (cddr ps)))
11050           (when files
11051             (when (not (string-match "%s" action))
11052               (push " " files))
11053             (push " " files)
11054             (when (assq 'execute (car ps))
11055               (setcdr (assq 'execute (car ps))
11056                       (funcall (if (string-match "%s" action)
11057                                    'format 'concat)
11058                                action
11059                                (mapconcat
11060                                 (lambda (f)
11061                                   (if (equal f " ")
11062                                       f
11063                                     (shell-quote-argument f)))
11064                                 files " ")))))
11065           (setq ps (cdr ps)))))
11066     (if (and gnus-view-pseudos (not not-view))
11067         (while pslist
11068           (when (assq 'execute (car pslist))
11069             (gnus-execute-command (cdr (assq 'execute (car pslist)))
11070                                   (eq gnus-view-pseudos 'not-confirm)))
11071           (setq pslist (cdr pslist)))
11072       (save-excursion
11073         (while pslist
11074           (setq after-article (or (cdr (assq 'article (car pslist)))
11075                                   (gnus-summary-article-number)))
11076           (gnus-summary-goto-subject after-article)
11077           (forward-line 1)
11078           (setq b (point))
11079           (insert "    " (file-name-nondirectory
11080                           (cdr (assq 'name (car pslist))))
11081                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
11082           (setq e (point))
11083           (forward-line -1)             ; back to `b'
11084           (gnus-add-text-properties
11085            b (1- e) (list 'gnus-number gnus-reffed-article-number
11086                           gnus-mouse-face-prop gnus-mouse-face))
11087           (gnus-data-enter
11088            after-article gnus-reffed-article-number
11089            gnus-unread-mark b (car pslist) 0 (- e b))
11090           (setq gnus-newsgroup-unreads
11091                 (gnus-add-to-sorted-list gnus-newsgroup-unreads
11092                                          gnus-reffed-article-number))
11093           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
11094           (setq pslist (cdr pslist)))))))
11095
11096 (defun gnus-pseudos< (p1 p2)
11097   (let ((c1 (cdr (assq 'action p1)))
11098         (c2 (cdr (assq 'action p2))))
11099     (and c1 c2 (string< c1 c2))))
11100
11101 (defun gnus-request-pseudo-article (props)
11102   (cond ((assq 'execute props)
11103          (gnus-execute-command (cdr (assq 'execute props)))))
11104   (let ((gnus-current-article (gnus-summary-article-number)))
11105     (gnus-run-hooks 'gnus-mark-article-hook)))
11106
11107 (defun gnus-execute-command (command &optional automatic)
11108   (save-excursion
11109     (gnus-article-setup-buffer)
11110     (set-buffer gnus-article-buffer)
11111     (setq buffer-read-only nil)
11112     (let ((command (if automatic command
11113                      (read-string "Command: " (cons command 0)))))
11114       (erase-buffer)
11115       (insert "$ " command "\n\n")
11116       (if gnus-view-pseudo-asynchronously
11117           (start-process "gnus-execute" (current-buffer) shell-file-name
11118                          shell-command-switch command)
11119         (call-process shell-file-name nil t nil
11120                       shell-command-switch command)))))
11121
11122 ;; Summary kill commands.
11123
11124 (defun gnus-summary-edit-global-kill (article)
11125   "Edit the \"global\" kill file."
11126   (interactive (list (gnus-summary-article-number)))
11127   (gnus-group-edit-global-kill article))
11128
11129 (defun gnus-summary-edit-local-kill ()
11130   "Edit a local kill file applied to the current newsgroup."
11131   (interactive)
11132   (setq gnus-current-headers (gnus-summary-article-header))
11133   (gnus-group-edit-local-kill
11134    (gnus-summary-article-number) gnus-newsgroup-name))
11135
11136 ;;; Header reading.
11137
11138 (defun gnus-read-header (id &optional header)
11139   "Read the headers of article ID and enter them into the Gnus system."
11140   (let ((group gnus-newsgroup-name)
11141         (gnus-override-method
11142          (or
11143           gnus-override-method
11144           (and (gnus-news-group-p gnus-newsgroup-name)
11145                (car (gnus-refer-article-methods)))))
11146         where)
11147     ;; First we check to see whether the header in question is already
11148     ;; fetched.
11149     (if (stringp id)
11150         ;; This is a Message-ID.
11151         (setq header (or header (gnus-id-to-header id)))
11152       ;; This is an article number.
11153       (setq header (or header (gnus-summary-article-header id))))
11154     (if (and header
11155              (not (gnus-summary-article-sparse-p (mail-header-number header))))
11156         ;; We have found the header.
11157         header
11158       ;; If this is a sparse article, we have to nix out its
11159       ;; previous entry in the thread hashtb.
11160       (when (and header
11161                  (gnus-summary-article-sparse-p (mail-header-number header)))
11162         (let* ((parent (gnus-parent-id (mail-header-references header)))
11163                (thread (and parent (gnus-id-to-thread parent))))
11164           (when thread
11165             (delq (assq header thread) thread))))
11166       ;; We have to really fetch the header to this article.
11167       (save-excursion
11168         (set-buffer nntp-server-buffer)
11169         (when (setq where (gnus-request-head id group))
11170           (nnheader-fold-continuation-lines)
11171           (goto-char (point-max))
11172           (insert ".\n")
11173           (goto-char (point-min))
11174           (insert "211 ")
11175           (princ (cond
11176                   ((numberp id) id)
11177                   ((cdr where) (cdr where))
11178                   (header (mail-header-number header))
11179                   (t gnus-reffed-article-number))
11180                  (current-buffer))
11181           (insert " Article retrieved.\n"))
11182         (if (or (not where)
11183                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
11184             ()                          ; Malformed head.
11185           (unless (gnus-summary-article-sparse-p (mail-header-number header))
11186             (when (and (stringp id)
11187                        (not (string= (gnus-group-real-name group)
11188                                      (car where))))
11189               ;; If we fetched by Message-ID and the article came
11190               ;; from a different group, we fudge some bogus article
11191               ;; numbers for this article.
11192               (mail-header-set-number header gnus-reffed-article-number))
11193             (save-excursion
11194               (set-buffer gnus-summary-buffer)
11195               (decf gnus-reffed-article-number)
11196               (gnus-remove-header (mail-header-number header))
11197               (push header gnus-newsgroup-headers)
11198               (setq gnus-current-headers header)
11199               (push (mail-header-number header) gnus-newsgroup-limit)))
11200           header)))))
11201
11202 (defun gnus-remove-header (number)
11203   "Remove header NUMBER from `gnus-newsgroup-headers'."
11204   (if (and gnus-newsgroup-headers
11205            (= number (mail-header-number (car gnus-newsgroup-headers))))
11206       (pop gnus-newsgroup-headers)
11207     (let ((headers gnus-newsgroup-headers))
11208       (while (and (cdr headers)
11209                   (not (= number (mail-header-number (cadr headers)))))
11210         (pop headers))
11211       (when (cdr headers)
11212         (setcdr headers (cddr headers))))))
11213
11214 ;;;
11215 ;;; summary highlights
11216 ;;;
11217
11218 (defun gnus-highlight-selected-summary ()
11219   "Highlight selected article in summary buffer."
11220   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
11221   (when gnus-summary-selected-face
11222     (save-excursion
11223       (let* ((beg (point-at-bol))
11224              (end (point-at-eol))
11225              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
11226              (from (if (get-text-property beg gnus-mouse-face-prop)
11227                        beg
11228                      (or (next-single-property-change
11229                           beg gnus-mouse-face-prop nil end)
11230                          beg)))
11231              (to
11232               (if (= from end)
11233                   (- from 2)
11234                 (or (next-single-property-change
11235                      from gnus-mouse-face-prop nil end)
11236                     end))))
11237         ;; If no mouse-face prop on line we will have to = from = end,
11238         ;; so we highlight the entire line instead.
11239         (when (= (+ to 2) from)
11240           (setq from beg)
11241           (setq to end))
11242         (if gnus-newsgroup-selected-overlay
11243             ;; Move old overlay.
11244             (gnus-move-overlay
11245              gnus-newsgroup-selected-overlay from to (current-buffer))
11246           ;; Create new overlay.
11247           (gnus-overlay-put
11248            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
11249            'face gnus-summary-selected-face))))))
11250
11251 (defvar gnus-summary-highlight-line-cached nil)
11252 (defvar gnus-summary-highlight-line-trigger nil)
11253
11254 (defun gnus-summary-highlight-line-0 ()
11255   (if (and (eq gnus-summary-highlight-line-trigger
11256                gnus-summary-highlight)
11257            gnus-summary-highlight-line-cached)
11258       gnus-summary-highlight-line-cached
11259     (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
11260           gnus-summary-highlight-line-cached
11261           (let* ((cond (list 'cond))
11262                  (c cond)
11263                  (list gnus-summary-highlight))
11264             (while list
11265               (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
11266                               nil))
11267               (setq c (cdr c)
11268                     list (cdr list)))
11269             (gnus-byte-compile (list 'lambda nil cond))))))
11270
11271 (defun gnus-summary-highlight-line ()
11272   "Highlight current line according to `gnus-summary-highlight'."
11273   (let* ((beg (point-at-bol))
11274          (article (or (gnus-summary-article-number) gnus-current-article))
11275          (score (or (cdr (assq article
11276                                gnus-newsgroup-scored))
11277                     gnus-summary-default-score 0))
11278          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
11279          (inhibit-read-only t)
11280          (default gnus-summary-default-score)
11281          (default-high gnus-summary-default-high-score)
11282          (default-low gnus-summary-default-low-score)
11283          (uncached (and gnus-summary-use-undownloaded-faces
11284                         (memq article gnus-newsgroup-undownloaded))))
11285     (let ((face (funcall (gnus-summary-highlight-line-0))))
11286       (unless (eq face (get-text-property beg 'face))
11287         (gnus-put-text-property-excluding-characters-with-faces
11288          beg (point-at-eol) 'face
11289          (setq face (if (boundp face) (symbol-value face) face)))
11290         (when gnus-summary-highlight-line-function
11291           (funcall gnus-summary-highlight-line-function article face))))))
11292
11293 (defun gnus-update-read-articles (group unread &optional compute)
11294   "Update the list of read articles in GROUP.
11295 UNREAD is a sorted list."
11296   (let ((active (or gnus-newsgroup-active (gnus-active group)))
11297         (info (gnus-get-info group))
11298         (prev 1)
11299         read)
11300     (if (or (not info) (not active))
11301         ;; There is no info on this group if it was, in fact,
11302         ;; killed.  Gnus stores no information on killed groups, so
11303         ;; there's nothing to be done.
11304         ;; One could store the information somewhere temporarily,
11305         ;; perhaps...  Hmmm...
11306         ()
11307       ;; Remove any negative articles numbers.
11308       (while (and unread (< (car unread) 0))
11309         (setq unread (cdr unread)))
11310       ;; Remove any expired article numbers
11311       (while (and unread (< (car unread) (car active)))
11312         (setq unread (cdr unread)))
11313       ;; Compute the ranges of read articles by looking at the list of
11314       ;; unread articles.
11315       (while unread
11316         (when (/= (car unread) prev)
11317           (push (if (= prev (1- (car unread))) prev
11318                   (cons prev (1- (car unread))))
11319                 read))
11320         (setq prev (1+ (car unread)))
11321         (setq unread (cdr unread)))
11322       (when (<= prev (cdr active))
11323         (push (cons prev (cdr active)) read))
11324       (setq read (if (> (length read) 1) (nreverse read) read))
11325       (if compute
11326           read
11327         (save-excursion
11328           (let (setmarkundo)
11329             ;; Propagate the read marks to the backend.
11330             (when (gnus-check-backend-function 'request-set-mark group)
11331               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
11332                     (add (gnus-remove-from-range read (gnus-info-read info))))
11333                 (when (or add del)
11334                   (unless (gnus-check-group group)
11335                     (error "Can't open server for %s" group))
11336                   (gnus-request-set-mark
11337                    group (delq nil (list (if add (list add 'add '(read)))
11338                                          (if del (list del 'del '(read))))))
11339                   (setq setmarkundo
11340                         `(gnus-request-set-mark
11341                           ,group
11342                           ',(delq nil (list
11343                                        (if del (list del 'add '(read)))
11344                                        (if add (list add 'del '(read))))))))))
11345             (set-buffer gnus-group-buffer)
11346             (gnus-undo-register
11347               `(progn
11348                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
11349                  (gnus-info-set-read ',info ',(gnus-info-read info))
11350                  (gnus-get-unread-articles-in-group ',info
11351                                                     (gnus-active ,group))
11352                  (gnus-group-update-group ,group t)
11353                  ,setmarkundo))))
11354         ;; Enter this list into the group info.
11355         (gnus-info-set-read info read)
11356         ;; Set the number of unread articles in gnus-newsrc-hashtb.
11357         (gnus-get-unread-articles-in-group info (gnus-active group))
11358         t))))
11359
11360 (defun gnus-offer-save-summaries ()
11361   "Offer to save all active summary buffers."
11362   (let (buffers)
11363     ;; Go through all buffers and find all summaries.
11364     (dolist (buffer (buffer-list))
11365       (when (and (setq buffer (buffer-name buffer))
11366                  (string-match "Summary" buffer)
11367                  (save-excursion
11368                    (set-buffer buffer)
11369                    ;; We check that this is, indeed, a summary buffer.
11370                    (and (eq major-mode 'gnus-summary-mode)
11371                         ;; Also make sure this isn't bogus.
11372                         gnus-newsgroup-prepared
11373                         ;; Also make sure that this isn't a
11374                         ;; dead summary buffer.
11375                         (not gnus-dead-summary-mode))))
11376         (push buffer buffers)))
11377     ;; Go through all these summary buffers and offer to save them.
11378     (when buffers
11379       (save-excursion
11380         (map-y-or-n-p
11381          "Update summary buffer %s? "
11382          (lambda (buf)
11383            (switch-to-buffer buf)
11384            (gnus-summary-exit))
11385          buffers)))))
11386
11387 (defun gnus-summary-setup-default-charset ()
11388   "Setup newsgroup default charset."
11389   (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
11390       (setq gnus-newsgroup-charset nil)
11391     (let* ((ignored-charsets
11392             (or gnus-newsgroup-ephemeral-ignored-charsets
11393                 (append
11394                  (and gnus-newsgroup-name
11395                       (gnus-parameter-ignored-charsets gnus-newsgroup-name))
11396                  gnus-newsgroup-ignored-charsets))))
11397       (setq gnus-newsgroup-charset
11398             (or gnus-newsgroup-ephemeral-charset
11399                 (and gnus-newsgroup-name
11400                      (gnus-parameter-charset gnus-newsgroup-name))
11401                 gnus-default-charset))
11402       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
11403            ignored-charsets))))
11404
11405 ;;;
11406 ;;; Mime Commands
11407 ;;;
11408
11409 (defun gnus-summary-display-buttonized (&optional show-all-parts)
11410   "Display the current article buffer fully MIME-buttonized.
11411 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
11412 treated as multipart/mixed."
11413   (interactive "P")
11414   (require 'gnus-art)
11415   (let ((gnus-unbuttonized-mime-types nil)
11416         (gnus-mime-display-multipart-as-mixed show-all-parts))
11417     (gnus-summary-show-article)))
11418
11419 (defun gnus-summary-repair-multipart (article)
11420   "Add a Content-Type header to a multipart article without one."
11421   (interactive (list (gnus-summary-article-number)))
11422   (gnus-with-article article
11423     (message-narrow-to-head)
11424     (message-remove-header "Mime-Version")
11425     (goto-char (point-max))
11426     (insert "Mime-Version: 1.0\n")
11427     (widen)
11428     (when (search-forward "\n--" nil t)
11429       (let ((separator (buffer-substring (point) (point-at-eol))))
11430         (message-narrow-to-head)
11431         (message-remove-header "Content-Type")
11432         (goto-char (point-max))
11433         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
11434                         separator))
11435         (widen))))
11436   (let (gnus-mark-article-hook)
11437     (gnus-summary-select-article t t nil article)))
11438
11439 (defun gnus-summary-toggle-display-buttonized ()
11440   "Toggle the buttonizing of the article buffer."
11441   (interactive)
11442   (require 'gnus-art)
11443   (if (setq gnus-inhibit-mime-unbuttonizing
11444             (not gnus-inhibit-mime-unbuttonizing))
11445       (let ((gnus-unbuttonized-mime-types nil))
11446         (gnus-summary-show-article))
11447     (gnus-summary-show-article)))
11448
11449 ;;;
11450 ;;; Generic summary marking commands
11451 ;;;
11452
11453 (defvar gnus-summary-marking-alist
11454   '((read gnus-del-mark "d")
11455     (unread gnus-unread-mark "u")
11456     (ticked gnus-ticked-mark "!")
11457     (dormant gnus-dormant-mark "?")
11458     (expirable gnus-expirable-mark "e"))
11459   "An alist of names/marks/keystrokes.")
11460
11461 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
11462 (defvar gnus-summary-mark-map)
11463
11464 (defun gnus-summary-make-all-marking-commands ()
11465   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
11466   (dolist (elem gnus-summary-marking-alist)
11467     (apply 'gnus-summary-make-marking-command elem)))
11468
11469 (defun gnus-summary-make-marking-command (name mark keystroke)
11470   (let ((map (make-sparse-keymap)))
11471     (define-key gnus-summary-generic-mark-map keystroke map)
11472     (dolist (lway `((next "next" next nil "n")
11473                     (next-unread "next unread" next t "N")
11474                     (prev "previous" prev nil "p")
11475                     (prev-unread "previous unread" prev t "P")
11476                     (nomove "" nil nil ,keystroke)))
11477       (let ((func (gnus-summary-make-marking-command-1
11478                    mark (car lway) lway name)))
11479         (setq func (eval func))
11480         (define-key map (nth 4 lway) func)))))
11481
11482 (defun gnus-summary-make-marking-command-1 (mark way lway name)
11483   `(defun ,(intern
11484             (format "gnus-summary-put-mark-as-%s%s"
11485                     name (if (eq way 'nomove)
11486                              ""
11487                            (concat "-" (symbol-name way)))))
11488      (n)
11489      ,(format
11490        "Mark the current article as %s%s.
11491 If N, the prefix, then repeat N times.
11492 If N is negative, move in reverse order.
11493 The difference between N and the actual number of articles marked is
11494 returned."
11495        name (cadr lway))
11496      (interactive "p")
11497      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
11498
11499 (defun gnus-summary-generic-mark (n mark move unread)
11500   "Mark N articles with MARK."
11501   (unless (eq major-mode 'gnus-summary-mode)
11502     (error "This command can only be used in the summary buffer"))
11503   (gnus-summary-show-thread)
11504   (let ((nummove
11505          (cond
11506           ((eq move 'next) 1)
11507           ((eq move 'prev) -1)
11508           (t 0))))
11509     (if (zerop nummove)
11510         (setq n 1)
11511       (when (< n 0)
11512         (setq n (abs n)
11513               nummove (* -1 nummove))))
11514     (while (and (> n 0)
11515                 (gnus-summary-mark-article nil mark)
11516                 (zerop (gnus-summary-next-subject nummove unread t)))
11517       (setq n (1- n)))
11518     (when (/= 0 n)
11519       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
11520     (gnus-summary-recenter)
11521     (gnus-summary-position-point)
11522     (gnus-set-mode-line 'summary)
11523     n))
11524
11525 (defun gnus-summary-insert-articles (articles)
11526   (when (setq articles
11527               (gnus-sorted-difference articles
11528                                       (mapcar (lambda (h)
11529                                                 (mail-header-number h))
11530                                               gnus-newsgroup-headers)))
11531     (setq gnus-newsgroup-headers
11532           (gnus-merge 'list
11533                       gnus-newsgroup-headers
11534                       (gnus-fetch-headers articles)
11535                       'gnus-article-sort-by-number))
11536     ;; Suppress duplicates?
11537     (when gnus-suppress-duplicates
11538       (gnus-dup-suppress-articles))
11539
11540     ;; We might want to build some more threads first.
11541     (when (and gnus-fetch-old-headers
11542                (eq gnus-headers-retrieved-by 'nov))
11543       (if (eq gnus-fetch-old-headers 'invisible)
11544           (gnus-build-all-threads)
11545         (gnus-build-old-threads)))
11546     ;; Let the Gnus agent mark articles as read.
11547     (when gnus-agent
11548       (gnus-agent-get-undownloaded-list))
11549     ;; Remove list identifiers from subject
11550     (when gnus-list-identifiers
11551       (gnus-summary-remove-list-identifiers))
11552     ;; First and last article in this newsgroup.
11553     (when gnus-newsgroup-headers
11554       (setq gnus-newsgroup-begin
11555             (mail-header-number (car gnus-newsgroup-headers))
11556             gnus-newsgroup-end
11557             (mail-header-number
11558              (gnus-last-element gnus-newsgroup-headers))))
11559     (when gnus-use-scoring
11560       (gnus-possibly-score-headers))))
11561
11562 (defun gnus-summary-insert-old-articles (&optional all)
11563   "Insert all old articles in this group.
11564 If ALL is non-nil, already read articles become readable.
11565 If ALL is a number, fetch this number of articles."
11566   (interactive "P")
11567   (prog1
11568       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11569             older len)
11570         (setq older
11571               ;; Some nntp servers lie about their active range.  When
11572               ;; this happens, the active range can be in the millions.
11573               ;; Use a compressed range to avoid creating a huge list.
11574               (gnus-range-difference (list gnus-newsgroup-active) old))
11575         (setq len (gnus-range-length older))
11576         (cond
11577          ((null older) nil)
11578          ((numberp all)
11579           (if (< all len)
11580               (let ((older-range (nreverse older)))
11581                 (setq older nil)
11582
11583                 (while (> all 0)
11584                   (let* ((r (pop older-range))
11585                          (min (if (numberp r) r (car r)))
11586                          (max (if (numberp r) r (cdr r))))
11587                     (while (and (<= min max)
11588                                 (> all 0))
11589                       (push max older)
11590                       (setq all (1- all)
11591                             max (1- max))))))
11592             (setq older (gnus-uncompress-range older))))
11593          (all
11594           (setq older (gnus-uncompress-range older)))
11595          (t
11596           (when (and (numberp gnus-large-newsgroup)
11597                    (> len gnus-large-newsgroup))
11598               (let* ((cursor-in-echo-area nil)
11599                      (initial (gnus-parameter-large-newsgroup-initial
11600                                gnus-newsgroup-name))
11601                      (input
11602                       (read-string
11603                        (format
11604                         "How many articles from %s (%s %d): "
11605                         (gnus-limit-string
11606                          (gnus-group-decoded-name gnus-newsgroup-name) 35)
11607                         (if initial "max" "default")
11608                         len)
11609                        (if initial
11610                            (cons (number-to-string initial)
11611                                  0)))))
11612                 (unless (string-match "^[ \t]*$" input)
11613                   (setq all (string-to-number input))
11614                   (if (< all len)
11615                       (let ((older-range (nreverse older)))
11616                         (setq older nil)
11617
11618                         (while (> all 0)
11619                           (let* ((r (pop older-range))
11620                                  (min (if (numberp r) r (car r)))
11621                                  (max (if (numberp r) r (cdr r))))
11622                             (while (and (<= min max)
11623                                         (> all 0))
11624                               (push max older)
11625                               (setq all (1- all)
11626                                     max (1- max))))))))))
11627           (setq older (gnus-uncompress-range older))))
11628         (if (not older)
11629             (message "No old news.")
11630           (gnus-summary-insert-articles older)
11631           (gnus-summary-limit (gnus-sorted-nunion old older))))
11632     (gnus-summary-position-point)))
11633
11634 (defun gnus-summary-insert-new-articles ()
11635   "Insert all new articles in this group."
11636   (interactive)
11637   (prog1
11638       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11639             (old-active gnus-newsgroup-active)
11640             (nnmail-fetched-sources (list t))
11641             i new)
11642         (setq gnus-newsgroup-active
11643               (gnus-activate-group gnus-newsgroup-name 'scan))
11644         (setq i (cdr gnus-newsgroup-active))
11645         (while (> i (cdr old-active))
11646           (push i new)
11647           (decf i))
11648         (if (not new)
11649             (message "No gnus is bad news")
11650           (gnus-summary-insert-articles new)
11651           (setq gnus-newsgroup-unreads
11652                 (gnus-sorted-nunion gnus-newsgroup-unreads new))
11653           (gnus-summary-limit (gnus-sorted-nunion old new))))
11654     (gnus-summary-position-point)))
11655
11656 (gnus-summary-make-all-marking-commands)
11657
11658 (gnus-ems-redefine)
11659
11660 (provide 'gnus-sum)
11661
11662 (run-hooks 'gnus-sum-load-hook)
11663
11664 ;; Local Variables:
11665 ;; coding: iso-8859-1
11666 ;; End:
11667
11668 ;;; gnus-sum.el ends here