(gnus-propagate-marks): Fix custom version.
[gnus] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Gnus
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 ;; For Emacs < 22.2.
31 (eval-and-compile
32   (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
33 (eval-when-compile
34   (require 'cl))
35
36 (defvar tool-bar-mode)
37 (defvar gnus-tmp-header)
38
39 (require 'gnus)
40 (require 'gnus-group)
41 (require 'gnus-spec)
42 (require 'gnus-range)
43 (require 'gnus-int)
44 (require 'gnus-undo)
45 (require 'gnus-util)
46 (require 'gmm-utils)
47 (require 'mm-decode)
48 (require 'nnoo)
49
50 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
51 (autoload 'gnus-cache-write-active "gnus-cache")
52 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
53 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
54 (autoload 'gnus-pick-line-number "gnus-salt" nil t)
55 (autoload 'mm-uu-dissect "mm-uu")
56 (autoload 'gnus-article-outlook-deuglify-article "deuglify"
57   "Deuglify broken Outlook (Express) articles and redisplay."
58   t)
59 (autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
60 (autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
61 (autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
62
63 (defcustom gnus-kill-summary-on-exit t
64   "*If non-nil, kill the summary buffer when you exit from it.
65 If nil, the summary will become a \"*Dead Summary*\" buffer, and
66 it will be killed sometime later."
67   :group 'gnus-summary-exit
68   :type 'boolean)
69
70 (defcustom gnus-summary-next-group-on-exit t
71   "If non-nil, go to the next unread newsgroup on summary exit.
72 See `gnus-group-goto-unread'."
73   :link '(custom-manual "(gnus)Group Maneuvering")
74   :group 'gnus-summary-exit
75   :version "23.1" ;; No Gnus
76   :type 'boolean)
77
78 (defcustom gnus-fetch-old-headers nil
79   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
80 If an unread article in the group refers to an older, already
81 read (or just marked as read) article, the old article will not
82 normally be displayed in the Summary buffer.  If this variable is
83 t, Gnus will attempt to grab the headers to the old articles, and
84 thereby build complete threads.  If it has the value `some', all
85 old headers will be fetched but only enough headers to connect
86 otherwise loose threads will be displayed.  This variable can
87 also be a number.  In that case, no more than that number of old
88 headers will be fetched.  If it has the value `invisible', all
89 old headers will be fetched, but none will be displayed.
90
91 The server has to support NOV for any of this to work.
92
93 This feature can seriously impact performance it ignores all
94 locally cached header entries."
95   :group 'gnus-thread
96   :type '(choice (const :tag "off" nil)
97                  (const :tag "on" t)
98                  (const some)
99                  (const invisible)
100                  number
101                  (sexp :menu-tag "other" t)))
102
103 (defcustom gnus-refer-thread-limit 500
104   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
105 If t, fetch all the available old headers."
106   :group 'gnus-thread
107   :type '(choice number
108                  (sexp :menu-tag "other" t)))
109
110 (defcustom gnus-summary-make-false-root 'adopt
111   "*nil means that Gnus won't gather loose threads.
112 If the root of a thread has expired or been read in a previous
113 session, the information necessary to build a complete thread has been
114 lost.  Instead of having many small sub-threads from this original thread
115 scattered all over the summary buffer, Gnus can gather them.
116
117 If non-nil, Gnus will try to gather all loose sub-threads from an
118 original thread into one large thread.
119
120 If this variable is non-nil, it should be one of `none', `adopt',
121 `dummy' or `empty'.
122
123 If this variable is `none', Gnus will not make a false root, but just
124 present the sub-threads after another.
125 If this variable is `dummy', Gnus will create a dummy root that will
126 have all the sub-threads as children.
127 If this variable is `adopt', Gnus will make one of the \"children\"
128 the parent and mark all the step-children as such.
129 If this variable is `empty', the \"children\" are printed with empty
130 subject fields.  (Or rather, they will be printed with a string
131 given by the `gnus-summary-same-subject' variable.)"
132   :group 'gnus-thread
133   :type '(choice (const :tag "off" nil)
134                  (const none)
135                  (const dummy)
136                  (const adopt)
137                  (const empty)))
138
139 (defcustom gnus-summary-make-false-root-always nil
140   "Always make a false dummy root."
141   :version "22.1"
142   :group 'gnus-thread
143   :type 'boolean)
144
145 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
146   "*A regexp to match subjects to be excluded from loose thread gathering.
147 As loose thread gathering is done on subjects only, that means that
148 there can be many false gatherings performed.  By rooting out certain
149 common subjects, gathering might become saner."
150   :group 'gnus-thread
151   :type 'regexp)
152
153 (defcustom gnus-summary-gather-subject-limit nil
154   "*Maximum length of subject comparisons when gathering loose threads.
155 Use nil to compare full subjects.  Setting this variable to a low
156 number will help gather threads that have been corrupted by
157 newsreaders chopping off subject lines, but it might also mean that
158 unrelated articles that have subject that happen to begin with the
159 same few characters will be incorrectly gathered.
160
161 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
162 comparing subjects."
163   :group 'gnus-thread
164   :type '(choice (const :tag "off" nil)
165                  (const fuzzy)
166                  (sexp :menu-tag "on" t)))
167
168 (defcustom gnus-simplify-subject-functions nil
169   "List of functions taking a string argument that simplify subjects.
170 The functions are applied recursively.
171
172 Useful functions to put in this list include:
173 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
174 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
175   :group 'gnus-thread
176   :type '(repeat function))
177
178 (defcustom gnus-simplify-ignored-prefixes nil
179   "*Remove matches for this regexp from subject lines when simplifying fuzzily."
180   :group 'gnus-thread
181   :type '(choice (const :tag "off" nil)
182                  regexp))
183
184 (defcustom gnus-build-sparse-threads nil
185   "*If non-nil, fill in the gaps in threads.
186 If `some', only fill in the gaps that are needed to tie loose threads
187 together.  If `more', fill in all leaf nodes that Gnus can find.  If
188 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
189   :group 'gnus-thread
190   :type '(choice (const :tag "off" nil)
191                  (const some)
192                  (const more)
193                  (sexp :menu-tag "all" t)))
194
195 (defcustom gnus-summary-thread-gathering-function
196   'gnus-gather-threads-by-subject
197   "*Function used for gathering loose threads.
198 There are two pre-defined functions: `gnus-gather-threads-by-subject',
199 which only takes Subjects into consideration; and
200 `gnus-gather-threads-by-references', which compared the References
201 headers of the articles to find matches."
202   :group 'gnus-thread
203   :type '(radio (function-item gnus-gather-threads-by-subject)
204                 (function-item gnus-gather-threads-by-references)
205                 (function :tag "other")))
206
207 (defcustom gnus-summary-same-subject ""
208   "*String indicating that the current article has the same subject as the previous.
209 This variable will only be used if the value of
210 `gnus-summary-make-false-root' is `empty'."
211   :group 'gnus-summary-format
212   :type 'string)
213
214 (defcustom gnus-summary-goto-unread t
215   "*If t, many commands will go to the next unread article.
216 This applies to marking commands as well as other commands that
217 \"naturally\" select the next article, like, for instance, `SPC' at
218 the end of an article.
219
220 If nil, the marking commands do NOT go to the next unread article
221 \(they go to the next article instead).  If `never', commands that
222 usually go to the next unread article, will go to the next article,
223 whether it is read or not."
224   :group 'gnus-summary-marks
225   :link '(custom-manual "(gnus)Setting Marks")
226   :type '(choice (const :tag "off" nil)
227                  (const never)
228                  (sexp :menu-tag "on" t)))
229
230 (defcustom gnus-summary-default-score 0
231   "*Default article score level.
232 All scores generated by the score files will be added to this score.
233 If this variable is nil, scoring will be disabled."
234   :group 'gnus-score-default
235   :type '(choice (const :tag "disable")
236                  integer))
237
238 (defcustom gnus-summary-default-high-score 0
239   "*Default threshold for a high scored article.
240 An article will be highlighted as high scored if its score is greater
241 than this score."
242   :version "22.1"
243   :group 'gnus-score-default
244   :type 'integer)
245
246 (defcustom gnus-summary-default-low-score 0
247   "*Default threshold for a low scored article.
248 An article will be highlighted as low scored if its score is smaller
249 than this score."
250   :version "22.1"
251   :group 'gnus-score-default
252   :type 'integer)
253
254 (defcustom gnus-summary-zcore-fuzz 0
255   "*Fuzziness factor for the zcore in the summary buffer.
256 Articles with scores closer than this to `gnus-summary-default-score'
257 will not be marked."
258   :group 'gnus-summary-format
259   :type 'integer)
260
261 (defcustom gnus-simplify-subject-fuzzy-regexp nil
262   "*Strings to be removed when doing fuzzy matches.
263 This can either be a regular expression or list of regular expressions
264 that will be removed from subject strings if fuzzy subject
265 simplification is selected."
266   :group 'gnus-thread
267   :type '(repeat regexp))
268
269 (defcustom gnus-show-threads t
270   "*If non-nil, display threads in summary mode."
271   :group 'gnus-thread
272   :type 'boolean)
273
274 (defcustom gnus-thread-hide-subtree nil
275   "*If non-nil, hide all threads initially.
276 This can be a predicate specifier which says which threads to hide.
277 If threads are hidden, you have to run the command
278 `gnus-summary-show-thread' by hand or select an article."
279   :group 'gnus-thread
280   :type '(radio (sexp :format "Non-nil\n"
281                       :match (lambda (widget value)
282                                (not (or (consp value) (functionp value))))
283                       :value t)
284                 (const nil)
285                 (sexp :tag "Predicate specifier")))
286
287 (defcustom gnus-thread-hide-killed t
288   "*If non-nil, hide killed threads automatically."
289   :group 'gnus-thread
290   :type 'boolean)
291
292 (defcustom gnus-thread-ignore-subject t
293   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
294 If nil, articles that have different subjects from their parents will
295 start separate threads."
296   :group 'gnus-thread
297   :type 'boolean)
298
299 (defcustom gnus-thread-operation-ignore-subject t
300   "*If non-nil, subjects will be ignored when doing thread commands.
301 This affects commands like `gnus-summary-kill-thread' and
302 `gnus-summary-lower-thread'.
303
304 If this variable is nil, articles in the same thread with different
305 subjects will not be included in the operation in question.  If this
306 variable is `fuzzy', only articles that have subjects that are fuzzily
307 equal will be included."
308   :group 'gnus-thread
309   :type '(choice (const :tag "off" nil)
310                  (const fuzzy)
311                  (sexp :tag "on" t)))
312
313 (defcustom gnus-thread-indent-level 4
314   "*Number that says how much each sub-thread should be indented."
315   :group 'gnus-thread
316   :type 'integer)
317
318 (defcustom gnus-auto-extend-newsgroup t
319   "*If non-nil, extend newsgroup forward and backward when requested."
320   :group 'gnus-summary-choose
321   :type 'boolean)
322
323 (defcustom gnus-auto-select-first t
324   "If non-nil, select an article on group entry.
325 An article is selected automatically when entering a group
326 e.g. with \\<gnus-group-mode-map>\\[gnus-group-read-group], or via `gnus-summary-next-page' or
327 `gnus-summary-catchup-and-goto-next-group'.
328
329 Which article is selected is controlled by the variable
330 `gnus-auto-select-subject'.
331
332 If you want to prevent automatic selection of articles in some
333 newsgroups, set the variable to nil in `gnus-select-group-hook'."
334   ;; Commands include...
335   ;; \\<gnus-group-mode-map>\\[gnus-group-read-group]
336   ;; \\<gnus-summary-mode-map>\\[gnus-summary-next-page]
337   ;; \\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]
338   :group 'gnus-group-select
339   :type '(choice (const :tag "none" nil)
340                  (sexp :menu-tag "first" t)))
341
342 (defcustom gnus-auto-select-subject 'unread
343   "*Says what subject to place under point when entering a group.
344
345 This variable can either be the symbols `first' (place point on the
346 first subject), `unread' (place point on the subject line of the first
347 unread article), `best' (place point on the subject line of the
348 higest-scored article), `unseen' (place point on the subject line of
349 the first unseen article), `unseen-or-unread' (place point on the subject
350 line of the first unseen article or, if all article have been seen, on the
351 subject line of the first unread article), or a function to be called to
352 place point on some subject line."
353   :version "22.1"
354   :group 'gnus-group-select
355   :type '(choice (const best)
356                  (const unread)
357                  (const first)
358                  (const unseen)
359                  (const unseen-or-unread)))
360
361 (defcustom gnus-auto-select-next t
362   "*If non-nil, offer to go to the next group from the end of the previous.
363 If the value is t and the next newsgroup is empty, Gnus will exit
364 summary mode and go back to group mode.  If the value is neither nil
365 nor t, Gnus will select the following unread newsgroup.  In
366 particular, if the value is the symbol `quietly', the next unread
367 newsgroup will be selected without any confirmation, and if it is
368 `almost-quietly', the next group will be selected without any
369 confirmation if you are located on the last article in the group.
370 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
371 will go to the next group without confirmation."
372   :group 'gnus-summary-maneuvering
373   :type '(choice (const :tag "off" nil)
374                  (const quietly)
375                  (const almost-quietly)
376                  (const slightly-quietly)
377                  (sexp :menu-tag "on" t)))
378
379 (defcustom gnus-auto-select-same nil
380   "*If non-nil, select the next article with the same subject.
381 If there are no more articles with the same subject, go to
382 the first unread article."
383   :group 'gnus-summary-maneuvering
384   :type 'boolean)
385
386 (defcustom gnus-auto-select-on-ephemeral-exit 'next-noselect
387   "What article should be selected after exiting an ephemeral group.
388 Valid values include:
389
390 `next'
391   Select the next article.
392 `next-unread'
393   Select the next unread article.
394 `next-noselect'
395   Move the cursor to the next article.  This is the default.
396 `next-unread-noselect'
397   Move the cursor to the next unread article.
398
399 If it has any other value or there is no next (unread) article, the
400 article selected before entering to the ephemeral group will appear."
401   :version "23.1" ;; No Gnus
402   :group 'gnus-summary-maneuvering
403   :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
404                  (const next) (const next-unread)
405                  (const next-noselect) (const next-unread-noselect)
406                  (sexp :tag "other" :value nil)))
407
408 (defcustom gnus-auto-goto-ignores 'unfetched
409   "*Says how to handle unfetched articles when maneuvering.
410
411 This variable can either be the symbols nil (maneuver to any
412 article), `undownloaded' (maneuvering while unplugged ignores articles
413 that have not been fetched), `always-undownloaded' (maneuvering always
414 ignores articles that have not been fetched), `unfetched' (maneuvering
415 ignores articles whose headers have not been fetched).
416
417 NOTE: The list of unfetched articles will always be nil when plugged
418 and, when unplugged, a subset of the undownloaded article list."
419   :version "22.1"
420   :group 'gnus-summary-maneuvering
421   :type '(choice (const :tag "None" nil)
422                  (const :tag "Undownloaded when unplugged" undownloaded)
423                  (const :tag "Undownloaded" always-undownloaded)
424                  (const :tag "Unfetched" unfetched)))
425
426 (defcustom gnus-summary-check-current nil
427   "*If non-nil, consider the current article when moving.
428 The \"unread\" movement commands will stay on the same line if the
429 current article is unread."
430   :group 'gnus-summary-maneuvering
431   :type 'boolean)
432
433 (defcustom gnus-auto-center-summary 2
434   "*If non-nil, always center the current summary buffer.
435 In particular, if `vertical' do only vertical recentering.  If non-nil
436 and non-`vertical', do both horizontal and vertical recentering."
437   :group 'gnus-summary-maneuvering
438   :type '(choice (const :tag "none" nil)
439                  (const vertical)
440                  (integer :tag "height")
441                  (sexp :menu-tag "both" t)))
442
443 (defvar gnus-auto-center-group t
444   "*If non-nil, always center the group buffer.")
445
446 (defcustom gnus-show-all-headers nil
447   "*If non-nil, don't hide any headers."
448   :group 'gnus-article-hiding
449   :group 'gnus-article-headers
450   :type 'boolean)
451
452 (defcustom gnus-summary-ignore-duplicates nil
453   "*If non-nil, ignore articles with identical Message-ID headers."
454   :group 'gnus-summary
455   :type 'boolean)
456
457 (defcustom gnus-single-article-buffer t
458   "*If non-nil, display all articles in the same buffer.
459 If nil, each group will get its own article buffer."
460   :group 'gnus-article-various
461   :type 'boolean)
462
463 (defcustom gnus-break-pages t
464   "*If non-nil, do page breaking on articles.
465 The page delimiter is specified by the `gnus-page-delimiter'
466 variable."
467   :group 'gnus-article-various
468   :type 'boolean)
469
470 (defcustom gnus-move-split-methods nil
471   "*Variable used to suggest where articles are to be moved to.
472 It uses the same syntax as the `gnus-split-methods' variable.
473 However, whereas `gnus-split-methods' specifies file names as targets,
474 this variable specifies group names."
475   :group 'gnus-summary-mail
476   :type '(repeat (choice (list :value (fun) function)
477                          (cons :value ("" "") regexp (repeat string))
478                          (sexp :value nil))))
479
480 (defcustom gnus-move-group-prefix-function 'gnus-group-real-prefix
481   "Function used to compute default prefix for article move/copy/etc prompts.
482 The function should take one argument, a group name, and return a
483 string with the suggested prefix."
484   :group 'gnus-summary-mail
485   :type 'function)
486
487 ;; FIXME: Although the custom type is `character' for the following variables,
488 ;; using multibyte characters (Latin-1, UTF-8) doesn't work.  -- rs
489
490 (defcustom gnus-unread-mark ?           ;Whitespace
491   "*Mark used for unread articles."
492   :group 'gnus-summary-marks
493   :type 'character)
494
495 (defcustom gnus-ticked-mark ?!
496   "*Mark used for ticked articles."
497   :group 'gnus-summary-marks
498   :type 'character)
499
500 (defcustom gnus-dormant-mark ??
501   "*Mark used for dormant articles."
502   :group 'gnus-summary-marks
503   :type 'character)
504
505 (defcustom gnus-del-mark ?r
506   "*Mark used for del'd articles."
507   :group 'gnus-summary-marks
508   :type 'character)
509
510 (defcustom gnus-read-mark ?R
511   "*Mark used for read articles."
512   :group 'gnus-summary-marks
513   :type 'character)
514
515 (defcustom gnus-expirable-mark ?E
516   "*Mark used for expirable articles."
517   :group 'gnus-summary-marks
518   :type 'character)
519
520 (defcustom gnus-killed-mark ?K
521   "*Mark used for killed articles."
522   :group 'gnus-summary-marks
523   :type 'character)
524
525 (defcustom gnus-spam-mark ?$
526   "*Mark used for spam articles."
527   :version "22.1"
528   :group 'gnus-summary-marks
529   :type 'character)
530
531 (defcustom gnus-souped-mark ?F
532   "*Mark used for souped articles."
533   :group 'gnus-summary-marks
534   :type 'character)
535
536 (defcustom gnus-kill-file-mark ?X
537   "*Mark used for articles killed by kill files."
538   :group 'gnus-summary-marks
539   :type 'character)
540
541 (defcustom gnus-low-score-mark ?Y
542   "*Mark used for articles with a low score."
543   :group 'gnus-summary-marks
544   :type 'character)
545
546 (defcustom gnus-catchup-mark ?C
547   "*Mark used for articles that are caught up."
548   :group 'gnus-summary-marks
549   :type 'character)
550
551 (defcustom gnus-replied-mark ?A
552   "*Mark used for articles that have been replied to."
553   :group 'gnus-summary-marks
554   :type 'character)
555
556 (defcustom gnus-forwarded-mark ?F
557   "*Mark used for articles that have been forwarded."
558   :version "22.1"
559   :group 'gnus-summary-marks
560   :type 'character)
561
562 (defcustom gnus-recent-mark ?N
563   "*Mark used for articles that are recent."
564   :version "22.1"
565   :group 'gnus-summary-marks
566   :type 'character)
567
568 (defcustom gnus-cached-mark ?*
569   "*Mark used for articles that are in the cache."
570   :group 'gnus-summary-marks
571   :type 'character)
572
573 (defcustom gnus-saved-mark ?S
574   "*Mark used for articles that have been saved."
575   :group 'gnus-summary-marks
576   :type 'character)
577
578 (defcustom gnus-unseen-mark ?.
579   "*Mark used for articles that haven't been seen."
580   :version "22.1"
581   :group 'gnus-summary-marks
582   :type 'character)
583
584 (defcustom gnus-no-mark ?               ;Whitespace
585   "*Mark used for articles that have no other secondary mark."
586   :version "22.1"
587   :group 'gnus-summary-marks
588   :type 'character)
589
590 (defcustom gnus-ancient-mark ?O
591   "*Mark used for ancient articles."
592   :group 'gnus-summary-marks
593   :type 'character)
594
595 (defcustom gnus-sparse-mark ?Q
596   "*Mark used for sparsely reffed articles."
597   :group 'gnus-summary-marks
598   :type 'character)
599
600 (defcustom gnus-canceled-mark ?G
601   "*Mark used for canceled articles."
602   :group 'gnus-summary-marks
603   :type 'character)
604
605 (defcustom gnus-duplicate-mark ?M
606   "*Mark used for duplicate articles."
607   :group 'gnus-summary-marks
608   :type 'character)
609
610 (defcustom gnus-undownloaded-mark ?-
611   "*Mark used for articles that weren't downloaded."
612   :version "22.1"
613   :group 'gnus-summary-marks
614   :type 'character)
615
616 (defcustom gnus-downloaded-mark ?+
617   "*Mark used for articles that were downloaded."
618   :group 'gnus-summary-marks
619   :type 'character)
620
621 (defcustom gnus-downloadable-mark ?%
622   "*Mark used for articles that are to be downloaded."
623   :group 'gnus-summary-marks
624   :type 'character)
625
626 (defcustom gnus-unsendable-mark ?=
627   "*Mark used for articles that won't be sent."
628   :group 'gnus-summary-marks
629   :type 'character)
630
631 (defcustom gnus-score-over-mark ?+
632   "*Score mark used for articles with high scores."
633   :group 'gnus-summary-marks
634   :type 'character)
635
636 (defcustom gnus-score-below-mark ?-
637   "*Score mark used for articles with low scores."
638   :group 'gnus-summary-marks
639   :type 'character)
640
641 (defcustom gnus-empty-thread-mark ?     ;Whitespace
642   "*There is no thread under the article."
643   :group 'gnus-summary-marks
644   :type 'character)
645
646 (defcustom gnus-not-empty-thread-mark ?=
647   "*There is a thread under the article."
648   :group 'gnus-summary-marks
649   :type 'character)
650
651 (defcustom gnus-view-pseudo-asynchronously nil
652   "*If non-nil, Gnus will view pseudo-articles asynchronously."
653   :group 'gnus-extract-view
654   :type 'boolean)
655
656 (defcustom gnus-auto-expirable-marks
657   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
658         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
659         gnus-souped-mark gnus-duplicate-mark)
660   "*The list of marks converted into expiration if a group is auto-expirable."
661   :version "21.1"
662   :group 'gnus-summary
663   :type '(repeat character))
664
665 (defcustom gnus-inhibit-user-auto-expire t
666   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
667   :version "21.1"
668   :group 'gnus-summary
669   :type 'boolean)
670
671 (defcustom gnus-view-pseudos nil
672   "*If `automatic', pseudo-articles will be viewed automatically.
673 If `not-confirm', pseudos will be viewed automatically, and the user
674 will not be asked to confirm the command."
675   :group 'gnus-extract-view
676   :type '(choice (const :tag "off" nil)
677                  (const automatic)
678                  (const not-confirm)))
679
680 (defcustom gnus-view-pseudos-separately t
681   "*If non-nil, one pseudo-article will be created for each file to be viewed.
682 If nil, all files that use the same viewing command will be given as a
683 list of parameters to that command."
684   :group 'gnus-extract-view
685   :type 'boolean)
686
687 (defcustom gnus-insert-pseudo-articles t
688   "*If non-nil, insert pseudo-articles when decoding articles."
689   :group 'gnus-extract-view
690   :type 'boolean)
691
692 (defcustom gnus-summary-dummy-line-format
693   "   %(:                             :%) %S\n"
694   "*The format specification for the dummy roots in the summary buffer.
695 It works along the same lines as a normal formatting string,
696 with some simple extensions.
697
698 %S  The subject
699
700 General format specifiers can also be used.
701 See `(gnus)Formatting Variables'."
702   :link '(custom-manual "(gnus)Formatting Variables")
703   :group 'gnus-threading
704   :type 'string)
705
706 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
707   "*The format specification for the summary mode line.
708 It works along the same lines as a normal formatting string,
709 with some simple extensions:
710
711 %G  Group name
712 %p  Unprefixed group name
713 %A  Current article number
714 %z  Current article score
715 %V  Gnus version
716 %U  Number of unread articles in the group
717 %e  Number of unselected articles in the group
718 %Z  A string with unread/unselected article counts
719 %g  Shortish group name
720 %S  Subject of the current article
721 %u  User-defined spec
722 %s  Current score file name
723 %d  Number of dormant articles
724 %r  Number of articles that have been marked as read in this session
725 %E  Number of articles expunged by the score files"
726   :group 'gnus-summary-format
727   :type 'string)
728
729 (defcustom gnus-list-identifiers nil
730   "Regexp that matches list identifiers to be removed from subject.
731 This can also be a list of regexps."
732   :version "21.1"
733   :group 'gnus-summary-format
734   :group 'gnus-article-hiding
735   :type '(choice (const :tag "none" nil)
736                  (regexp :value ".*")
737                  (repeat :value (".*") regexp)))
738
739 (defcustom gnus-summary-mark-below 0
740   "*Mark all articles with a score below this variable as read.
741 This variable is local to each summary buffer and usually set by the
742 score file."
743   :group 'gnus-score-default
744   :type 'integer)
745
746 (defun gnus-widget-reversible-match (widget value)
747   "Ignoring WIDGET, convert VALUE to internal form.
748 VALUE should have the form `FOO' or `(not FOO)', where FOO is an symbol."
749   ;; (debug value)
750   (or (symbolp value)
751       (and (listp value)
752            (eq (length value) 2)
753            (eq (nth 0 value) 'not)
754            (symbolp (nth 1 value)))))
755
756 (defun gnus-widget-reversible-to-internal (widget value)
757   "Ignoring WIDGET, convert VALUE to internal form.
758 VALUE should have the form `FOO' or `(not FOO)', where FOO is an atom.
759 FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t)."
760   ;; (debug value)
761   (if (atom value)
762       (list value nil)
763     (list (nth 1 value) t)))
764
765 (defun gnus-widget-reversible-to-external (widget value)
766   "Ignoring WIDGET, convert VALUE to external form.
767 VALUE should have the form `(FOO nil)' or `(FOO t)', where FOO is an atom.
768 \(FOO  nil) is converted to FOO and (FOO t) is converted to (not FOO)."
769   ;; (debug value)
770   (if (nth 1 value)
771       (list 'not (nth 0 value))
772     (nth 0 value)))
773
774 (define-widget 'gnus-widget-reversible 'group
775   "A `group' that convert values."
776   :match 'gnus-widget-reversible-match
777   :value-to-internal 'gnus-widget-reversible-to-internal
778   :value-to-external 'gnus-widget-reversible-to-external)
779
780 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
781   "*List of functions used for sorting articles in the summary buffer.
782
783 Each function takes two articles and returns non-nil if the first
784 article should be sorted before the other.  If you use more than one
785 function, the primary sort function should be the last.  You should
786 probably always include `gnus-article-sort-by-number' in the list of
787 sorting functions -- preferably first.  Also note that sorting by date
788 is often much slower than sorting by number, and the sorting order is
789 very similar.  (Sorting by date means sorting by the time the message
790 was sent, sorting by number means sorting by arrival time.)
791
792 Each item can also be a list `(not F)' where F is a function;
793 this reverses the sort order.
794
795 Ready-made functions include `gnus-article-sort-by-number',
796 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
797 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
798 and `gnus-article-sort-by-score'.
799
800 When threading is turned on, the variable `gnus-thread-sort-functions'
801 controls how articles are sorted."
802   :group 'gnus-summary-sort
803   :type '(repeat (gnus-widget-reversible
804                   (choice (function-item gnus-article-sort-by-number)
805                           (function-item gnus-article-sort-by-author)
806                           (function-item gnus-article-sort-by-subject)
807                           (function-item gnus-article-sort-by-date)
808                           (function-item gnus-article-sort-by-score)
809                           (function-item gnus-article-sort-by-random)
810                           (function :tag "other"))
811                   (boolean :tag "Reverse order"))))
812
813
814 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
815   "*List of functions used for sorting threads in the summary buffer.
816 By default, threads are sorted by article number.
817
818 Each function takes two threads and returns non-nil if the first
819 thread should be sorted before the other.  If you use more than one
820 function, the primary sort function should be the last.  You should
821 probably always include `gnus-thread-sort-by-number' in the list of
822 sorting functions -- preferably first.  Also note that sorting by date
823 is often much slower than sorting by number, and the sorting order is
824 very similar.  (Sorting by date means sorting by the time the message
825 was sent, sorting by number means sorting by arrival time.)
826
827 Each list item can also be a list `(not F)' where F is a
828 function; this specifies reversed sort order.
829
830 Ready-made functions include `gnus-thread-sort-by-number',
831 `gnus-thread-sort-by-author', `gnus-thread-sort-by-recipient'
832 `gnus-thread-sort-by-subject', `gnus-thread-sort-by-date',
833 `gnus-thread-sort-by-score', `gnus-thread-sort-by-most-recent-number',
834 `gnus-thread-sort-by-most-recent-date', `gnus-thread-sort-by-random',
835 and `gnus-thread-sort-by-total-score' (see
836 `gnus-thread-score-function').
837
838 When threading is turned off, the variable
839 `gnus-article-sort-functions' controls how articles are sorted."
840   :group 'gnus-summary-sort
841   :type '(repeat
842           (gnus-widget-reversible
843            (choice (function-item gnus-thread-sort-by-number)
844                    (function-item gnus-thread-sort-by-author)
845                    (function-item gnus-thread-sort-by-recipient)
846                    (function-item gnus-thread-sort-by-subject)
847                    (function-item gnus-thread-sort-by-date)
848                    (function-item gnus-thread-sort-by-score)
849                    (function-item gnus-thread-sort-by-most-recent-number)
850                    (function-item gnus-thread-sort-by-most-recent-date)
851                    (function-item gnus-thread-sort-by-random)
852                    (function-item gnus-thread-sort-by-total-score)
853                    (function :tag "other"))
854            (boolean :tag "Reverse order"))))
855
856 (defcustom gnus-thread-score-function '+
857   "*Function used for calculating the total score of a thread.
858
859 The function is called with the scores of the article and each
860 subthread and should then return the score of the thread.
861
862 Some functions you can use are `+', `max', or `min'."
863   :group 'gnus-summary-sort
864   :type 'function)
865
866 (defcustom gnus-summary-expunge-below nil
867   "All articles that have a score less than this variable will be expunged.
868 This variable is local to the summary buffers."
869   :group 'gnus-score-default
870   :type '(choice (const :tag "off" nil)
871                  integer))
872
873 (defcustom gnus-thread-expunge-below nil
874   "All threads that have a total score less than this variable will be expunged.
875 See `gnus-thread-score-function' for en explanation of what a
876 \"thread score\" is.
877
878 This variable is local to the summary buffers."
879   :group 'gnus-threading
880   :group 'gnus-score-default
881   :type '(choice (const :tag "off" nil)
882                  integer))
883
884 (defcustom gnus-summary-mode-hook nil
885   "*A hook for Gnus summary mode.
886 This hook is run before any variables are set in the summary buffer."
887   :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
888   :group 'gnus-summary-various
889   :type 'hook)
890
891 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
892 (when (featurep 'xemacs)
893   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
894   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
895   (add-hook 'gnus-summary-mode-hook
896             'gnus-xmas-switch-horizontal-scrollbar-off))
897
898 (defcustom gnus-summary-menu-hook nil
899   "*Hook run after the creation of the summary mode menu."
900   :group 'gnus-summary-visual
901   :type 'hook)
902
903 (defcustom gnus-summary-exit-hook nil
904   "*A hook called on exit from the summary buffer.
905 It will be called with point in the group buffer."
906   :group 'gnus-summary-exit
907   :type 'hook)
908
909 (defcustom gnus-summary-prepare-hook nil
910   "*A hook called after the summary buffer has been generated.
911 If you want to modify the summary buffer, you can use this hook."
912   :group 'gnus-summary-various
913   :type 'hook)
914
915 (defcustom gnus-summary-prepared-hook nil
916   "*A hook called as the last thing after the summary buffer has been generated."
917   :group 'gnus-summary-various
918   :type 'hook)
919
920 (defcustom gnus-summary-generate-hook nil
921   "*A hook run just before generating the summary buffer.
922 This hook is commonly used to customize threading variables and the
923 like."
924   :group 'gnus-summary-various
925   :type 'hook)
926
927 (defcustom gnus-select-group-hook nil
928   "*A hook called when a newsgroup is selected.
929
930 If you'd like to simplify subjects like the
931 `gnus-summary-next-same-subject' command does, you can use the
932 following hook:
933
934  (add-hook gnus-select-group-hook
935            (lambda ()
936              (mapcar (lambda (header)
937                        (mail-header-set-subject
938                         header
939                         (gnus-simplify-subject
940                          (mail-header-subject header) 're-only)))
941                      gnus-newsgroup-headers)))"
942   :group 'gnus-group-select
943   :type 'hook)
944
945 (defcustom gnus-select-article-hook nil
946   "*A hook called when an article is selected."
947   :group 'gnus-summary-choose
948   :options '(gnus-agent-fetch-selected-article)
949   :type 'hook)
950
951 (defcustom gnus-visual-mark-article-hook
952   (list 'gnus-highlight-selected-summary)
953   "*Hook run after selecting an article in the summary buffer.
954 It is meant to be used for highlighting the article in some way.  It
955 is not run if `gnus-visual' is nil."
956   :group 'gnus-summary-visual
957   :type 'hook)
958
959 (defcustom gnus-parse-headers-hook nil
960   "*A hook called before parsing the headers."
961   :group 'gnus-various
962   :type 'hook)
963
964 (defcustom gnus-exit-group-hook nil
965   "*A hook called when exiting summary mode.
966 This hook is not called from the non-updating exit commands like `Q'."
967   :group 'gnus-various
968   :type 'hook)
969
970 (defcustom gnus-summary-update-hook
971   (list 'gnus-summary-highlight-line)
972   "*A hook called when a summary line is changed.
973 The hook will not be called if `gnus-visual' is nil.
974
975 The default function `gnus-summary-highlight-line' will
976 highlight the line according to the `gnus-summary-highlight'
977 variable."
978   :group 'gnus-summary-visual
979   :type 'hook)
980
981 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
982   "*A hook called when an article is selected for the first time.
983 The hook is intended to mark an article as read (or unread)
984 automatically when it is selected."
985   :group 'gnus-summary-choose
986   :type 'hook)
987
988 (defcustom gnus-group-no-more-groups-hook nil
989   "*A hook run when returning to group mode having no more (unread) groups."
990   :group 'gnus-group-select
991   :type 'hook)
992
993 (defcustom gnus-ps-print-hook nil
994   "*A hook run before ps-printing something from Gnus."
995   :group 'gnus-summary
996   :type 'hook)
997
998 (defcustom gnus-summary-article-move-hook nil
999   "*A hook called after an article is moved, copied, respooled, or crossposted."
1000   :version "22.1"
1001   :group 'gnus-summary
1002   :type 'hook)
1003
1004 (defcustom gnus-summary-article-delete-hook nil
1005   "*A hook called after an article is deleted."
1006   :version "22.1"
1007   :group 'gnus-summary
1008   :type 'hook)
1009
1010 (defcustom gnus-summary-article-expire-hook nil
1011   "*A hook called after an article is expired."
1012   :version "22.1"
1013   :group 'gnus-summary
1014   :type 'hook)
1015
1016 (defcustom gnus-summary-display-arrow
1017   (and (fboundp 'display-graphic-p)
1018        (display-graphic-p))
1019   "*If non-nil, display an arrow highlighting the current article."
1020   :version "22.1"
1021   :group 'gnus-summary
1022   :type 'boolean)
1023
1024 (defcustom gnus-summary-selected-face 'gnus-summary-selected
1025   "Face used for highlighting the current article in the summary buffer."
1026   :group 'gnus-summary-visual
1027   :type 'face)
1028
1029 (defvar gnus-tmp-downloaded nil)
1030
1031 (defcustom gnus-summary-highlight
1032   '(((eq mark gnus-canceled-mark)
1033      . gnus-summary-cancelled)
1034     ((and uncached (> score default-high))
1035      . gnus-summary-high-undownloaded)
1036     ((and uncached (< score default-low))
1037      . gnus-summary-low-undownloaded)
1038     (uncached
1039      . gnus-summary-normal-undownloaded)
1040     ((and (> score default-high)
1041           (or (eq mark gnus-dormant-mark)
1042               (eq mark gnus-ticked-mark)))
1043      . gnus-summary-high-ticked)
1044     ((and (< score default-low)
1045           (or (eq mark gnus-dormant-mark)
1046               (eq mark gnus-ticked-mark)))
1047      . gnus-summary-low-ticked)
1048     ((or (eq mark gnus-dormant-mark)
1049          (eq mark gnus-ticked-mark))
1050      . gnus-summary-normal-ticked)
1051     ((and (> score default-high) (eq mark gnus-ancient-mark))
1052      . gnus-summary-high-ancient)
1053     ((and (< score default-low) (eq mark gnus-ancient-mark))
1054      . gnus-summary-low-ancient)
1055     ((eq mark gnus-ancient-mark)
1056      . gnus-summary-normal-ancient)
1057     ((and (> score default-high) (eq mark gnus-unread-mark))
1058      . gnus-summary-high-unread)
1059     ((and (< score default-low) (eq mark gnus-unread-mark))
1060      . gnus-summary-low-unread)
1061     ((eq mark gnus-unread-mark)
1062      . gnus-summary-normal-unread)
1063     ((> score default-high)
1064      . gnus-summary-high-read)
1065     ((< score default-low)
1066      . gnus-summary-low-read)
1067     (t
1068      . gnus-summary-normal-read))
1069   "*Controls the highlighting of summary buffer lines.
1070
1071 A list of (FORM . FACE) pairs.  When deciding how a particular
1072 summary line should be displayed, each form is evaluated.  The content
1073 of the face field after the first true form is used.  You can change
1074 how those summary lines are displayed, by editing the face field.
1075
1076 You can use the following variables in the FORM field.
1077
1078 score:        The article's score.
1079 default:      The default article score.
1080 default-high: The default score for high scored articles.
1081 default-low:  The default score for low scored articles.
1082 below:        The score below which articles are automatically marked as read.
1083 mark:         The article's mark.
1084 uncached:     Non-nil if the article is uncached."
1085   :group 'gnus-summary-visual
1086   :type '(repeat (cons (sexp :tag "Form" nil)
1087                        face)))
1088 (put 'gnus-summary-highlight 'risky-local-variable t)
1089
1090 (defcustom gnus-alter-header-function nil
1091   "Function called to allow alteration of article header structures.
1092 The function is called with one parameter, the article header vector,
1093 which it may alter in any way."
1094   :type '(choice (const :tag "None" nil)
1095                  function)
1096   :group 'gnus-summary)
1097
1098 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
1099   "Function used to decode a string with encoded words.")
1100
1101 (defvar gnus-decode-encoded-address-function
1102   'mail-decode-encoded-address-string
1103   "Function used to decode addresses with encoded words.")
1104
1105 (defcustom gnus-extra-headers '(To Newsgroups)
1106   "*Extra headers to parse."
1107   :version "21.1"
1108   :group 'gnus-summary
1109   :type '(repeat symbol))
1110
1111 (defcustom gnus-ignored-from-addresses
1112   (and user-mail-address
1113        (not (string= user-mail-address ""))
1114        (regexp-quote user-mail-address))
1115   "*From headers that may be suppressed in favor of To headers.
1116 This can be a regexp or a list of regexps."
1117   :version "21.1"
1118   :group 'gnus-summary
1119   :type '(choice regexp
1120                  (repeat :tag "Regexp List" regexp)))
1121
1122 (defsubst gnus-ignored-from-addresses ()
1123   (gmm-regexp-concat gnus-ignored-from-addresses))
1124
1125 (defcustom gnus-summary-to-prefix "-> "
1126   "*String prefixed to the To field in the summary line when
1127 using `gnus-ignored-from-addresses'."
1128   :version "22.1"
1129   :group 'gnus-summary
1130   :type 'string)
1131
1132 (defcustom gnus-summary-newsgroup-prefix "=> "
1133   "*String prefixed to the Newsgroup field in the summary
1134 line when using `gnus-ignored-from-addresses'."
1135   :version "22.1"
1136   :group 'gnus-summary
1137   :type 'string)
1138
1139 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
1140   "List of charsets that should be ignored.
1141 When these charsets are used in the \"charset\" parameter, the
1142 default charset will be used instead."
1143   :version "21.1"
1144   :type '(repeat symbol)
1145   :group 'gnus-charset)
1146
1147 (defcustom gnus-newsgroup-maximum-articles nil
1148   "The maximum number of articles a newsgroup.
1149 If this is a number, old articles in a newsgroup exceeding this number
1150 are silently ignored.  If it is nil, no article is ignored.  Note that
1151 setting this variable to a number might prevent you from reading very
1152 old articles."
1153   :group 'gnus-group-select
1154   :version "22.2"
1155   :type '(choice (const :tag "No limit" nil)
1156                  integer))
1157
1158 (gnus-define-group-parameter
1159  ignored-charsets
1160  :type list
1161  :function-document
1162  "Return the ignored charsets of GROUP."
1163  :variable gnus-group-ignored-charsets-alist
1164  :variable-default
1165  '(("alt\\.chinese\\.text" iso-8859-1))
1166  :variable-document
1167  "Alist of regexps (to match group names) and charsets that should be ignored.
1168 When these charsets are used in the \"charset\" parameter, the
1169 default charset will be used instead."
1170  :variable-group gnus-charset
1171  :variable-type '(repeat (cons (regexp :tag "Group")
1172                                (repeat symbol)))
1173  :parameter-type '(choice :tag "Ignored charsets"
1174                           :value nil
1175                           (repeat (symbol)))
1176  :parameter-document       "\
1177 List of charsets that should be ignored.
1178
1179 When these charsets are used in the \"charset\" parameter, the
1180 default charset will be used instead.")
1181
1182 (defcustom gnus-group-highlight-words-alist nil
1183   "Alist of group regexps and highlight regexps.
1184 This variable uses the same syntax as `gnus-emphasis-alist'."
1185   :version "21.1"
1186   :type '(repeat (cons (regexp :tag "Group")
1187                        (repeat (list (regexp :tag "Highlight regexp")
1188                                      (number :tag "Group for entire word" 0)
1189                                      (number :tag "Group for displayed part" 0)
1190                                      (symbol :tag "Face"
1191                                              gnus-emphasis-highlight-words)))))
1192   :group 'gnus-summary-visual)
1193
1194 (defcustom gnus-summary-show-article-charset-alist
1195   nil
1196   "Alist of number and charset.
1197 The article will be shown with the charset corresponding to the
1198 numbered argument.
1199 For example: ((1 . cn-gb-2312) (2 . big5))."
1200   :version "21.1"
1201   :type '(repeat (cons (number :tag "Argument" 1)
1202                        (symbol :tag "Charset")))
1203   :group 'gnus-charset)
1204
1205 (defcustom gnus-preserve-marks t
1206   "Whether marks are preserved when moving, copying and respooling messages."
1207   :version "21.1"
1208   :type 'boolean
1209   :group 'gnus-summary-marks)
1210
1211 (defcustom gnus-propagate-marks t
1212   "If non-nil, do not propagate marks to the backends."
1213   :version "23.1" ;; No Gnus
1214   :type 'boolean
1215   :group 'gnus-summary-marks)
1216
1217 (defcustom gnus-alter-articles-to-read-function nil
1218   "Function to be called to alter the list of articles to be selected."
1219   :type '(choice (const nil) function)
1220   :group 'gnus-summary)
1221
1222 (defcustom gnus-orphan-score nil
1223   "*All orphans get this score added.  Set in the score file."
1224   :group 'gnus-score-default
1225   :type '(choice (const nil)
1226                  integer))
1227
1228 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1229   "*A regexp to match MIME parts when saving multiple parts of a
1230 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1231 This regexp will be used by default when prompting the user for which
1232 type of files to save."
1233   :group 'gnus-summary
1234   :type 'regexp)
1235
1236 (defcustom gnus-read-all-available-headers nil
1237   "Whether Gnus should parse all headers made available to it.
1238 This is mostly relevant for slow back ends where the user may
1239 wish to widen the summary buffer to include all headers
1240 that were fetched.  Say, for nnultimate groups."
1241   :version "22.1"
1242   :group 'gnus-summary
1243   :type '(choice boolean regexp))
1244
1245 (defcustom gnus-summary-muttprint-program "muttprint"
1246   "Command (and optional arguments) used to run Muttprint."
1247   :version "22.1"
1248   :group 'gnus-summary
1249   :type 'string)
1250
1251 (defcustom gnus-article-loose-mime t
1252   "If non-nil, don't require MIME-Version header.
1253 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1254 supply the MIME-Version header or deliberately strip it from the mail.
1255 If non-nil (the default), Gnus will treat some articles as MIME
1256 even if the MIME-Version header is missing."
1257   :version "22.1"
1258   :type 'boolean
1259   :group 'gnus-article-mime)
1260
1261 (defcustom gnus-article-emulate-mime t
1262   "If non-nil, use MIME emulation for uuencode and the like.
1263 This means that Gnus will search message bodies for text that look
1264 like uuencoded bits, yEncoded bits, and so on, and present that using
1265 the normal Gnus MIME machinery."
1266   :version "22.1"
1267   :type 'boolean
1268   :group 'gnus-article-mime)
1269
1270 ;;; Internal variables
1271
1272 (defvar gnus-summary-display-cache nil)
1273 (defvar gnus-article-mime-handles nil)
1274 (defvar gnus-article-decoded-p nil)
1275 (defvar gnus-article-charset nil)
1276 (defvar gnus-article-ignored-charsets nil)
1277 (defvar gnus-scores-exclude-files nil)
1278 (defvar gnus-page-broken nil)
1279
1280 (defvar gnus-original-article nil)
1281 (defvar gnus-article-internal-prepare-hook nil)
1282 (defvar gnus-newsgroup-process-stack nil)
1283
1284 (defvar gnus-thread-indent-array nil)
1285 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1286 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1287   "Function called to sort the articles within a thread after it has been gathered together.")
1288
1289 (defvar gnus-summary-save-parts-type-history nil)
1290 (defvar gnus-summary-save-parts-last-directory mm-default-directory)
1291
1292 ;; Avoid highlighting in kill files.
1293 (defvar gnus-summary-inhibit-highlight nil)
1294 (defvar gnus-newsgroup-selected-overlay nil)
1295 (defvar gnus-inhibit-limiting nil)
1296 (defvar gnus-newsgroup-adaptive-score-file nil)
1297 (defvar gnus-current-score-file nil)
1298 (defvar gnus-current-move-group nil)
1299 (defvar gnus-current-copy-group nil)
1300 (defvar gnus-current-crosspost-group nil)
1301 (defvar gnus-newsgroup-display nil)
1302
1303 (defvar gnus-newsgroup-dependencies nil)
1304 (defvar gnus-newsgroup-adaptive nil)
1305 (defvar gnus-summary-display-article-function nil)
1306 (defvar gnus-summary-highlight-line-function nil
1307   "Function called after highlighting a summary line.")
1308
1309 (defvar gnus-summary-line-format-alist
1310   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1311     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1312     (?s gnus-tmp-subject-or-nil ?s)
1313     (?n gnus-tmp-name ?s)
1314     (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
1315         ?s)
1316     (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
1317             gnus-tmp-from) ?s)
1318     (?F gnus-tmp-from ?s)
1319     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1320     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1321     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1322     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1323     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1324     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1325     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1326     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1327     (?L gnus-tmp-lines ?s)
1328     (?O gnus-tmp-downloaded ?c)
1329     (?I gnus-tmp-indentation ?s)
1330     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1331     (?R gnus-tmp-replied ?c)
1332     (?\[ gnus-tmp-opening-bracket ?c)
1333     (?\] gnus-tmp-closing-bracket ?c)
1334     (?\> (make-string gnus-tmp-level ? ) ?s)
1335     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1336     (?i gnus-tmp-score ?d)
1337     (?z gnus-tmp-score-char ?c)
1338     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1339     (?U gnus-tmp-unread ?c)
1340     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1341         ?s)
1342     (?t (gnus-summary-number-of-articles-in-thread
1343          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1344         ?d)
1345     (?e (gnus-summary-number-of-articles-in-thread
1346          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1347         ?c)
1348     (?u gnus-tmp-user-defined ?s)
1349     (?P (gnus-pick-line-number) ?d)
1350     (?B gnus-tmp-thread-tree-header-string ?s)
1351     (user-date (gnus-user-date
1352                 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1353   "An alist of format specifications that can appear in summary lines.
1354 These are paired with what variables they correspond with, along with
1355 the type of the variable (string, integer, character, etc).")
1356
1357 (defvar gnus-summary-dummy-line-format-alist
1358   `((?S gnus-tmp-subject ?s)
1359     (?N gnus-tmp-number ?d)
1360     (?u gnus-tmp-user-defined ?s)))
1361
1362 (defvar gnus-summary-mode-line-format-alist
1363   `((?G gnus-tmp-group-name ?s)
1364     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1365     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1366     (?A gnus-tmp-article-number ?d)
1367     (?Z gnus-tmp-unread-and-unselected ?s)
1368     (?V gnus-version ?s)
1369     (?U gnus-tmp-unread-and-unticked ?d)
1370     (?S gnus-tmp-subject ?s)
1371     (?e gnus-tmp-unselected ?d)
1372     (?u gnus-tmp-user-defined ?s)
1373     (?d (length gnus-newsgroup-dormant) ?d)
1374     (?t (length gnus-newsgroup-marked) ?d)
1375     (?h (length gnus-newsgroup-spam-marked) ?d)
1376     (?r (length gnus-newsgroup-reads) ?d)
1377     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1378     (?E gnus-newsgroup-expunged-tally ?d)
1379     (?s (gnus-current-score-file-nondirectory) ?s)))
1380
1381 ;; This is here rather than in gnus-art for compilation reasons.
1382 (defvar gnus-article-mode-line-format-alist
1383   (nconc '((?w (gnus-article-wash-status) ?s)
1384            (?m (gnus-article-mime-part-status) ?s))
1385          gnus-summary-mode-line-format-alist))
1386
1387 (defvar gnus-last-search-regexp nil
1388   "Default regexp for article search command.")
1389
1390 (defvar gnus-last-shell-command nil
1391   "Default shell command on article.")
1392
1393 (defvar gnus-newsgroup-agentized nil
1394   "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1395 (defvar gnus-newsgroup-begin nil)
1396 (defvar gnus-newsgroup-end nil)
1397 (defvar gnus-newsgroup-last-rmail nil)
1398 (defvar gnus-newsgroup-last-mail nil)
1399 (defvar gnus-newsgroup-last-folder nil)
1400 (defvar gnus-newsgroup-last-file nil)
1401 (defvar gnus-newsgroup-last-directory nil)
1402 (defvar gnus-newsgroup-auto-expire nil)
1403 (defvar gnus-newsgroup-active nil)
1404
1405 (defvar gnus-newsgroup-data nil)
1406 (defvar gnus-newsgroup-data-reverse nil)
1407 (defvar gnus-newsgroup-limit nil)
1408 (defvar gnus-newsgroup-limits nil)
1409 (defvar gnus-summary-use-undownloaded-faces nil)
1410
1411 (defvar gnus-newsgroup-unreads nil
1412   "Sorted list of unread articles in the current newsgroup.")
1413
1414 (defvar gnus-newsgroup-unselected nil
1415   "Sorted list of unselected unread articles in the current newsgroup.")
1416
1417 (defvar gnus-newsgroup-reads nil
1418   "Alist of read articles and article marks in the current newsgroup.")
1419
1420 (defvar gnus-newsgroup-expunged-tally nil)
1421
1422 (defvar gnus-newsgroup-marked nil
1423   "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1424
1425 (defvar gnus-newsgroup-spam-marked nil
1426   "List of ranges of articles that have been marked as spam.")
1427
1428 (defvar gnus-newsgroup-killed nil
1429   "List of ranges of articles that have been through the scoring process.")
1430
1431 (defvar gnus-newsgroup-cached nil
1432   "Sorted list of articles that come from the article cache.")
1433
1434 (defvar gnus-newsgroup-saved nil
1435   "List of articles that have been saved.")
1436
1437 (defvar gnus-newsgroup-kill-headers nil)
1438
1439 (defvar gnus-newsgroup-replied nil
1440   "List of articles that have been replied to in the current newsgroup.")
1441
1442 (defvar gnus-newsgroup-forwarded nil
1443   "List of articles that have been forwarded in the current newsgroup.")
1444
1445 (defvar gnus-newsgroup-recent nil
1446   "List of articles that have are recent in the current newsgroup.")
1447
1448 (defvar gnus-newsgroup-expirable nil
1449   "Sorted list of articles in the current newsgroup that can be expired.")
1450
1451 (defvar gnus-newsgroup-processable nil
1452   "List of articles in the current newsgroup that can be processed.")
1453
1454 (defvar gnus-newsgroup-downloadable nil
1455   "Sorted list of articles in the current newsgroup that can be processed.")
1456
1457 (defvar gnus-newsgroup-unfetched nil
1458   "Sorted list of articles in the current newsgroup whose headers have
1459 not been fetched into the agent.
1460
1461 This list will always be a subset of gnus-newsgroup-undownloaded.")
1462
1463 (defvar gnus-newsgroup-undownloaded nil
1464   "List of articles in the current newsgroup that haven't been downloaded.")
1465
1466 (defvar gnus-newsgroup-unsendable nil
1467   "List of articles in the current newsgroup that won't be sent.")
1468
1469 (defvar gnus-newsgroup-bookmarks nil
1470   "List of articles in the current newsgroup that have bookmarks.")
1471
1472 (defvar gnus-newsgroup-dormant nil
1473   "Sorted list of dormant articles in the current newsgroup.")
1474
1475 (defvar gnus-newsgroup-unseen nil
1476   "List of unseen articles in the current newsgroup.")
1477
1478 (defvar gnus-newsgroup-seen nil
1479   "Range of seen articles in the current newsgroup.")
1480
1481 (defvar gnus-newsgroup-articles nil
1482   "List of articles in the current newsgroup.")
1483
1484 (defvar gnus-newsgroup-scored nil
1485   "List of scored articles in the current newsgroup.")
1486
1487 (defvar gnus-newsgroup-headers nil
1488   "List of article headers in the current newsgroup.")
1489
1490 (defvar gnus-newsgroup-threads nil)
1491
1492 (defvar gnus-newsgroup-prepared nil
1493   "Whether the current group has been prepared properly.")
1494
1495 (defvar gnus-newsgroup-ancient nil
1496   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1497
1498 (defvar gnus-newsgroup-sparse nil)
1499
1500 (defvar gnus-current-article nil)
1501 (defvar gnus-article-current nil)
1502 (defvar gnus-current-headers nil)
1503 (defvar gnus-have-all-headers nil)
1504 (defvar gnus-last-article nil)
1505 (defvar gnus-newsgroup-history nil)
1506 (defvar gnus-newsgroup-charset nil)
1507 (defvar gnus-newsgroup-ephemeral-charset nil)
1508 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1509
1510 (defvar gnus-article-before-search nil)
1511
1512 (defvar gnus-summary-local-variables
1513   '(gnus-newsgroup-name
1514     gnus-newsgroup-begin gnus-newsgroup-end
1515     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1516     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1517     gnus-newsgroup-last-directory
1518     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1519     gnus-newsgroup-unselected gnus-newsgroup-marked
1520     gnus-newsgroup-spam-marked
1521     gnus-newsgroup-reads gnus-newsgroup-saved
1522     gnus-newsgroup-replied gnus-newsgroup-forwarded
1523     gnus-newsgroup-recent
1524     gnus-newsgroup-expirable
1525     gnus-newsgroup-processable gnus-newsgroup-killed
1526     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1527     gnus-newsgroup-unfetched
1528     gnus-newsgroup-unsendable gnus-newsgroup-unseen
1529     gnus-newsgroup-seen gnus-newsgroup-articles
1530     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1531     gnus-newsgroup-headers gnus-newsgroup-threads
1532     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1533     gnus-current-article gnus-current-headers gnus-have-all-headers
1534     gnus-last-article gnus-article-internal-prepare-hook
1535     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1536     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1537     gnus-thread-expunge-below
1538     gnus-score-alist gnus-current-score-file
1539     (gnus-summary-expunge-below . global)
1540     (gnus-summary-mark-below . global)
1541     (gnus-orphan-score . global)
1542     gnus-newsgroup-active gnus-scores-exclude-files
1543     gnus-newsgroup-history gnus-newsgroup-ancient
1544     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1545     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1546     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1547     (gnus-newsgroup-expunged-tally . 0)
1548     gnus-cache-removable-articles gnus-newsgroup-cached
1549     gnus-newsgroup-data gnus-newsgroup-data-reverse
1550     gnus-newsgroup-limit gnus-newsgroup-limits
1551     gnus-newsgroup-charset gnus-newsgroup-display
1552     gnus-summary-use-undownloaded-faces)
1553   "Variables that are buffer-local to the summary buffers.")
1554
1555 (defvar gnus-newsgroup-variables nil
1556   "A list of variables that have separate values in different newsgroups.
1557 A list of newsgroup (summary buffer) local variables, or cons of
1558 variables and their default expressions to be evalled (when the default
1559 values are not nil), that should be made global while the summary buffer
1560 is active.
1561
1562 Note: The default expressions will be evaluated (using function `eval')
1563 before assignment to the local variable rather than just assigned to it.
1564 If the default expression is the symbol `global', that symbol will not
1565 be evaluated but the global value of the local variable will be used
1566 instead.
1567
1568 These variables can be used to set variables in the group parameters
1569 while still allowing them to affect operations done in other buffers.
1570 For example:
1571
1572 \(setq gnus-newsgroup-variables
1573      '(message-use-followup-to
1574        (gnus-visible-headers .
1575          \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1576 ")
1577
1578 (eval-when-compile
1579   ;; Bind features so that require will believe that gnus-sum has
1580   ;; already been loaded (avoids infinite recursion)
1581   (let ((features (cons 'gnus-sum features)))
1582     (require 'gnus-art)))
1583
1584 ;; MIME stuff.
1585
1586 (defvar gnus-decode-encoded-word-methods
1587   '(mail-decode-encoded-word-string)
1588   "List of methods used to decode encoded words.
1589
1590 This variable is a list of FUNCTION or (REGEXP . FUNCTION).  If item
1591 is FUNCTION, FUNCTION will be apply to all newsgroups.  If item is a
1592 \(REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
1593 whose names match REGEXP.
1594
1595 For example:
1596 \((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
1597  mail-decode-encoded-word-string
1598  (\"chinese\" . rfc1843-decode-string))")
1599
1600 (defvar gnus-decode-encoded-word-methods-cache nil)
1601
1602 (defun gnus-multi-decode-encoded-word-string (string)
1603   "Apply the functions from `gnus-encoded-word-methods' that match."
1604   (unless (and gnus-decode-encoded-word-methods-cache
1605                (eq gnus-newsgroup-name
1606                    (car gnus-decode-encoded-word-methods-cache)))
1607     (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
1608     (dolist (method gnus-decode-encoded-word-methods)
1609       (if (symbolp method)
1610           (nconc gnus-decode-encoded-word-methods-cache (list method))
1611         (if (and gnus-newsgroup-name
1612                  (string-match (car method) gnus-newsgroup-name))
1613             (nconc gnus-decode-encoded-word-methods-cache
1614                    (list (cdr method)))))))
1615   (dolist (method (cdr gnus-decode-encoded-word-methods-cache) string)
1616     (setq string (funcall method string))))
1617
1618 ;; Subject simplification.
1619
1620 (defun gnus-simplify-whitespace (str)
1621   "Remove excessive whitespace from STR."
1622   ;; Multiple spaces.
1623   (while (string-match "[ \t][ \t]+" str)
1624     (setq str (concat (substring str 0 (match-beginning 0))
1625                         " "
1626                         (substring str (match-end 0)))))
1627   ;; Leading spaces.
1628   (when (string-match "^[ \t]+" str)
1629     (setq str (substring str (match-end 0))))
1630   ;; Trailing spaces.
1631   (when (string-match "[ \t]+$" str)
1632     (setq str (substring str 0 (match-beginning 0))))
1633   str)
1634
1635 (defun gnus-simplify-all-whitespace (str)
1636   "Remove all whitespace from STR."
1637   (while (string-match "[ \t\n]+" str)
1638     (setq str (replace-match "" nil nil str)))
1639   str)
1640
1641 (defsubst gnus-simplify-subject-re (subject)
1642   "Remove \"Re:\" from subject lines."
1643   (if (string-match message-subject-re-regexp subject)
1644       (substring subject (match-end 0))
1645     subject))
1646
1647 (defun gnus-simplify-subject (subject &optional re-only)
1648   "Remove `Re:' and words in parentheses.
1649 If RE-ONLY is non-nil, strip leading `Re:'s only."
1650   (let ((case-fold-search t))           ;Ignore case.
1651     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1652     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1653       (setq subject (substring subject (match-end 0))))
1654     ;; Remove uninteresting prefixes.
1655     (when (and (not re-only)
1656                gnus-simplify-ignored-prefixes
1657                (string-match gnus-simplify-ignored-prefixes subject))
1658       (setq subject (substring subject (match-end 0))))
1659     ;; Remove words in parentheses from end.
1660     (unless re-only
1661       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1662         (setq subject (substring subject 0 (match-beginning 0)))))
1663     ;; Return subject string.
1664     subject))
1665
1666 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1667 ;; all whitespace.
1668 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1669   (goto-char (point-min))
1670   (while (re-search-forward regexp nil t)
1671     (replace-match (or newtext ""))))
1672
1673 (defun gnus-simplify-buffer-fuzzy ()
1674   "Simplify string in the buffer fuzzily.
1675 The string in the accessible portion of the current buffer is simplified.
1676 It is assumed to be a single-line subject.
1677 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1678 matter is removed.  Additional things can be deleted by setting
1679 `gnus-simplify-subject-fuzzy-regexp'."
1680   (let ((case-fold-search t)
1681         (modified-tick))
1682     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1683
1684     (while (not (eq modified-tick (buffer-modified-tick)))
1685       (setq modified-tick (buffer-modified-tick))
1686       (cond
1687        ((listp gnus-simplify-subject-fuzzy-regexp)
1688         (mapc 'gnus-simplify-buffer-fuzzy-step
1689               gnus-simplify-subject-fuzzy-regexp))
1690        (gnus-simplify-subject-fuzzy-regexp
1691         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1692       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1693       (gnus-simplify-buffer-fuzzy-step
1694        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1695       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1696
1697     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1698     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1699     (gnus-simplify-buffer-fuzzy-step " $")
1700     (gnus-simplify-buffer-fuzzy-step "^ +")))
1701
1702 (defun gnus-simplify-subject-fuzzy (subject)
1703   "Simplify a subject string fuzzily.
1704 See `gnus-simplify-buffer-fuzzy' for details."
1705   (save-excursion
1706     (gnus-set-work-buffer)
1707     (let ((case-fold-search t))
1708       ;; Remove uninteresting prefixes.
1709       (when (and gnus-simplify-ignored-prefixes
1710                  (string-match gnus-simplify-ignored-prefixes subject))
1711         (setq subject (substring subject (match-end 0))))
1712       (insert subject)
1713       (inline (gnus-simplify-buffer-fuzzy))
1714       (buffer-string))))
1715
1716 (defsubst gnus-simplify-subject-fully (subject)
1717   "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1718   (cond
1719    (gnus-simplify-subject-functions
1720     (gnus-map-function gnus-simplify-subject-functions subject))
1721    ((null gnus-summary-gather-subject-limit)
1722     (gnus-simplify-subject-re subject))
1723    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1724     (gnus-simplify-subject-fuzzy subject))
1725    ((numberp gnus-summary-gather-subject-limit)
1726     (truncate-string-to-width (gnus-simplify-subject-re subject)
1727                               gnus-summary-gather-subject-limit))
1728    (t
1729     subject)))
1730
1731 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1732   "Check whether two subjects are equal.
1733 If optional argument SIMPLE-FIRST is t, first argument is already
1734 simplified."
1735   (cond
1736    ((null simple-first)
1737     (equal (gnus-simplify-subject-fully s1)
1738            (gnus-simplify-subject-fully s2)))
1739    (t
1740     (equal s1
1741            (gnus-simplify-subject-fully s2)))))
1742
1743 (defun gnus-summary-bubble-group ()
1744   "Increase the score of the current group.
1745 This is a handy function to add to `gnus-summary-exit-hook' to
1746 increase the score of each group you read."
1747   (gnus-group-add-score gnus-newsgroup-name))
1748
1749 \f
1750 ;;;
1751 ;;; Gnus summary mode
1752 ;;;
1753
1754 (put 'gnus-summary-mode 'mode-class 'special)
1755
1756 (defvar gnus-article-commands-menu)
1757
1758 ;; Non-orthogonal keys
1759
1760 (gnus-define-keys gnus-summary-mode-map
1761   " " gnus-summary-next-page
1762   "\177" gnus-summary-prev-page
1763   [delete] gnus-summary-prev-page
1764   [backspace] gnus-summary-prev-page
1765   "\r" gnus-summary-scroll-up
1766   "\M-\r" gnus-summary-scroll-down
1767   "n" gnus-summary-next-unread-article
1768   "p" gnus-summary-prev-unread-article
1769   "N" gnus-summary-next-article
1770   "P" gnus-summary-prev-article
1771   "\M-\C-n" gnus-summary-next-same-subject
1772   "\M-\C-p" gnus-summary-prev-same-subject
1773   "\M-n" gnus-summary-next-unread-subject
1774   "\M-p" gnus-summary-prev-unread-subject
1775   "." gnus-summary-first-unread-article
1776   "," gnus-summary-best-unread-article
1777   "\M-s" gnus-summary-search-article-forward
1778   "\M-r" gnus-summary-search-article-backward
1779   "\M-S" gnus-summary-repeat-search-article-forward
1780   "\M-R" gnus-summary-repeat-search-article-backward
1781   "<" gnus-summary-beginning-of-article
1782   ">" gnus-summary-end-of-article
1783   "j" gnus-summary-goto-article
1784   "^" gnus-summary-refer-parent-article
1785   "\M-^" gnus-summary-refer-article
1786   "u" gnus-summary-tick-article-forward
1787   "!" gnus-summary-tick-article-forward
1788   "U" gnus-summary-tick-article-backward
1789   "d" gnus-summary-mark-as-read-forward
1790   "D" gnus-summary-mark-as-read-backward
1791   "E" gnus-summary-mark-as-expirable
1792   "\M-u" gnus-summary-clear-mark-forward
1793   "\M-U" gnus-summary-clear-mark-backward
1794   "k" gnus-summary-kill-same-subject-and-select
1795   "\C-k" gnus-summary-kill-same-subject
1796   "\M-\C-k" gnus-summary-kill-thread
1797   "\M-\C-l" gnus-summary-lower-thread
1798   "e" gnus-summary-edit-article
1799   "#" gnus-summary-mark-as-processable
1800   "\M-#" gnus-summary-unmark-as-processable
1801   "\M-\C-t" gnus-summary-toggle-threads
1802   "\M-\C-s" gnus-summary-show-thread
1803   "\M-\C-h" gnus-summary-hide-thread
1804   "\M-\C-f" gnus-summary-next-thread
1805   "\M-\C-b" gnus-summary-prev-thread
1806   [(meta down)] gnus-summary-next-thread
1807   [(meta up)] gnus-summary-prev-thread
1808   "\M-\C-u" gnus-summary-up-thread
1809   "\M-\C-d" gnus-summary-down-thread
1810   "&" gnus-summary-execute-command
1811   "c" gnus-summary-catchup-and-exit
1812   "\C-w" gnus-summary-mark-region-as-read
1813   "\C-t" gnus-summary-toggle-truncation
1814   "?" gnus-summary-mark-as-dormant
1815   "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1816   "\C-c\C-s\C-n" gnus-summary-sort-by-number
1817   "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1818   "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1819   "\C-c\C-s\C-a" gnus-summary-sort-by-author
1820   "\C-c\C-s\C-t" gnus-summary-sort-by-recipient
1821   "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1822   "\C-c\C-s\C-d" gnus-summary-sort-by-date
1823   "\C-c\C-s\C-i" gnus-summary-sort-by-score
1824   "\C-c\C-s\C-o" gnus-summary-sort-by-original
1825   "\C-c\C-s\C-r" gnus-summary-sort-by-random
1826   "=" gnus-summary-expand-window
1827   "\C-x\C-s" gnus-summary-reselect-current-group
1828   "\M-g" gnus-summary-rescan-group
1829   "w" gnus-summary-stop-page-breaking
1830   "\C-c\C-r" gnus-summary-caesar-message
1831   "f" gnus-summary-followup
1832   "F" gnus-summary-followup-with-original
1833   "C" gnus-summary-cancel-article
1834   "r" gnus-summary-reply
1835   "R" gnus-summary-reply-with-original
1836   "\C-c\C-f" gnus-summary-mail-forward
1837   "o" gnus-summary-save-article
1838   "\C-o" gnus-summary-save-article-mail
1839   "|" gnus-summary-pipe-output
1840   "\M-k" gnus-summary-edit-local-kill
1841   "\M-K" gnus-summary-edit-global-kill
1842   ;; "V" gnus-version
1843   "\C-c\C-d" gnus-summary-describe-group
1844   "q" gnus-summary-exit
1845   "Q" gnus-summary-exit-no-update
1846   "\C-c\C-i" gnus-info-find-node
1847   gnus-mouse-2 gnus-mouse-pick-article
1848   [follow-link] mouse-face
1849   "m" gnus-summary-mail-other-window
1850   "a" gnus-summary-post-news
1851   "i" gnus-summary-news-other-window
1852   "x" gnus-summary-limit-to-unread
1853   "s" gnus-summary-isearch-article
1854   "t" gnus-summary-toggle-header
1855   "g" gnus-summary-show-article
1856   "l" gnus-summary-goto-last-article
1857   "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1858   "\C-d" gnus-summary-enter-digest-group
1859   "\M-\C-d" gnus-summary-read-document
1860   "\M-\C-e" gnus-summary-edit-parameters
1861   "\M-\C-a" gnus-summary-customize-parameters
1862   "\C-c\C-b" gnus-bug
1863   "*" gnus-cache-enter-article
1864   "\M-*" gnus-cache-remove-article
1865   "\M-&" gnus-summary-universal-argument
1866   "\C-l" gnus-recenter
1867   "I" gnus-summary-increase-score
1868   "L" gnus-summary-lower-score
1869   "\M-i" gnus-symbolic-argument
1870   "h" gnus-summary-select-article-buffer
1871
1872   "b" gnus-article-view-part
1873   "\M-t" gnus-summary-toggle-display-buttonized
1874
1875   "V" gnus-summary-score-map
1876   "X" gnus-uu-extract-map
1877   "S" gnus-summary-send-map)
1878
1879 ;; Sort of orthogonal keymap
1880 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1881   "t" gnus-summary-tick-article-forward
1882   "!" gnus-summary-tick-article-forward
1883   "d" gnus-summary-mark-as-read-forward
1884   "r" gnus-summary-mark-as-read-forward
1885   "c" gnus-summary-clear-mark-forward
1886   " " gnus-summary-clear-mark-forward
1887   "e" gnus-summary-mark-as-expirable
1888   "x" gnus-summary-mark-as-expirable
1889   "?" gnus-summary-mark-as-dormant
1890   "b" gnus-summary-set-bookmark
1891   "B" gnus-summary-remove-bookmark
1892   "#" gnus-summary-mark-as-processable
1893   "\M-#" gnus-summary-unmark-as-processable
1894   "S" gnus-summary-limit-include-expunged
1895   "C" gnus-summary-catchup
1896   "H" gnus-summary-catchup-to-here
1897   "h" gnus-summary-catchup-from-here
1898   "\C-c" gnus-summary-catchup-all
1899   "k" gnus-summary-kill-same-subject-and-select
1900   "K" gnus-summary-kill-same-subject
1901   "P" gnus-uu-mark-map)
1902
1903 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1904   "c" gnus-summary-clear-above
1905   "u" gnus-summary-tick-above
1906   "m" gnus-summary-mark-above
1907   "k" gnus-summary-kill-below)
1908
1909 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1910   "/" gnus-summary-limit-to-subject
1911   "n" gnus-summary-limit-to-articles
1912   "b" gnus-summary-limit-to-bodies
1913   "h" gnus-summary-limit-to-headers
1914   "w" gnus-summary-pop-limit
1915   "s" gnus-summary-limit-to-subject
1916   "a" gnus-summary-limit-to-author
1917   "u" gnus-summary-limit-to-unread
1918   "m" gnus-summary-limit-to-marks
1919   "M" gnus-summary-limit-exclude-marks
1920   "v" gnus-summary-limit-to-score
1921   "*" gnus-summary-limit-include-cached
1922   "D" gnus-summary-limit-include-dormant
1923   "T" gnus-summary-limit-include-thread
1924   "d" gnus-summary-limit-exclude-dormant
1925   "t" gnus-summary-limit-to-age
1926   "." gnus-summary-limit-to-unseen
1927   "x" gnus-summary-limit-to-extra
1928   "p" gnus-summary-limit-to-display-predicate
1929   "E" gnus-summary-limit-include-expunged
1930   "c" gnus-summary-limit-exclude-childless-dormant
1931   "C" gnus-summary-limit-mark-excluded-as-read
1932   "o" gnus-summary-insert-old-articles
1933   "N" gnus-summary-insert-new-articles
1934   "S" gnus-summary-limit-to-singletons
1935   "r" gnus-summary-limit-to-replied
1936   "R" gnus-summary-limit-to-recipient
1937   "A" gnus-summary-limit-to-address)
1938
1939 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1940   "n" gnus-summary-next-unread-article
1941   "p" gnus-summary-prev-unread-article
1942   "N" gnus-summary-next-article
1943   "P" gnus-summary-prev-article
1944   "\C-n" gnus-summary-next-same-subject
1945   "\C-p" gnus-summary-prev-same-subject
1946   "\M-n" gnus-summary-next-unread-subject
1947   "\M-p" gnus-summary-prev-unread-subject
1948   "f" gnus-summary-first-unread-article
1949   "b" gnus-summary-best-unread-article
1950   "j" gnus-summary-goto-article
1951   "g" gnus-summary-goto-subject
1952   "l" gnus-summary-goto-last-article
1953   "o" gnus-summary-pop-article)
1954
1955 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1956   "k" gnus-summary-kill-thread
1957   "E" gnus-summary-expire-thread
1958   "l" gnus-summary-lower-thread
1959   "i" gnus-summary-raise-thread
1960   "T" gnus-summary-toggle-threads
1961   "t" gnus-summary-rethread-current
1962   "^" gnus-summary-reparent-thread
1963   "\M-^" gnus-summary-reparent-children
1964   "s" gnus-summary-show-thread
1965   "S" gnus-summary-show-all-threads
1966   "h" gnus-summary-hide-thread
1967   "H" gnus-summary-hide-all-threads
1968   "n" gnus-summary-next-thread
1969   "p" gnus-summary-prev-thread
1970   "u" gnus-summary-up-thread
1971   "o" gnus-summary-top-thread
1972   "d" gnus-summary-down-thread
1973   "#" gnus-uu-mark-thread
1974   "\M-#" gnus-uu-unmark-thread)
1975
1976 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1977   "g" gnus-summary-prepare
1978   "c" gnus-summary-insert-cached-articles
1979   "d" gnus-summary-insert-dormant-articles
1980   "t" gnus-summary-insert-ticked-articles)
1981
1982 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1983   "c" gnus-summary-catchup-and-exit
1984   "C" gnus-summary-catchup-all-and-exit
1985   "E" gnus-summary-exit-no-update
1986   "Q" gnus-summary-exit
1987   "Z" gnus-summary-exit
1988   "n" gnus-summary-catchup-and-goto-next-group
1989   "p" gnus-summary-catchup-and-goto-prev-group
1990   "R" gnus-summary-reselect-current-group
1991   "G" gnus-summary-rescan-group
1992   "N" gnus-summary-next-group
1993   "s" gnus-summary-save-newsrc
1994   "P" gnus-summary-prev-group)
1995
1996 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1997   " " gnus-summary-next-page
1998   "n" gnus-summary-next-page
1999   "\177" gnus-summary-prev-page
2000   [delete] gnus-summary-prev-page
2001   "p" gnus-summary-prev-page
2002   "\r" gnus-summary-scroll-up
2003   "\M-\r" gnus-summary-scroll-down
2004   "<" gnus-summary-beginning-of-article
2005   ">" gnus-summary-end-of-article
2006   "b" gnus-summary-beginning-of-article
2007   "e" gnus-summary-end-of-article
2008   "^" gnus-summary-refer-parent-article
2009   "r" gnus-summary-refer-parent-article
2010   "D" gnus-summary-enter-digest-group
2011   "R" gnus-summary-refer-references
2012   "T" gnus-summary-refer-thread
2013   "g" gnus-summary-show-article
2014   "s" gnus-summary-isearch-article
2015   "P" gnus-summary-print-article
2016   "S" gnus-sticky-article
2017   "M" gnus-mailing-list-insinuate
2018   "t" gnus-article-babel)
2019
2020 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
2021   "b" gnus-article-add-buttons
2022   "B" gnus-article-add-buttons-to-head
2023   "o" gnus-article-treat-overstrike
2024   "e" gnus-article-emphasize
2025   "w" gnus-article-fill-cited-article
2026   "Q" gnus-article-fill-long-lines
2027   "L" gnus-article-toggle-truncate-lines
2028   "C" gnus-article-capitalize-sentences
2029   "c" gnus-article-remove-cr
2030   "q" gnus-article-de-quoted-unreadable
2031   "6" gnus-article-de-base64-unreadable
2032   "Z" gnus-article-decode-HZ
2033   "A" gnus-article-treat-ansi-sequences
2034   "h" gnus-article-wash-html
2035   "u" gnus-article-unsplit-urls
2036   "s" gnus-summary-force-verify-and-decrypt
2037   "f" gnus-article-display-x-face
2038   "l" gnus-summary-stop-page-breaking
2039   "r" gnus-summary-caesar-message
2040   "m" gnus-summary-morse-message
2041   "t" gnus-summary-toggle-header
2042   "g" gnus-treat-smiley
2043   "v" gnus-summary-verbose-headers
2044   "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
2045   "p" gnus-article-verify-x-pgp-sig
2046   "d" gnus-article-treat-dumbquotes
2047   "i" gnus-summary-idna-message)
2048
2049 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
2050   ;; mnemonic: deuglif*Y*
2051   "u" gnus-article-outlook-unwrap-lines
2052   "a" gnus-article-outlook-repair-attribution
2053   "c" gnus-article-outlook-rearrange-citation
2054   "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
2055
2056 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
2057   "a" gnus-article-hide
2058   "h" gnus-article-hide-headers
2059   "b" gnus-article-hide-boring-headers
2060   "s" gnus-article-hide-signature
2061   "c" gnus-article-hide-citation
2062   "C" gnus-article-hide-citation-in-followups
2063   "l" gnus-article-hide-list-identifiers
2064   "B" gnus-article-strip-banner
2065   "P" gnus-article-hide-pem
2066   "\C-c" gnus-article-hide-citation-maybe)
2067
2068 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
2069   "a" gnus-article-highlight
2070   "h" gnus-article-highlight-headers
2071   "c" gnus-article-highlight-citation
2072   "s" gnus-article-highlight-signature)
2073
2074 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
2075   "f" gnus-article-treat-fold-headers
2076   "u" gnus-article-treat-unfold-headers
2077   "n" gnus-article-treat-fold-newsgroups)
2078
2079 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
2080   "x" gnus-article-display-x-face
2081   "d" gnus-article-display-face
2082   "s" gnus-treat-smiley
2083   "D" gnus-article-remove-images
2084   "f" gnus-treat-from-picon
2085   "m" gnus-treat-mail-picon
2086   "n" gnus-treat-newsgroups-picon)
2087
2088 (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
2089   "w" gnus-article-decode-mime-words
2090   "c" gnus-article-decode-charset
2091   "v" gnus-mime-view-all-parts
2092   "b" gnus-article-view-part)
2093
2094 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
2095   "z" gnus-article-date-ut
2096   "u" gnus-article-date-ut
2097   "l" gnus-article-date-local
2098   "p" gnus-article-date-english
2099   "e" gnus-article-date-lapsed
2100   "o" gnus-article-date-original
2101   "i" gnus-article-date-iso8601
2102   "s" gnus-article-date-user)
2103
2104 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
2105   "t" gnus-article-remove-trailing-blank-lines
2106   "l" gnus-article-strip-leading-blank-lines
2107   "m" gnus-article-strip-multiple-blank-lines
2108   "a" gnus-article-strip-blank-lines
2109   "A" gnus-article-strip-all-blank-lines
2110   "s" gnus-article-strip-leading-space
2111   "e" gnus-article-strip-trailing-space
2112   "w" gnus-article-remove-leading-whitespace)
2113
2114 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
2115   "v" gnus-version
2116   "f" gnus-summary-fetch-faq
2117   "d" gnus-summary-describe-group
2118   "h" gnus-summary-describe-briefly
2119   "i" gnus-info-find-node
2120   "c" gnus-group-fetch-charter
2121   "C" gnus-group-fetch-control)
2122
2123 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
2124   "e" gnus-summary-expire-articles
2125   "\M-\C-e" gnus-summary-expire-articles-now
2126   "\177" gnus-summary-delete-article
2127   [delete] gnus-summary-delete-article
2128   [backspace] gnus-summary-delete-article
2129   "m" gnus-summary-move-article
2130   "r" gnus-summary-respool-article
2131   "w" gnus-summary-edit-article
2132   "c" gnus-summary-copy-article
2133   "B" gnus-summary-crosspost-article
2134   "q" gnus-summary-respool-query
2135   "t" gnus-summary-respool-trace
2136   "i" gnus-summary-import-article
2137   "I" gnus-summary-create-article
2138   "p" gnus-summary-article-posted-p)
2139
2140 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
2141   "o" gnus-summary-save-article
2142   "m" gnus-summary-save-article-mail
2143   "F" gnus-summary-write-article-file
2144   "r" gnus-summary-save-article-rmail
2145   "f" gnus-summary-save-article-file
2146   "b" gnus-summary-save-article-body-file
2147   "B" gnus-summary-write-article-body-file
2148   "h" gnus-summary-save-article-folder
2149   "v" gnus-summary-save-article-vm
2150   "p" gnus-summary-pipe-output
2151   "P" gnus-summary-muttprint
2152   "s" gnus-soup-add-article)
2153
2154 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
2155   "b" gnus-summary-display-buttonized
2156   "m" gnus-summary-repair-multipart
2157   "v" gnus-article-view-part
2158   "o" gnus-article-save-part
2159   "O" gnus-article-save-part-and-strip
2160   "r" gnus-article-replace-part
2161   "d" gnus-article-delete-part
2162   "t" gnus-article-view-part-as-type
2163   "j" gnus-article-jump-to-part
2164   "c" gnus-article-copy-part
2165   "C" gnus-article-view-part-as-charset
2166   "e" gnus-article-view-part-externally
2167   "H" gnus-article-browse-html-article
2168   "E" gnus-article-encrypt-body
2169   "i" gnus-article-inline-part
2170   "|" gnus-article-pipe-part)
2171
2172 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
2173   "p" gnus-summary-mark-as-processable
2174   "u" gnus-summary-unmark-as-processable
2175   "U" gnus-summary-unmark-all-processable
2176   "v" gnus-uu-mark-over
2177   "s" gnus-uu-mark-series
2178   "r" gnus-uu-mark-region
2179   "g" gnus-uu-unmark-region
2180   "R" gnus-uu-mark-by-regexp
2181   "G" gnus-uu-unmark-by-regexp
2182   "t" gnus-uu-mark-thread
2183   "T" gnus-uu-unmark-thread
2184   "a" gnus-uu-mark-all
2185   "b" gnus-uu-mark-buffer
2186   "S" gnus-uu-mark-sparse
2187   "k" gnus-summary-kill-process-mark
2188   "y" gnus-summary-yank-process-mark
2189   "w" gnus-summary-save-process-mark
2190   "i" gnus-uu-invert-processable)
2191
2192 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2193   ;;"x" gnus-uu-extract-any
2194   "m" gnus-summary-save-parts
2195   "u" gnus-uu-decode-uu
2196   "U" gnus-uu-decode-uu-and-save
2197   "s" gnus-uu-decode-unshar
2198   "S" gnus-uu-decode-unshar-and-save
2199   "o" gnus-uu-decode-save
2200   "O" gnus-uu-decode-save
2201   "b" gnus-uu-decode-binhex
2202   "B" gnus-uu-decode-binhex
2203   "Y" gnus-uu-decode-yenc
2204   "p" gnus-uu-decode-postscript
2205   "P" gnus-uu-decode-postscript-and-save)
2206
2207 (gnus-define-keys
2208     (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2209   "u" gnus-uu-decode-uu-view
2210   "U" gnus-uu-decode-uu-and-save-view
2211   "s" gnus-uu-decode-unshar-view
2212   "S" gnus-uu-decode-unshar-and-save-view
2213   "o" gnus-uu-decode-save-view
2214   "O" gnus-uu-decode-save-view
2215   "b" gnus-uu-decode-binhex-view
2216   "B" gnus-uu-decode-binhex-view
2217   "p" gnus-uu-decode-postscript-view
2218   "P" gnus-uu-decode-postscript-and-save-view)
2219
2220 (defvar gnus-article-post-menu nil)
2221
2222 (defconst gnus-summary-menu-maxlen 20)
2223
2224 (defun gnus-summary-menu-split (menu)
2225   ;; If we have lots of elements, divide them into groups of 20
2226   ;; and make a pane (or submenu) for each one.
2227   (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2228       (let ((menu menu) sublists next
2229             (i 1))
2230         (while menu
2231           ;; Pull off the next gnus-summary-menu-maxlen elements
2232           ;; and make them the next element of sublist.
2233           (setq next (nthcdr gnus-summary-menu-maxlen menu))
2234           (if next
2235               (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2236                       nil))
2237           (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2238                                              (aref (car (last menu)) 0)) menu)
2239                                sublists))
2240           (setq i (1+ i))
2241           (setq menu next))
2242         (nreverse sublists))
2243     ;; Few elements--put them all in one pane.
2244     menu))
2245
2246 (defun gnus-summary-make-menu-bar ()
2247   (gnus-turn-off-edit-menu 'summary)
2248
2249   (unless (boundp 'gnus-summary-misc-menu)
2250
2251     (easy-menu-define
2252       gnus-summary-kill-menu gnus-summary-mode-map ""
2253       (cons
2254        "Score"
2255        (nconc
2256         (list
2257          ["Customize" gnus-score-customize t])
2258         (gnus-make-score-map 'increase)
2259         (gnus-make-score-map 'lower)
2260         '(("Mark"
2261            ["Kill below" gnus-summary-kill-below t]
2262            ["Mark above" gnus-summary-mark-above t]
2263            ["Tick above" gnus-summary-tick-above t]
2264            ["Clear above" gnus-summary-clear-above t])
2265           ["Current score" gnus-summary-current-score t]
2266           ["Set score" gnus-summary-set-score t]
2267           ["Switch current score file..." gnus-score-change-score-file t]
2268           ["Set mark below..." gnus-score-set-mark-below t]
2269           ["Set expunge below..." gnus-score-set-expunge-below t]
2270           ["Edit current score file" gnus-score-edit-current-scores t]
2271           ["Edit score file..." gnus-score-edit-file t]
2272           ["Trace score" gnus-score-find-trace t]
2273           ["Find words" gnus-score-find-favourite-words t]
2274           ["Rescore buffer" gnus-summary-rescore t]
2275           ["Increase score..." gnus-summary-increase-score t]
2276           ["Lower score..." gnus-summary-lower-score t]))))
2277
2278     ;; Define both the Article menu in the summary buffer and the
2279     ;; equivalent Commands menu in the article buffer here for
2280     ;; consistency.
2281     (let ((innards
2282            `(("Hide"
2283               ["All" gnus-article-hide t]
2284               ["Headers" gnus-article-hide-headers t]
2285               ["Signature" gnus-article-hide-signature t]
2286               ["Citation" gnus-article-hide-citation t]
2287               ["List identifiers" gnus-article-hide-list-identifiers t]
2288               ["Banner" gnus-article-strip-banner t]
2289               ["Boring headers" gnus-article-hide-boring-headers t])
2290              ("Highlight"
2291               ["All" gnus-article-highlight t]
2292               ["Headers" gnus-article-highlight-headers t]
2293               ["Signature" gnus-article-highlight-signature t]
2294               ["Citation" gnus-article-highlight-citation t])
2295              ("MIME"
2296               ["Words" gnus-article-decode-mime-words t]
2297               ["Charset" gnus-article-decode-charset t]
2298               ["QP" gnus-article-de-quoted-unreadable t]
2299               ["Base64" gnus-article-de-base64-unreadable t]
2300               ["View MIME buttons" gnus-summary-display-buttonized t]
2301               ["View all" gnus-mime-view-all-parts t]
2302               ["Verify and Decrypt" gnus-summary-force-verify-and-decrypt t]
2303               ["Encrypt body" gnus-article-encrypt-body
2304                :active (not (gnus-group-read-only-p))
2305                ,@(if (featurep 'xemacs) nil
2306                    '(:help "Encrypt the message body on disk"))]
2307               ["Extract all parts..." gnus-summary-save-parts t]
2308               ("Multipart"
2309                ["Repair multipart" gnus-summary-repair-multipart t]
2310                ["Pipe part..." gnus-article-pipe-part t]
2311                ["Inline part" gnus-article-inline-part t]
2312                ["View part as type..." gnus-article-view-part-as-type t]
2313                ["Encrypt body" gnus-article-encrypt-body
2314                 :active (not (gnus-group-read-only-p))
2315                ,@(if (featurep 'xemacs) nil
2316                    '(:help "Encrypt the message body on disk"))]
2317                ["View part externally" gnus-article-view-part-externally t]
2318                ["View HTML parts in browser" gnus-article-browse-html-article t]
2319                ["View part with charset..." gnus-article-view-part-as-charset t]
2320                ["Copy part" gnus-article-copy-part t]
2321                ["Save part..." gnus-article-save-part t]
2322                ["View part" gnus-article-view-part t]))
2323              ("Date"
2324               ["Local" gnus-article-date-local t]
2325               ["ISO8601" gnus-article-date-iso8601 t]
2326               ["UT" gnus-article-date-ut t]
2327               ["Original" gnus-article-date-original t]
2328               ["Lapsed" gnus-article-date-lapsed t]
2329               ["User-defined" gnus-article-date-user t])
2330              ("Display"
2331               ["Remove images" gnus-article-remove-images t]
2332               ["Toggle smiley" gnus-treat-smiley t]
2333               ["Show X-Face" gnus-article-display-x-face t]
2334               ["Show picons in From" gnus-treat-from-picon t]
2335               ["Show picons in mail headers" gnus-treat-mail-picon t]
2336               ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2337               ("View as different encoding"
2338                ,@(gnus-summary-menu-split
2339                   (mapcar
2340                    (lambda (cs)
2341                      ;; Since easymenu under Emacs doesn't allow
2342                      ;; lambda forms for menu commands, we should
2343                      ;; provide intern'ed function symbols.
2344                      (let ((command (intern (format "\
2345 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2346                        (fset command
2347                              `(lambda ()
2348                                 (interactive)
2349                                 (let ((gnus-summary-show-article-charset-alist
2350                                        '((1 . ,cs))))
2351                                   (gnus-summary-show-article 1))))
2352                        `[,(symbol-name cs) ,command t]))
2353                    (sort (if (fboundp 'coding-system-list)
2354                              (coding-system-list)
2355                            (mapcar 'car mm-mime-mule-charset-alist))
2356                          'string<)))))
2357              ("Washing"
2358               ("Remove Blanks"
2359                ["Leading" gnus-article-strip-leading-blank-lines t]
2360                ["Multiple" gnus-article-strip-multiple-blank-lines t]
2361                ["Trailing" gnus-article-remove-trailing-blank-lines t]
2362                ["All of the above" gnus-article-strip-blank-lines t]
2363                ["All" gnus-article-strip-all-blank-lines t]
2364                ["Leading space" gnus-article-strip-leading-space t]
2365                ["Trailing space" gnus-article-strip-trailing-space t]
2366                ["Leading space in headers"
2367                 gnus-article-remove-leading-whitespace t])
2368               ["Overstrike" gnus-article-treat-overstrike t]
2369               ["Dumb quotes" gnus-article-treat-dumbquotes t]
2370               ["Emphasis" gnus-article-emphasize t]
2371               ["Word wrap" gnus-article-fill-cited-article t]
2372               ["Fill long lines" gnus-article-fill-long-lines t]
2373               ["Toggle truncate long lines" gnus-article-toggle-truncate-lines t]
2374               ["Capitalize sentences" gnus-article-capitalize-sentences t]
2375               ["Remove CR" gnus-article-remove-cr t]
2376               ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
2377               ["Base64" gnus-article-de-base64-unreadable t]
2378               ["Rot 13" gnus-summary-caesar-message
2379                ,@(if (featurep 'xemacs) '(t)
2380                    '(:help "\"Caesar rotate\" article by 13"))]
2381               ["De-IDNA" gnus-summary-idna-message t]
2382               ["Morse decode" gnus-summary-morse-message t]
2383               ["Unix pipe..." gnus-summary-pipe-message t]
2384               ["Add buttons" gnus-article-add-buttons t]
2385               ["Add buttons to head" gnus-article-add-buttons-to-head t]
2386               ["Stop page breaking" gnus-summary-stop-page-breaking t]
2387               ["Verbose header" gnus-summary-verbose-headers t]
2388               ["Toggle header" gnus-summary-toggle-header t]
2389               ["Unfold headers" gnus-article-treat-unfold-headers t]
2390               ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2391               ["Html" gnus-article-wash-html t]
2392               ["Unsplit URLs" gnus-article-unsplit-urls t]
2393               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2394               ["Decode HZ" gnus-article-decode-HZ t]
2395               ["ANSI sequences" gnus-article-treat-ansi-sequences t]
2396               ("(Outlook) Deuglify"
2397                ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2398                ["Repair attribution" gnus-article-outlook-repair-attribution t]
2399                ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2400                ["Full (Outlook) deuglify"
2401                 gnus-article-outlook-deuglify-article t])
2402               )
2403              ("Output"
2404               ["Save in default format..." gnus-summary-save-article
2405                ,@(if (featurep 'xemacs) '(t)
2406                    '(:help "Save article using default method"))]
2407               ["Save in file..." gnus-summary-save-article-file
2408                ,@(if (featurep 'xemacs) '(t)
2409                    '(:help "Save article in file"))]
2410               ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2411               ["Save in MH folder..." gnus-summary-save-article-folder t]
2412               ["Save in VM folder..." gnus-summary-save-article-vm t]
2413               ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2414               ["Save body in file..." gnus-summary-save-article-body-file t]
2415               ["Pipe through a filter..." gnus-summary-pipe-output t]
2416               ["Add to SOUP packet" gnus-soup-add-article t]
2417               ["Print with Muttprint..." gnus-summary-muttprint t]
2418               ["Print" gnus-summary-print-article
2419                ,@(if (featurep 'xemacs) '(t)
2420                    '(:help "Generate and print a PostScript image"))])
2421              ("Copy, move,... (Backend)"
2422               ,@(if (featurep 'xemacs) nil
2423                   '(:help "Copying, moving, expiring articles..."))
2424               ["Respool article..." gnus-summary-respool-article t]
2425               ["Move article..." gnus-summary-move-article
2426                (gnus-check-backend-function
2427                 'request-move-article gnus-newsgroup-name)]
2428               ["Copy article..." gnus-summary-copy-article t]
2429               ["Crosspost article..." gnus-summary-crosspost-article
2430                (gnus-check-backend-function
2431                 'request-replace-article gnus-newsgroup-name)]
2432               ["Import file..." gnus-summary-import-article
2433                (gnus-check-backend-function
2434                 'request-accept-article gnus-newsgroup-name)]
2435               ["Create article..." gnus-summary-create-article
2436                (gnus-check-backend-function
2437                 'request-accept-article gnus-newsgroup-name)]
2438               ["Check if posted" gnus-summary-article-posted-p t]
2439               ["Edit article" gnus-summary-edit-article
2440                (not (gnus-group-read-only-p))]
2441               ["Delete article" gnus-summary-delete-article
2442                (gnus-check-backend-function
2443                 'request-expire-articles gnus-newsgroup-name)]
2444               ["Query respool" gnus-summary-respool-query t]
2445               ["Trace respool" gnus-summary-respool-trace t]
2446               ["Delete expirable articles" gnus-summary-expire-articles-now
2447                (gnus-check-backend-function
2448                 'request-expire-articles gnus-newsgroup-name)])
2449              ("Extract"
2450               ["Uudecode" gnus-uu-decode-uu
2451                ,@(if (featurep 'xemacs) '(t)
2452                    '(:help "Decode uuencoded article(s)"))]
2453               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2454               ["Unshar" gnus-uu-decode-unshar t]
2455               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2456               ["Save" gnus-uu-decode-save t]
2457               ["Binhex" gnus-uu-decode-binhex t]
2458               ["Postscript" gnus-uu-decode-postscript t]
2459               ["All MIME parts" gnus-summary-save-parts t])
2460              ("Cache"
2461               ["Enter article" gnus-cache-enter-article t]
2462               ["Remove article" gnus-cache-remove-article t])
2463              ["Translate" gnus-article-babel t]
2464              ["Select article buffer" gnus-summary-select-article-buffer t]
2465              ["Make article buffer sticky" gnus-sticky-article t]
2466              ["Enter digest buffer" gnus-summary-enter-digest-group t]
2467              ["Isearch article..." gnus-summary-isearch-article t]
2468              ["Beginning of the article" gnus-summary-beginning-of-article t]
2469              ["End of the article" gnus-summary-end-of-article t]
2470              ["Fetch parent of article" gnus-summary-refer-parent-article t]
2471              ["Fetch referenced articles" gnus-summary-refer-references t]
2472              ["Fetch current thread" gnus-summary-refer-thread t]
2473              ["Fetch article with id..." gnus-summary-refer-article t]
2474              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2475              ["Redisplay" gnus-summary-show-article t]
2476              ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2477       (easy-menu-define
2478         gnus-summary-article-menu gnus-summary-mode-map ""
2479         (cons "Article" innards))
2480
2481       (if (not (keymapp gnus-summary-article-menu))
2482           (easy-menu-define
2483             gnus-article-commands-menu gnus-article-mode-map ""
2484             (cons "Commands" innards))
2485         ;; in Emacs, don't share menu.
2486         (setq gnus-article-commands-menu
2487               (copy-keymap gnus-summary-article-menu))
2488         (define-key gnus-article-mode-map [menu-bar commands]
2489           (cons "Commands" gnus-article-commands-menu))))
2490
2491     (easy-menu-define
2492       gnus-summary-thread-menu gnus-summary-mode-map ""
2493       '("Threads"
2494         ["Find all messages in thread" gnus-summary-refer-thread t]
2495         ["Toggle threading" gnus-summary-toggle-threads t]
2496         ["Hide threads" gnus-summary-hide-all-threads t]
2497         ["Show threads" gnus-summary-show-all-threads t]
2498         ["Hide thread" gnus-summary-hide-thread t]
2499         ["Show thread" gnus-summary-show-thread t]
2500         ["Go to next thread" gnus-summary-next-thread t]
2501         ["Go to previous thread" gnus-summary-prev-thread t]
2502         ["Go down thread" gnus-summary-down-thread t]
2503         ["Go up thread" gnus-summary-up-thread t]
2504         ["Top of thread" gnus-summary-top-thread t]
2505         ["Mark thread as read" gnus-summary-kill-thread t]
2506         ["Mark thread as expired" gnus-summary-expire-thread t]
2507         ["Lower thread score" gnus-summary-lower-thread t]
2508         ["Raise thread score" gnus-summary-raise-thread t]
2509         ["Rethread current" gnus-summary-rethread-current t]))
2510
2511     (easy-menu-define
2512       gnus-summary-post-menu gnus-summary-mode-map ""
2513       `("Post"
2514         ["Send a message (mail or news)" gnus-summary-post-news
2515          ,@(if (featurep 'xemacs) '(t)
2516              '(:help "Compose a new message (mail or news)"))]
2517         ["Followup" gnus-summary-followup
2518          ,@(if (featurep 'xemacs) '(t)
2519              '(:help "Post followup to this article"))]
2520         ["Followup and yank" gnus-summary-followup-with-original
2521          ,@(if (featurep 'xemacs) '(t)
2522              '(:help "Post followup to this article, quoting its contents"))]
2523         ["Supersede article" gnus-summary-supersede-article t]
2524         ["Cancel article" gnus-summary-cancel-article
2525          ,@(if (featurep 'xemacs) '(t)
2526              '(:help "Cancel an article you posted"))]
2527         ["Reply" gnus-summary-reply t]
2528         ["Reply and yank" gnus-summary-reply-with-original t]
2529         ["Wide reply" gnus-summary-wide-reply t]
2530         ["Wide reply and yank" gnus-summary-wide-reply-with-original
2531          ,@(if (featurep 'xemacs) '(t)
2532              '(:help "Mail a reply, quoting this article"))]
2533         ["Very wide reply" gnus-summary-very-wide-reply t]
2534         ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2535          ,@(if (featurep 'xemacs) '(t)
2536              '(:help "Mail a very wide reply, quoting this article"))]
2537         ["Mail forward" gnus-summary-mail-forward t]
2538         ["Post forward" gnus-summary-post-forward t]
2539         ["Digest and mail" gnus-uu-digest-mail-forward t]
2540         ["Digest and post" gnus-uu-digest-post-forward t]
2541         ["Resend message" gnus-summary-resend-message t]
2542         ["Resend message edit" gnus-summary-resend-message-edit t]
2543         ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2544         ["Send a mail" gnus-summary-mail-other-window t]
2545         ["Create a local message" gnus-summary-news-other-window t]
2546         ["Uuencode and post" gnus-uu-post-news
2547          ,@(if (featurep 'xemacs) '(t)
2548              '(:help "Post a uuencoded article"))]
2549         ["Followup via news" gnus-summary-followup-to-mail t]
2550         ["Followup via news and yank"
2551          gnus-summary-followup-to-mail-with-original t]
2552         ["Strip signature on reply"
2553          (lambda ()
2554            (interactive)
2555            (if (not (memq message-cite-function
2556                           '(message-cite-original-without-signature
2557                             message-cite-original)))
2558                ;; Stupid workaround for XEmacs not honoring :visible.
2559                (message "Can't toggle this value of `message-cite-function'")
2560              (setq message-cite-function
2561                    (if (eq message-cite-function
2562                            'message-cite-original-without-signature)
2563                        'message-cite-original
2564                      'message-cite-original-without-signature))))
2565          ;; XEmacs barfs on :visible.
2566          ,@(if (featurep 'xemacs) nil
2567              '(:visible (memq message-cite-function
2568                               '(message-cite-original-without-signature
2569                                 message-cite-original))))
2570          :style toggle
2571          :selected (eq message-cite-function
2572                        'message-cite-original-without-signature)
2573          ,@(if (featurep 'xemacs) nil
2574              '(:help "Strip signature from cited article when replying."))]
2575         ;;("Draft"
2576         ;;["Send" gnus-summary-send-draft t]
2577         ;;["Send bounced" gnus-resend-bounced-mail t])
2578         ))
2579
2580     (cond
2581      ((not (keymapp gnus-summary-post-menu))
2582       (setq gnus-article-post-menu gnus-summary-post-menu))
2583      ((not gnus-article-post-menu)
2584       ;; Don't share post menu.
2585       (setq gnus-article-post-menu
2586             (copy-keymap gnus-summary-post-menu))))
2587     (define-key gnus-article-mode-map [menu-bar post]
2588       (cons "Post" gnus-article-post-menu))
2589
2590     (easy-menu-define
2591       gnus-summary-misc-menu gnus-summary-mode-map ""
2592       `("Gnus"
2593         ("Mark Read"
2594          ["Mark as read" gnus-summary-mark-as-read-forward t]
2595          ["Mark same subject and select"
2596           gnus-summary-kill-same-subject-and-select t]
2597          ["Mark same subject" gnus-summary-kill-same-subject t]
2598          ["Catchup" gnus-summary-catchup
2599           ,@(if (featurep 'xemacs) '(t)
2600               '(:help "Mark unread articles in this group as read"))]
2601          ["Catchup all" gnus-summary-catchup-all t]
2602          ["Catchup to here" gnus-summary-catchup-to-here t]
2603          ["Catchup from here" gnus-summary-catchup-from-here t]
2604          ["Catchup region" gnus-summary-mark-region-as-read
2605           (gnus-mark-active-p)]
2606          ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2607         ("Mark Various"
2608          ["Tick" gnus-summary-tick-article-forward t]
2609          ["Mark as dormant" gnus-summary-mark-as-dormant t]
2610          ["Remove marks" gnus-summary-clear-mark-forward t]
2611          ["Set expirable mark" gnus-summary-mark-as-expirable t]
2612          ["Set bookmark" gnus-summary-set-bookmark t]
2613          ["Remove bookmark" gnus-summary-remove-bookmark t])
2614         ("Registry Mark"
2615          ["Important"     gnus-registry-set-article-Important-mark    t]
2616          ["Not Important" gnus-registry-remove-article-Important-mark t]
2617          ["Work"          gnus-registry-set-article-Work-mark         t]
2618          ["Not Work"      gnus-registry-remove-article-Work-mark      t]
2619          ["Later"         gnus-registry-set-article-Later-mark        t]
2620          ["Not Later"     gnus-registry-remove-article-Later-mark     t]
2621          ["Personal"      gnus-registry-set-article-Personal-mark     t]
2622          ["Not Personal"  gnus-registry-remove-article-Personal-mark  t]
2623          ["To Do"         gnus-registry-set-article-To-Do-mark        t]
2624          ["Not To Do"     gnus-registry-remove-article-To-Do-mark     t])
2625         ("Limit to"
2626          ["Marks..." gnus-summary-limit-to-marks t]
2627          ["Subject..." gnus-summary-limit-to-subject t]
2628          ["Author..." gnus-summary-limit-to-author t]
2629          ["Recipient..." gnus-summary-limit-to-recipient t]
2630          ["Address..." gnus-summary-limit-to-address t]
2631          ["Age..." gnus-summary-limit-to-age t]
2632          ["Extra..." gnus-summary-limit-to-extra t]
2633          ["Score..." gnus-summary-limit-to-score t]
2634          ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2635          ["Unread" gnus-summary-limit-to-unread t]
2636          ["Unseen" gnus-summary-limit-to-unseen t]
2637          ["Singletons" gnus-summary-limit-to-singletons t]
2638          ["Replied" gnus-summary-limit-to-replied t]
2639          ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2640          ["Next or process marked articles" gnus-summary-limit-to-articles t]
2641          ["Pop limit" gnus-summary-pop-limit t]
2642          ["Show dormant" gnus-summary-limit-include-dormant t]
2643          ["Hide childless dormant"
2644           gnus-summary-limit-exclude-childless-dormant t]
2645          ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2646          ["Hide marked" gnus-summary-limit-exclude-marks t]
2647          ["Show expunged" gnus-summary-limit-include-expunged t])
2648         ("Process Mark"
2649          ["Set mark" gnus-summary-mark-as-processable t]
2650          ["Remove mark" gnus-summary-unmark-as-processable t]
2651          ["Remove all marks" gnus-summary-unmark-all-processable t]
2652          ["Invert marks" gnus-uu-invert-processable t]
2653          ["Mark above" gnus-uu-mark-over t]
2654          ["Mark series" gnus-uu-mark-series t]
2655          ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2656          ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2657          ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2658          ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2659          ["Mark all" gnus-uu-mark-all t]
2660          ["Mark buffer" gnus-uu-mark-buffer t]
2661          ["Mark sparse" gnus-uu-mark-sparse t]
2662          ["Mark thread" gnus-uu-mark-thread t]
2663          ["Unmark thread" gnus-uu-unmark-thread t]
2664          ("Process Mark Sets"
2665           ["Kill" gnus-summary-kill-process-mark t]
2666           ["Yank" gnus-summary-yank-process-mark
2667            gnus-newsgroup-process-stack]
2668           ["Save" gnus-summary-save-process-mark t]
2669           ["Run command on marked..." gnus-summary-universal-argument t]))
2670         ("Scroll article"
2671          ["Page forward" gnus-summary-next-page
2672           ,@(if (featurep 'xemacs) '(t)
2673               '(:help "Show next page of article"))]
2674          ["Page backward" gnus-summary-prev-page
2675           ,@(if (featurep 'xemacs) '(t)
2676               '(:help "Show previous page of article"))]
2677          ["Line forward" gnus-summary-scroll-up t])
2678         ("Move"
2679          ["Next unread article" gnus-summary-next-unread-article t]
2680          ["Previous unread article" gnus-summary-prev-unread-article t]
2681          ["Next article" gnus-summary-next-article t]
2682          ["Previous article" gnus-summary-prev-article t]
2683          ["Next unread subject" gnus-summary-next-unread-subject t]
2684          ["Previous unread subject" gnus-summary-prev-unread-subject t]
2685          ["Next article same subject" gnus-summary-next-same-subject t]
2686          ["Previous article same subject" gnus-summary-prev-same-subject t]
2687          ["First unread article" gnus-summary-first-unread-article t]
2688          ["Best unread article" gnus-summary-best-unread-article t]
2689          ["Go to subject number..." gnus-summary-goto-subject t]
2690          ["Go to article number..." gnus-summary-goto-article t]
2691          ["Go to the last article" gnus-summary-goto-last-article t]
2692          ["Pop article off history" gnus-summary-pop-article t])
2693         ("Sort"
2694          ["Sort by number" gnus-summary-sort-by-number t]
2695          ["Sort by author" gnus-summary-sort-by-author t]
2696          ["Sort by recipient" gnus-summary-sort-by-recipient t]
2697          ["Sort by subject" gnus-summary-sort-by-subject t]
2698          ["Sort by date" gnus-summary-sort-by-date t]
2699          ["Sort by score" gnus-summary-sort-by-score t]
2700          ["Sort by lines" gnus-summary-sort-by-lines t]
2701          ["Sort by characters" gnus-summary-sort-by-chars t]
2702          ["Randomize" gnus-summary-sort-by-random t]
2703          ["Original sort" gnus-summary-sort-by-original t])
2704         ("Help"
2705          ["Fetch group FAQ" gnus-summary-fetch-faq t]
2706          ["Describe group" gnus-summary-describe-group t]
2707          ["Fetch charter" gnus-group-fetch-charter
2708           ,@(if (featurep 'xemacs) nil
2709               '(:help "Display the charter of the current group"))]
2710          ["Fetch control message" gnus-group-fetch-control
2711           ,@(if (featurep 'xemacs) nil
2712               '(:help "Display the archived control message for the current group"))]
2713          ["Read manual" gnus-info-find-node t])
2714         ("Modes"
2715          ["Pick and read" gnus-pick-mode t]
2716          ["Binary" gnus-binary-mode t])
2717         ("Regeneration"
2718          ["Regenerate" gnus-summary-prepare t]
2719          ["Insert cached articles" gnus-summary-insert-cached-articles t]
2720          ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2721          ["Insert ticked articles" gnus-summary-insert-ticked-articles t]
2722          ["Toggle threading" gnus-summary-toggle-threads t])
2723         ["See old articles" gnus-summary-insert-old-articles t]
2724         ["See new articles" gnus-summary-insert-new-articles t]
2725         ["Filter articles..." gnus-summary-execute-command t]
2726         ["Run command on articles..." gnus-summary-universal-argument t]
2727         ["Search articles forward..." gnus-summary-search-article-forward t]
2728         ["Search articles backward..." gnus-summary-search-article-backward t]
2729         ["Toggle line truncation" gnus-summary-toggle-truncation t]
2730         ["Expand window" gnus-summary-expand-window t]
2731         ["Expire expirable articles" gnus-summary-expire-articles
2732          (gnus-check-backend-function
2733           'request-expire-articles gnus-newsgroup-name)]
2734         ["Edit local kill file" gnus-summary-edit-local-kill t]
2735         ["Edit main kill file" gnus-summary-edit-global-kill t]
2736         ["Edit group parameters" gnus-summary-edit-parameters t]
2737         ["Customize group parameters" gnus-summary-customize-parameters t]
2738         ["Send a bug report" gnus-bug t]
2739         ("Exit"
2740          ["Catchup and exit" gnus-summary-catchup-and-exit
2741           ,@(if (featurep 'xemacs) '(t)
2742               '(:help "Mark unread articles in this group as read, then exit"))]
2743          ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2744          ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2745          ["Catchup and goto prev" gnus-summary-catchup-and-goto-prev-group t]
2746          ["Exit group" gnus-summary-exit
2747           ,@(if (featurep 'xemacs) '(t)
2748               '(:help "Exit current group, return to group selection mode"))]
2749          ["Exit group without updating" gnus-summary-exit-no-update t]
2750          ["Exit and goto next group" gnus-summary-next-group t]
2751          ["Exit and goto prev group" gnus-summary-prev-group t]
2752          ["Reselect group" gnus-summary-reselect-current-group t]
2753          ["Rescan group" gnus-summary-rescan-group t]
2754          ["Update dribble" gnus-summary-save-newsrc t])))
2755
2756     (gnus-run-hooks 'gnus-summary-menu-hook)))
2757
2758 (defvar gnus-summary-tool-bar-map nil)
2759
2760 ;; Note: The :set function in the `gnus-summary-tool-bar*' variables will only
2761 ;; affect _new_ message buffers.  We might add a function that walks thru all
2762 ;; summary-mode buffers and force the update.
2763 (defun gnus-summary-tool-bar-update (&optional symbol value)
2764   "Update summary mode toolbar.
2765 Setter function for custom variables."
2766   (setq-default gnus-summary-tool-bar-map nil)
2767   (when symbol
2768     ;; When used as ":set" function:
2769     (set-default symbol value))
2770   (when (gnus-buffer-live-p gnus-summary-buffer)
2771     (with-current-buffer gnus-summary-buffer
2772       (gnus-summary-make-tool-bar))))
2773
2774 (defcustom gnus-summary-tool-bar (if (eq gmm-tool-bar-style 'gnome)
2775                                      'gnus-summary-tool-bar-gnome
2776                                    'gnus-summary-tool-bar-retro)
2777   "Specifies the Gnus summary tool bar.
2778
2779 It can be either a list or a symbol refering to a list.  See
2780 `gmm-tool-bar-from-list' for the format of the list.  The
2781 default key map is `gnus-summary-mode-map'.
2782
2783 Pre-defined symbols include `gnus-summary-tool-bar-gnome' and
2784 `gnus-summary-tool-bar-retro'."
2785   :type '(choice (const :tag "GNOME style" gnus-summary-tool-bar-gnome)
2786                  (const :tag "Retro look"  gnus-summary-tool-bar-retro)
2787                  (repeat :tag "User defined list" gmm-tool-bar-item)
2788                  (symbol))
2789   :version "23.1" ;; No Gnus
2790   :initialize 'custom-initialize-default
2791   :set 'gnus-summary-tool-bar-update
2792   :group 'gnus-summary)
2793
2794 (defcustom gnus-summary-tool-bar-gnome
2795   '((gnus-summary-post-news "mail/compose" nil)
2796     (gnus-summary-insert-new-articles "mail/inbox" nil
2797                                       :visible (or (not gnus-agent)
2798                                                    gnus-plugged))
2799     (gnus-summary-reply-with-original "mail/reply")
2800     (gnus-summary-reply "mail/reply" nil :visible nil)
2801     (gnus-summary-followup-with-original "mail/reply-all")
2802     (gnus-summary-followup "mail/reply-all" nil :visible nil)
2803     (gnus-summary-mail-forward "mail/forward")
2804     (gnus-summary-save-article "mail/save")
2805     (gnus-summary-search-article-forward "search" nil :visible nil)
2806     (gnus-summary-print-article "print")
2807     (gnus-summary-tick-article-forward "flag-followup" nil :visible nil)
2808     ;; Some new commands that may need more suitable icons:
2809     (gnus-summary-save-newsrc "save" nil :visible nil)
2810     ;; (gnus-summary-show-article "stock_message-display" nil :visible nil)
2811     (gnus-summary-prev-article "left-arrow")
2812     (gnus-summary-next-article "right-arrow")
2813     (gnus-summary-next-page "next-page")
2814     ;; (gnus-summary-enter-digest-group "right_arrow" nil :visible nil)
2815     ;;
2816     ;; Maybe some sort-by-... could be added:
2817     ;; (gnus-summary-sort-by-author "sort-a-z" nil :visible nil)
2818     ;; (gnus-summary-sort-by-date "sort-1-9" nil :visible nil)
2819     (gnus-summary-mark-as-expirable
2820      "delete" nil
2821      :visible (gnus-check-backend-function 'request-expire-articles
2822                                            gnus-newsgroup-name))
2823     (gnus-summary-mark-as-spam
2824      "mail/spam" t
2825      :visible (and (fboundp 'spam-group-ham-contents-p)
2826                    (spam-group-ham-contents-p gnus-newsgroup-name))
2827      :help "Mark as spam")
2828     (gnus-summary-mark-as-read-forward
2829      "mail/not-spam" nil
2830      :visible (and (fboundp 'spam-group-spam-contents-p)
2831                    (spam-group-spam-contents-p gnus-newsgroup-name)))
2832     ;;
2833     (gnus-summary-exit "exit")
2834     (gmm-customize-mode "preferences" t :help "Edit mode preferences")
2835     (gnus-info-find-node "help"))
2836   "List of functions for the summary tool bar (GNOME style).
2837
2838 See `gmm-tool-bar-from-list' for the format of the list."
2839   :type '(repeat gmm-tool-bar-item)
2840   :version "23.1" ;; No Gnus
2841   :initialize 'custom-initialize-default
2842   :set 'gnus-summary-tool-bar-update
2843   :group 'gnus-summary)
2844
2845 (defcustom gnus-summary-tool-bar-retro
2846   '((gnus-summary-prev-unread-article "gnus/prev-ur")
2847     (gnus-summary-next-unread-article "gnus/next-ur")
2848     (gnus-summary-post-news "gnus/post")
2849     (gnus-summary-followup-with-original "gnus/fuwo")
2850     (gnus-summary-followup "gnus/followup")
2851     (gnus-summary-reply-with-original "gnus/reply-wo")
2852     (gnus-summary-reply "gnus/reply")
2853     (gnus-summary-caesar-message "gnus/rot13")
2854     (gnus-uu-decode-uu "gnus/uu-decode")
2855     (gnus-summary-save-article-file "gnus/save-aif")
2856     (gnus-summary-save-article "gnus/save-art")
2857     (gnus-uu-post-news "gnus/uu-post")
2858     (gnus-summary-catchup "gnus/catchup")
2859     (gnus-summary-catchup-and-exit "gnus/cu-exit")
2860     (gnus-summary-exit "gnus/exit-summ")
2861     ;; Some new command that may need more suitable icons:
2862     (gnus-summary-print-article "gnus/print" nil :visible nil)
2863     (gnus-summary-mark-as-expirable "gnus/close" nil :visible nil)
2864     (gnus-summary-save-newsrc "gnus/save" nil :visible nil)
2865     ;; (gnus-summary-enter-digest-group "gnus/right_arrow" nil :visible nil)
2866     (gnus-summary-search-article-forward "gnus/search" nil :visible nil)
2867     ;; (gnus-summary-insert-new-articles "gnus/paste" nil :visible nil)
2868     ;; (gnus-summary-toggle-threads "gnus/open" nil :visible nil)
2869     ;;
2870     (gnus-info-find-node "gnus/help" nil :visible nil))
2871   "List of functions for the summary tool bar (retro look).
2872
2873 See `gmm-tool-bar-from-list' for the format of the list."
2874   :type '(repeat gmm-tool-bar-item)
2875   :version "23.1" ;; No Gnus
2876   :initialize 'custom-initialize-default
2877   :set 'gnus-summary-tool-bar-update
2878   :group 'gnus-summary)
2879
2880 (defcustom gnus-summary-tool-bar-zap-list t
2881   "List of icon items from the global tool bar.
2882 These items are not displayed in the Gnus summary mode tool bar.
2883
2884 See `gmm-tool-bar-from-list' for the format of the list."
2885   :type 'gmm-tool-bar-zap-list
2886   :version "23.1" ;; No Gnus
2887   :initialize 'custom-initialize-default
2888   :set 'gnus-summary-tool-bar-update
2889   :group 'gnus-summary)
2890
2891 (defvar image-load-path)
2892
2893 (defun gnus-summary-make-tool-bar (&optional force)
2894   "Make a summary mode tool bar from `gnus-summary-tool-bar'.
2895 When FORCE, rebuild the tool bar."
2896   (when (and (not (featurep 'xemacs))
2897              (boundp 'tool-bar-mode)
2898              tool-bar-mode
2899              (or (not gnus-summary-tool-bar-map) force))
2900     (let* ((load-path
2901             (gmm-image-load-path-for-library "gnus"
2902                                              "mail/save.xpm"
2903                                              nil t))
2904            (image-load-path (cons (car load-path)
2905                                   (when (boundp 'image-load-path)
2906                                     image-load-path)))
2907            (map (gmm-tool-bar-from-list gnus-summary-tool-bar
2908                                         gnus-summary-tool-bar-zap-list
2909                                         'gnus-summary-mode-map)))
2910       (when map
2911         ;; Need to set `gnus-summary-tool-bar-map' because `gnus-article-mode'
2912         ;; uses it's value.
2913         (setq gnus-summary-tool-bar-map map))))
2914   (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map))
2915
2916 (defun gnus-score-set-default (var value)
2917   "A version of set that updates the GNU Emacs menu-bar."
2918   (set var value)
2919   ;; It is the message that forces the active status to be updated.
2920   (message ""))
2921
2922 (defun gnus-make-score-map (type)
2923   "Make a summary score map of type TYPE."
2924   (if t
2925       nil
2926     (let ((headers '(("author" "from" string)
2927                      ("subject" "subject" string)
2928                      ("article body" "body" string)
2929                      ("article head" "head" string)
2930                      ("xref" "xref" string)
2931                      ("extra header" "extra" string)
2932                      ("lines" "lines" number)
2933                      ("followups to author" "followup" string)))
2934           (types '((number ("less than" <)
2935                            ("greater than" >)
2936                            ("equal" =))
2937                    (string ("substring" s)
2938                            ("exact string" e)
2939                            ("fuzzy string" f)
2940                            ("regexp" r))))
2941           (perms '(("temporary" (current-time-string))
2942                    ("permanent" nil)
2943                    ("immediate" now)))
2944           header)
2945       (list
2946        (apply
2947         'nconc
2948         (list
2949          (if (eq type 'lower)
2950              "Lower score"
2951            "Increase score"))
2952         (let (outh)
2953           (while headers
2954             (setq header (car headers))
2955             (setq outh
2956                   (cons
2957                    (apply
2958                     'nconc
2959                     (list (car header))
2960                     (let ((ts (cdr (assoc (nth 2 header) types)))
2961                           outt)
2962                       (while ts
2963                         (setq outt
2964                               (cons
2965                                (apply
2966                                 'nconc
2967                                 (list (caar ts))
2968                                 (let ((ps perms)
2969                                       outp)
2970                                   (while ps
2971                                     (setq outp
2972                                           (cons
2973                                            (vector
2974                                             (caar ps)
2975                                             (list
2976                                              'gnus-summary-score-entry
2977                                              (nth 1 header)
2978                                              (if (or (string= (nth 1 header)
2979                                                               "head")
2980                                                      (string= (nth 1 header)
2981                                                               "body"))
2982                                                  ""
2983                                                (list 'gnus-summary-header
2984                                                      (nth 1 header)))
2985                                              (list 'quote (nth 1 (car ts)))
2986                                              (list 'gnus-score-delta-default
2987                                                    nil)
2988                                              (nth 1 (car ps))
2989                                              t)
2990                                             t)
2991                                            outp))
2992                                     (setq ps (cdr ps)))
2993                                   (list (nreverse outp))))
2994                                outt))
2995                         (setq ts (cdr ts)))
2996                       (list (nreverse outt))))
2997                    outh))
2998             (setq headers (cdr headers)))
2999           (list (nreverse outh))))))))
3000
3001
3002 (declare-function turn-on-gnus-mailing-list-mode "gnus-ml" ())
3003
3004 \f
3005
3006 (defun gnus-summary-mode (&optional group)
3007   "Major mode for reading articles.
3008
3009 All normal editing commands are switched off.
3010 \\<gnus-summary-mode-map>
3011 Each line in this buffer represents one article.  To read an
3012 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
3013 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
3014 respectively.
3015
3016 You can also post articles and send mail from this buffer.  To
3017 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
3018 of an article, type `\\[gnus-summary-reply]'.
3019
3020 There are approx. one gazillion commands you can execute in this
3021 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
3022
3023 The following commands are available:
3024
3025 \\{gnus-summary-mode-map}"
3026   (interactive)
3027   (kill-all-local-variables)
3028   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
3029     (gnus-summary-make-local-variables))
3030   (gnus-summary-make-local-variables)
3031   (setq gnus-newsgroup-name group)
3032   (when (gnus-visual-p 'summary-menu 'menu)
3033     (gnus-summary-make-menu-bar)
3034     (gnus-summary-make-tool-bar))
3035   (gnus-make-thread-indent-array)
3036   (gnus-simplify-mode-line)
3037   (setq major-mode 'gnus-summary-mode)
3038   (setq mode-name "Summary")
3039   (make-local-variable 'minor-mode-alist)
3040   (use-local-map gnus-summary-mode-map)
3041   (buffer-disable-undo)
3042   (setq buffer-read-only t              ;Disable modification
3043         show-trailing-whitespace nil)
3044   (setq truncate-lines t)
3045   (setq selective-display t)
3046   (setq selective-display-ellipses t)   ;Display `...'
3047   (gnus-summary-set-display-table)
3048   (gnus-set-default-directory)
3049   (make-local-variable 'gnus-summary-line-format)
3050   (make-local-variable 'gnus-summary-line-format-spec)
3051   (make-local-variable 'gnus-summary-dummy-line-format)
3052   (make-local-variable 'gnus-summary-dummy-line-format-spec)
3053   (make-local-variable 'gnus-summary-mark-positions)
3054   (gnus-make-local-hook 'pre-command-hook)
3055   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
3056   (gnus-run-mode-hooks 'gnus-summary-mode-hook)
3057   (turn-on-gnus-mailing-list-mode)
3058   (mm-enable-multibyte)
3059   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
3060   (gnus-update-summary-mark-positions))
3061
3062 (defun gnus-summary-make-local-variables ()
3063   "Make all the local summary buffer variables."
3064   (let (global)
3065     (dolist (local gnus-summary-local-variables)
3066       (if (consp local)
3067           (progn
3068             (if (eq (cdr local) 'global)
3069                 ;; Copy the global value of the variable.
3070                 (setq global (symbol-value (car local)))
3071               ;; Use the value from the list.
3072               (setq global (eval (cdr local))))
3073             (set (make-local-variable (car local)) global))
3074         ;; Simple nil-valued local variable.
3075         (set (make-local-variable local) nil)))))
3076
3077 (defun gnus-summary-clear-local-variables ()
3078   (let ((locals gnus-summary-local-variables))
3079     (while locals
3080       (if (consp (car locals))
3081           (and (symbolp (caar locals))
3082                (set (caar locals) nil))
3083         (and (symbolp (car locals))
3084              (set (car locals) nil)))
3085       (setq locals (cdr locals)))))
3086
3087 ;; Summary data functions.
3088
3089 (defmacro gnus-data-number (data)
3090   `(car ,data))
3091
3092 (defmacro gnus-data-set-number (data number)
3093   `(setcar ,data ,number))
3094
3095 (defmacro gnus-data-mark (data)
3096   `(nth 1 ,data))
3097
3098 (defmacro gnus-data-set-mark (data mark)
3099   `(setcar (nthcdr 1 ,data) ,mark))
3100
3101 (defmacro gnus-data-pos (data)
3102   `(nth 2 ,data))
3103
3104 (defmacro gnus-data-set-pos (data pos)
3105   `(setcar (nthcdr 2 ,data) ,pos))
3106
3107 (defmacro gnus-data-header (data)
3108   `(nth 3 ,data))
3109
3110 (defmacro gnus-data-set-header (data header)
3111   `(setf (nth 3 ,data) ,header))
3112
3113 (defmacro gnus-data-level (data)
3114   `(nth 4 ,data))
3115
3116 (defmacro gnus-data-unread-p (data)
3117   `(= (nth 1 ,data) gnus-unread-mark))
3118
3119 (defmacro gnus-data-read-p (data)
3120   `(/= (nth 1 ,data) gnus-unread-mark))
3121
3122 (defmacro gnus-data-pseudo-p (data)
3123   `(consp (nth 3 ,data)))
3124
3125 (defmacro gnus-data-find (number)
3126   `(assq ,number gnus-newsgroup-data))
3127
3128 (defmacro gnus-data-find-list (number &optional data)
3129   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
3130      (memq (assq ,number bdata)
3131            bdata)))
3132
3133 (defmacro gnus-data-make (number mark pos header level)
3134   `(list ,number ,mark ,pos ,header ,level))
3135
3136 (defun gnus-data-enter (after-article number mark pos header level offset)
3137   (let ((data (gnus-data-find-list after-article)))
3138     (unless data
3139       (error "No such article: %d" after-article))
3140     (setcdr data (cons (gnus-data-make number mark pos header level)
3141                        (cdr data)))
3142     (setq gnus-newsgroup-data-reverse nil)
3143     (gnus-data-update-list (cddr data) offset)))
3144
3145 (defun gnus-data-enter-list (after-article list &optional offset)
3146   (when list
3147     (let ((data (and after-article (gnus-data-find-list after-article)))
3148           (ilist list))
3149       (if (not (or data
3150                    after-article))
3151           (let ((odata gnus-newsgroup-data))
3152             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
3153             (when offset
3154               (gnus-data-update-list odata offset)))
3155         ;; Find the last element in the list to be spliced into the main
3156         ;; list.
3157         (setq list (last list))
3158         (if (not data)
3159             (progn
3160               (setcdr list gnus-newsgroup-data)
3161               (setq gnus-newsgroup-data ilist)
3162               (when offset
3163                 (gnus-data-update-list (cdr list) offset)))
3164           (setcdr list (cdr data))
3165           (setcdr data ilist)
3166           (when offset
3167             (gnus-data-update-list (cdr list) offset))))
3168       (setq gnus-newsgroup-data-reverse nil))))
3169
3170 (defun gnus-data-remove (article &optional offset)
3171   (let ((data gnus-newsgroup-data))
3172     (if (= (gnus-data-number (car data)) article)
3173         (progn
3174           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
3175                 gnus-newsgroup-data-reverse nil)
3176           (when offset
3177             (gnus-data-update-list gnus-newsgroup-data offset)))
3178       (while (cdr data)
3179         (when (= (gnus-data-number (cadr data)) article)
3180           (setcdr data (cddr data))
3181           (when offset
3182             (gnus-data-update-list (cdr data) offset))
3183           (setq data nil
3184                 gnus-newsgroup-data-reverse nil))
3185         (setq data (cdr data))))))
3186
3187 (defmacro gnus-data-list (backward)
3188   `(if ,backward
3189        (or gnus-newsgroup-data-reverse
3190            (setq gnus-newsgroup-data-reverse
3191                  (reverse gnus-newsgroup-data)))
3192      gnus-newsgroup-data))
3193
3194 (defun gnus-data-update-list (data offset)
3195   "Add OFFSET to the POS of all data entries in DATA."
3196   (setq gnus-newsgroup-data-reverse nil)
3197   (while data
3198     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
3199     (setq data (cdr data))))
3200
3201 (defun gnus-summary-article-pseudo-p (article)
3202   "Say whether this article is a pseudo article or not."
3203   (not (vectorp (gnus-data-header (gnus-data-find article)))))
3204
3205 (defmacro gnus-summary-article-sparse-p (article)
3206   "Say whether this article is a sparse article or not."
3207   `(memq ,article gnus-newsgroup-sparse))
3208
3209 (defmacro gnus-summary-article-ancient-p (article)
3210   "Say whether this article is a sparse article or not."
3211   `(memq ,article gnus-newsgroup-ancient))
3212
3213 (defun gnus-article-parent-p (number)
3214   "Say whether this article is a parent or not."
3215   (let ((data (gnus-data-find-list number)))
3216     (and (cdr data)              ; There has to be an article after...
3217          (< (gnus-data-level (car data)) ; And it has to have a higher level.
3218             (gnus-data-level (nth 1 data))))))
3219
3220 (defun gnus-article-children (number)
3221   "Return a list of all children to NUMBER."
3222   (let* ((data (gnus-data-find-list number))
3223          (level (gnus-data-level (car data)))
3224          children)
3225     (setq data (cdr data))
3226     (while (and data
3227                 (= (gnus-data-level (car data)) (1+ level)))
3228       (push (gnus-data-number (car data)) children)
3229       (setq data (cdr data)))
3230     children))
3231
3232 (defmacro gnus-summary-skip-intangible ()
3233   "If the current article is intangible, then jump to a different article."
3234   '(let ((to (get-text-property (point) 'gnus-intangible)))
3235      (and to (gnus-summary-goto-subject to))))
3236
3237 (defmacro gnus-summary-article-intangible-p ()
3238   "Say whether this article is intangible or not."
3239   '(get-text-property (point) 'gnus-intangible))
3240
3241 (defun gnus-article-read-p (article)
3242   "Say whether ARTICLE is read or not."
3243   (not (or (memq article gnus-newsgroup-marked)
3244            (memq article gnus-newsgroup-spam-marked)
3245            (memq article gnus-newsgroup-unreads)
3246            (memq article gnus-newsgroup-unselected)
3247            (memq article gnus-newsgroup-dormant))))
3248
3249 ;; Some summary mode macros.
3250
3251 (defmacro gnus-summary-article-number ()
3252   "The article number of the article on the current line.
3253 If there isn't an article number here, then we return the current
3254 article number."
3255   '(progn
3256      (gnus-summary-skip-intangible)
3257      (or (get-text-property (point) 'gnus-number)
3258          (gnus-summary-last-subject))))
3259
3260 (defmacro gnus-summary-article-header (&optional number)
3261   "Return the header of article NUMBER."
3262   `(gnus-data-header (gnus-data-find
3263                       ,(or number '(gnus-summary-article-number)))))
3264
3265 (defmacro gnus-summary-thread-level (&optional number)
3266   "Return the level of thread that starts with article NUMBER."
3267   `(if (and (eq gnus-summary-make-false-root 'dummy)
3268             (get-text-property (point) 'gnus-intangible))
3269        0
3270      (gnus-data-level (gnus-data-find
3271                        ,(or number '(gnus-summary-article-number))))))
3272
3273 (defmacro gnus-summary-article-mark (&optional number)
3274   "Return the mark of article NUMBER."
3275   `(gnus-data-mark (gnus-data-find
3276                     ,(or number '(gnus-summary-article-number)))))
3277
3278 (defmacro gnus-summary-article-pos (&optional number)
3279   "Return the position of the line of article NUMBER."
3280   `(gnus-data-pos (gnus-data-find
3281                    ,(or number '(gnus-summary-article-number)))))
3282
3283 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
3284 (defmacro gnus-summary-article-subject (&optional number)
3285   "Return current subject string or nil if nothing."
3286   `(let ((headers
3287           ,(if number
3288                `(gnus-data-header (assq ,number gnus-newsgroup-data))
3289              '(gnus-data-header (assq (gnus-summary-article-number)
3290                                       gnus-newsgroup-data)))))
3291      (and headers
3292           (vectorp headers)
3293           (mail-header-subject headers))))
3294
3295 (defmacro gnus-summary-article-score (&optional number)
3296   "Return current article score."
3297   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
3298                   gnus-newsgroup-scored))
3299        gnus-summary-default-score 0))
3300
3301 (defun gnus-summary-article-children (&optional number)
3302   "Return a list of article numbers that are children of article NUMBER."
3303   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
3304          (level (gnus-data-level (car data)))
3305          l children)
3306     (while (and (setq data (cdr data))
3307                 (> (setq l (gnus-data-level (car data))) level))
3308       (and (= (1+ level) l)
3309            (push (gnus-data-number (car data))
3310                  children)))
3311     (nreverse children)))
3312
3313 (defun gnus-summary-article-parent (&optional number)
3314   "Return the article number of the parent of article NUMBER."
3315   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
3316                                     (gnus-data-list t)))
3317          (level (gnus-data-level (car data))))
3318     (if (zerop level)
3319         ()                              ; This is a root.
3320       ;; We search until we find an article with a level less than
3321       ;; this one.  That function has to be the parent.
3322       (while (and (setq data (cdr data))
3323                   (not (< (gnus-data-level (car data)) level))))
3324       (and data (gnus-data-number (car data))))))
3325
3326 (defun gnus-unread-mark-p (mark)
3327   "Say whether MARK is the unread mark."
3328   (= mark gnus-unread-mark))
3329
3330 (defun gnus-read-mark-p (mark)
3331   "Say whether MARK is one of the marks that mark as read.
3332 This is all marks except unread, ticked, dormant, and expirable."
3333   (not (or (= mark gnus-unread-mark)
3334            (= mark gnus-ticked-mark)
3335            (= mark gnus-spam-mark)
3336            (= mark gnus-dormant-mark)
3337            (= mark gnus-expirable-mark))))
3338
3339 (defmacro gnus-article-mark (number)
3340   "Return the MARK of article NUMBER.
3341 This macro should only be used when computing the mark the \"first\"
3342 time; i.e., when generating the summary lines.  After that,
3343 `gnus-summary-article-mark' should be used to examine the
3344 marks of articles."
3345   `(cond
3346     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
3347     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
3348     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
3349     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
3350     ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
3351     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
3352     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
3353     (t (or (cdr (assq ,number gnus-newsgroup-reads))
3354            gnus-ancient-mark))))
3355
3356 ;; Saving hidden threads.
3357
3358 (defmacro gnus-save-hidden-threads (&rest forms)
3359   "Save hidden threads, eval FORMS, and restore the hidden threads."
3360   (let ((config (make-symbol "config")))
3361     `(let ((,config (gnus-hidden-threads-configuration)))
3362        (unwind-protect
3363            (save-excursion
3364              ,@forms)
3365          (gnus-restore-hidden-threads-configuration ,config)))))
3366 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3367 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3368
3369 (defun gnus-data-compute-positions ()
3370   "Compute the positions of all articles."
3371   (setq gnus-newsgroup-data-reverse nil)
3372   (let ((data gnus-newsgroup-data))
3373     (save-excursion
3374       (gnus-save-hidden-threads
3375         (gnus-summary-show-all-threads)
3376         (goto-char (point-min))
3377         (while data
3378           (while (get-text-property (point) 'gnus-intangible)
3379             (forward-line 1))
3380           (gnus-data-set-pos (car data) (+ (point) 3))
3381           (setq data (cdr data))
3382           (forward-line 1))))))
3383
3384 (defun gnus-hidden-threads-configuration ()
3385   "Return the current hidden threads configuration."
3386   (save-excursion
3387     (let (config)
3388       (goto-char (point-min))
3389       (while (search-forward "\r" nil t)
3390         (push (1- (point)) config))
3391       config)))
3392
3393 (defun gnus-restore-hidden-threads-configuration (config)
3394   "Restore hidden threads configuration from CONFIG."
3395   (save-excursion
3396     (let (point (inhibit-read-only t))
3397       (while (setq point (pop config))
3398         (when (and (< point (point-max))
3399                    (goto-char point)
3400                    (eq (char-after) ?\n))
3401           (subst-char-in-region point (1+ point) ?\n ?\r))))))
3402
3403 ;; Various summary mode internalish functions.
3404
3405 (defun gnus-mouse-pick-article (e)
3406   (interactive "e")
3407   (mouse-set-point e)
3408   (gnus-summary-next-page nil t))
3409
3410 (defun gnus-summary-set-display-table ()
3411   "Change the display table.
3412 Odd characters have a tendency to mess
3413 up nicely formatted displays - we make all possible glyphs
3414 display only a single character."
3415
3416   ;; We start from the standard display table, if any.
3417   (let ((table (or (copy-sequence standard-display-table)
3418                    (make-display-table)))
3419         (i 32))
3420     ;; Nix out all the control chars...
3421     (while (>= (setq i (1- i)) 0)
3422       (aset table i [??]))
3423    ;; ... but not newline and cr, of course.  (cr is necessary for the
3424     ;; selective display).
3425     (aset table ?\n nil)
3426     (aset table ?\r nil)
3427     ;; We keep TAB as well.
3428     (aset table ?\t nil)
3429     ;; We nix out any glyphs 127 through 255, or 127 through 159 in
3430     ;; Emacs 23 (unicode), that are not set already.
3431     (let ((i (if (ignore-errors (= (make-char 'latin-iso8859-1 160) 160))
3432                  160
3433                256)))
3434       (while (>= (setq i (1- i)) 127)
3435         ;; Only modify if the entry is nil.
3436         (unless (aref table i)
3437           (aset table i [??]))))
3438     (setq buffer-display-table table)))
3439
3440 (defun gnus-summary-set-article-display-arrow (pos)
3441   "Update the overlay arrow to point to line at position POS."
3442   (when (and gnus-summary-display-arrow
3443              (boundp 'overlay-arrow-position)
3444              (boundp 'overlay-arrow-string))
3445     (save-excursion
3446       (goto-char pos)
3447       (beginning-of-line)
3448       (unless overlay-arrow-position
3449         (setq overlay-arrow-position (make-marker)))
3450       (setq overlay-arrow-string "=>"
3451             overlay-arrow-position (set-marker overlay-arrow-position
3452                                                (point)
3453                                                (current-buffer))))))
3454
3455 (defun gnus-summary-setup-buffer (group)
3456   "Initialize summary buffer."
3457   (let ((buffer (gnus-summary-buffer-name group))
3458         (dead-name (concat "*Dead Summary "
3459                            (gnus-group-decoded-name group) "*")))
3460     ;; If a dead summary buffer exists, we kill it.
3461     (when (gnus-buffer-live-p dead-name)
3462       (gnus-kill-buffer dead-name))
3463     (if (get-buffer buffer)
3464         (progn
3465           (set-buffer buffer)
3466           (setq gnus-summary-buffer (current-buffer))
3467           (not gnus-newsgroup-prepared))
3468       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3469       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3470       (gnus-summary-mode group)
3471       (when gnus-carpal
3472         (gnus-carpal-setup-buffer 'summary))
3473       (when (gnus-group-quit-config group)
3474         (set (make-local-variable 'gnus-single-article-buffer) nil))
3475       (make-local-variable 'gnus-article-buffer)
3476       (make-local-variable 'gnus-article-current)
3477       (make-local-variable 'gnus-original-article-buffer)
3478       (setq gnus-newsgroup-name group)
3479       ;; Set any local variables in the group parameters.
3480       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3481       t)))
3482
3483 (defun gnus-set-global-variables ()
3484   "Set the global equivalents of the buffer-local variables.
3485 They are set to the latest values they had.  These reflect the summary
3486 buffer that was in action when the last article was fetched."
3487   (when (eq major-mode 'gnus-summary-mode)
3488     (setq gnus-summary-buffer (current-buffer))
3489     (let ((name gnus-newsgroup-name)
3490           (marked gnus-newsgroup-marked)
3491           (spam gnus-newsgroup-spam-marked)
3492           (unread gnus-newsgroup-unreads)
3493           (headers gnus-current-headers)
3494           (data gnus-newsgroup-data)
3495           (summary gnus-summary-buffer)
3496           (article-buffer gnus-article-buffer)
3497           (original gnus-original-article-buffer)
3498           (gac gnus-article-current)
3499           (reffed gnus-reffed-article-number)
3500           (score-file gnus-current-score-file)
3501           (default-charset gnus-newsgroup-charset)
3502           vlist)
3503       (let ((locals gnus-newsgroup-variables))
3504         (while locals
3505           (if (consp (car locals))
3506               (push (eval (caar locals)) vlist)
3507             (push (eval (car locals)) vlist))
3508           (setq locals (cdr locals)))
3509         (setq vlist (nreverse vlist)))
3510       (with-current-buffer gnus-group-buffer
3511         (setq gnus-newsgroup-name name
3512               gnus-newsgroup-marked marked
3513               gnus-newsgroup-spam-marked spam
3514               gnus-newsgroup-unreads unread
3515               gnus-current-headers headers
3516               gnus-newsgroup-data data
3517               gnus-article-current gac
3518               gnus-summary-buffer summary
3519               gnus-article-buffer article-buffer
3520               gnus-original-article-buffer original
3521               gnus-reffed-article-number reffed
3522               gnus-current-score-file score-file
3523               gnus-newsgroup-charset default-charset)
3524         (let ((locals gnus-newsgroup-variables))
3525           (while locals
3526             (if (consp (car locals))
3527                 (set (caar locals) (pop vlist))
3528               (set (car locals) (pop vlist)))
3529             (setq locals (cdr locals))))
3530         ;; The article buffer also has local variables.
3531         (when (gnus-buffer-live-p gnus-article-buffer)
3532           (set-buffer gnus-article-buffer)
3533           (setq gnus-summary-buffer summary))))))
3534
3535 (defun gnus-summary-article-unread-p (article)
3536   "Say whether ARTICLE is unread or not."
3537   (memq article gnus-newsgroup-unreads))
3538
3539 (defun gnus-summary-first-article-p (&optional article)
3540   "Return whether ARTICLE is the first article in the buffer."
3541   (if (not (setq article (or article (gnus-summary-article-number))))
3542       nil
3543     (eq article (caar gnus-newsgroup-data))))
3544
3545 (defun gnus-summary-last-article-p (&optional article)
3546   "Return whether ARTICLE is the last article in the buffer."
3547   (if (not (setq article (or article (gnus-summary-article-number))))
3548       ;; All non-existent numbers are the last article.  :-)
3549       t
3550     (not (cdr (gnus-data-find-list article)))))
3551
3552 (defun gnus-make-thread-indent-array (&optional n)
3553   (when (or n
3554             (progn (setq n 200) nil)
3555             (null gnus-thread-indent-array)
3556             (/= gnus-thread-indent-level gnus-thread-indent-array-level))
3557     (setq gnus-thread-indent-array (make-vector (1+ n) "")
3558           gnus-thread-indent-array-level gnus-thread-indent-level)
3559     (while (>= n 0)
3560       (aset gnus-thread-indent-array n
3561             (make-string (* n gnus-thread-indent-level) ? ))
3562       (setq n (1- n)))))
3563
3564 (defun gnus-update-summary-mark-positions ()
3565   "Compute where the summary marks are to go."
3566   (save-excursion
3567     (when (gnus-buffer-exists-p gnus-summary-buffer)
3568       (set-buffer gnus-summary-buffer))
3569     (let ((spec gnus-summary-line-format-spec)
3570           pos)
3571       (save-excursion
3572         (gnus-set-work-buffer)
3573         (let ((gnus-tmp-unread ?Z)
3574               (gnus-replied-mark ?Z)
3575               (gnus-score-below-mark ?Z)
3576               (gnus-score-over-mark ?Z)
3577               (gnus-undownloaded-mark ?Z)
3578               (gnus-summary-line-format-spec spec)
3579               (gnus-newsgroup-downloadable '(0))
3580               (header [0 "" "" "05 Apr 2001 23:33:09 +0400" "" "" 0 0 "" nil])
3581               case-fold-search ignores)
3582           ;; Here, all marks are bound to Z.
3583           (gnus-summary-insert-line header
3584                                     0 nil t gnus-tmp-unread t nil "" nil 1)
3585           (goto-char (point-min))
3586           ;; Memorize the positions of the same characters as dummy marks.
3587           (while (re-search-forward "[A-D]" nil t)
3588             (push (point) ignores))
3589           (erase-buffer)
3590           ;; We use A-D as dummy marks in order to know column positions
3591           ;; where marks should be inserted.
3592           (setq gnus-tmp-unread ?A
3593                 gnus-replied-mark ?B
3594                 gnus-score-below-mark ?C
3595                 gnus-score-over-mark ?C
3596                 gnus-undownloaded-mark ?D)
3597           (gnus-summary-insert-line header
3598                                     0 nil t gnus-tmp-unread t nil "" nil 1)
3599           ;; Ignore characters which aren't dummy marks.
3600           (dolist (p ignores)
3601             (delete-region (goto-char (1- p)) p)
3602             (insert ?Z))
3603           (goto-char (point-min))
3604           (setq pos (list (cons 'unread
3605                                 (and (search-forward "A" nil t)
3606                                      (- (point) (point-min) 1)))))
3607           (goto-char (point-min))
3608           (push (cons 'replied (and (search-forward "B" nil t)
3609                                     (- (point) (point-min) 1)))
3610                 pos)
3611           (goto-char (point-min))
3612           (push (cons 'score (and (search-forward "C" nil t)
3613                                   (- (point) (point-min) 1)))
3614                 pos)
3615           (goto-char (point-min))
3616           (push (cons 'download (and (search-forward "D" nil t)
3617                                      (- (point) (point-min) 1)))
3618                 pos)))
3619       (setq gnus-summary-mark-positions pos))))
3620
3621 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3622   "Insert a dummy root in the summary buffer."
3623   (beginning-of-line)
3624   (gnus-add-text-properties
3625    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3626    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3627
3628 (defun gnus-summary-extract-address-component (from)
3629   (or (car (funcall gnus-extract-address-components from))
3630       from))
3631
3632 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3633   (let ((mail-parse-charset gnus-newsgroup-charset)
3634         (ignored-from-addresses (gnus-ignored-from-addresses))
3635         ; Is it really necessary to do this next part for each summary line?
3636         ; Luckily, doesn't seem to slow things down much.
3637         (mail-parse-ignored-charsets
3638          (with-current-buffer gnus-summary-buffer
3639            gnus-newsgroup-ignored-charsets)))
3640     (or
3641      (and ignored-from-addresses
3642           (string-match ignored-from-addresses gnus-tmp-from)
3643           (let ((extra-headers (mail-header-extra header))
3644                 to
3645                 newsgroups)
3646             (cond
3647              ((setq to (cdr (assq 'To extra-headers)))
3648               (concat gnus-summary-to-prefix
3649                       (inline
3650                         (gnus-summary-extract-address-component
3651                          (funcall gnus-decode-encoded-address-function to)))))
3652              ((setq newsgroups
3653                     (or
3654                      (cdr (assq 'Newsgroups extra-headers))
3655                      (and
3656                       (memq 'Newsgroups gnus-extra-headers)
3657                       (eq (car (gnus-find-method-for-group
3658                                 gnus-newsgroup-name)) 'nntp)
3659                       (gnus-group-real-name gnus-newsgroup-name))))
3660               (concat gnus-summary-newsgroup-prefix newsgroups)))))
3661      (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3662
3663 (defun gnus-summary-insert-line (gnus-tmp-header
3664                                  gnus-tmp-level gnus-tmp-current
3665                                  undownloaded gnus-tmp-unread gnus-tmp-replied
3666                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
3667                                  &optional gnus-tmp-dummy gnus-tmp-score
3668                                  gnus-tmp-process)
3669   (if (>= gnus-tmp-level (length gnus-thread-indent-array))
3670       (gnus-make-thread-indent-array (max (* 2 (length gnus-thread-indent-array))
3671                                           gnus-tmp-level)))
3672   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3673          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3674          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3675          (gnus-tmp-score-char
3676           (if (or (null gnus-summary-default-score)
3677                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3678                       gnus-summary-zcore-fuzz))
3679               ?                         ;Whitespace
3680             (if (< gnus-tmp-score gnus-summary-default-score)
3681                 gnus-score-below-mark gnus-score-over-mark)))
3682          (gnus-tmp-number (mail-header-number gnus-tmp-header))
3683          (gnus-tmp-replied
3684           (cond (gnus-tmp-process gnus-process-mark)
3685                 ((memq gnus-tmp-current gnus-newsgroup-cached)
3686                  gnus-cached-mark)
3687                 (gnus-tmp-replied gnus-replied-mark)
3688                 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3689                  gnus-forwarded-mark)
3690                 ((memq gnus-tmp-current gnus-newsgroup-saved)
3691                  gnus-saved-mark)
3692                 ((memq gnus-tmp-number gnus-newsgroup-recent)
3693                  gnus-recent-mark)
3694                 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3695                  gnus-unseen-mark)
3696                 (t gnus-no-mark)))
3697          (gnus-tmp-downloaded
3698           (cond (undownloaded
3699                  gnus-undownloaded-mark)
3700                 (gnus-newsgroup-agentized
3701                  gnus-downloaded-mark)
3702                 (t
3703                  gnus-no-mark)))
3704          (gnus-tmp-from (mail-header-from gnus-tmp-header))
3705          (gnus-tmp-name
3706           (cond
3707            ((string-match "<[^>]+> *$" gnus-tmp-from)
3708             (let ((beg (match-beginning 0)))
3709               (or (and (string-match "^\".+\"" gnus-tmp-from)
3710                        (substring gnus-tmp-from 1 (1- (match-end 0))))
3711                   (substring gnus-tmp-from 0 beg))))
3712            ((string-match "(.+)" gnus-tmp-from)
3713             (substring gnus-tmp-from
3714                        (1+ (match-beginning 0)) (1- (match-end 0))))
3715            (t gnus-tmp-from)))
3716          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3717          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3718          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3719          (inhibit-read-only t))
3720     (when (string= gnus-tmp-name "")
3721       (setq gnus-tmp-name gnus-tmp-from))
3722     (unless (numberp gnus-tmp-lines)
3723       (setq gnus-tmp-lines -1))
3724     (if (= gnus-tmp-lines -1)
3725         (setq gnus-tmp-lines "?")
3726       (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3727       (gnus-put-text-property
3728      (point)
3729      (progn (eval gnus-summary-line-format-spec) (point))
3730        'gnus-number gnus-tmp-number)
3731     (when (gnus-visual-p 'summary-highlight 'highlight)
3732       (forward-line -1)
3733       (gnus-run-hooks 'gnus-summary-update-hook)
3734       (forward-line 1))))
3735
3736 (defun gnus-summary-update-line (&optional dont-update)
3737   "Update summary line after change."
3738   (when (and gnus-summary-default-score
3739              (not gnus-summary-inhibit-highlight))
3740     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3741            (article (gnus-summary-article-number))
3742            (score (gnus-summary-article-score article)))
3743       (unless dont-update
3744         (if (and gnus-summary-mark-below
3745                  (< (gnus-summary-article-score)
3746                     gnus-summary-mark-below))
3747             ;; This article has a low score, so we mark it as read.
3748             (when (memq article gnus-newsgroup-unreads)
3749               (gnus-summary-mark-article-as-read gnus-low-score-mark))
3750           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3751             ;; This article was previously marked as read on account
3752             ;; of a low score, but now it has risen, so we mark it as
3753             ;; unread.
3754             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3755         (gnus-summary-update-mark
3756          (if (or (null gnus-summary-default-score)
3757                  (<= (abs (- score gnus-summary-default-score))
3758                      gnus-summary-zcore-fuzz))
3759              ?                          ;Whitespace
3760            (if (< score gnus-summary-default-score)
3761                gnus-score-below-mark gnus-score-over-mark))
3762          'score))
3763       ;; Do visual highlighting.
3764       (when (gnus-visual-p 'summary-highlight 'highlight)
3765         (gnus-run-hooks 'gnus-summary-update-hook)))))
3766
3767 (defvar gnus-tmp-new-adopts nil)
3768
3769 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3770   "Return the number of articles in THREAD.
3771 This may be 0 in some cases -- if none of the articles in
3772 the thread are to be displayed."
3773   (let* ((number
3774          ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3775           (cond
3776            ((not (listp thread))
3777             1)
3778            ((and (consp thread) (cdr thread))
3779             (apply
3780              '+ 1 (mapcar
3781                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
3782            ((null thread)
3783             1)
3784            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3785             1)
3786            (t 0))))
3787     (when (and level (zerop level) gnus-tmp-new-adopts)
3788       (incf number
3789             (apply '+ (mapcar
3790                        'gnus-summary-number-of-articles-in-thread
3791                        gnus-tmp-new-adopts))))
3792     (if char
3793         (if (> number 1) gnus-not-empty-thread-mark
3794           gnus-empty-thread-mark)
3795       number)))
3796
3797 (defsubst gnus-summary-line-message-size (head)
3798   "Return pretty-printed version of message size.
3799 This function is intended to be used in
3800 `gnus-summary-line-format-alist'."
3801   (let ((c (or (mail-header-chars head) -1)))
3802     (cond ((< c 0) "n/a")               ; chars not available
3803           ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3804           ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3805           ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3806           (t (format "%dM" (/ c (* 1024.0 1024)))))))
3807
3808
3809 (defun gnus-summary-set-local-parameters (group)
3810   "Go through the local params of GROUP and set all variable specs in that list."
3811   (let ((vars '(quit-config)))          ; Ignore quit-config.
3812     (dolist (elem (gnus-group-find-parameter group))
3813       (and (consp elem)                 ; Has to be a cons.
3814            (consp (cdr elem))           ; The cdr has to be a list.
3815            (symbolp (car elem))         ; Has to be a symbol in there.
3816            (not (memq (car elem) vars))
3817            (ignore-errors               ; So we set it.
3818              (push (car elem) vars)
3819              (make-local-variable (car elem))
3820              (set (car elem) (eval (nth 1 elem))))))))
3821
3822 (defun gnus-summary-read-group (group &optional show-all no-article
3823                                       kill-buffer no-display backward
3824                                       select-articles)
3825   "Start reading news in newsgroup GROUP.
3826 If SHOW-ALL is non-nil, already read articles are also listed.
3827 If NO-ARTICLE is non-nil, no article is selected initially.
3828 If NO-DISPLAY, don't generate a summary buffer."
3829   (let (result)
3830     (while (and group
3831                 (null (setq result
3832                             (let ((gnus-auto-select-next nil))
3833                               (or (gnus-summary-read-group-1
3834                                    group show-all no-article
3835                                    kill-buffer no-display
3836                                    select-articles)
3837                                   (setq show-all nil
3838                                         select-articles nil)))))
3839                 (eq gnus-auto-select-next 'quietly))
3840       (set-buffer gnus-group-buffer)
3841       ;; The entry function called above goes to the next
3842       ;; group automatically, so we go two groups back
3843       ;; if we are searching for the previous group.
3844       (when backward
3845         (gnus-group-prev-unread-group 2))
3846       (if (not (equal group (gnus-group-group-name)))
3847           (setq group (gnus-group-group-name))
3848         (setq group nil)))
3849     result))
3850
3851 (defun gnus-summary-read-group-1 (group show-all no-article
3852                                         kill-buffer no-display
3853                                         &optional select-articles)
3854   ;; Killed foreign groups can't be entered.
3855   ;;  (when (and (not (gnus-group-native-p group))
3856   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
3857   ;;    (error "Dead non-native groups can't be entered"))
3858   (gnus-message 5 "Retrieving newsgroup: %s..."
3859                 (gnus-group-decoded-name group))
3860   (let* ((new-group (gnus-summary-setup-buffer group))
3861          (quit-config (gnus-group-quit-config group))
3862          (did-select (and new-group (gnus-select-newsgroup
3863                                      group show-all select-articles))))
3864     (cond
3865      ;; This summary buffer exists already, so we just select it.
3866      ((not new-group)
3867       (gnus-set-global-variables)
3868       (when kill-buffer
3869         (gnus-kill-or-deaden-summary kill-buffer))
3870       (gnus-configure-windows 'summary 'force)
3871       (gnus-set-mode-line 'summary)
3872       (gnus-summary-position-point)
3873       (message "")
3874       t)
3875      ;; We couldn't select this group.
3876      ((null did-select)
3877       (when (and (eq major-mode 'gnus-summary-mode)
3878                  (not (equal (current-buffer) kill-buffer)))
3879         (kill-buffer (current-buffer))
3880         (if (not quit-config)
3881             (progn
3882               ;; Update the info -- marks might need to be removed,
3883               ;; for instance.
3884               (gnus-summary-update-info)
3885               (set-buffer gnus-group-buffer)
3886               (gnus-group-jump-to-group group)
3887               (gnus-group-next-unread-group 1))
3888           (gnus-handle-ephemeral-exit quit-config)))
3889       (let ((grpinfo (gnus-get-info group)))
3890         (if (null (gnus-info-read grpinfo))
3891             (gnus-message 3 "Group %s contains no messages"
3892                           (gnus-group-decoded-name group))
3893           (gnus-message 3 "Can't select group")))
3894       nil)
3895      ;; The user did a `C-g' while prompting for number of articles,
3896      ;; so we exit this group.
3897      ((eq did-select 'quit)
3898       (and (eq major-mode 'gnus-summary-mode)
3899            (not (equal (current-buffer) kill-buffer))
3900            (kill-buffer (current-buffer)))
3901       (when kill-buffer
3902         (gnus-kill-or-deaden-summary kill-buffer))
3903       (if (not quit-config)
3904           (progn
3905             (set-buffer gnus-group-buffer)
3906             (gnus-group-jump-to-group group)
3907             (gnus-group-next-unread-group 1)
3908             (gnus-configure-windows 'group 'force))
3909         (gnus-handle-ephemeral-exit quit-config))
3910       ;; Finally signal the quit.
3911       (signal 'quit nil))
3912      ;; The group was successfully selected.
3913      (t
3914       (gnus-set-global-variables)
3915       ;; Save the active value in effect when the group was entered.
3916       (setq gnus-newsgroup-active
3917             (gnus-copy-sequence
3918              (gnus-active gnus-newsgroup-name)))
3919       ;; You can change the summary buffer in some way with this hook.
3920       (gnus-run-hooks 'gnus-select-group-hook)
3921       (when (memq 'summary (gnus-update-format-specifications
3922                             nil 'summary 'summary-mode 'summary-dummy))
3923         ;; The format specification for the summary line was updated,
3924         ;; so we need to update the mark positions as well.
3925         (gnus-update-summary-mark-positions))
3926       ;; Do score processing.
3927       (when gnus-use-scoring
3928         (gnus-possibly-score-headers))
3929       ;; Check whether to fill in the gaps in the threads.
3930       (when gnus-build-sparse-threads
3931         (gnus-build-sparse-threads))
3932       ;; Find the initial limit.
3933       (if show-all
3934           (let ((gnus-newsgroup-dormant nil))
3935             (gnus-summary-initial-limit show-all))
3936         (gnus-summary-initial-limit show-all))
3937       ;; Generate the summary buffer.
3938       (unless no-display
3939         (gnus-summary-prepare))
3940       (when gnus-use-trees
3941         (gnus-tree-open group)
3942         (setq gnus-summary-highlight-line-function
3943               'gnus-tree-highlight-article))
3944       ;; If the summary buffer is empty, but there are some low-scored
3945       ;; articles or some excluded dormants, we include these in the
3946       ;; buffer.
3947       (when (and (zerop (buffer-size))
3948                  (not no-display))
3949         (cond (gnus-newsgroup-dormant
3950                (gnus-summary-limit-include-dormant))
3951               ((and gnus-newsgroup-scored show-all)
3952                (gnus-summary-limit-include-expunged t))))
3953       ;; Function `gnus-apply-kill-file' must be called in this hook.
3954       (gnus-run-hooks 'gnus-apply-kill-hook)
3955       (if (and (zerop (buffer-size))
3956                (not no-display))
3957           (progn
3958             ;; This newsgroup is empty.
3959             (gnus-summary-catchup-and-exit nil t)
3960             (gnus-message 6 "No unread news")
3961             (when kill-buffer
3962               (gnus-kill-or-deaden-summary kill-buffer))
3963             ;; Return nil from this function.
3964             nil)
3965         ;; Hide conversation thread subtrees.  We cannot do this in
3966         ;; gnus-summary-prepare-hook since kill processing may not
3967         ;; work with hidden articles.
3968         (gnus-summary-maybe-hide-threads)
3969         (when kill-buffer
3970           (gnus-kill-or-deaden-summary kill-buffer))
3971         (gnus-summary-auto-select-subject)
3972         ;; Show first unread article if requested.
3973         (if (and (not no-article)
3974                  (not no-display)
3975                  gnus-newsgroup-unreads
3976                  gnus-auto-select-first)
3977             (progn
3978               (gnus-configure-windows 'summary)
3979               (let ((art (gnus-summary-article-number)))
3980                 (unless (and (not gnus-plugged)
3981                              (or (memq art gnus-newsgroup-undownloaded)
3982                                  (memq art gnus-newsgroup-downloadable)))
3983                   (gnus-summary-goto-article art))))
3984           ;; Don't select any articles.
3985           (gnus-summary-position-point)
3986           (gnus-configure-windows 'summary 'force)
3987           (gnus-set-mode-line 'summary))
3988         (when (and gnus-auto-center-group
3989                    (get-buffer-window gnus-group-buffer t))
3990           ;; Gotta use windows, because recenter does weird stuff if
3991           ;; the current buffer ain't the displayed window.
3992           (let ((owin (selected-window)))
3993             (select-window (get-buffer-window gnus-group-buffer t))
3994             (when (gnus-group-goto-group group)
3995               (recenter))
3996             (select-window owin)))
3997         ;; Mark this buffer as "prepared".
3998         (setq gnus-newsgroup-prepared t)
3999         (gnus-run-hooks 'gnus-summary-prepared-hook)
4000         (unless (gnus-ephemeral-group-p group)
4001           (gnus-group-update-group group))
4002         t)))))
4003
4004 (defun gnus-summary-auto-select-subject ()
4005   "Select the subject line on initial group entry."
4006   (goto-char (point-min))
4007   (cond
4008    ((eq gnus-auto-select-subject 'best)
4009     (gnus-summary-best-unread-subject))
4010    ((eq gnus-auto-select-subject 'unread)
4011     (gnus-summary-first-unread-subject))
4012    ((eq gnus-auto-select-subject 'unseen)
4013     (gnus-summary-first-unseen-subject))
4014    ((eq gnus-auto-select-subject 'unseen-or-unread)
4015     (gnus-summary-first-unseen-or-unread-subject))
4016    ((eq gnus-auto-select-subject 'first)
4017     ;; Do nothing.
4018     )
4019    ((functionp gnus-auto-select-subject)
4020     (funcall gnus-auto-select-subject))))
4021
4022 (defun gnus-summary-prepare ()
4023   "Generate the summary buffer."
4024   (interactive)
4025   (let ((inhibit-read-only t))
4026     (erase-buffer)
4027     (setq gnus-newsgroup-data nil
4028           gnus-newsgroup-data-reverse nil)
4029     (gnus-run-hooks 'gnus-summary-generate-hook)
4030     ;; Generate the buffer, either with threads or without.
4031     (when gnus-newsgroup-headers
4032       (gnus-summary-prepare-threads
4033        (if gnus-show-threads
4034            (gnus-sort-gathered-threads
4035             (funcall gnus-summary-thread-gathering-function
4036                      (gnus-sort-threads
4037                       (gnus-cut-threads (gnus-make-threads)))))
4038          ;; Unthreaded display.
4039          (gnus-sort-articles gnus-newsgroup-headers))))
4040     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
4041     ;; Call hooks for modifying summary buffer.
4042     (goto-char (point-min))
4043     (gnus-run-hooks 'gnus-summary-prepare-hook)))
4044
4045 (defsubst gnus-general-simplify-subject (subject)
4046   "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
4047   (setq subject
4048         (cond
4049          ;; Truncate the subject.
4050          (gnus-simplify-subject-functions
4051           (gnus-map-function gnus-simplify-subject-functions subject))
4052          ((numberp gnus-summary-gather-subject-limit)
4053           (setq subject (gnus-simplify-subject-re subject))
4054           (if (> (length subject) gnus-summary-gather-subject-limit)
4055               (substring subject 0 gnus-summary-gather-subject-limit)
4056             subject))
4057          ;; Fuzzily simplify it.
4058          ((eq 'fuzzy gnus-summary-gather-subject-limit)
4059           (gnus-simplify-subject-fuzzy subject))
4060          ;; Just remove the leading "Re:".
4061          (t
4062           (gnus-simplify-subject-re subject))))
4063
4064   (if (and gnus-summary-gather-exclude-subject
4065            (string-match gnus-summary-gather-exclude-subject subject))
4066       nil                         ; This article shouldn't be gathered
4067     subject))
4068
4069 (defun gnus-summary-simplify-subject-query ()
4070   "Query where the respool algorithm would put this article."
4071   (interactive)
4072   (gnus-summary-select-article)
4073   (message "%s" (gnus-general-simplify-subject (gnus-summary-article-subject))))
4074
4075 (defun gnus-gather-threads-by-subject (threads)
4076   "Gather threads by looking at Subject headers."
4077   (if (not gnus-summary-make-false-root)
4078       threads
4079     (let ((hashtb (gnus-make-hashtable 1024))
4080           (prev threads)
4081           (result threads)
4082           subject hthread whole-subject)
4083       (while threads
4084         (setq subject (gnus-general-simplify-subject
4085                        (setq whole-subject (mail-header-subject
4086                                             (caar threads)))))
4087         (when subject
4088           (if (setq hthread (gnus-gethash subject hashtb))
4089               (progn
4090                 ;; We enter a dummy root into the thread, if we
4091                 ;; haven't done that already.
4092                 (unless (stringp (caar hthread))
4093                   (setcar hthread (list whole-subject (car hthread))))
4094                 ;; We add this new gathered thread to this gathered
4095                 ;; thread.
4096                 (setcdr (car hthread)
4097                         (nconc (cdar hthread) (list (car threads))))
4098                 ;; Remove it from the list of threads.
4099                 (setcdr prev (cdr threads))
4100                 (setq threads prev))
4101             ;; Enter this thread into the hash table.
4102             (gnus-sethash subject
4103                           (if gnus-summary-make-false-root-always
4104                               (progn
4105                                 ;; If you want a dummy root above all
4106                                 ;; threads...
4107                                 (setcar threads (list whole-subject
4108                                                       (car threads)))
4109                                 threads)
4110                             threads)
4111                           hashtb)))
4112         (setq prev threads)
4113         (setq threads (cdr threads)))
4114       result)))
4115
4116 (defun gnus-gather-threads-by-references (threads)
4117   "Gather threads by looking at References headers."
4118   (let ((idhashtb (gnus-make-hashtable 1024))
4119         (thhashtb (gnus-make-hashtable 1024))
4120         (prev threads)
4121         (result threads)
4122         ids references id gthread gid entered ref)
4123     (while threads
4124       (when (setq references (mail-header-references (caar threads)))
4125         (setq id (mail-header-id (caar threads))
4126               ids (inline (gnus-split-references references))
4127               entered nil)
4128         (while (setq ref (pop ids))
4129           (setq ids (delete ref ids))
4130           (if (not (setq gid (gnus-gethash ref idhashtb)))
4131               (progn
4132                 (gnus-sethash ref id idhashtb)
4133                 (gnus-sethash id threads thhashtb))
4134             (setq gthread (gnus-gethash gid thhashtb))
4135             (unless entered
4136               ;; We enter a dummy root into the thread, if we
4137               ;; haven't done that already.
4138               (unless (stringp (caar gthread))
4139                 (setcar gthread (list (mail-header-subject (caar gthread))
4140                                       (car gthread))))
4141               ;; We add this new gathered thread to this gathered
4142               ;; thread.
4143               (setcdr (car gthread)
4144                       (nconc (cdar gthread) (list (car threads)))))
4145             ;; Add it into the thread hash table.
4146             (gnus-sethash id gthread thhashtb)
4147             (setq entered t)
4148             ;; Remove it from the list of threads.
4149             (setcdr prev (cdr threads))
4150             (setq threads prev))))
4151       (setq prev threads)
4152       (setq threads (cdr threads)))
4153     result))
4154
4155 (defun gnus-sort-gathered-threads (threads)
4156   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
4157   (let ((result threads))
4158     (while threads
4159       (when (stringp (caar threads))
4160         (setcdr (car threads)
4161                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
4162       (setq threads (cdr threads)))
4163     result))
4164
4165 (defun gnus-thread-loop-p (root thread)
4166   "Say whether ROOT is in THREAD."
4167   (let ((stack (list thread))
4168         (infloop 0)
4169         th)
4170     (while (setq thread (pop stack))
4171       (setq th (cdr thread))
4172       (while (and th
4173                   (not (eq (caar th) root)))
4174         (pop th))
4175       (if th
4176           ;; We have found a loop.
4177           (let (ref-dep)
4178             (setcdr thread (delq (car th) (cdr thread)))
4179             (if (boundp (setq ref-dep (intern "none"
4180                                               gnus-newsgroup-dependencies)))
4181                 (setcdr (symbol-value ref-dep)
4182                         (nconc (cdr (symbol-value ref-dep))
4183                                (list (car th))))
4184               (set ref-dep (list nil (car th))))
4185             (setq infloop 1
4186                   stack nil))
4187         ;; Push all the subthreads onto the stack.
4188         (push (cdr thread) stack)))
4189     infloop))
4190
4191 (defun gnus-make-threads ()
4192   "Go through the dependency hashtb and find the roots.  Return all threads."
4193   (let (threads)
4194     (while (catch 'infloop
4195              (mapatoms
4196               (lambda (refs)
4197                 ;; Deal with self-referencing References loops.
4198                 (when (and (car (symbol-value refs))
4199                            (not (zerop
4200                                  (apply
4201                                   '+
4202                                   (mapcar
4203                                    (lambda (thread)
4204                                      (gnus-thread-loop-p
4205                                       (car (symbol-value refs)) thread))
4206                                    (cdr (symbol-value refs)))))))
4207                   (setq threads nil)
4208                   (throw 'infloop t))
4209                 (unless (car (symbol-value refs))
4210                   ;; These threads do not refer back to any other
4211                   ;; articles, so they're roots.
4212                   (setq threads (append (cdr (symbol-value refs)) threads))))
4213               gnus-newsgroup-dependencies)))
4214     threads))
4215
4216 ;; Build the thread tree.
4217 (defsubst gnus-dependencies-add-header (header dependencies force-new)
4218   "Enter HEADER into the DEPENDENCIES table if it is not already there.
4219
4220 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
4221 if it was already present.
4222
4223 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
4224 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
4225 Message-IDs will be renamed to a unique Message-ID before being
4226 entered.
4227
4228 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
4229   (let* ((id (mail-header-id header))
4230          (id-dep (and id (intern id dependencies)))
4231          parent-id ref ref-dep ref-header replaced)
4232     ;; Enter this `header' in the `dependencies' table.
4233     (cond
4234      ((not id-dep)
4235       (setq header nil))
4236      ;; The first two cases do the normal part: enter a new `header'
4237      ;; in the `dependencies' table.
4238      ((not (boundp id-dep))
4239       (set id-dep (list header)))
4240      ((null (car (symbol-value id-dep)))
4241       (setcar (symbol-value id-dep) header))
4242
4243      ;; From here the `header' was already present in the
4244      ;; `dependencies' table.
4245      (force-new
4246       ;; Overrides an existing entry;
4247       ;; just set the header part of the entry.
4248       (setcar (symbol-value id-dep) header)
4249       (setq replaced t))
4250
4251      ;; Renames the existing `header' to a unique Message-ID.
4252      ((not gnus-summary-ignore-duplicates)
4253       ;; An article with this Message-ID has already been seen.
4254       ;; We rename the Message-ID.
4255       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
4256            (list header))
4257       (mail-header-set-id header id))
4258
4259      ;; The last case ignores an existing entry, except it adds any
4260      ;; additional Xrefs (in case the two articles came from different
4261      ;; servers.
4262      ;; Also sets `header' to `nil' meaning that the `dependencies'
4263      ;; table was *not* modified.
4264      (t
4265       (mail-header-set-xref
4266        (car (symbol-value id-dep))
4267        (concat (or (mail-header-xref (car (symbol-value id-dep)))
4268                    "")
4269                (or (mail-header-xref header) "")))
4270       (setq header nil)))
4271
4272     (when (and header (not replaced))
4273       ;; First check that we are not creating a References loop.
4274       (setq parent-id (gnus-parent-id (mail-header-references header)))
4275       (setq ref parent-id)
4276       (while (and ref
4277                   (setq ref-dep (intern-soft ref dependencies))
4278                   (boundp ref-dep)
4279                   (setq ref-header (car (symbol-value ref-dep))))
4280         (if (string= id ref)
4281             ;; Yuk!  This is a reference loop.  Make the article be a
4282             ;; root article.
4283             (progn
4284               (mail-header-set-references (car (symbol-value id-dep)) "none")
4285               (setq ref nil)
4286               (setq parent-id nil))
4287           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
4288       (setq ref-dep (intern (or parent-id "none") dependencies))
4289       (if (boundp ref-dep)
4290           (setcdr (symbol-value ref-dep)
4291                   (nconc (cdr (symbol-value ref-dep))
4292                          (list (symbol-value id-dep))))
4293         (set ref-dep (list nil (symbol-value id-dep)))))
4294     header))
4295
4296 (defun gnus-extract-message-id-from-in-reply-to (string)
4297   (if (string-match "<[^>]+>" string)
4298       (substring string (match-beginning 0) (match-end 0))
4299     nil))
4300
4301 (defun gnus-build-sparse-threads ()
4302   (let ((headers gnus-newsgroup-headers)
4303         (mail-parse-charset gnus-newsgroup-charset)
4304         (gnus-summary-ignore-duplicates t)
4305         header references generation relations
4306         subject child end new-child date)
4307     ;; First we create an alist of generations/relations, where
4308     ;; generations is how much we trust the relation, and the relation
4309     ;; is parent/child.
4310     (gnus-message 7 "Making sparse threads...")
4311     (save-excursion
4312       (nnheader-set-temp-buffer " *gnus sparse threads*")
4313       (while (setq header (pop headers))
4314         (when (and (setq references (mail-header-references header))
4315                    (not (string= references "")))
4316           (insert references)
4317           (setq child (mail-header-id header)
4318                 subject (mail-header-subject header)
4319                 date (mail-header-date header)
4320                 generation 0)
4321           (while (search-backward ">" nil t)
4322             (setq end (1+ (point)))
4323             (when (search-backward "<" nil t)
4324               (setq new-child (buffer-substring (point) end))
4325               (push (list (incf generation)
4326                           child (setq child new-child)
4327                           subject date)
4328                     relations)))
4329           (when child
4330             (push (list (1+ generation) child nil subject) relations))
4331           (erase-buffer)))
4332       (kill-buffer (current-buffer)))
4333     ;; Sort over trustworthiness.
4334     (dolist (relation (sort relations 'car-less-than-car))
4335       (when (gnus-dependencies-add-header
4336              (make-full-mail-header
4337               gnus-reffed-article-number
4338               (nth 3 relation) "" (or (nth 4 relation) "")
4339               (nth 1 relation)
4340               (or (nth 2 relation) "") 0 0 "")
4341              gnus-newsgroup-dependencies nil)
4342         (push gnus-reffed-article-number gnus-newsgroup-limit)
4343         (push gnus-reffed-article-number gnus-newsgroup-sparse)
4344         (push (cons gnus-reffed-article-number gnus-sparse-mark)
4345               gnus-newsgroup-reads)
4346         (decf gnus-reffed-article-number)))
4347     (gnus-message 7 "Making sparse threads...done")))
4348
4349 (defun gnus-build-old-threads ()
4350   ;; Look at all the articles that refer back to old articles, and
4351   ;; fetch the headers for the articles that aren't there.  This will
4352   ;; build complete threads - if the roots haven't been expired by the
4353   ;; server, that is.
4354   (let ((mail-parse-charset gnus-newsgroup-charset)
4355         id heads)
4356     (mapatoms
4357      (lambda (refs)
4358        (when (not (car (symbol-value refs)))
4359          (setq heads (cdr (symbol-value refs)))
4360          (while heads
4361            (if (memq (mail-header-number (caar heads))
4362                      gnus-newsgroup-dormant)
4363                (setq heads (cdr heads))
4364              (setq id (symbol-name refs))
4365              (while (and (setq id (gnus-build-get-header id))
4366                          (not (car (gnus-id-to-thread id)))))
4367              (setq heads nil)))))
4368      gnus-newsgroup-dependencies)))
4369
4370 (defsubst gnus-remove-odd-characters (string)
4371   "Translate STRING into something that doesn't contain weird characters."
4372   (mm-subst-char-in-string
4373    ?\r ?\-
4374    (mm-subst-char-in-string ?\n ?\- string t) t))
4375
4376 ;; This function has to be called with point after the article number
4377 ;; on the beginning of the line.
4378 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
4379   (let ((eol (point-at-eol))
4380         (buffer (current-buffer))
4381         header references in-reply-to)
4382
4383     ;; overview: [num subject from date id refs chars lines misc]
4384     (unwind-protect
4385         (let (x)
4386           (narrow-to-region (point) eol)
4387           (unless (eobp)
4388             (forward-char))
4389
4390           (setq header
4391                 (make-full-mail-header
4392                  number                 ; number
4393                  (condition-case ()     ; subject
4394                      (gnus-remove-odd-characters
4395                       (funcall gnus-decode-encoded-word-function
4396                                (setq x (nnheader-nov-field))))
4397                    (error x))
4398                  (condition-case ()     ; from
4399                      (gnus-remove-odd-characters
4400                       (funcall gnus-decode-encoded-address-function
4401                                (setq x (nnheader-nov-field))))
4402                    (error x))
4403                  (nnheader-nov-field)   ; date
4404                  (nnheader-nov-read-message-id number)  ; id
4405                  (setq references (nnheader-nov-field)) ; refs
4406                  (nnheader-nov-read-integer) ; chars
4407                  (nnheader-nov-read-integer) ; lines
4408                  (unless (eobp)
4409                    (if (looking-at "Xref: ")
4410                        (goto-char (match-end 0)))
4411                    (nnheader-nov-field)) ; Xref
4412                  (nnheader-nov-parse-extra)))) ; extra
4413
4414       (widen))
4415
4416     (when (and (string= references "")
4417                (setq in-reply-to (mail-header-extra header))
4418                (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4419       (mail-header-set-references
4420        header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4421
4422     (when gnus-alter-header-function
4423       (funcall gnus-alter-header-function header))
4424     (gnus-dependencies-add-header header dependencies force-new)))
4425
4426 (defun gnus-build-get-header (id)
4427   "Look through the buffer of NOV lines and find the header to ID.
4428 Enter this line into the dependencies hash table, and return
4429 the id of the parent article (if any)."
4430   (let ((deps gnus-newsgroup-dependencies)
4431         found header)
4432     (prog1
4433         (with-current-buffer nntp-server-buffer
4434           (let ((case-fold-search nil))
4435             (goto-char (point-min))
4436             (while (and (not found)
4437                         (search-forward id nil t))
4438               (beginning-of-line)
4439               (setq found (looking-at
4440                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4441                                    (regexp-quote id))))
4442               (or found (beginning-of-line 2)))
4443             (when found
4444               (beginning-of-line)
4445               (and
4446                (setq header (gnus-nov-parse-line
4447                              (read (current-buffer)) deps))
4448                (gnus-parent-id (mail-header-references header))))))
4449       (when header
4450         (let ((number (mail-header-number header)))
4451           (push number gnus-newsgroup-limit)
4452           (push header gnus-newsgroup-headers)
4453           (if (memq number gnus-newsgroup-unselected)
4454               (progn
4455                 (setq gnus-newsgroup-unreads
4456                       (gnus-add-to-sorted-list gnus-newsgroup-unreads
4457                                                number))
4458                 (setq gnus-newsgroup-unselected
4459                       (delq number gnus-newsgroup-unselected)))
4460             (push number gnus-newsgroup-ancient)))))))
4461
4462 (defun gnus-build-all-threads ()
4463   "Read all the headers."
4464   (let ((gnus-summary-ignore-duplicates t)
4465         (mail-parse-charset gnus-newsgroup-charset)
4466         (dependencies gnus-newsgroup-dependencies)
4467         header article)
4468     (with-current-buffer nntp-server-buffer
4469       (let ((case-fold-search nil))
4470         (goto-char (point-min))
4471         (while (not (eobp))
4472           (ignore-errors
4473             (setq article (read (current-buffer))
4474                   header (gnus-nov-parse-line article dependencies)))
4475           (when header
4476             (with-current-buffer gnus-summary-buffer
4477               (push header gnus-newsgroup-headers)
4478               (if (memq (setq article (mail-header-number header))
4479                         gnus-newsgroup-unselected)
4480                   (progn
4481                     (setq gnus-newsgroup-unreads
4482                           (gnus-add-to-sorted-list
4483                            gnus-newsgroup-unreads article))
4484                     (setq gnus-newsgroup-unselected
4485                           (delq article gnus-newsgroup-unselected)))
4486                 (push article gnus-newsgroup-ancient)))
4487             (forward-line 1)))))))
4488
4489 (defun gnus-summary-update-article-line (article header)
4490   "Update the line for ARTICLE using HEADER."
4491   (let* ((id (mail-header-id header))
4492          (thread (gnus-id-to-thread id)))
4493     (unless thread
4494       (error "Article in no thread"))
4495     ;; Update the thread.
4496     (setcar thread header)
4497     (gnus-summary-goto-subject article)
4498     (let* ((datal (gnus-data-find-list article))
4499            (data (car datal))
4500            (inhibit-read-only t)
4501            (level (gnus-summary-thread-level)))
4502       (gnus-delete-line)
4503       (let ((inserted (- (point)
4504                          (progn
4505                            (gnus-summary-insert-line
4506                             header level nil
4507                             (memq article gnus-newsgroup-undownloaded)
4508                             (gnus-article-mark article)
4509                             (memq article gnus-newsgroup-replied)
4510                             (memq article gnus-newsgroup-expirable)
4511                             ;; Only insert the Subject string when it's different
4512                             ;; from the previous Subject string.
4513                             (if (and
4514                                  gnus-show-threads
4515                                  (gnus-subject-equal
4516                                   (condition-case ()
4517                                       (mail-header-subject
4518                                        (gnus-data-header
4519                                         (cadr
4520                                          (gnus-data-find-list
4521                                           article
4522                                           (gnus-data-list t)))))
4523                                     ;; Error on the side of excessive subjects.
4524                                     (error ""))
4525                                   (mail-header-subject header)))
4526                                 ""
4527                               (mail-header-subject header))
4528                             nil (cdr (assq article gnus-newsgroup-scored))
4529                             (memq article gnus-newsgroup-processable))
4530                            (point)))))
4531         (when (cdr datal)
4532           (gnus-data-update-list
4533            (cdr datal)
4534            (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4535
4536 (defun gnus-summary-update-article (article &optional iheader)
4537   "Update ARTICLE in the summary buffer."
4538   (set-buffer gnus-summary-buffer)
4539   (let* ((header (gnus-summary-article-header article))
4540          (id (mail-header-id header))
4541          (data (gnus-data-find article))
4542          (thread (gnus-id-to-thread id))
4543          (references (mail-header-references header))
4544          (parent
4545           (gnus-id-to-thread
4546            (or (gnus-parent-id
4547                 (when (and references
4548                            (not (equal "" references)))
4549                   references))
4550                "none")))
4551          (inhibit-read-only t)
4552          (old (car thread)))
4553     (when thread
4554       (unless iheader
4555         (setcar thread nil)
4556         (when parent
4557           (delq thread parent)))
4558       (if (gnus-summary-insert-subject id header)
4559           ;; Set the (possibly) new article number in the data structure.
4560           (gnus-data-set-number data (gnus-id-to-article id))
4561         (setcar thread old)
4562         nil))))
4563
4564 (defun gnus-rebuild-thread (id &optional line)
4565   "Rebuild the thread containing ID.
4566 If LINE, insert the rebuilt thread starting on line LINE."
4567   (let ((inhibit-read-only t)
4568         old-pos current thread data)
4569     (if (not gnus-show-threads)
4570         (setq thread (list (car (gnus-id-to-thread id))))
4571       ;; Get the thread this article is part of.
4572       (setq thread (gnus-remove-thread id)))
4573     (setq old-pos (point-at-bol))
4574     (setq current (save-excursion
4575                     (and (re-search-backward "[\r\n]" nil t)
4576                          (gnus-summary-article-number))))
4577     ;; If this is a gathered thread, we have to go some re-gathering.
4578     (when (stringp (car thread))
4579       (let ((subject (car thread))
4580             roots thr)
4581         (setq thread (cdr thread))
4582         (while thread
4583           (unless (memq (setq thr (gnus-id-to-thread
4584                                    (gnus-root-id
4585                                     (mail-header-id (caar thread)))))
4586                         roots)
4587             (push thr roots))
4588           (setq thread (cdr thread)))
4589         ;; We now have all (unique) roots.
4590         (if (= (length roots) 1)
4591             ;; All the loose roots are now one solid root.
4592             (setq thread (car roots))
4593           (setq thread (cons subject (gnus-sort-threads roots))))))
4594     (let (threads)
4595       ;; We then insert this thread into the summary buffer.
4596       (when line
4597         (goto-char (point-min))
4598         (forward-line (1- line)))
4599       (let (gnus-newsgroup-data gnus-newsgroup-threads)
4600         (if gnus-show-threads
4601             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4602           (gnus-summary-prepare-unthreaded thread))
4603         (setq data (nreverse gnus-newsgroup-data))
4604         (setq threads gnus-newsgroup-threads))
4605       ;; We splice the new data into the data structure.
4606       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
4607       ;;!!! then we want to insert at the beginning of the buffer.
4608       ;;!!! That happens to be true with Gnus now, but that may
4609       ;;!!! change in the future.  Perhaps.
4610       (gnus-data-enter-list
4611        (if line nil current) data (- (point) old-pos))
4612       (setq gnus-newsgroup-threads
4613             (nconc threads gnus-newsgroup-threads))
4614       (gnus-data-compute-positions))))
4615
4616 (defun gnus-number-to-header (number)
4617   "Return the header for article NUMBER."
4618   (let ((headers gnus-newsgroup-headers))
4619     (while (and headers
4620                 (not (= number (mail-header-number (car headers)))))
4621       (pop headers))
4622     (when headers
4623       (car headers))))
4624
4625 (defun gnus-parent-headers (in-headers &optional generation)
4626   "Return the headers of the GENERATIONeth parent of HEADERS."
4627   (unless generation
4628     (setq generation 1))
4629   (let ((parent t)
4630         (headers in-headers)
4631         references)
4632     (while (and parent
4633                 (not (zerop generation))
4634                 (setq references (mail-header-references headers)))
4635       (setq headers (if (and references
4636                              (setq parent (gnus-parent-id references)))
4637                         (car (gnus-id-to-thread parent))
4638                       nil))
4639       (decf generation))
4640     (and (not (eq headers in-headers))
4641          headers)))
4642
4643 (defun gnus-id-to-thread (id)
4644   "Return the (sub-)thread where ID appears."
4645   (gnus-gethash id gnus-newsgroup-dependencies))
4646
4647 (defun gnus-id-to-article (id)
4648   "Return the article number of ID."
4649   (let ((thread (gnus-id-to-thread id)))
4650     (when (and thread
4651                (car thread))
4652       (mail-header-number (car thread)))))
4653
4654 (defun gnus-id-to-header (id)
4655   "Return the article headers of ID."
4656   (car (gnus-id-to-thread id)))
4657
4658 (defun gnus-article-displayed-root-p (article)
4659   "Say whether ARTICLE is a root(ish) article."
4660   (let ((level (gnus-summary-thread-level article))
4661         (refs (mail-header-references  (gnus-summary-article-header article)))
4662         particle)
4663     (cond
4664      ((null level) nil)
4665      ((zerop level) t)
4666      ((null refs) t)
4667      ((null (gnus-parent-id refs)) t)
4668      ((and (= 1 level)
4669            (null (setq particle (gnus-id-to-article
4670                                  (gnus-parent-id refs))))
4671            (null (gnus-summary-thread-level particle)))))))
4672
4673 (defun gnus-root-id (id)
4674   "Return the id of the root of the thread where ID appears."
4675   (let (last-id prev)
4676     (while (and id (setq prev (car (gnus-id-to-thread id))))
4677       (setq last-id id
4678             id (gnus-parent-id (mail-header-references prev))))
4679     last-id))
4680
4681 (defun gnus-articles-in-thread (thread)
4682   "Return the list of articles in THREAD."
4683   (cons (mail-header-number (car thread))
4684         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4685
4686 (defun gnus-remove-thread (id &optional dont-remove)
4687   "Remove the thread that has ID in it."
4688   (let (headers thread last-id)
4689     ;; First go up in this thread until we find the root.
4690     (setq last-id (gnus-root-id id)
4691           headers (message-flatten-list (gnus-id-to-thread last-id)))
4692     ;; We have now found the real root of this thread.  It might have
4693     ;; been gathered into some loose thread, so we have to search
4694     ;; through the threads to find the thread we wanted.
4695     (let ((threads gnus-newsgroup-threads)
4696           sub)
4697       (while threads
4698         (setq sub (car threads))
4699         (if (stringp (car sub))
4700             ;; This is a gathered thread, so we look at the roots
4701             ;; below it to find whether this article is in this
4702             ;; gathered root.
4703             (progn
4704               (setq sub (cdr sub))
4705               (while sub
4706                 (when (member (caar sub) headers)
4707                   (setq thread (car threads)
4708                         threads nil
4709                         sub nil))
4710                 (setq sub (cdr sub))))
4711           ;; It's an ordinary thread, so we check it.
4712           (when (eq (car sub) (car headers))
4713             (setq thread sub
4714                   threads nil)))
4715         (setq threads (cdr threads)))
4716       ;; If this article is in no thread, then it's a root.
4717       (if thread
4718           (unless dont-remove
4719             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4720         (setq thread (gnus-id-to-thread last-id)))
4721       (when thread
4722         (prog1
4723             thread                      ; We return this thread.
4724           (unless dont-remove
4725             (if (stringp (car thread))
4726                 (progn
4727                   ;; If we use dummy roots, then we have to remove the
4728                   ;; dummy root as well.
4729                   (when (eq gnus-summary-make-false-root 'dummy)
4730                     ;; We go to the dummy root by going to
4731                     ;; the first sub-"thread", and then one line up.
4732                     (gnus-summary-goto-article
4733                      (mail-header-number (caadr thread)))
4734                     (forward-line -1)
4735                     (gnus-delete-line)
4736                     (gnus-data-compute-positions))
4737                   (setq thread (cdr thread))
4738                   (while thread
4739                     (gnus-remove-thread-1 (car thread))
4740                     (setq thread (cdr thread))))
4741               (gnus-remove-thread-1 thread))))))))
4742
4743 (defun gnus-remove-thread-1 (thread)
4744   "Remove the thread THREAD recursively."
4745   (let ((number (mail-header-number (pop thread)))
4746         d)
4747     (setq thread (reverse thread))
4748     (while thread
4749       (gnus-remove-thread-1 (pop thread)))
4750     (when (setq d (gnus-data-find number))
4751       (goto-char (gnus-data-pos d))
4752       (gnus-summary-show-thread)
4753       (gnus-data-remove
4754        number
4755        (- (point-at-bol)
4756           (prog1
4757               (1+ (point-at-eol))
4758             (gnus-delete-line)))))))
4759
4760 (defun gnus-sort-threads-recursive (threads func)
4761   (sort (mapcar (lambda (thread)
4762                   (cons (car thread)
4763                         (and (cdr thread)
4764                              (gnus-sort-threads-recursive (cdr thread) func))))
4765                 threads) func))
4766
4767 (defun gnus-sort-threads-loop (threads func)
4768   (let* ((superthread (cons nil threads))
4769          (stack (list (cons superthread threads)))
4770          remaining-threads thread)
4771     (while stack
4772       (setq remaining-threads (cdr (car stack)))
4773       (if remaining-threads
4774           (progn (setq thread (car remaining-threads))
4775                  (setcdr (car stack) (cdr remaining-threads))
4776                  (if (cdr thread)
4777                      (push (cons thread (cdr thread)) stack)))
4778         (setq thread (caar stack))
4779         (setcdr thread (sort (cdr thread) func))
4780         (pop stack)))
4781     (cdr superthread)))
4782
4783 (defun gnus-sort-threads (threads)
4784   "Sort THREADS."
4785   (if (not gnus-thread-sort-functions)
4786       threads
4787     (gnus-message 8 "Sorting threads...")
4788     (prog1
4789         (condition-case nil
4790             (let ((max-lisp-eval-depth (max max-lisp-eval-depth 5000)))
4791               (gnus-sort-threads-recursive
4792                threads (gnus-make-sort-function gnus-thread-sort-functions)))
4793           ;; Even after binding max-lisp-eval-depth, the recursive
4794           ;; sorter might fail for very long threads.  In that case,
4795           ;; try using a (less well-tested) non-recursive sorter.
4796           (error (gnus-sort-threads-loop
4797                   threads (gnus-make-sort-function
4798                            gnus-thread-sort-functions))))
4799       (gnus-message 8 "Sorting threads...done"))))
4800
4801 (defun gnus-sort-articles (articles)
4802   "Sort ARTICLES."
4803   (when gnus-article-sort-functions
4804     (gnus-message 7 "Sorting articles...")
4805     (prog1
4806         (setq gnus-newsgroup-headers
4807               (sort articles (gnus-make-sort-function
4808                               gnus-article-sort-functions)))
4809       (gnus-message 7 "Sorting articles...done"))))
4810
4811 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4812 (defmacro gnus-thread-header (thread)
4813   "Return header of first article in THREAD.
4814 Note that THREAD must never, ever be anything else than a variable -
4815 using some other form will lead to serious barfage."
4816   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4817   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4818   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4819         (vector thread) 2))
4820
4821 (defsubst gnus-article-sort-by-number (h1 h2)
4822   "Sort articles by article number."
4823   (< (mail-header-number h1)
4824      (mail-header-number h2)))
4825
4826 (defun gnus-thread-sort-by-number (h1 h2)
4827   "Sort threads by root article number."
4828   (gnus-article-sort-by-number
4829    (gnus-thread-header h1) (gnus-thread-header h2)))
4830
4831 (defsubst gnus-article-sort-by-random (h1 h2)
4832   "Sort articles randomly."
4833   (zerop (random 2)))
4834
4835 (defun gnus-thread-sort-by-random (h1 h2)
4836   "Sort threads randomly."
4837   (gnus-article-sort-by-random
4838    (gnus-thread-header h1) (gnus-thread-header h2)))
4839
4840 (defsubst gnus-article-sort-by-lines (h1 h2)
4841   "Sort articles by article Lines header."
4842   (< (mail-header-lines h1)
4843      (mail-header-lines h2)))
4844
4845 (defun gnus-thread-sort-by-lines (h1 h2)
4846   "Sort threads by root article Lines header."
4847   (gnus-article-sort-by-lines
4848    (gnus-thread-header h1) (gnus-thread-header h2)))
4849
4850 (defsubst gnus-article-sort-by-chars (h1 h2)
4851   "Sort articles by octet length."
4852   (< (mail-header-chars h1)
4853      (mail-header-chars h2)))
4854
4855 (defun gnus-thread-sort-by-chars (h1 h2)
4856   "Sort threads by root article octet length."
4857   (gnus-article-sort-by-chars
4858    (gnus-thread-header h1) (gnus-thread-header h2)))
4859
4860 (defsubst gnus-article-sort-by-author (h1 h2)
4861   "Sort articles by root author."
4862   (gnus-string<
4863    (let ((extract (funcall
4864                    gnus-extract-address-components
4865                    (mail-header-from h1))))
4866      (or (car extract) (cadr extract) ""))
4867    (let ((extract (funcall
4868                    gnus-extract-address-components
4869                    (mail-header-from h2))))
4870      (or (car extract) (cadr extract) ""))))
4871
4872 (defun gnus-thread-sort-by-author (h1 h2)
4873   "Sort threads by root author."
4874   (gnus-article-sort-by-author
4875    (gnus-thread-header h1)  (gnus-thread-header h2)))
4876
4877 (defsubst gnus-article-sort-by-recipient (h1 h2)
4878   "Sort articles by recipient."
4879   (gnus-string<
4880    (let ((extract (funcall
4881                    gnus-extract-address-components
4882                    (or (cdr (assq 'To (mail-header-extra h1))) ""))))
4883      (or (car extract) (cadr extract)))
4884    (let ((extract (funcall
4885                    gnus-extract-address-components
4886                    (or (cdr (assq 'To (mail-header-extra h2))) ""))))
4887      (or (car extract) (cadr extract)))))
4888
4889 (defun gnus-thread-sort-by-recipient (h1 h2)
4890   "Sort threads by root recipient."
4891   (gnus-article-sort-by-recipient
4892    (gnus-thread-header h1) (gnus-thread-header h2)))
4893
4894 (defsubst gnus-article-sort-by-subject (h1 h2)
4895   "Sort articles by root subject."
4896   (gnus-string<
4897    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4898    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4899
4900 (defun gnus-thread-sort-by-subject (h1 h2)
4901   "Sort threads by root subject."
4902   (gnus-article-sort-by-subject
4903    (gnus-thread-header h1) (gnus-thread-header h2)))
4904
4905 (defsubst gnus-article-sort-by-date (h1 h2)
4906   "Sort articles by root article date."
4907   (time-less-p
4908    (gnus-date-get-time (mail-header-date h1))
4909    (gnus-date-get-time (mail-header-date h2))))
4910
4911 (defun gnus-thread-sort-by-date (h1 h2)
4912   "Sort threads by root article date."
4913   (gnus-article-sort-by-date
4914    (gnus-thread-header h1) (gnus-thread-header h2)))
4915
4916 (defsubst gnus-article-sort-by-score (h1 h2)
4917   "Sort articles by root article score.
4918 Unscored articles will be counted as having a score of zero."
4919   (> (or (cdr (assq (mail-header-number h1)
4920                     gnus-newsgroup-scored))
4921          gnus-summary-default-score 0)
4922      (or (cdr (assq (mail-header-number h2)
4923                     gnus-newsgroup-scored))
4924          gnus-summary-default-score 0)))
4925
4926 (defun gnus-thread-sort-by-score (h1 h2)
4927   "Sort threads by root article score."
4928   (gnus-article-sort-by-score
4929    (gnus-thread-header h1) (gnus-thread-header h2)))
4930
4931 (defun gnus-thread-sort-by-total-score (h1 h2)
4932   "Sort threads by the sum of all scores in the thread.
4933 Unscored articles will be counted as having a score of zero."
4934   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4935
4936 (defun gnus-thread-total-score (thread)
4937   ;; This function find the total score of THREAD.
4938   (cond
4939    ((null thread)
4940     0)
4941    ((consp thread)
4942     (if (stringp (car thread))
4943         (apply gnus-thread-score-function 0
4944                (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4945       (gnus-thread-total-score-1 thread)))
4946    (t
4947     (gnus-thread-total-score-1 (list thread)))))
4948
4949 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4950   "Sort threads such that the thread with the most recently arrived article comes first."
4951   (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4952
4953 (defun gnus-thread-highest-number (thread)
4954   "Return the highest article number in THREAD."
4955   (apply 'max (mapcar (lambda (header)
4956                         (mail-header-number header))
4957                       (message-flatten-list thread))))
4958
4959 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4960   "Sort threads such that the thread with the most recently dated article comes first."
4961   (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4962
4963 (defun gnus-thread-latest-date (thread)
4964   "Return the highest article date in THREAD."
4965   (let ((previous-time 0))
4966     (apply 'max
4967            (mapcar
4968             (lambda (header)
4969               (setq previous-time
4970                     (condition-case ()
4971                         (time-to-seconds (mail-header-parse-date
4972                                           (mail-header-date header)))
4973                       (error previous-time))))
4974             (sort
4975              (message-flatten-list thread)
4976              (lambda (h1 h2)
4977                (< (mail-header-number h1)
4978                   (mail-header-number h2))))))))
4979
4980 (defun gnus-thread-total-score-1 (root)
4981   ;; This function find the total score of the thread below ROOT.
4982   (setq root (car root))
4983   (apply gnus-thread-score-function
4984          (or (append
4985               (mapcar 'gnus-thread-total-score
4986                       (cdr (gnus-id-to-thread (mail-header-id root))))
4987               (when (> (mail-header-number root) 0)
4988                 (list (or (cdr (assq (mail-header-number root)
4989                                      gnus-newsgroup-scored))
4990                           gnus-summary-default-score 0))))
4991              (list gnus-summary-default-score)
4992              '(0))))
4993
4994 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
4995 (defvar gnus-tmp-prev-subject nil)
4996 (defvar gnus-tmp-false-parent nil)
4997 (defvar gnus-tmp-root-expunged nil)
4998 (defvar gnus-tmp-dummy-line nil)
4999
5000 (defun gnus-extra-header (type &optional header)
5001   "Return the extra header of TYPE."
5002   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
5003       ""))
5004
5005 (defvar gnus-tmp-thread-tree-header-string "")
5006
5007 (defcustom gnus-sum-thread-tree-root "> "
5008   "With %B spec, used for the root of a thread.
5009 If nil, use subject instead."
5010   :version "22.1"
5011   :type '(radio (const :format "%v  " nil) string)
5012   :group 'gnus-thread)
5013
5014 (defcustom gnus-sum-thread-tree-false-root "> "
5015   "With %B spec, used for a false root of a thread.
5016 If nil, use subject instead."
5017   :version "22.1"
5018   :type '(radio (const :format "%v  " nil) string)
5019   :group 'gnus-thread)
5020
5021 (defcustom gnus-sum-thread-tree-single-indent ""
5022   "With %B spec, used for a thread with just one message.
5023 If nil, use subject instead."
5024   :version "22.1"
5025   :type '(radio (const :format "%v  " nil) string)
5026   :group 'gnus-thread)
5027
5028 (defcustom gnus-sum-thread-tree-vertical "| "
5029   "With %B spec, used for drawing a vertical line."
5030   :version "22.1"
5031   :type 'string
5032   :group 'gnus-thread)
5033
5034 (defcustom gnus-sum-thread-tree-indent "  "
5035   "With %B spec, used for indenting."
5036   :version "22.1"
5037   :type 'string
5038   :group 'gnus-thread)
5039
5040 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
5041   "With %B spec, used for a leaf with brothers."
5042   :version "22.1"
5043   :type 'string
5044   :group 'gnus-thread)
5045
5046 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
5047   "With %B spec, used for a leaf without brothers."
5048   :version "22.1"
5049   :type 'string
5050   :group 'gnus-thread)
5051
5052 (defcustom gnus-summary-display-while-building nil
5053   "If non-nil, show and update the summary buffer as it's being built.
5054 If the value is t, update the buffer after every line is inserted.  If
5055 the value is an integer (N), update the display every N lines."
5056   :version "22.1"
5057   :group 'gnus-thread
5058   :type '(choice (const :tag "off" nil)
5059                  number
5060                  (const :tag "frequently" t)))
5061
5062 (defun gnus-summary-prepare-threads (threads)
5063   "Prepare summary buffer from THREADS and indentation LEVEL.
5064 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
5065 or a straight list of headers."
5066   (gnus-message 7 "Generating summary...")
5067
5068   (setq gnus-newsgroup-threads threads)
5069   (beginning-of-line)
5070
5071   (let ((gnus-tmp-level 0)
5072         (default-score (or gnus-summary-default-score 0))
5073         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
5074         (building-line-count gnus-summary-display-while-building)
5075         (building-count (integerp gnus-summary-display-while-building))
5076         thread number subject stack state gnus-tmp-gathered beg-match
5077         new-roots gnus-tmp-new-adopts thread-end simp-subject
5078         gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
5079         gnus-tmp-replied gnus-tmp-subject-or-nil
5080         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
5081         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
5082         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
5083         tree-stack)
5084
5085     (setq gnus-tmp-prev-subject nil
5086           gnus-tmp-thread-tree-header-string "")
5087
5088     (if (vectorp (car threads))
5089         ;; If this is a straight (sic) list of headers, then a
5090         ;; threaded summary display isn't required, so we just create
5091         ;; an unthreaded one.
5092         (gnus-summary-prepare-unthreaded threads)
5093
5094       ;; Do the threaded display.
5095
5096       (if gnus-summary-display-while-building
5097           (switch-to-buffer (buffer-name)))
5098       (while (or threads stack gnus-tmp-new-adopts new-roots)
5099
5100         (if (and (= gnus-tmp-level 0)
5101                  (or (not stack)
5102                      (= (caar stack) 0))
5103                  (not gnus-tmp-false-parent)
5104                  (or gnus-tmp-new-adopts new-roots))
5105             (if gnus-tmp-new-adopts
5106                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
5107                       thread (list (car gnus-tmp-new-adopts))
5108                       gnus-tmp-header (caar thread)
5109                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
5110               (when new-roots
5111                 (setq thread (list (car new-roots))
5112                       gnus-tmp-header (caar thread)
5113                       new-roots (cdr new-roots))))
5114
5115           (if threads
5116               ;; If there are some threads, we do them before the
5117               ;; threads on the stack.
5118               (setq thread threads
5119                     gnus-tmp-header (caar thread))
5120             ;; There were no current threads, so we pop something off
5121             ;; the stack.
5122             (setq state (car stack)
5123                   gnus-tmp-level (car state)
5124                   tree-stack (cadr state)
5125                   thread (caddr state)
5126                   stack (cdr stack)
5127                   gnus-tmp-header (caar thread))))
5128
5129         (setq gnus-tmp-false-parent nil)
5130         (setq gnus-tmp-root-expunged nil)
5131         (setq thread-end nil)
5132
5133         (if (stringp gnus-tmp-header)
5134             ;; The header is a dummy root.
5135             (cond
5136              ((eq gnus-summary-make-false-root 'adopt)
5137               ;; We let the first article adopt the rest.
5138               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
5139                                                (cddar thread)))
5140               (setq gnus-tmp-gathered
5141                     (nconc (mapcar
5142                             (lambda (h) (mail-header-number (car h)))
5143                             (cddar thread))
5144                            gnus-tmp-gathered))
5145               (setq thread (cons (list (caar thread)
5146                                        (cadar thread))
5147                                  (cdr thread)))
5148               (setq gnus-tmp-level -1
5149                     gnus-tmp-false-parent t))
5150              ((eq gnus-summary-make-false-root 'empty)
5151               ;; We print adopted articles with empty subject fields.
5152               (setq gnus-tmp-gathered
5153                     (nconc (mapcar
5154                             (lambda (h) (mail-header-number (car h)))
5155                             (cddar thread))
5156                            gnus-tmp-gathered))
5157               (setq gnus-tmp-level -1))
5158              ((eq gnus-summary-make-false-root 'dummy)
5159               ;; We remember that we probably want to output a dummy
5160               ;; root.
5161               (setq gnus-tmp-dummy-line gnus-tmp-header)
5162               (setq gnus-tmp-prev-subject gnus-tmp-header))
5163              (t
5164               ;; We do not make a root for the gathered
5165               ;; sub-threads at all.
5166               (setq gnus-tmp-level -1)))
5167
5168           (setq number (mail-header-number gnus-tmp-header)
5169                 subject (mail-header-subject gnus-tmp-header)
5170                 simp-subject (gnus-simplify-subject-fully subject))
5171
5172           (cond
5173            ;; If the thread has changed subject, we might want to make
5174            ;; this subthread into a root.
5175            ((and (null gnus-thread-ignore-subject)
5176                  (not (zerop gnus-tmp-level))
5177                  gnus-tmp-prev-subject
5178                  (not (string= gnus-tmp-prev-subject simp-subject)))
5179             (setq new-roots (nconc new-roots (list (car thread)))
5180                   thread-end t
5181                   gnus-tmp-header nil))
5182            ;; If the article lies outside the current limit,
5183            ;; then we do not display it.
5184            ((not (memq number gnus-newsgroup-limit))
5185             (setq gnus-tmp-gathered
5186                   (nconc (mapcar
5187                           (lambda (h) (mail-header-number (car h)))
5188                           (cdar thread))
5189                          gnus-tmp-gathered))
5190             (setq gnus-tmp-new-adopts (if (cdar thread)
5191                                           (append gnus-tmp-new-adopts
5192                                                   (cdar thread))
5193                                         gnus-tmp-new-adopts)
5194                   thread-end t
5195                   gnus-tmp-header nil)
5196             (when (zerop gnus-tmp-level)
5197               (setq gnus-tmp-root-expunged t)))
5198            ;; Perhaps this article is to be marked as read?
5199            ((and gnus-summary-mark-below
5200                  (< (or (cdr (assq number gnus-newsgroup-scored))
5201                         default-score)
5202                     gnus-summary-mark-below)
5203                  ;; Don't touch sparse articles.
5204                  (not (gnus-summary-article-sparse-p number))
5205                  (not (gnus-summary-article-ancient-p number)))
5206             (setq gnus-newsgroup-unreads
5207                   (delq number gnus-newsgroup-unreads))
5208             (if gnus-newsgroup-auto-expire
5209                 (setq gnus-newsgroup-expirable
5210                       (gnus-add-to-sorted-list
5211                        gnus-newsgroup-expirable number))
5212               (push (cons number gnus-low-score-mark)
5213                     gnus-newsgroup-reads))))
5214
5215           (when gnus-tmp-header
5216             ;; We may have an old dummy line to output before this
5217             ;; article.
5218             (when (and gnus-tmp-dummy-line
5219                        (gnus-subject-equal
5220                         gnus-tmp-dummy-line
5221                         (mail-header-subject gnus-tmp-header)))
5222               (gnus-summary-insert-dummy-line
5223                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
5224               (setq gnus-tmp-dummy-line nil))
5225
5226             ;; Compute the mark.
5227             (setq gnus-tmp-unread (gnus-article-mark number))
5228
5229             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
5230                                   gnus-tmp-header gnus-tmp-level)
5231                   gnus-newsgroup-data)
5232
5233             ;; Actually insert the line.
5234             (setq
5235              gnus-tmp-subject-or-nil
5236              (cond
5237               ((and gnus-thread-ignore-subject
5238                     gnus-tmp-prev-subject
5239                     (not (string= gnus-tmp-prev-subject simp-subject)))
5240                subject)
5241               ((zerop gnus-tmp-level)
5242                (if (and (eq gnus-summary-make-false-root 'empty)
5243                         (memq number gnus-tmp-gathered)
5244                         gnus-tmp-prev-subject
5245                         (string= gnus-tmp-prev-subject simp-subject))
5246                    gnus-summary-same-subject
5247                  subject))
5248               (t gnus-summary-same-subject)))
5249             (if (and (eq gnus-summary-make-false-root 'adopt)
5250                      (= gnus-tmp-level 1)
5251                      (memq number gnus-tmp-gathered))
5252                 (setq gnus-tmp-opening-bracket ?\<
5253                       gnus-tmp-closing-bracket ?\>)
5254               (setq gnus-tmp-opening-bracket ?\[
5255                     gnus-tmp-closing-bracket ?\]))
5256             (if (>= gnus-tmp-level (length gnus-thread-indent-array))
5257                 (gnus-make-thread-indent-array
5258                  (max (* 2 (length gnus-thread-indent-array))
5259                       gnus-tmp-level)))
5260             (setq
5261              gnus-tmp-indentation
5262              (aref gnus-thread-indent-array gnus-tmp-level)
5263              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
5264              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
5265                                 gnus-summary-default-score 0)
5266              gnus-tmp-score-char
5267              (if (or (null gnus-summary-default-score)
5268                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
5269                          gnus-summary-zcore-fuzz))
5270                  ?                      ;Whitespace
5271                (if (< gnus-tmp-score gnus-summary-default-score)
5272                    gnus-score-below-mark gnus-score-over-mark))
5273              gnus-tmp-replied
5274              (cond ((memq number gnus-newsgroup-processable)
5275                     gnus-process-mark)
5276                    ((memq number gnus-newsgroup-cached)
5277                     gnus-cached-mark)
5278                    ((memq number gnus-newsgroup-replied)
5279                     gnus-replied-mark)
5280                    ((memq number gnus-newsgroup-forwarded)
5281                     gnus-forwarded-mark)
5282                    ((memq number gnus-newsgroup-saved)
5283                     gnus-saved-mark)
5284                    ((memq number gnus-newsgroup-recent)
5285                     gnus-recent-mark)
5286                    ((memq number gnus-newsgroup-unseen)
5287                     gnus-unseen-mark)
5288                    (t gnus-no-mark))
5289              gnus-tmp-downloaded
5290              (cond ((memq number gnus-newsgroup-undownloaded)
5291                     gnus-undownloaded-mark)
5292                    (gnus-newsgroup-agentized
5293                     gnus-downloaded-mark)
5294                    (t
5295                     gnus-no-mark))
5296              gnus-tmp-from (mail-header-from gnus-tmp-header)
5297              gnus-tmp-name
5298              (cond
5299               ((string-match "<[^>]+> *$" gnus-tmp-from)
5300                (setq beg-match (match-beginning 0))
5301                (or (and (string-match "^\".+\"" gnus-tmp-from)
5302                         (substring gnus-tmp-from 1 (1- (match-end 0))))
5303                    (substring gnus-tmp-from 0 beg-match)))
5304               ((string-match "(.+)" gnus-tmp-from)
5305                (substring gnus-tmp-from
5306                           (1+ (match-beginning 0)) (1- (match-end 0))))
5307               (t gnus-tmp-from))
5308
5309              ;; Do the %B string
5310              gnus-tmp-thread-tree-header-string
5311              (cond
5312               ((not gnus-show-threads) "")
5313               ((zerop gnus-tmp-level)
5314                (cond ((cdar thread)
5315                       (or gnus-sum-thread-tree-root subject))
5316                      (gnus-tmp-new-adopts
5317                       (or gnus-sum-thread-tree-false-root subject))
5318                      (t
5319                       (or gnus-sum-thread-tree-single-indent subject))))
5320               (t
5321                (concat (apply 'concat
5322                               (mapcar (lambda (item)
5323                                         (if (= item 1)
5324                                             gnus-sum-thread-tree-vertical
5325                                           gnus-sum-thread-tree-indent))
5326                                       (cdr (reverse tree-stack))))
5327                        (if (nth 1 thread)
5328                            gnus-sum-thread-tree-leaf-with-other
5329                          gnus-sum-thread-tree-single-leaf)))))
5330             (when (string= gnus-tmp-name "")
5331               (setq gnus-tmp-name gnus-tmp-from))
5332             (unless (numberp gnus-tmp-lines)
5333               (setq gnus-tmp-lines -1))
5334             (if (= gnus-tmp-lines -1)
5335                 (setq gnus-tmp-lines "?")
5336               (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
5337               (gnus-put-text-property
5338              (point)
5339              (progn (eval gnus-summary-line-format-spec) (point))
5340                'gnus-number number)
5341             (when gnus-visual-p
5342               (forward-line -1)
5343               (gnus-run-hooks 'gnus-summary-update-hook)
5344               (forward-line 1))
5345
5346             (setq gnus-tmp-prev-subject simp-subject)))
5347
5348         (when (nth 1 thread)
5349           (push (list (max 0 gnus-tmp-level)
5350                       (copy-sequence tree-stack)
5351                       (nthcdr 1 thread))
5352                 stack))
5353         (push (if (nth 1 thread) 1 0) tree-stack)
5354         (incf gnus-tmp-level)
5355         (setq threads (if thread-end nil (cdar thread)))
5356         (if gnus-summary-display-while-building
5357             (if building-count
5358                 (progn
5359                   ;; use a set frequency
5360                   (setq building-line-count (1- building-line-count))
5361                   (when (= building-line-count 0)
5362                     (sit-for 0)
5363                     (setq building-line-count
5364                           gnus-summary-display-while-building)))
5365               ;; always
5366               (sit-for 0)))
5367         (unless threads
5368           (setq gnus-tmp-level 0)))))
5369   (gnus-message 7 "Generating summary...done"))
5370
5371 (defun gnus-summary-prepare-unthreaded (headers)
5372   "Generate an unthreaded summary buffer based on HEADERS."
5373   (let (header number mark)
5374
5375     (beginning-of-line)
5376
5377     (while headers
5378       ;; We may have to root out some bad articles...
5379       (when (memq (setq number (mail-header-number
5380                                 (setq header (pop headers))))
5381                   gnus-newsgroup-limit)
5382         ;; Mark article as read when it has a low score.
5383         (when (and gnus-summary-mark-below
5384                    (< (or (cdr (assq number gnus-newsgroup-scored))
5385                           gnus-summary-default-score 0)
5386                       gnus-summary-mark-below)
5387                    (not (gnus-summary-article-ancient-p number)))
5388           (setq gnus-newsgroup-unreads
5389                 (delq number gnus-newsgroup-unreads))
5390           (if gnus-newsgroup-auto-expire
5391               (push number gnus-newsgroup-expirable)
5392             (push (cons number gnus-low-score-mark)
5393                   gnus-newsgroup-reads)))
5394
5395         (setq mark (gnus-article-mark number))
5396         (push (gnus-data-make number mark (1+ (point)) header 0)
5397               gnus-newsgroup-data)
5398         (gnus-summary-insert-line
5399          header 0 number
5400          (memq number gnus-newsgroup-undownloaded)
5401          mark (memq number gnus-newsgroup-replied)
5402          (memq number gnus-newsgroup-expirable)
5403          (mail-header-subject header) nil
5404          (cdr (assq number gnus-newsgroup-scored))
5405          (memq number gnus-newsgroup-processable))))))
5406
5407 (defun gnus-summary-remove-list-identifiers ()
5408   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
5409   (let ((regexp (if (consp gnus-list-identifiers)
5410                     (mapconcat 'identity gnus-list-identifiers " *\\|")
5411                   gnus-list-identifiers))
5412         changed subject)
5413     (when regexp
5414       (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
5415       (dolist (header gnus-newsgroup-headers)
5416         (setq subject (mail-header-subject header)
5417               changed nil)
5418         (while (string-match regexp subject)
5419           (setq subject
5420                 (concat (substring subject 0 (match-beginning 1))
5421                         (substring subject (match-end 0)))
5422                 changed t))
5423         (when changed
5424           (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
5425             (setq subject
5426                   (concat (substring subject 0 (match-beginning 1))
5427                           (substring subject (match-end 1)))))
5428           (mail-header-set-subject header subject))))))
5429
5430 (defun gnus-fetch-headers (articles)
5431   "Fetch headers of ARTICLES."
5432   (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
5433     (gnus-message 5 "Fetching headers for %s..." name)
5434     (prog1
5435         (if (eq 'nov
5436                 (setq gnus-headers-retrieved-by
5437                       (gnus-retrieve-headers
5438                        articles gnus-newsgroup-name
5439                        ;; We might want to fetch old headers, but
5440                        ;; not if there is only 1 article.
5441                        (and (or (and
5442                                  (not (eq gnus-fetch-old-headers 'some))
5443                                  (not (numberp gnus-fetch-old-headers)))
5444                                 (> (length articles) 1))
5445                             gnus-fetch-old-headers))))
5446             (gnus-get-newsgroup-headers-xover
5447              articles nil nil gnus-newsgroup-name t)
5448           (gnus-get-newsgroup-headers))
5449       (gnus-message 5 "Fetching headers for %s...done" name))))
5450
5451 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5452   "Select newsgroup GROUP.
5453 If READ-ALL is non-nil, all articles in the group are selected.
5454 If SELECT-ARTICLES, only select those articles from GROUP."
5455   (let* ((entry (gnus-group-entry group))
5456          ;;!!! Dirty hack; should be removed.
5457          (gnus-summary-ignore-duplicates
5458           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5459               t
5460             gnus-summary-ignore-duplicates))
5461          (info (nth 2 entry))
5462          charset articles fetched-articles cached)
5463
5464     (unless (gnus-check-server
5465              (set (make-local-variable 'gnus-current-select-method)
5466                   (gnus-find-method-for-group group)))
5467       (error "Couldn't open server"))
5468     (setq charset (gnus-group-name-charset gnus-current-select-method group))
5469
5470     (or (and entry (not (eq (car entry) t))) ; Either it's active...
5471         (gnus-activate-group group)     ; Or we can activate it...
5472         (progn                          ; Or we bug out.
5473           (when (equal major-mode 'gnus-summary-mode)
5474             (gnus-kill-buffer (current-buffer)))
5475           (error
5476            "Couldn't activate group %s: %s"
5477            (mm-decode-coding-string group charset)
5478            (mm-decode-coding-string (gnus-status-message group) charset))))
5479
5480     (unless (gnus-request-group group t)
5481         (when (equal major-mode 'gnus-summary-mode)
5482           (gnus-kill-buffer (current-buffer)))
5483         (error "Couldn't request group %s: %s"
5484                (mm-decode-coding-string group charset)
5485                (mm-decode-coding-string (gnus-status-message group) charset)))
5486
5487     (when gnus-agent
5488       (gnus-agent-possibly-alter-active group (gnus-active group) info)
5489
5490       (setq gnus-summary-use-undownloaded-faces
5491             (gnus-agent-find-parameter
5492              group
5493              'agent-enable-undownloaded-faces)))
5494
5495     (setq gnus-newsgroup-name group
5496           gnus-newsgroup-unselected nil
5497           gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5498
5499     (let ((display (gnus-group-find-parameter group 'display)))
5500       (setq gnus-newsgroup-display
5501             (cond
5502              ((not (zerop (or (car-safe read-all) 0)))
5503               ;; The user entered the group with C-u SPC/RET, let's show
5504               ;; all articles.
5505               'gnus-not-ignore)
5506              ((eq display 'all)
5507               'gnus-not-ignore)
5508              ((arrayp display)
5509               (gnus-summary-display-make-predicate (mapcar 'identity display)))
5510              ((numberp display)
5511               ;; The following is probably the "correct" solution, but
5512               ;; it makes Gnus fetch all headers and then limit the
5513               ;; articles (which is slow), so instead we hack the
5514               ;; select-articles parameter instead. -- Simon Josefsson
5515               ;; <jas@kth.se>
5516               ;;
5517               ;; (gnus-byte-compile
5518               ;;  `(lambda () (> number ,(- (cdr (gnus-active group))
5519               ;;                         display)))))
5520               (setq select-articles
5521                     (gnus-uncompress-range
5522                      (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5523                              (if (> tmp 0)
5524                                  tmp
5525                                1))
5526                            (cdr (gnus-active group)))))
5527               nil)
5528              (t
5529               nil))))
5530
5531     (gnus-summary-setup-default-charset)
5532
5533     ;; Kludge to avoid having cached articles nixed out in virtual groups.
5534     (when (gnus-virtual-group-p group)
5535       (setq cached gnus-newsgroup-cached))
5536
5537     (setq gnus-newsgroup-unreads
5538           (gnus-sorted-ndifference
5539            (gnus-sorted-ndifference gnus-newsgroup-unreads
5540                                     gnus-newsgroup-marked)
5541            gnus-newsgroup-dormant))
5542
5543     (setq gnus-newsgroup-processable nil)
5544
5545     (gnus-update-read-articles group gnus-newsgroup-unreads)
5546
5547     ;; Adjust and set lists of article marks.
5548     (when info
5549       (gnus-adjust-marked-articles info))
5550     (if (setq articles select-articles)
5551         (setq gnus-newsgroup-unselected
5552               (gnus-sorted-difference gnus-newsgroup-unreads articles))
5553       (setq articles (gnus-articles-to-read group read-all)))
5554
5555     (cond
5556      ((null articles)
5557       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5558       'quit)
5559      ((eq articles 0) nil)
5560      (t
5561       ;; Init the dependencies hash table.
5562       (setq gnus-newsgroup-dependencies
5563             (gnus-make-hashtable (length articles)))
5564       (gnus-set-global-variables)
5565       ;; Retrieve the headers and read them in.
5566
5567       (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5568
5569       ;; Kludge to avoid having cached articles nixed out in virtual groups.
5570       (when cached
5571         (setq gnus-newsgroup-cached cached))
5572
5573       ;; Suppress duplicates?
5574       (when gnus-suppress-duplicates
5575         (gnus-dup-suppress-articles))
5576
5577       ;; Set the initial limit.
5578       (setq gnus-newsgroup-limit (copy-sequence articles))
5579       ;; Remove canceled articles from the list of unread articles.
5580       (setq fetched-articles
5581             (mapcar (lambda (headers) (mail-header-number headers))
5582                     gnus-newsgroup-headers))
5583       (setq gnus-newsgroup-articles fetched-articles)
5584       (setq gnus-newsgroup-unreads
5585             (gnus-sorted-nintersection
5586              gnus-newsgroup-unreads fetched-articles))
5587       (gnus-compute-unseen-list)
5588
5589       ;; Removed marked articles that do not exist.
5590       (gnus-update-missing-marks
5591        (gnus-sorted-difference articles fetched-articles))
5592       ;; We might want to build some more threads first.
5593       (when (and gnus-fetch-old-headers
5594                  (eq gnus-headers-retrieved-by 'nov))
5595         (if (eq gnus-fetch-old-headers 'invisible)
5596             (gnus-build-all-threads)
5597           (gnus-build-old-threads)))
5598       ;; Let the Gnus agent mark articles as read.
5599       (when gnus-agent
5600         (gnus-agent-get-undownloaded-list))
5601       ;; Remove list identifiers from subject
5602       (when gnus-list-identifiers
5603         (gnus-summary-remove-list-identifiers))
5604       ;; Check whether auto-expire is to be done in this group.
5605       (setq gnus-newsgroup-auto-expire
5606             (gnus-group-auto-expirable-p group))
5607       ;; Set up the article buffer now, if necessary.
5608       (unless (and gnus-single-article-buffer
5609                    (equal gnus-article-buffer "*Article*"))
5610         (gnus-article-setup-buffer))
5611       ;; First and last article in this newsgroup.
5612       (when gnus-newsgroup-headers
5613         (setq gnus-newsgroup-begin
5614               (mail-header-number (car gnus-newsgroup-headers))
5615               gnus-newsgroup-end
5616               (mail-header-number
5617                (gnus-last-element gnus-newsgroup-headers))))
5618       ;; GROUP is successfully selected.
5619       (or gnus-newsgroup-headers t)))))
5620
5621 (defun gnus-compute-unseen-list ()
5622   ;; The `seen' marks are treated specially.
5623   (if (not gnus-newsgroup-seen)
5624       (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5625     (setq gnus-newsgroup-unseen
5626           (gnus-inverse-list-range-intersection
5627            gnus-newsgroup-articles gnus-newsgroup-seen))))
5628
5629 (declare-function gnus-get-predicate "gnus-agent" (predicate))
5630
5631 (defun gnus-summary-display-make-predicate (display)
5632   (require 'gnus-agent)
5633   (when (= (length display) 1)
5634     (setq display (car display)))
5635   (unless gnus-summary-display-cache
5636     (dolist (elem (append '((unread . unread)
5637                             (read . read)
5638                             (unseen . unseen))
5639                           gnus-article-mark-lists))
5640       (push (cons (cdr elem)
5641                   (gnus-byte-compile
5642                    `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5643             gnus-summary-display-cache)))
5644   (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5645         (gnus-category-predicate-cache gnus-summary-display-cache))
5646     (gnus-get-predicate display)))
5647
5648 ;; Uses the dynamically bound `number' variable.
5649 (defvar number)
5650 (defun gnus-article-marked-p (type &optional article)
5651   (let ((article (or article number)))
5652     (cond
5653      ((eq type 'tick)
5654       (memq article gnus-newsgroup-marked))
5655      ((eq type 'spam)
5656       (memq article gnus-newsgroup-spam-marked))
5657      ((eq type 'unsend)
5658       (memq article gnus-newsgroup-unsendable))
5659      ((eq type 'undownload)
5660       (memq article gnus-newsgroup-undownloaded))
5661      ((eq type 'download)
5662       (memq article gnus-newsgroup-downloadable))
5663      ((eq type 'unread)
5664       (memq article gnus-newsgroup-unreads))
5665      ((eq type 'read)
5666       (memq article gnus-newsgroup-reads))
5667      ((eq type 'dormant)
5668       (memq article gnus-newsgroup-dormant) )
5669      ((eq type 'expire)
5670       (memq article gnus-newsgroup-expirable))
5671      ((eq type 'reply)
5672       (memq article gnus-newsgroup-replied))
5673      ((eq type 'killed)
5674       (memq article gnus-newsgroup-killed))
5675      ((eq type 'bookmark)
5676       (assq article gnus-newsgroup-bookmarks))
5677      ((eq type 'score)
5678       (assq article gnus-newsgroup-scored))
5679      ((eq type 'save)
5680       (memq article gnus-newsgroup-saved))
5681      ((eq type 'cache)
5682       (memq article gnus-newsgroup-cached))
5683      ((eq type 'forward)
5684       (memq article gnus-newsgroup-forwarded))
5685      ((eq type 'seen)
5686       (not (memq article gnus-newsgroup-unseen)))
5687      ((eq type 'recent)
5688       (memq article gnus-newsgroup-recent))
5689      (t t))))
5690
5691 (defun gnus-articles-to-read (group &optional read-all)
5692   "Find out what articles the user wants to read."
5693   (let* ((articles
5694           ;; Select all articles if `read-all' is non-nil, or if there
5695           ;; are no unread articles.
5696           (if (or read-all
5697                   (and (zerop (length gnus-newsgroup-marked))
5698                        (zerop (length gnus-newsgroup-unreads)))
5699                   ;; Fetch all if the predicate is non-nil.
5700                   gnus-newsgroup-display)
5701               ;; We want to select the headers for all the articles in
5702               ;; the group, so we select either all the active
5703               ;; articles in the group, or (if that's nil), the
5704               ;; articles in the cache.
5705               (or
5706                (if gnus-newsgroup-maximum-articles
5707                    (let ((active (gnus-active group)))
5708                      (gnus-uncompress-range
5709                       (cons (max (car active)
5710                                  (- (cdr active)
5711                                     gnus-newsgroup-maximum-articles
5712                                     -1))
5713                             (cdr active))))
5714                  (gnus-uncompress-range (gnus-active group)))
5715                (gnus-cache-articles-in-group group))
5716             ;; Select only the "normal" subset of articles.
5717             (gnus-sorted-nunion
5718              (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5719              gnus-newsgroup-unreads)))
5720          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5721          (scored (length scored-list))
5722          (number (length articles))
5723          (marked (+ (length gnus-newsgroup-marked)
5724                     (length gnus-newsgroup-dormant)))
5725          (select
5726           (cond
5727            ((numberp read-all)
5728             read-all)
5729            ((numberp gnus-newsgroup-display)
5730             gnus-newsgroup-display)
5731            (t
5732             (condition-case ()
5733                 (cond
5734                  ((and (or (<= scored marked) (= scored number))
5735                        (numberp gnus-large-newsgroup)
5736                        (> number gnus-large-newsgroup))
5737                   (let* ((cursor-in-echo-area nil)
5738                          (initial (gnus-parameter-large-newsgroup-initial
5739                                    gnus-newsgroup-name))
5740                          (input
5741                           (read-string
5742                            (format
5743                             "How many articles from %s (%s %d): "
5744                             (gnus-group-decoded-name gnus-newsgroup-name)
5745                             (if initial "max" "default")
5746                             number)
5747                            (if initial
5748                                (cons (number-to-string initial)
5749                                      0)))))
5750                     (if (string-match "^[ \t]*$" input) number input)))
5751                  ((and (> scored marked) (< scored number)
5752                        (> (- scored number) 20))
5753                   (let ((input
5754                          (read-string
5755                           (format "%s %s (%d scored, %d total): "
5756                                   "How many articles from"
5757                                   (gnus-group-decoded-name group)
5758                                   scored number))))
5759                     (if (string-match "^[ \t]*$" input)
5760                         number input)))
5761                  (t number))
5762               (quit
5763                (message "Quit getting the articles to read")
5764                nil))))))
5765     (setq select (if (stringp select) (string-to-number select) select))
5766     (if (or (null select) (zerop select))
5767         select
5768       (if (and (not (zerop scored)) (<= (abs select) scored))
5769           (progn
5770             (setq articles (sort scored-list '<))
5771             (setq number (length articles)))
5772         (setq articles (copy-sequence articles)))
5773
5774       (when (< (abs select) number)
5775         (if (< select 0)
5776             ;; Select the N oldest articles.
5777             (setcdr (nthcdr (1- (abs select)) articles) nil)
5778           ;; Select the N most recent articles.
5779           (setq articles (nthcdr (- number select) articles))))
5780       (setq gnus-newsgroup-unselected
5781             (gnus-sorted-difference gnus-newsgroup-unreads articles))
5782       (when gnus-alter-articles-to-read-function
5783         (setq articles
5784               (sort
5785                (funcall gnus-alter-articles-to-read-function
5786                         gnus-newsgroup-name articles)
5787                '<)))
5788       articles)))
5789
5790 (defun gnus-killed-articles (killed articles)
5791   (let (out)
5792     (while articles
5793       (when (inline (gnus-member-of-range (car articles) killed))
5794         (push (car articles) out))
5795       (setq articles (cdr articles)))
5796     out))
5797
5798 (defun gnus-uncompress-marks (marks)
5799   "Uncompress the mark ranges in MARKS."
5800   (let ((uncompressed '(score bookmark))
5801         out)
5802     (while marks
5803       (if (memq (caar marks) uncompressed)
5804           (push (car marks) out)
5805         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5806       (setq marks (cdr marks)))
5807     out))
5808
5809 (defun gnus-article-mark-to-type (mark)
5810   "Return the type of MARK."
5811   (or (cadr (assq mark gnus-article-special-mark-lists))
5812       'list))
5813
5814 (defun gnus-article-unpropagatable-p (mark)
5815   "Return whether MARK should be propagated to back end."
5816   (memq mark gnus-article-unpropagated-mark-lists))
5817
5818 (defun gnus-adjust-marked-articles (info)
5819   "Set all article lists and remove all marks that are no longer valid."
5820   (let* ((marked-lists (gnus-info-marks info))
5821          (active (gnus-active (gnus-info-group info)))
5822          (min (car active))
5823          (max (cdr active))
5824          (types gnus-article-mark-lists)
5825          marks var articles article mark mark-type
5826          bgn end)
5827
5828     (dolist (marks marked-lists)
5829       (setq mark (car marks)
5830             mark-type (gnus-article-mark-to-type mark)
5831             var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5832
5833       ;; We set the variable according to the type of the marks list,
5834       ;; and then adjust the marks to a subset of the active articles.
5835       (cond
5836        ;; Adjust "simple" lists - compressed yet unsorted
5837        ((eq mark-type 'list)
5838         ;; Simultaneously uncompress and clip to active range
5839         ;; See gnus-uncompress-range for a description of possible marks
5840         (let (l lh)
5841           (if (not (cadr marks))
5842               (set var nil)
5843             (setq articles (if (numberp (cddr marks))
5844                                (list (cdr marks))
5845                              (cdr marks))
5846                   lh (cons nil nil)
5847                   l lh)
5848
5849             (while (setq article (pop articles))
5850               (cond ((consp article)
5851                      (setq bgn (max (car article) min)
5852                            end (min (cdr article) max))
5853                      (while (<= bgn end)
5854                        (setq l (setcdr l (cons bgn nil))
5855                              bgn (1+ bgn))))
5856                     ((and (<= min article)
5857                           (>= max article))
5858                      (setq l (setcdr l (cons article nil))))))
5859             (set var (cdr lh)))))
5860        ;; Adjust assocs.
5861        ((eq mark-type 'tuple)
5862         (set var (setq articles (cdr marks)))
5863         (when (not (listp (cdr (symbol-value var))))
5864           (set var (list (symbol-value var))))
5865         (when (not (listp (cdr articles)))
5866           (setq articles (list articles)))
5867         (while articles
5868           (when (or (not (consp (setq article (pop articles))))
5869                     (< (car article) min)
5870                     (> (car article) max))
5871             (set var (delq article (symbol-value var))))))
5872        ;; Adjust ranges (sloppily).
5873        ((eq mark-type 'range)
5874         (cond
5875          ((eq mark 'seen)
5876           ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5877           ;; It should be (seen (NUM1 . NUM2)).
5878           (when (numberp (cddr marks))
5879             (setcdr marks (list (cdr marks))))
5880           (setq articles (cdr marks))
5881           (while (and articles
5882                       (or (and (consp (car articles))
5883                                (> min (cdar articles)))
5884                           (and (numberp (car articles))
5885                                (> min (car articles)))))
5886             (pop articles))
5887           (set var articles))))))))
5888
5889 (defun gnus-update-missing-marks (missing)
5890   "Go through the list of MISSING articles and remove them from the mark lists."
5891   (when missing
5892     (let (var m)
5893       ;; Go through all types.
5894       (dolist (elem gnus-article-mark-lists)
5895         (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5896           (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5897           (when (symbol-value var)
5898             ;; This list has articles.  So we delete all missing
5899             ;; articles from it.
5900             (setq m missing)
5901             (while m
5902               (set var (delq (pop m) (symbol-value var))))))))))
5903
5904 (defun gnus-update-marks ()
5905   "Enter the various lists of marked articles into the newsgroup info list."
5906   (let ((types gnus-article-mark-lists)
5907         (info (gnus-get-info gnus-newsgroup-name))
5908         type list newmarked symbol delta-marks)
5909     (when info
5910       ;; Add all marks lists to the list of marks lists.
5911       (while (setq type (pop types))
5912         (setq list (symbol-value
5913                     (setq symbol
5914                           (intern (format "gnus-newsgroup-%s" (car type))))))
5915
5916         (when list
5917           ;; Get rid of the entries of the articles that have the
5918           ;; default score.
5919           (when (and (eq (cdr type) 'score)
5920                      gnus-save-score
5921                      list)
5922             (let* ((arts list)
5923                    (prev (cons nil list))
5924                    (all prev))
5925               (while arts
5926                 (if (or (not (consp (car arts)))
5927                         (= (cdar arts) gnus-summary-default-score))
5928                     (setcdr prev (cdr arts))
5929                   (setq prev arts))
5930                 (setq arts (cdr arts)))
5931               (setq list (cdr all)))))
5932
5933         (when (eq (cdr type) 'seen)
5934           (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5935
5936         (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5937           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5938
5939         (when (and (gnus-check-backend-function
5940                     'request-set-mark gnus-newsgroup-name)
5941                    (not (gnus-article-unpropagatable-p (cdr type))))
5942           (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5943                  (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5944                  (add (gnus-remove-from-range
5945                        (gnus-copy-sequence list) old)))
5946             (when add
5947               (push (list add 'add (list (cdr type))) delta-marks))
5948             (when del
5949               (push (list del 'del (list (cdr type))) delta-marks))))
5950
5951         (when list
5952           (push (cons (cdr type) list) newmarked)))
5953
5954       (when delta-marks
5955         (unless (gnus-check-group gnus-newsgroup-name)
5956           (error "Can't open server for %s" gnus-newsgroup-name))
5957         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5958
5959       ;; Enter these new marks into the info of the group.
5960       (if (nthcdr 3 info)
5961           (setcar (nthcdr 3 info) newmarked)
5962         ;; Add the marks lists to the end of the info.
5963         (when newmarked
5964           (setcdr (nthcdr 2 info) (list newmarked))))
5965
5966       ;; Cut off the end of the info if there's nothing else there.
5967       (let ((i 5))
5968         (while (and (> i 2)
5969                     (not (nth i info)))
5970           (when (nthcdr (decf i) info)
5971             (setcdr (nthcdr i info) nil)))))))
5972
5973 (defun gnus-set-mode-line (where)
5974   "Set the mode line of the article or summary buffers.
5975 If WHERE is `summary', the summary mode line format will be used."
5976   ;; Is this mode line one we keep updated?
5977   (when (and (memq where gnus-updated-mode-lines)
5978              (symbol-value
5979               (intern (format "gnus-%s-mode-line-format-spec" where))))
5980     (let (mode-string)
5981       ;; We evaluate this in the summary buffer since these
5982       ;; variables are buffer-local to that buffer.
5983       (with-current-buffer gnus-summary-buffer
5984         ;; We bind all these variables that are used in the `eval' form
5985         ;; below.
5986         (let* ((mformat (symbol-value
5987                          (intern
5988                           (format "gnus-%s-mode-line-format-spec" where))))
5989                (gnus-tmp-group-name (gnus-mode-string-quote
5990                                      (gnus-group-decoded-name
5991                                       gnus-newsgroup-name)))
5992                (gnus-tmp-article-number (or gnus-current-article 0))
5993                (gnus-tmp-unread gnus-newsgroup-unreads)
5994                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
5995                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
5996                (gnus-tmp-unread-and-unselected
5997                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
5998                             (zerop gnus-tmp-unselected))
5999                        "")
6000                       ((zerop gnus-tmp-unselected)
6001                        (format "{%d more}" gnus-tmp-unread-and-unticked))
6002                       (t (format "{%d(+%d) more}"
6003                                  gnus-tmp-unread-and-unticked
6004                                  gnus-tmp-unselected))))
6005                (gnus-tmp-subject
6006                 (if (and gnus-current-headers
6007                          (vectorp gnus-current-headers))
6008                     (gnus-mode-string-quote
6009                      (mail-header-subject gnus-current-headers))
6010                   ""))
6011                bufname-length max-len
6012                gnus-tmp-header) ;; passed as argument to any user-format-funcs
6013           (setq mode-string (eval mformat))
6014           (setq bufname-length (if (string-match "%b" mode-string)
6015                                    (- (length
6016                                        (buffer-name
6017                                         (if (eq where 'summary)
6018                                             nil
6019                                           (get-buffer gnus-article-buffer))))
6020                                       2)
6021                                  0))
6022           (setq max-len (max 4 (if gnus-mode-non-string-length
6023                                    (- (window-width)
6024                                       gnus-mode-non-string-length
6025                                       bufname-length)
6026                                  (length mode-string))))
6027           ;; We might have to chop a bit of the string off...
6028           (when (> (length mode-string) max-len)
6029             (setq mode-string
6030                   (concat (truncate-string-to-width mode-string (- max-len 3))
6031                           "...")))
6032           ;; Pad the mode string a bit.
6033           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
6034       ;; Update the mode line.
6035       (setq mode-line-buffer-identification
6036             (gnus-mode-line-buffer-identification (list mode-string)))
6037       (set-buffer-modified-p t))))
6038
6039 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
6040   "Go through the HEADERS list and add all Xrefs to a hash table.
6041 The resulting hash table is returned, or nil if no Xrefs were found."
6042   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
6043          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
6044          (xref-hashtb (gnus-make-hashtable))
6045          start group entry number xrefs header)
6046     (while headers
6047       (setq header (pop headers))
6048       (when (and (setq xrefs (mail-header-xref header))
6049                  (not (memq (setq number (mail-header-number header))
6050                             unreads)))
6051         (setq start 0)
6052         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
6053           (setq start (match-end 0))
6054           (setq group (if prefix
6055                           (concat prefix (substring xrefs (match-beginning 1)
6056                                                     (match-end 1)))
6057                         (substring xrefs (match-beginning 1) (match-end 1))))
6058           (setq number
6059                 (string-to-number (substring xrefs (match-beginning 2)
6060                                           (match-end 2))))
6061           (if (setq entry (gnus-gethash group xref-hashtb))
6062               (setcdr entry (cons number (cdr entry)))
6063             (gnus-sethash group (cons number nil) xref-hashtb)))))
6064     (and start xref-hashtb)))
6065
6066 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
6067   "Look through all the headers and mark the Xrefs as read."
6068   (let ((virtual (gnus-virtual-group-p from-newsgroup))
6069         name info xref-hashtb idlist method nth4)
6070     (save-excursion
6071       (set-buffer gnus-group-buffer)
6072       (when (setq xref-hashtb
6073                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
6074         (mapatoms
6075          (lambda (group)
6076            (unless (string= from-newsgroup (setq name (symbol-name group)))
6077              (setq idlist (symbol-value group))
6078              ;; Dead groups are not updated.
6079              (and (prog1
6080                       (setq info (gnus-get-info name))
6081                     (when (stringp (setq nth4 (gnus-info-method info)))
6082                       (setq nth4 (gnus-server-to-method nth4))))
6083                   ;; Only do the xrefs if the group has the same
6084                   ;; select method as the group we have just read.
6085                   (or (gnus-methods-equal-p
6086                        nth4 (gnus-find-method-for-group from-newsgroup))
6087                       virtual
6088                       (equal nth4 (setq method (gnus-find-method-for-group
6089                                                 from-newsgroup)))
6090                       (and (equal (car nth4) (car method))
6091                            (equal (nth 1 nth4) (nth 1 method))))
6092                   gnus-use-cross-reference
6093                   (or (not (eq gnus-use-cross-reference t))
6094                       virtual
6095                       ;; Only do cross-references on subscribed
6096                       ;; groups, if that is what is wanted.
6097                       (<= (gnus-info-level info) gnus-level-subscribed))
6098                   (gnus-group-make-articles-read name idlist))))
6099          xref-hashtb)))))
6100
6101 (defun gnus-compute-read-articles (group articles)
6102   (let* ((entry (gnus-group-entry group))
6103          (info (nth 2 entry))
6104          (active (gnus-active group))
6105          ninfo)
6106     (when entry
6107       ;; First peel off all invalid article numbers.
6108       (when active
6109         (let ((ids articles)
6110               id first)
6111           (while (setq id (pop ids))
6112             (when (and first (> id (cdr active)))
6113               ;; We'll end up in this situation in one particular
6114               ;; obscure situation.  If you re-scan a group and get
6115               ;; a new article that is cross-posted to a different
6116               ;; group that has not been re-scanned, you might get
6117               ;; crossposted article that has a higher number than
6118               ;; Gnus believes possible.  So we re-activate this
6119               ;; group as well.  This might mean doing the
6120               ;; crossposting thingy will *increase* the number
6121               ;; of articles in some groups.  Tsk, tsk.
6122               (setq active (or (gnus-activate-group group) active)))
6123             (when (or (> id (cdr active))
6124                       (< id (car active)))
6125               (setq articles (delq id articles))))))
6126       ;; If the read list is nil, we init it.
6127       (if (and active
6128                (null (gnus-info-read info))
6129                (> (car active) 1))
6130           (setq ninfo (cons 1 (1- (car active))))
6131         (setq ninfo (gnus-info-read info)))
6132       ;; Then we add the read articles to the range.
6133       (gnus-add-to-range
6134        ninfo (setq articles (sort articles '<))))))
6135
6136 (defun gnus-group-make-articles-read (group articles)
6137   "Update the info of GROUP to say that ARTICLES are read."
6138   (let* ((num 0)
6139          (entry (gnus-group-entry group))
6140          (info (nth 2 entry))
6141          (active (gnus-active group))
6142          range)
6143     (when entry
6144       (setq range (gnus-compute-read-articles group articles))
6145       (with-current-buffer gnus-group-buffer
6146         (gnus-undo-register
6147           `(progn
6148              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
6149              (gnus-info-set-read ',info ',(gnus-info-read info))
6150              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
6151              (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
6152              (gnus-group-update-group ,group t))))
6153       ;; Add the read articles to the range.
6154       (gnus-info-set-read info range)
6155       (gnus-request-set-mark group (list (list range 'add '(read))))
6156       ;; Then we have to re-compute how many unread
6157       ;; articles there are in this group.
6158       (when active
6159         (cond
6160          ((not range)
6161           (setq num (- (1+ (cdr active)) (car active))))
6162          ((not (listp (cdr range)))
6163           (setq num (- (cdr active) (- (1+ (cdr range))
6164                                        (car range)))))
6165          (t
6166           (while range
6167             (if (numberp (car range))
6168                 (setq num (1+ num))
6169               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
6170             (setq range (cdr range)))
6171           (setq num (- (cdr active) num))))
6172         ;; Update the number of unread articles.
6173         (setcar entry num)
6174         ;; Update the group buffer.
6175         (unless (gnus-ephemeral-group-p group)
6176           (gnus-group-update-group group t))))))
6177
6178 (defvar gnus-newsgroup-none-id 0)
6179
6180 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
6181   (let ((cur nntp-server-buffer)
6182         (dependencies
6183          (or dependencies
6184              (with-current-buffer gnus-summary-buffer
6185                gnus-newsgroup-dependencies)))
6186         headers id end ref number
6187         (mail-parse-charset gnus-newsgroup-charset)
6188         (mail-parse-ignored-charsets
6189          (save-current-buffer (condition-case nil
6190                                   (set-buffer gnus-summary-buffer)
6191                                 (error))
6192                               gnus-newsgroup-ignored-charsets)))
6193     (with-current-buffer nntp-server-buffer
6194       ;; Translate all TAB characters into SPACE characters.
6195       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
6196       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
6197       (ietf-drums-unfold-fws)
6198       (gnus-run-hooks 'gnus-parse-headers-hook)
6199       (let ((case-fold-search t)
6200             in-reply-to header p lines chars)
6201         (goto-char (point-min))
6202         ;; Search to the beginning of the next header.  Error messages
6203         ;; do not begin with 2 or 3.
6204         (while (re-search-forward "^[23][0-9]+ " nil t)
6205           (setq id nil
6206                 ref nil)
6207           ;; This implementation of this function, with nine
6208           ;; search-forwards instead of the one re-search-forward and
6209           ;; a case (which basically was the old function) is actually
6210           ;; about twice as fast, even though it looks messier.  You
6211           ;; can't have everything, I guess.  Speed and elegance
6212           ;; doesn't always go hand in hand.
6213           (setq
6214            header
6215            (vector
6216             ;; Number.
6217             (prog1
6218                 (setq number (read cur))
6219               (end-of-line)
6220               (setq p (point))
6221               (narrow-to-region (point)
6222                                 (or (and (search-forward "\n.\n" nil t)
6223                                          (- (point) 2))
6224                                     (point))))
6225             ;; Subject.
6226             (progn
6227               (goto-char p)
6228               (if (search-forward "\nsubject:" nil t)
6229                   (funcall gnus-decode-encoded-word-function
6230                            (nnheader-header-value))
6231                 "(none)"))
6232             ;; From.
6233             (progn
6234               (goto-char p)
6235               (if (search-forward "\nfrom:" nil t)
6236                   (funcall gnus-decode-encoded-address-function
6237                            (nnheader-header-value))
6238                 "(nobody)"))
6239             ;; Date.
6240             (progn
6241               (goto-char p)
6242               (if (search-forward "\ndate:" nil t)
6243                   (nnheader-header-value) ""))
6244             ;; Message-ID.
6245             (progn
6246               (goto-char p)
6247               (setq id (if (re-search-forward
6248                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
6249                            ;; We do it this way to make sure the Message-ID
6250                            ;; is (somewhat) syntactically valid.
6251                            (buffer-substring (match-beginning 1)
6252                                              (match-end 1))
6253                          ;; If there was no message-id, we just fake one
6254                          ;; to make subsequent routines simpler.
6255                          (nnheader-generate-fake-message-id number))))
6256             ;; References.
6257             (progn
6258               (goto-char p)
6259               (if (search-forward "\nreferences:" nil t)
6260                   (progn
6261                     (setq end (point))
6262                     (prog1
6263                         (nnheader-header-value)
6264                       (setq ref
6265                             (buffer-substring
6266                              (progn
6267                                (end-of-line)
6268                                (search-backward ">" end t)
6269                                (1+ (point)))
6270                              (progn
6271                                (search-backward "<" end t)
6272                                (point))))))
6273                 ;; Get the references from the in-reply-to header if there
6274                 ;; were no references and the in-reply-to header looks
6275                 ;; promising.
6276                 (if (and (search-forward "\nin-reply-to:" nil t)
6277                          (setq in-reply-to (nnheader-header-value))
6278                          (string-match "<[^>]+>" in-reply-to))
6279                     (let (ref2)
6280                       (setq ref (substring in-reply-to (match-beginning 0)
6281                                            (match-end 0)))
6282                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
6283                         (setq ref2 (substring in-reply-to (match-beginning 0)
6284                                               (match-end 0)))
6285                         (when (> (length ref2) (length ref))
6286                           (setq ref ref2)))
6287                       ref)
6288                   (setq ref nil))))
6289             ;; Chars.
6290             (progn
6291               (goto-char p)
6292               (if (search-forward "\nchars: " nil t)
6293                   (if (numberp (setq chars (ignore-errors (read cur))))
6294                       chars -1)
6295                 -1))
6296             ;; Lines.
6297             (progn
6298               (goto-char p)
6299               (if (search-forward "\nlines: " nil t)
6300                   (if (numberp (setq lines (ignore-errors (read cur))))
6301                       lines -1)
6302                 -1))
6303             ;; Xref.
6304             (progn
6305               (goto-char p)
6306               (and (search-forward "\nxref:" nil t)
6307                    (nnheader-header-value)))
6308             ;; Extra.
6309             (when gnus-extra-headers
6310               (let ((extra gnus-extra-headers)
6311                     out)
6312                 (while extra
6313                   (goto-char p)
6314                   (when (search-forward
6315                          (concat "\n" (symbol-name (car extra)) ":") nil t)
6316                     (push (cons (car extra) (nnheader-header-value))
6317                           out))
6318                   (pop extra))
6319                 out))))
6320           (when (equal id ref)
6321             (setq ref nil))
6322
6323           (when gnus-alter-header-function
6324             (funcall gnus-alter-header-function header)
6325             (setq id (mail-header-id header)
6326                   ref (gnus-parent-id (mail-header-references header))))
6327
6328           (when (setq header
6329                       (gnus-dependencies-add-header
6330                        header dependencies force-new))
6331             (push header headers))
6332           (goto-char (point-max))
6333           (widen))
6334         (nreverse headers)))))
6335
6336 ;; Goes through the xover lines and returns a list of vectors
6337 (defun gnus-get-newsgroup-headers-xover (sequence &optional
6338                                                   force-new dependencies
6339                                                   group also-fetch-heads)
6340   "Parse the news overview data in the server buffer.
6341 Return a list of headers that match SEQUENCE (see
6342 `nntp-retrieve-headers')."
6343   ;; Get the Xref when the users reads the articles since most/some
6344   ;; NNTP servers do not include Xrefs when using XOVER.
6345   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
6346   (let ((mail-parse-charset gnus-newsgroup-charset)
6347         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
6348         (cur nntp-server-buffer)
6349         (dependencies (or dependencies gnus-newsgroup-dependencies))
6350         (allp (cond
6351                ((eq gnus-read-all-available-headers t)
6352                 t)
6353                ((and (stringp gnus-read-all-available-headers)
6354                      group)
6355                 (string-match gnus-read-all-available-headers group))
6356                (t
6357                 nil)))
6358         number headers header)
6359     (with-current-buffer nntp-server-buffer
6360       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
6361       ;; Allow the user to mangle the headers before parsing them.
6362       (gnus-run-hooks 'gnus-parse-headers-hook)
6363       (goto-char (point-min))
6364       (gnus-parse-without-error
6365         (while (and (or sequence allp)
6366                     (not (eobp)))
6367           (setq number (read cur))
6368           (when (not allp)
6369             (while (and sequence
6370                         (< (car sequence) number))
6371               (setq sequence (cdr sequence))))
6372           (when (and (or allp
6373                          (and sequence
6374                               (eq number (car sequence))))
6375                      (progn
6376                        (setq sequence (cdr sequence))
6377                        (setq header (inline
6378                                       (gnus-nov-parse-line
6379                                        number dependencies force-new)))))
6380             (push header headers))
6381           (forward-line 1)))
6382       ;; A common bug in inn is that if you have posted an article and
6383       ;; then retrieves the active file, it will answer correctly --
6384       ;; the new article is included.  However, a NOV entry for the
6385       ;; article may not have been generated yet, so this may fail.
6386       ;; We work around this problem by retrieving the last few
6387       ;; headers using HEAD.
6388       (if (or (not also-fetch-heads)
6389               (not sequence))
6390           ;; We (probably) got all the headers.
6391           (nreverse headers)
6392         (let ((gnus-nov-is-evil t))
6393           (nconc
6394            (nreverse headers)
6395            (when (eq (gnus-retrieve-headers sequence group) 'headers)
6396              (gnus-get-newsgroup-headers))))))))
6397
6398 (defun gnus-article-get-xrefs ()
6399   "Fill in the Xref value in `gnus-current-headers', if necessary.
6400 This is meant to be called in `gnus-article-internal-prepare-hook'."
6401   (let ((headers (with-current-buffer gnus-summary-buffer
6402                    gnus-current-headers)))
6403     (or (not gnus-use-cross-reference)
6404         (not headers)
6405         (and (mail-header-xref headers)
6406              (not (string= (mail-header-xref headers) "")))
6407         (let ((case-fold-search t)
6408               xref)
6409           (save-restriction
6410             (nnheader-narrow-to-headers)
6411             (goto-char (point-min))
6412             (when (or (and (not (eobp))
6413                            (eq (downcase (char-after)) ?x)
6414                            (looking-at "Xref:"))
6415                       (search-forward "\nXref:" nil t))
6416               (goto-char (1+ (match-end 0)))
6417               (setq xref (buffer-substring (point) (point-at-eol)))
6418               (mail-header-set-xref headers xref)))))))
6419
6420 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
6421   "Find article ID and insert the summary line for that article.
6422 OLD-HEADER can either be a header or a line number to insert
6423 the subject line on."
6424   (let* ((line (and (numberp old-header) old-header))
6425          (old-header (and (vectorp old-header) old-header))
6426          (header (cond ((and old-header use-old-header)
6427                         old-header)
6428                        ((and (numberp id)
6429                              (gnus-number-to-header id))
6430                         (gnus-number-to-header id))
6431                        (t
6432                         (gnus-read-header id))))
6433          (number (and (numberp id) id))
6434          d)
6435     (when header
6436       ;; Rebuild the thread that this article is part of and go to the
6437       ;; article we have fetched.
6438       (when (and (not gnus-show-threads)
6439                  old-header)
6440         (when (and number
6441                    (setq d (gnus-data-find (mail-header-number old-header))))
6442           (goto-char (gnus-data-pos d))
6443           (gnus-data-remove
6444            number
6445            (- (point-at-bol)
6446               (prog1
6447                   (1+ (point-at-eol))
6448                 (gnus-delete-line))))))
6449       ;; Remove list identifiers from subject.
6450       (when gnus-list-identifiers
6451         (let ((gnus-newsgroup-headers (list header)))
6452           (gnus-summary-remove-list-identifiers)))
6453       (when old-header
6454         (mail-header-set-number header (mail-header-number old-header)))
6455       (setq gnus-newsgroup-sparse
6456             (delq (setq number (mail-header-number header))
6457                   gnus-newsgroup-sparse))
6458       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
6459       (push number gnus-newsgroup-limit)
6460       (gnus-rebuild-thread (mail-header-id header) line)
6461       (gnus-summary-goto-subject number nil t))
6462     (when (and (numberp number)
6463                (> number 0))
6464       ;; We have to update the boundaries even if we can't fetch the
6465       ;; article if ID is a number -- so that the next `P' or `N'
6466       ;; command will fetch the previous (or next) article even
6467       ;; if the one we tried to fetch this time has been canceled.
6468       (when (> number gnus-newsgroup-end)
6469         (setq gnus-newsgroup-end number))
6470       (when (< number gnus-newsgroup-begin)
6471         (setq gnus-newsgroup-begin number))
6472       (setq gnus-newsgroup-unselected
6473             (delq number gnus-newsgroup-unselected)))
6474     ;; Report back a success?
6475     (and header (mail-header-number header))))
6476
6477 ;;; Process/prefix in the summary buffer
6478
6479 (defun gnus-summary-work-articles (n)
6480   "Return a list of articles to be worked upon.
6481 The prefix argument, the list of process marked articles, and the
6482 current article will be taken into consideration."
6483   (with-current-buffer gnus-summary-buffer
6484     (cond
6485      (n
6486       ;; A numerical prefix has been given.
6487       (setq n (prefix-numeric-value n))
6488       (let ((backward (< n 0))
6489             (n (abs (prefix-numeric-value n)))
6490             articles article)
6491         (save-excursion
6492           (while
6493               (and (> n 0)
6494                    (push (setq article (gnus-summary-article-number))
6495                          articles)
6496                    (if backward
6497                        (gnus-summary-find-prev nil article)
6498                      (gnus-summary-find-next nil article)))
6499             (decf n)))
6500         (nreverse articles)))
6501      ((and (gnus-region-active-p) (mark))
6502       (message "region active")
6503       ;; Work on the region between point and mark.
6504       (let ((max (max (point) (mark)))
6505             articles article)
6506         (save-excursion
6507           (goto-char (min (point) (mark)))
6508           (while
6509               (and
6510                (push (setq article (gnus-summary-article-number)) articles)
6511                (gnus-summary-find-next nil article)
6512                (< (point) max)))
6513           (nreverse articles))))
6514      (gnus-newsgroup-processable
6515       ;; There are process-marked articles present.
6516       ;; Save current state.
6517       (gnus-summary-save-process-mark)
6518       ;; Return the list.
6519       (reverse gnus-newsgroup-processable))
6520      (t
6521       ;; Just return the current article.
6522       (list (gnus-summary-article-number))))))
6523
6524 (defmacro gnus-summary-iterate (arg &rest forms)
6525   "Iterate over the process/prefixed articles and do FORMS.
6526 ARG is the interactive prefix given to the command.  FORMS will be
6527 executed with point over the summary line of the articles."
6528   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6529     `(let ((,articles (gnus-summary-work-articles ,arg)))
6530        (while ,articles
6531          (gnus-summary-goto-subject (car ,articles))
6532          ,@forms
6533          (pop ,articles)))))
6534
6535 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6536 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6537
6538 (defun gnus-summary-save-process-mark ()
6539   "Push the current set of process marked articles on the stack."
6540   (interactive)
6541   (push (copy-sequence gnus-newsgroup-processable)
6542         gnus-newsgroup-process-stack))
6543
6544 (defun gnus-summary-kill-process-mark ()
6545   "Push the current set of process marked articles on the stack and unmark."
6546   (interactive)
6547   (gnus-summary-save-process-mark)
6548   (gnus-summary-unmark-all-processable))
6549
6550 (defun gnus-summary-yank-process-mark ()
6551   "Pop the last process mark state off the stack and restore it."
6552   (interactive)
6553   (unless gnus-newsgroup-process-stack
6554     (error "Empty mark stack"))
6555   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6556
6557 (defun gnus-summary-process-mark-set (set)
6558   "Make SET into the current process marked articles."
6559   (gnus-summary-unmark-all-processable)
6560   (mapc 'gnus-summary-set-process-mark set))
6561
6562 ;;; Searching and stuff
6563
6564 (defun gnus-summary-search-group (&optional backward use-level)
6565   "Search for next unread newsgroup.
6566 If optional argument BACKWARD is non-nil, search backward instead."
6567   (with-current-buffer gnus-group-buffer
6568     (when (gnus-group-search-forward
6569            backward nil (if use-level (gnus-group-group-level) nil))
6570       (gnus-group-group-name))))
6571
6572 (defun gnus-summary-best-group (&optional exclude-group)
6573   "Find the name of the best unread group.
6574 If EXCLUDE-GROUP, do not go to this group."
6575   (with-current-buffer gnus-group-buffer
6576     (save-excursion
6577       (gnus-group-best-unread-group exclude-group))))
6578
6579 (defun gnus-summary-find-next (&optional unread article backward)
6580   (if backward
6581       (gnus-summary-find-prev unread article)
6582     (let* ((dummy (gnus-summary-article-intangible-p))
6583            (article (or article (gnus-summary-article-number)))
6584            (data (gnus-data-find-list article))
6585            result)
6586       (when (and (not dummy)
6587                  (or (not gnus-summary-check-current)
6588                      (not unread)
6589                      (not (gnus-data-unread-p (car data)))))
6590         (setq data (cdr data)))
6591       (when (setq result
6592                   (if unread
6593                       (progn
6594                         (while data
6595                           (unless (memq (gnus-data-number (car data))
6596                                         (cond
6597                                          ((eq gnus-auto-goto-ignores
6598                                               'always-undownloaded)
6599                                           gnus-newsgroup-undownloaded)
6600                                          (gnus-plugged
6601                                           nil)
6602                                          ((eq gnus-auto-goto-ignores
6603                                               'unfetched)
6604                                           gnus-newsgroup-unfetched)
6605                                          ((eq gnus-auto-goto-ignores
6606                                               'undownloaded)
6607                                           gnus-newsgroup-undownloaded)))
6608                             (when (gnus-data-unread-p (car data))
6609                               (setq result (car data)
6610                                     data nil)))
6611                           (setq data (cdr data)))
6612                         result)
6613                     (car data)))
6614         (goto-char (gnus-data-pos result))
6615         (gnus-data-number result)))))
6616
6617 (defun gnus-summary-find-prev (&optional unread article)
6618   (let* ((eobp (eobp))
6619          (article (or article (gnus-summary-article-number)))
6620          (data (gnus-data-find-list article (gnus-data-list 'rev)))
6621          result)
6622     (when (and (not eobp)
6623                (or (not gnus-summary-check-current)
6624                    (not unread)
6625                    (not (gnus-data-unread-p (car data)))))
6626       (setq data (cdr data)))
6627     (when (setq result
6628                 (if unread
6629                     (progn
6630                       (while data
6631                         (unless (memq (gnus-data-number (car data))
6632                                       (cond
6633                                        ((eq gnus-auto-goto-ignores
6634                                             'always-undownloaded)
6635                                         gnus-newsgroup-undownloaded)
6636                                        (gnus-plugged
6637                                         nil)
6638                                        ((eq gnus-auto-goto-ignores
6639                                             'unfetched)
6640                                         gnus-newsgroup-unfetched)
6641                                        ((eq gnus-auto-goto-ignores
6642                                             'undownloaded)
6643                                         gnus-newsgroup-undownloaded)))
6644                           (when (gnus-data-unread-p (car data))
6645                             (setq result (car data)
6646                                   data nil)))
6647                         (setq data (cdr data)))
6648                       result)
6649                   (car data)))
6650       (goto-char (gnus-data-pos result))
6651       (gnus-data-number result))))
6652
6653 (defun gnus-summary-find-subject (subject &optional unread backward article)
6654   (let* ((simp-subject (gnus-simplify-subject-fully subject))
6655          (article (or article (gnus-summary-article-number)))
6656          (articles (gnus-data-list backward))
6657          (arts (gnus-data-find-list article articles))
6658          result)
6659     (when (or (not gnus-summary-check-current)
6660               (not unread)
6661               (not (gnus-data-unread-p (car arts))))
6662       (setq arts (cdr arts)))
6663     (while arts
6664       (and (or (not unread)
6665                (gnus-data-unread-p (car arts)))
6666            (vectorp (gnus-data-header (car arts)))
6667            (gnus-subject-equal
6668             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6669            (setq result (car arts)
6670                  arts nil))
6671       (setq arts (cdr arts)))
6672     (and result
6673          (goto-char (gnus-data-pos result))
6674          (gnus-data-number result))))
6675
6676 (defun gnus-summary-search-forward (&optional unread subject backward)
6677   "Search forward for an article.
6678 If UNREAD, look for unread articles.  If SUBJECT, look for
6679 articles with that subject.  If BACKWARD, search backward instead."
6680   (cond (subject (gnus-summary-find-subject subject unread backward))
6681         (backward (gnus-summary-find-prev unread))
6682         (t (gnus-summary-find-next unread))))
6683
6684 (defun gnus-recenter (&optional n)
6685   "Center point in window and redisplay frame.
6686 Also do horizontal recentering."
6687   (interactive "P")
6688   (when (and gnus-auto-center-summary
6689              (not (eq gnus-auto-center-summary 'vertical)))
6690     (gnus-horizontal-recenter))
6691   (recenter n))
6692
6693 (defun gnus-summary-recenter ()
6694   "Center point in the summary window.
6695 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6696 displayed, no centering will be performed."
6697   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6698   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
6699   (interactive)
6700   ;; The user has to want it.
6701   (when gnus-auto-center-summary
6702     (let* ((top (cond ((< (window-height) 4) 0)
6703                       ((< (window-height) 7) 1)
6704                       (t (if (numberp gnus-auto-center-summary)
6705                              gnus-auto-center-summary
6706                            (/ (1- (window-height)) 2)))))
6707            (height (1- (window-height)))
6708            (bottom (save-excursion (goto-char (point-max))
6709                                    (forward-line (- height))
6710                                    (point)))
6711            (window (get-buffer-window (current-buffer))))
6712       (when (get-buffer-window gnus-article-buffer)
6713         ;; Only do recentering when the article buffer is displayed,
6714         ;; Set the window start to either `bottom', which is the biggest
6715         ;; possible valid number, or the second line from the top,
6716         ;; whichever is the least.
6717         (let ((top-pos (save-excursion (forward-line (- top)) (point))))
6718           (if (> bottom top-pos)
6719               ;; Keep the second line from the top visible
6720               (set-window-start window top-pos)
6721             ;; Try to keep the bottom line visible; if it's partially
6722             ;; obscured, either scroll one more line to make it fully
6723             ;; visible, or revert to using TOP-POS.
6724             (save-excursion
6725               (goto-char (point-max))
6726               (forward-line -1)
6727               (let ((last-line-start (point)))
6728                 (goto-char bottom)
6729                 (set-window-start window (point) t)
6730                 (when (not (pos-visible-in-window-p last-line-start window))
6731                   (forward-line 1)
6732                   (set-window-start window (min (point) top-pos) t)))))))
6733       ;; Do horizontal recentering while we're at it.
6734       (when (and (get-buffer-window (current-buffer) t)
6735                  (not (eq gnus-auto-center-summary 'vertical)))
6736         (let ((selected (selected-window)))
6737           (select-window (get-buffer-window (current-buffer) t))
6738           (gnus-summary-position-point)
6739           (gnus-horizontal-recenter)
6740           (select-window selected))))))
6741
6742 (defun gnus-summary-jump-to-group (newsgroup)
6743   "Move point to NEWSGROUP in group mode buffer."
6744   ;; Keep update point of group mode buffer if visible.
6745   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6746       (save-window-excursion
6747         ;; Take care of tree window mode.
6748         (when (get-buffer-window gnus-group-buffer)
6749           (pop-to-buffer gnus-group-buffer))
6750         (gnus-group-jump-to-group newsgroup))
6751     (save-excursion
6752       ;; Take care of tree window mode.
6753       (if (get-buffer-window gnus-group-buffer 0)
6754           (pop-to-buffer gnus-group-buffer)
6755         (set-buffer gnus-group-buffer))
6756       (gnus-group-jump-to-group newsgroup))))
6757
6758 ;; This function returns a list of article numbers based on the
6759 ;; difference between the ranges of read articles in this group and
6760 ;; the range of active articles.
6761 (defun gnus-list-of-unread-articles (group)
6762   (let* ((read (gnus-info-read (gnus-get-info group)))
6763          (active (or (gnus-active group) (gnus-activate-group group)))
6764          (last (or (cdr active)
6765                    (error "Group %s couldn't be activated " group)))
6766          (bottom (if gnus-newsgroup-maximum-articles
6767                      (max (car active)
6768                           (- last gnus-newsgroup-maximum-articles -1))
6769                    (car active)))
6770          first nlast unread)
6771     ;; If none are read, then all are unread.
6772     (if (not read)
6773         (setq first bottom)
6774       ;; If the range of read articles is a single range, then the
6775       ;; first unread article is the article after the last read
6776       ;; article.  Sounds logical, doesn't it?
6777       (if (and (not (listp (cdr read)))
6778                (or (< (car read) bottom)
6779                    (progn (setq read (list read))
6780                           nil)))
6781           (setq first (max bottom (1+ (cdr read))))
6782         ;; `read' is a list of ranges.
6783         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6784                                   (caar read)))
6785                   1)
6786           (setq first bottom))
6787         (while read
6788           (when first
6789             (while (< first nlast)
6790               (setq unread (cons first unread)
6791                     first (1+ first))))
6792           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6793           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6794           (setq read (cdr read)))))
6795     ;; And add the last unread articles.
6796     (while (<= first last)
6797       (setq unread (cons first unread)
6798             first (1+ first)))
6799     ;; Return the list of unread articles.
6800     (delq 0 (nreverse unread))))
6801
6802 (defun gnus-list-of-read-articles (group)
6803   "Return a list of unread, unticked and non-dormant articles."
6804   (let* ((info (gnus-get-info group))
6805          (marked (gnus-info-marks info))
6806          (active (gnus-active group)))
6807     (and info active
6808          (gnus-list-range-difference
6809           (gnus-list-range-difference
6810            (gnus-sorted-complement
6811             (gnus-uncompress-range
6812              (if gnus-newsgroup-maximum-articles
6813                  (cons (max (car active)
6814                             (- (cdr active)
6815                                gnus-newsgroup-maximum-articles
6816                                -1))
6817                        (cdr active))
6818                active))
6819             (gnus-list-of-unread-articles group))
6820            (cdr (assq 'dormant marked)))
6821           (cdr (assq 'tick marked))))))
6822
6823 ;; This function returns a sequence of article numbers based on the
6824 ;; difference between the ranges of read articles in this group and
6825 ;; the range of active articles.
6826 (defun gnus-sequence-of-unread-articles (group)
6827   (let* ((read (gnus-info-read (gnus-get-info group)))
6828          (active (or (gnus-active group) (gnus-activate-group group)))
6829          (last (cdr active))
6830          (bottom (if gnus-newsgroup-maximum-articles
6831                      (max (car active)
6832                           (- last gnus-newsgroup-maximum-articles -1))
6833                    (car active)))
6834          first nlast unread)
6835     ;; If none are read, then all are unread.
6836     (if (not read)
6837         (setq first bottom)
6838       ;; If the range of read articles is a single range, then the
6839       ;; first unread article is the article after the last read
6840       ;; article.  Sounds logical, doesn't it?
6841       (if (and (not (listp (cdr read)))
6842                (or (< (car read) bottom)
6843                    (progn (setq read (list read))
6844                           nil)))
6845           (setq first (max bottom (1+ (cdr read))))
6846         ;; `read' is a list of ranges.
6847         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6848                                   (caar read)))
6849                   1)
6850           (setq first bottom))
6851         (while read
6852           (when first
6853             (push (cons first nlast) unread))
6854           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6855           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6856           (setq read (cdr read)))))
6857     ;; And add the last unread articles.
6858     (cond ((not (and first last))
6859            nil)
6860           ((< first last)
6861            (push (cons first last) unread))
6862           ((= first last)
6863            (push first unread)))
6864     ;; Return the sequence of unread articles.
6865     (delq 0 (nreverse unread))))
6866
6867 ;; Various summary commands
6868
6869 (defun gnus-summary-select-article-buffer ()
6870   "Reconfigure windows to show article buffer."
6871   (interactive)
6872   (if (not (gnus-buffer-live-p gnus-article-buffer))
6873       (error "There is no article buffer for this summary buffer")
6874     (gnus-configure-windows 'article)
6875     (select-window (get-buffer-window gnus-article-buffer))))
6876
6877 (defun gnus-summary-universal-argument (arg)
6878   "Perform any operation on all articles that are process/prefixed."
6879   (interactive "P")
6880   (let ((articles (gnus-summary-work-articles arg))
6881         func article)
6882     (if (eq
6883          (setq
6884           func
6885           (key-binding
6886            (read-key-sequence
6887             (substitute-command-keys
6888              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6889          'undefined)
6890         (gnus-error 1 "Undefined key")
6891       (save-excursion
6892         (while articles
6893           (gnus-summary-goto-subject (setq article (pop articles)))
6894           (let (gnus-newsgroup-processable)
6895             (command-execute func))
6896           (gnus-summary-remove-process-mark article)))))
6897   (gnus-summary-position-point))
6898
6899 (defun gnus-summary-toggle-truncation (&optional arg)
6900   "Toggle truncation of summary lines.
6901 With ARG, turn line truncation on if ARG is positive."
6902   (interactive "P")
6903   (setq truncate-lines
6904         (if (null arg) (not truncate-lines)
6905           (> (prefix-numeric-value arg) 0)))
6906   (redraw-display))
6907
6908 (defun gnus-summary-find-for-reselect ()
6909   "Return the number of an article to stay on across a reselect.
6910 The current article is considered, then following articles, then previous
6911 articles.  An article is sought which is not cancelled and isn't a temporary
6912 insertion from another group.  If there's no such then return a dummy 0."
6913   (let (found)
6914     (dolist (rev '(nil t))
6915       (unless found      ; don't demand the reverse list if we don't need it
6916         (let ((data (gnus-data-find-list
6917                      (gnus-summary-article-number) (gnus-data-list rev))))
6918           (while (and data (not found))
6919             (if (and (< 0 (gnus-data-number (car data)))
6920                      (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6921                 (setq found (gnus-data-number (car data))))
6922             (setq data (cdr data))))))
6923     (or found 0)))
6924
6925 (defun gnus-summary-reselect-current-group (&optional all rescan)
6926   "Exit and then reselect the current newsgroup.
6927 The prefix argument ALL means to select all articles."
6928   (interactive "P")
6929   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6930     (error "Ephemeral groups can't be reselected"))
6931   (let ((current-subject (gnus-summary-find-for-reselect))
6932         (group gnus-newsgroup-name))
6933     (setq gnus-newsgroup-begin nil)
6934     (gnus-summary-exit nil 'leave-hidden)
6935     ;; We have to adjust the point of group mode buffer because
6936     ;; point was moved to the next unread newsgroup by exiting.
6937     (gnus-summary-jump-to-group group)
6938     (when rescan
6939       (save-excursion
6940         (gnus-group-get-new-news-this-group 1)))
6941     (gnus-group-read-group all t)
6942     (gnus-summary-goto-subject current-subject nil t)))
6943
6944 (defun gnus-summary-rescan-group (&optional all)
6945   "Exit the newsgroup, ask for new articles, and select the newsgroup."
6946   (interactive "P")
6947   (gnus-summary-reselect-current-group all t))
6948
6949 (defun gnus-summary-update-info (&optional non-destructive)
6950   (save-excursion
6951     (let ((group gnus-newsgroup-name))
6952       (when group
6953         (when gnus-newsgroup-kill-headers
6954           (setq gnus-newsgroup-killed
6955                 (gnus-compress-sequence
6956                  (gnus-sorted-union
6957                   (gnus-list-range-intersection
6958                    gnus-newsgroup-unselected gnus-newsgroup-killed)
6959                   gnus-newsgroup-unreads)
6960                  t)))
6961         (unless (listp (cdr gnus-newsgroup-killed))
6962           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
6963         (let ((headers gnus-newsgroup-headers))
6964           ;; Set the new ranges of read articles.
6965           (with-current-buffer gnus-group-buffer
6966             (gnus-undo-force-boundary))
6967           (gnus-update-read-articles
6968            group (gnus-sorted-union
6969                   gnus-newsgroup-unreads gnus-newsgroup-unselected))
6970           ;; Set the current article marks.
6971           (let ((gnus-newsgroup-scored
6972                  (if (and (not gnus-save-score)
6973                           (not non-destructive))
6974                      nil
6975                    gnus-newsgroup-scored)))
6976             (save-excursion
6977               (gnus-update-marks)))
6978           ;; Do the cross-ref thing.
6979           (when gnus-use-cross-reference
6980             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
6981           ;; Do not switch windows but change the buffer to work.
6982           (set-buffer gnus-group-buffer)
6983           (unless (gnus-ephemeral-group-p group)
6984             (gnus-group-update-group group)))))))
6985
6986 (defun gnus-summary-save-newsrc (&optional force)
6987   "Save the current number of read/marked articles in the dribble buffer.
6988 The dribble buffer will then be saved.
6989 If FORCE (the prefix), also save the .newsrc file(s)."
6990   (interactive "P")
6991   (gnus-summary-update-info t)
6992   (if force
6993       (gnus-save-newsrc-file)
6994     (gnus-dribble-save)))
6995
6996 (declare-function gnus-cache-write-active "gnus-cache" (&optional force))
6997
6998 (defun gnus-summary-exit (&optional temporary leave-hidden)
6999   "Exit reading current newsgroup, and then return to group selection mode.
7000 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
7001   (interactive)
7002   (gnus-set-global-variables)
7003   (when (gnus-buffer-live-p gnus-article-buffer)
7004     (with-current-buffer gnus-article-buffer
7005       (mm-destroy-parts gnus-article-mime-handles)
7006       ;; Set it to nil for safety reason.
7007       (setq gnus-article-mime-handle-alist nil)
7008       (setq gnus-article-mime-handles nil)))
7009   (gnus-kill-save-kill-buffer)
7010   (gnus-async-halt-prefetch)
7011   (let* ((group gnus-newsgroup-name)
7012          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
7013          (gnus-group-is-exiting-p t)
7014          (mode major-mode)
7015          (group-point nil)
7016          (buf (current-buffer)))
7017     (unless quit-config
7018       ;; Do adaptive scoring, and possibly save score files.
7019       (when gnus-newsgroup-adaptive
7020         (gnus-score-adaptive))
7021       (when gnus-use-scoring
7022         (gnus-score-save)))
7023     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
7024     ;; If we have several article buffers, we kill them at exit.
7025     (unless gnus-single-article-buffer
7026       (when (gnus-buffer-live-p gnus-article-buffer)
7027         (with-current-buffer gnus-article-buffer
7028           ;; Don't kill sticky article buffers
7029           (unless (eq major-mode 'gnus-sticky-article-mode)
7030             (gnus-kill-buffer gnus-article-buffer)
7031             (setq gnus-article-current nil))))
7032       (gnus-kill-buffer gnus-original-article-buffer))
7033     (when gnus-use-cache
7034       (gnus-cache-possibly-remove-articles)
7035       (gnus-cache-save-buffers))
7036     (gnus-async-prefetch-remove-group group)
7037     (when gnus-suppress-duplicates
7038       (gnus-dup-enter-articles))
7039     (when gnus-use-trees
7040       (gnus-tree-close group))
7041     (when gnus-use-cache
7042       (gnus-cache-write-active))
7043     ;; Remove entries for this group.
7044     (nnmail-purge-split-history (gnus-group-real-name group))
7045     ;; Make all changes in this group permanent.
7046     (unless quit-config
7047       (gnus-run-hooks 'gnus-exit-group-hook)
7048       (gnus-summary-update-info))
7049     (gnus-close-group group)
7050     ;; Make sure where we were, and go to next newsgroup.
7051     (set-buffer gnus-group-buffer)
7052     (unless quit-config
7053       (gnus-group-jump-to-group group))
7054     (gnus-run-hooks 'gnus-summary-exit-hook)
7055     (unless (or quit-config
7056                 (not gnus-summary-next-group-on-exit)
7057                 ;; If this group has disappeared from the summary
7058                 ;; buffer, don't skip forwards.
7059                 (not (string= group (gnus-group-group-name))))
7060       (gnus-group-next-unread-group 1))
7061     (setq group-point (point))
7062     (if temporary
7063         nil                             ;Nothing to do.
7064       (set-buffer buf)
7065       (if (not gnus-kill-summary-on-exit)
7066           (progn
7067             (gnus-deaden-summary)
7068             (setq mode nil))
7069         ;; We set all buffer-local variables to nil.  It is unclear why
7070         ;; this is needed, but if we don't, buffer-local variables are
7071         ;; not garbage-collected, it seems.  This would the lead to en
7072         ;; ever-growing Emacs.
7073         (gnus-summary-clear-local-variables)
7074         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
7075           (gnus-summary-clear-local-variables))
7076         (when (get-buffer gnus-article-buffer)
7077           (bury-buffer gnus-article-buffer))
7078         ;; Return to group mode buffer.
7079         (when (eq mode 'gnus-summary-mode)
7080           (gnus-kill-buffer buf)))
7081       (setq gnus-current-select-method gnus-select-method)
7082       (set-buffer gnus-group-buffer)
7083       (if quit-config
7084           (gnus-handle-ephemeral-exit quit-config)
7085         (goto-char group-point)
7086         ;; If gnus-group-buffer is already displayed, make sure we also move
7087         ;; the cursor in the window that displays it.
7088         (let ((win (get-buffer-window (current-buffer) 0)))
7089           (if win (set-window-point win (point))))
7090         (unless leave-hidden
7091           (gnus-configure-windows 'group 'force)))
7092       ;; Clear the current group name.
7093       (unless quit-config
7094         (setq gnus-newsgroup-name nil)))))
7095
7096 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
7097 (defun gnus-summary-exit-no-update (&optional no-questions)
7098   "Quit reading current newsgroup without updating read article info."
7099   (interactive)
7100   (let* ((group gnus-newsgroup-name)
7101          (gnus-group-is-exiting-p t)
7102          (gnus-group-is-exiting-without-update-p t)
7103          (quit-config (gnus-group-quit-config group)))
7104     (when (or no-questions
7105               gnus-expert-user
7106               (gnus-y-or-n-p "Discard changes to this group and exit? "))
7107       (gnus-async-halt-prefetch)
7108       (run-hooks 'gnus-summary-prepare-exit-hook)
7109       (when (gnus-buffer-live-p gnus-article-buffer)
7110         (with-current-buffer gnus-article-buffer
7111           (mm-destroy-parts gnus-article-mime-handles)
7112           ;; Set it to nil for safety reason.
7113           (setq gnus-article-mime-handle-alist nil)
7114           (setq gnus-article-mime-handles nil)))
7115       ;; If we have several article buffers, we kill them at exit.
7116       (unless gnus-single-article-buffer
7117         (gnus-kill-buffer gnus-article-buffer)
7118         (gnus-kill-buffer gnus-original-article-buffer)
7119         (setq gnus-article-current nil))
7120       (if (not gnus-kill-summary-on-exit)
7121           (gnus-deaden-summary)
7122         (gnus-close-group group)
7123         (gnus-summary-clear-local-variables)
7124         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
7125           (gnus-summary-clear-local-variables))
7126         (gnus-kill-buffer gnus-summary-buffer))
7127       (unless gnus-single-article-buffer
7128         (setq gnus-article-current nil))
7129       (when gnus-use-trees
7130         (gnus-tree-close group))
7131       (gnus-async-prefetch-remove-group group)
7132       (when (get-buffer gnus-article-buffer)
7133         (bury-buffer gnus-article-buffer))
7134       ;; Return to the group buffer.
7135       (gnus-configure-windows 'group 'force)
7136       ;; Clear the current group name.
7137       (setq gnus-newsgroup-name nil)
7138       (unless (gnus-ephemeral-group-p group)
7139         (gnus-group-update-group group))
7140       (when (equal (gnus-group-group-name) group)
7141         (gnus-group-next-unread-group 1))
7142       (when quit-config
7143         (gnus-handle-ephemeral-exit quit-config)))))
7144
7145 (defun gnus-handle-ephemeral-exit (quit-config)
7146   "Handle movement when leaving an ephemeral group.
7147 The state which existed when entering the ephemeral is reset."
7148   (if (not (buffer-name (car quit-config)))
7149       (gnus-configure-windows 'group 'force)
7150     (set-buffer (car quit-config))
7151     (cond ((eq major-mode 'gnus-summary-mode)
7152            (gnus-set-global-variables))
7153           ((eq major-mode 'gnus-article-mode)
7154            (save-current-buffer
7155              ;; The `gnus-summary-buffer' variable may point
7156              ;; to the old summary buffer when using a single
7157              ;; article buffer.
7158              (unless (gnus-buffer-live-p gnus-summary-buffer)
7159                (set-buffer gnus-group-buffer))
7160              (set-buffer gnus-summary-buffer)
7161              (gnus-set-global-variables))))
7162     (if (or (eq (cdr quit-config) 'article)
7163             (eq (cdr quit-config) 'pick))
7164         (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
7165             (gnus-configure-windows 'pick 'force)
7166           (gnus-configure-windows (cdr quit-config) 'force))
7167       (gnus-configure-windows (cdr quit-config) 'force))
7168     (when (eq major-mode 'gnus-summary-mode)
7169       (if (memq gnus-auto-select-on-ephemeral-exit '(next-noselect
7170                                                      next-unread-noselect))
7171           (when (zerop (cond ((eq gnus-auto-select-on-ephemeral-exit
7172                                   'next-noselect)
7173                               (gnus-summary-next-subject 1 nil t))
7174                              ((eq gnus-auto-select-on-ephemeral-exit
7175                                   'next-unread-noselect)
7176                               (gnus-summary-next-subject 1 t t))))
7177             ;; Hide the article buffer which displays the article different
7178             ;; from the one that the cursor points to in the summary buffer.
7179             (gnus-configure-windows 'summary 'force))
7180         (cond ((eq gnus-auto-select-on-ephemeral-exit 'next)
7181                (gnus-summary-next-subject 1))
7182               ((eq gnus-auto-select-on-ephemeral-exit 'next-unread)
7183                (gnus-summary-next-subject 1 t))))
7184       (gnus-summary-recenter)
7185       (gnus-summary-position-point))))
7186
7187 ;;; Dead summaries.
7188
7189 (defvar gnus-dead-summary-mode-map nil)
7190
7191 (unless gnus-dead-summary-mode-map
7192   (setq gnus-dead-summary-mode-map (make-keymap))
7193   (suppress-keymap gnus-dead-summary-mode-map)
7194   (substitute-key-definition
7195    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
7196   (dolist (key '("\C-d" "\r" "\177" [delete]))
7197     (define-key gnus-dead-summary-mode-map
7198       key 'gnus-summary-wake-up-the-dead))
7199   (dolist (key '("q" "Q"))
7200     (define-key gnus-dead-summary-mode-map key 'bury-buffer)))
7201
7202 (defvar gnus-dead-summary-mode nil
7203   "Minor mode for Gnus summary buffers.")
7204
7205 (defun gnus-dead-summary-mode (&optional arg)
7206   "Minor mode for Gnus summary buffers."
7207   (interactive "P")
7208   (when (eq major-mode 'gnus-summary-mode)
7209     (make-local-variable 'gnus-dead-summary-mode)
7210     (setq gnus-dead-summary-mode
7211           (if (null arg) (not gnus-dead-summary-mode)
7212             (> (prefix-numeric-value arg) 0)))
7213     (when gnus-dead-summary-mode
7214       (add-minor-mode
7215        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
7216
7217 (defun gnus-deaden-summary ()
7218   "Make the current summary buffer into a dead summary buffer."
7219   ;; Kill any previous dead summary buffer.
7220   (when (and gnus-dead-summary
7221              (buffer-name gnus-dead-summary))
7222     (with-current-buffer gnus-dead-summary
7223       (when gnus-dead-summary-mode
7224         (kill-buffer (current-buffer)))))
7225   ;; Make this the current dead summary.
7226   (setq gnus-dead-summary (current-buffer))
7227   (gnus-dead-summary-mode 1)
7228   (let ((name (buffer-name)))
7229     (when (string-match "Summary" name)
7230       (rename-buffer
7231        (concat (substring name 0 (match-beginning 0)) "Dead "
7232                (substring name (match-beginning 0)))
7233        t)
7234       (bury-buffer))))
7235
7236 (defun gnus-kill-or-deaden-summary (buffer)
7237   "Kill or deaden the summary BUFFER."
7238   (save-excursion
7239     (when (and (buffer-name buffer)
7240                (not gnus-single-article-buffer))
7241       (with-current-buffer buffer
7242         (gnus-kill-buffer gnus-article-buffer)
7243         (gnus-kill-buffer gnus-original-article-buffer)))
7244     (cond
7245      ;; Kill the buffer.
7246      (gnus-kill-summary-on-exit
7247       (when (and gnus-use-trees
7248                  (gnus-buffer-exists-p buffer))
7249         (with-current-buffer buffer
7250           (gnus-tree-close gnus-newsgroup-name)))
7251       (gnus-kill-buffer buffer))
7252      ;; Deaden the buffer.
7253      ((gnus-buffer-exists-p buffer)
7254       (with-current-buffer buffer
7255         (gnus-deaden-summary))))))
7256
7257 (defun gnus-summary-wake-up-the-dead (&rest args)
7258   "Wake up the dead summary buffer."
7259   (interactive)
7260   (gnus-dead-summary-mode -1)
7261   (let ((name (buffer-name)))
7262     (when (string-match "Dead " name)
7263       (rename-buffer
7264        (concat (substring name 0 (match-beginning 0))
7265                (substring name (match-end 0)))
7266        t)))
7267   (gnus-message 3 "This dead summary is now alive again"))
7268
7269 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
7270 (defun gnus-summary-fetch-faq (&optional faq-dir)
7271   "Fetch the FAQ for the current group.
7272 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
7273 in."
7274   (interactive
7275    (list
7276     (when current-prefix-arg
7277       (completing-read
7278        "FAQ dir: " (and (listp gnus-group-faq-directory)
7279                         (mapcar 'list
7280                                 gnus-group-faq-directory))))))
7281   (let (gnus-faq-buffer)
7282     (when (setq gnus-faq-buffer
7283                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
7284       (gnus-configure-windows 'summary-faq))))
7285
7286 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
7287 (defun gnus-summary-describe-group (&optional force)
7288   "Describe the current newsgroup."
7289   (interactive "P")
7290   (gnus-group-describe-group force gnus-newsgroup-name))
7291
7292 (defun gnus-summary-describe-briefly ()
7293   "Describe summary mode commands briefly."
7294   (interactive)
7295   (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")))
7296
7297 ;; Walking around group mode buffer from summary mode.
7298
7299 (defun gnus-summary-next-group (&optional no-article target-group backward)
7300   "Exit current newsgroup and then select next unread newsgroup.
7301 If prefix argument NO-ARTICLE is non-nil, no article is selected
7302 initially.  If TARGET-GROUP, go to this group.  If BACKWARD, go to
7303 previous group instead."
7304   (interactive "P")
7305   ;; Stop pre-fetching.
7306   (gnus-async-halt-prefetch)
7307   (let ((current-group gnus-newsgroup-name)
7308         (current-buffer (current-buffer))
7309         entered)
7310     ;; First we semi-exit this group to update Xrefs and all variables.
7311     ;; We can't do a real exit, because the window conf must remain
7312     ;; the same in case the user is prompted for info, and we don't
7313     ;; want the window conf to change before that...
7314     (gnus-summary-exit t)
7315     (while (not entered)
7316       ;; Then we find what group we are supposed to enter.
7317       (set-buffer gnus-group-buffer)
7318       (gnus-group-jump-to-group current-group)
7319       (setq target-group
7320             (or target-group
7321                 (if (eq gnus-keep-same-level 'best)
7322                     (gnus-summary-best-group gnus-newsgroup-name)
7323                   (gnus-summary-search-group backward gnus-keep-same-level))))
7324       (if (not target-group)
7325           ;; There are no further groups, so we return to the group
7326           ;; buffer.
7327           (progn
7328             (gnus-message 5 "Returning to the group buffer")
7329             (setq entered t)
7330             (when (gnus-buffer-live-p current-buffer)
7331               (set-buffer current-buffer)
7332               (gnus-summary-exit))
7333             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
7334         ;; We try to enter the target group.
7335         (gnus-group-jump-to-group target-group)
7336         (let ((unreads (gnus-group-group-unread)))
7337           (if (and (or (eq t unreads)
7338                        (and unreads (not (zerop unreads))))
7339                    (gnus-summary-read-group
7340                     target-group nil no-article
7341                     (and (buffer-name current-buffer) current-buffer)
7342                     nil backward))
7343               (setq entered t)
7344             (setq current-group target-group
7345                   target-group nil)))))))
7346
7347 (defun gnus-summary-prev-group (&optional no-article)
7348   "Exit current newsgroup and then select previous unread newsgroup.
7349 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
7350   (interactive "P")
7351   (gnus-summary-next-group no-article nil t))
7352
7353 ;; Walking around summary lines.
7354
7355 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
7356   "Go to the first subject satisfying any non-nil constraint.
7357 If UNREAD is non-nil, the article should be unread.
7358 If UNDOWNLOADED is non-nil, the article should be undownloaded.
7359 If UNSEEN is non-nil, the article should be unseen.
7360 Returns the article selected or nil if there are no matching articles."
7361   (interactive "P")
7362   (cond
7363    ;; Empty summary.
7364    ((null gnus-newsgroup-data)
7365     (gnus-message 3 "No articles in the group")
7366     nil)
7367    ;; Pick the first article.
7368    ((not (or unread undownloaded unseen))
7369     (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
7370     (gnus-data-number (car gnus-newsgroup-data)))
7371    ;; Find the first unread article.
7372    (t
7373     (let ((data gnus-newsgroup-data))
7374       (while (and data
7375                   (let ((num (gnus-data-number (car data))))
7376                     (or (memq num gnus-newsgroup-unfetched)
7377                         (not (or (and unread
7378                                       (memq num gnus-newsgroup-unreads))
7379                                  (and undownloaded
7380                                       (memq num gnus-newsgroup-undownloaded))
7381                                  (and unseen
7382                                       (memq num gnus-newsgroup-unseen)))))))
7383         (setq data (cdr data)))
7384       (prog1
7385           (if data
7386               (progn
7387                 (goto-char (gnus-data-pos (car data)))
7388                 (gnus-data-number (car data)))
7389             (gnus-message 3 "No more%s articles"
7390                           (let* ((r (when unread " unread"))
7391                                  (d (when undownloaded " undownloaded"))
7392                                  (s (when unseen " unseen"))
7393                                  (l (delq nil (list r d s))))
7394                             (cond ((= 3 (length l))
7395                                    (concat r "," d ", or" s))
7396                                   ((= 2 (length l))
7397                                    (concat (car l) ", or" (cadr l)))
7398                                   ((= 1 (length l))
7399                                    (car l))
7400                                   (t
7401                                    ""))))
7402             nil
7403             )
7404         (gnus-summary-position-point))))))
7405
7406 (defun gnus-summary-next-subject (n &optional unread dont-display)
7407   "Go to next N'th summary line.
7408 If N is negative, go to the previous N'th subject line.
7409 If UNREAD is non-nil, only unread articles are selected.
7410 The difference between N and the actual number of steps taken is
7411 returned."
7412   (interactive "p")
7413   (let ((backward (< n 0))
7414         (n (abs n)))
7415     (while (and (> n 0)
7416                 (if backward
7417                     (gnus-summary-find-prev unread)
7418                   (gnus-summary-find-next unread)))
7419       (unless (zerop (setq n (1- n)))
7420         (gnus-summary-show-thread)))
7421     (when (/= 0 n)
7422       (gnus-message 7 "No more%s articles"
7423                     (if unread " unread" "")))
7424     (unless dont-display
7425       (gnus-summary-recenter)
7426       (gnus-summary-position-point))
7427     n))
7428
7429 (defun gnus-summary-next-unread-subject (n)
7430   "Go to next N'th unread summary line."
7431   (interactive "p")
7432   (gnus-summary-next-subject n t))
7433
7434 (defun gnus-summary-prev-subject (n &optional unread)
7435   "Go to previous N'th summary line.
7436 If optional argument UNREAD is non-nil, only unread article is selected."
7437   (interactive "p")
7438   (gnus-summary-next-subject (- n) unread))
7439
7440 (defun gnus-summary-prev-unread-subject (n)
7441   "Go to previous N'th unread summary line."
7442   (interactive "p")
7443   (gnus-summary-next-subject (- n) t))
7444
7445 (defun gnus-summary-goto-subjects (articles)
7446   "Insert the subject header for ARTICLES in the current buffer."
7447   (save-excursion
7448     (dolist (article articles)
7449       (gnus-summary-goto-subject article t)))
7450   (gnus-summary-limit (append articles gnus-newsgroup-limit))
7451   (gnus-summary-position-point))
7452
7453 (defun gnus-summary-goto-subject (article &optional force silent)
7454   "Go to the subject line of ARTICLE.
7455 If FORCE, also allow jumping to articles not currently shown."
7456   (interactive "nArticle number: ")
7457   (unless (numberp article)
7458     (error "Article %s is not a number" article))
7459   (let ((b (point))
7460         (data (gnus-data-find article)))
7461     ;; We read in the article if we have to.
7462     (and (not data)
7463          force
7464          (gnus-summary-insert-subject
7465           article
7466           (if (or (numberp force) (vectorp force)) force)
7467           t)
7468          (setq data (gnus-data-find article)))
7469     (goto-char b)
7470     (if (not data)
7471         (progn
7472           (unless silent
7473             (gnus-message 3 "Can't find article %d" article))
7474           nil)
7475       (let ((pt (gnus-data-pos data)))
7476         (goto-char pt)
7477         (gnus-summary-set-article-display-arrow pt))
7478       (gnus-summary-position-point)
7479       article)))
7480
7481 ;; Walking around summary lines with displaying articles.
7482
7483 (defun gnus-summary-expand-window (&optional arg)
7484   "Make the summary buffer take up the entire Emacs frame.
7485 Given a prefix, will force an `article' buffer configuration."
7486   (interactive "P")
7487   (if arg
7488       (gnus-configure-windows 'article 'force)
7489     (gnus-configure-windows 'summary 'force)))
7490
7491 (defun gnus-summary-display-article (article &optional all-header)
7492   "Display ARTICLE in article buffer."
7493   (unless (and (gnus-buffer-live-p gnus-article-buffer)
7494                (with-current-buffer gnus-article-buffer
7495                  (eq major-mode 'gnus-article-mode)))
7496     (gnus-article-setup-buffer))
7497   (gnus-set-global-variables)
7498   (with-current-buffer gnus-article-buffer
7499     (setq gnus-article-charset gnus-newsgroup-charset)
7500     (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7501     (mm-enable-multibyte))
7502   (if (null article)
7503       nil
7504     (prog1
7505         (if gnus-summary-display-article-function
7506             (funcall gnus-summary-display-article-function article all-header)
7507           (gnus-article-prepare article all-header))
7508       (gnus-run-hooks 'gnus-select-article-hook)
7509       (when (and gnus-current-article
7510                  (not (zerop gnus-current-article)))
7511         (gnus-summary-goto-subject gnus-current-article))
7512       (gnus-summary-recenter)
7513       (when (and gnus-use-trees gnus-show-threads)
7514         (gnus-possibly-generate-tree article)
7515         (gnus-highlight-selected-tree article))
7516       ;; Successfully display article.
7517       (gnus-article-set-window-start
7518        (cdr (assq article gnus-newsgroup-bookmarks))))))
7519
7520 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7521   "Select the current article.
7522 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
7523 non-nil, the article will be re-fetched even if it already present in
7524 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
7525 be displayed."
7526   ;; Make sure we are in the summary buffer to work around bbdb bug.
7527   (unless (eq major-mode 'gnus-summary-mode)
7528     (set-buffer gnus-summary-buffer))
7529   (let ((article (or article (gnus-summary-article-number)))
7530         (all-headers (not (not all-headers))) ;Must be t or nil.
7531         gnus-summary-display-article-function)
7532     (and (not pseudo)
7533          (gnus-summary-article-pseudo-p article)
7534          (error "This is a pseudo-article"))
7535     (with-current-buffer gnus-summary-buffer
7536       (if (or (and gnus-single-article-buffer
7537                    (or (null gnus-current-article)
7538                        (null gnus-article-current)
7539                        (null (get-buffer gnus-article-buffer))
7540                        (not (eq article (cdr gnus-article-current)))
7541                        (not (equal (car gnus-article-current)
7542                                    gnus-newsgroup-name))))
7543               (and (not gnus-single-article-buffer)
7544                    (or (null gnus-current-article)
7545                        (not (eq gnus-current-article article))))
7546               force)
7547           ;; The requested article is different from the current article.
7548           (progn
7549             (gnus-summary-display-article article all-headers)
7550             (when (gnus-buffer-live-p gnus-article-buffer)
7551               (with-current-buffer gnus-article-buffer
7552                 (if (not gnus-article-decoded-p) ;; a local variable
7553                     (mm-disable-multibyte))))
7554             (gnus-article-set-window-start
7555              (cdr (assq article gnus-newsgroup-bookmarks)))
7556             article)
7557         'old))))
7558
7559 (defun gnus-summary-force-verify-and-decrypt ()
7560   "Display buttons for signed/encrypted parts and verify/decrypt them."
7561   (interactive)
7562   (let ((mm-verify-option 'known)
7563         (mm-decrypt-option 'known)
7564         (gnus-article-emulate-mime t)
7565         (gnus-buttonized-mime-types (append (list "multipart/signed"
7566                                                   "multipart/encrypted")
7567                                             gnus-buttonized-mime-types)))
7568     (gnus-summary-select-article nil 'force)))
7569
7570 (defun gnus-summary-set-current-mark (&optional current-mark)
7571   "Obsolete function."
7572   nil)
7573
7574 (defun gnus-summary-next-article (&optional unread subject backward push)
7575   "Select the next article.
7576 If UNREAD, only unread articles are selected.
7577 If SUBJECT, only articles with SUBJECT are selected.
7578 If BACKWARD, the previous article is selected instead of the next."
7579   (interactive "P")
7580   ;; Make sure we are in the summary buffer.
7581   (unless (eq major-mode 'gnus-summary-mode)
7582     (set-buffer gnus-summary-buffer))
7583   (cond
7584    ;; Is there such an article?
7585    ((and (gnus-summary-search-forward unread subject backward)
7586          (or (gnus-summary-display-article (gnus-summary-article-number))
7587              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7588     (gnus-summary-position-point))
7589    ;; If not, we try the first unread, if that is wanted.
7590    ((and subject
7591          gnus-auto-select-same
7592          (gnus-summary-first-unread-article))
7593     (gnus-summary-position-point)
7594     (gnus-message 6 "Wrapped"))
7595    ;; Try to get next/previous article not displayed in this group.
7596    ((and gnus-auto-extend-newsgroup
7597          (not unread) (not subject))
7598     (gnus-summary-goto-article
7599      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7600      nil (count-lines (point-min) (point))))
7601    ;; Go to next/previous group.
7602    (t
7603     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7604       (gnus-summary-jump-to-group gnus-newsgroup-name))
7605     (let ((cmd last-command-char)
7606           (point
7607            (with-current-buffer gnus-group-buffer
7608              (point)))
7609           (group
7610            (if (eq gnus-keep-same-level 'best)
7611                (gnus-summary-best-group gnus-newsgroup-name)
7612              (gnus-summary-search-group backward gnus-keep-same-level))))
7613       ;; For some reason, the group window gets selected.  We change
7614       ;; it back.
7615       (select-window (get-buffer-window (current-buffer)))
7616       ;; Select next unread newsgroup automagically.
7617       (cond
7618        ((or (not gnus-auto-select-next)
7619             (not cmd))
7620         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7621        ((or (eq gnus-auto-select-next 'quietly)
7622             (and (eq gnus-auto-select-next 'slightly-quietly)
7623                  push)
7624             (and (eq gnus-auto-select-next 'almost-quietly)
7625                  (gnus-summary-last-article-p)))
7626         ;; Select quietly.
7627         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7628             (gnus-summary-exit)
7629           (gnus-message 7 "No more%s articles (%s)..."
7630                         (if unread " unread" "")
7631                         (if group (concat "selecting " group)
7632                           "exiting"))
7633           (gnus-summary-next-group nil group backward)))
7634        (t
7635         (when (gnus-key-press-event-p last-input-event)
7636           (gnus-summary-walk-group-buffer
7637            gnus-newsgroup-name cmd unread backward point))))))))
7638
7639 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7640   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7641                       (?\C-p (gnus-group-prev-unread-group 1))))
7642         (cursor-in-echo-area t)
7643         keve key group ended prompt)
7644     (with-current-buffer gnus-group-buffer
7645       (goto-char start)
7646       (setq group
7647             (if (eq gnus-keep-same-level 'best)
7648                 (gnus-summary-best-group gnus-newsgroup-name)
7649               (gnus-summary-search-group backward gnus-keep-same-level))))
7650     (while (not ended)
7651       (setq prompt
7652             (format
7653              "No more%s articles%s " (if unread " unread" "")
7654              (if (and group
7655                       (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7656                  (format " (Type %s for %s [%s])"
7657                          (single-key-description cmd)
7658                          (gnus-group-decoded-name group)
7659                          (gnus-group-unread group))
7660                (format " (Type %s to exit %s)"
7661                        (single-key-description cmd)
7662                        (gnus-group-decoded-name gnus-newsgroup-name)))))
7663       ;; Confirm auto selection.
7664       (setq key (car (setq keve (gnus-read-event-char prompt)))
7665             ended t)
7666       (cond
7667        ((assq key keystrokes)
7668         (let ((obuf (current-buffer)))
7669           (switch-to-buffer gnus-group-buffer)
7670           (when group
7671             (gnus-group-jump-to-group group))
7672           (eval (cadr (assq key keystrokes)))
7673           (setq group (gnus-group-group-name))
7674           (switch-to-buffer obuf))
7675         (setq ended nil))
7676        ((equal key cmd)
7677         (if (or (not group)
7678                 (gnus-ephemeral-group-p gnus-newsgroup-name))
7679             (gnus-summary-exit)
7680           (gnus-summary-next-group nil group backward)))
7681        (t
7682         (push (cdr keve) unread-command-events))))))
7683
7684 (defun gnus-summary-next-unread-article ()
7685   "Select unread article after current one."
7686   (interactive)
7687   (gnus-summary-next-article
7688    (or (not (eq gnus-summary-goto-unread 'never))
7689        (gnus-summary-last-article-p (gnus-summary-article-number)))
7690    (and gnus-auto-select-same
7691         (gnus-summary-article-subject))))
7692
7693 (defun gnus-summary-prev-article (&optional unread subject)
7694   "Select the article before the current one.
7695 If UNREAD is non-nil, only unread articles are selected."
7696   (interactive "P")
7697   (gnus-summary-next-article unread subject t))
7698
7699 (defun gnus-summary-prev-unread-article ()
7700   "Select unread article before current one."
7701   (interactive)
7702   (gnus-summary-prev-article
7703    (or (not (eq gnus-summary-goto-unread 'never))
7704        (gnus-summary-first-article-p (gnus-summary-article-number)))
7705    (and gnus-auto-select-same
7706         (gnus-summary-article-subject))))
7707
7708 (defun gnus-summary-next-page (&optional lines circular stop)
7709   "Show next page of the selected article.
7710 If at the end of the current article, select the next article.
7711 LINES says how many lines should be scrolled up.
7712
7713 If CIRCULAR is non-nil, go to the start of the article instead of
7714 selecting the next article when reaching the end of the current
7715 article.
7716
7717 If STOP is non-nil, just stop when reaching the end of the message.
7718
7719 Also see the variable `gnus-article-skip-boring'."
7720   (interactive "P")
7721   (setq gnus-summary-buffer (current-buffer))
7722   (gnus-set-global-variables)
7723   (let ((article (gnus-summary-article-number))
7724         (article-window (get-buffer-window gnus-article-buffer t))
7725         endp)
7726     ;; If the buffer is empty, we have no article.
7727     (unless article
7728       (error "No article to select"))
7729     (gnus-configure-windows 'article)
7730     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7731         (if (and (eq gnus-summary-goto-unread 'never)
7732                  (not (gnus-summary-last-article-p article)))
7733             (gnus-summary-next-article)
7734           (gnus-summary-next-unread-article))
7735       (if (or (null gnus-current-article)
7736               (null gnus-article-current)
7737               (/= article (cdr gnus-article-current))
7738               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7739           ;; Selected subject is different from current article's.
7740           (gnus-summary-display-article article)
7741         (when article-window
7742           (gnus-eval-in-buffer-window gnus-article-buffer
7743             (setq endp (or (gnus-article-next-page lines)
7744                            (gnus-article-only-boring-p))))
7745           (when endp
7746             (cond (stop
7747                    (gnus-message 3 "End of message"))
7748                   (circular
7749                    (gnus-summary-beginning-of-article))
7750                   (lines
7751                    (gnus-message 3 "End of message"))
7752                   ((null lines)
7753                    (if (and (eq gnus-summary-goto-unread 'never)
7754                             (not (gnus-summary-last-article-p article)))
7755                        (gnus-summary-next-article)
7756                      (gnus-summary-next-unread-article))))))))
7757     (gnus-summary-recenter)
7758     (gnus-summary-position-point)))
7759
7760 (defun gnus-summary-prev-page (&optional lines move)
7761   "Show previous page of selected article.
7762 Argument LINES specifies lines to be scrolled down.
7763 If MOVE, move to the previous unread article if point is at
7764 the beginning of the buffer."
7765   (interactive "P")
7766   (let ((article (gnus-summary-article-number))
7767         (article-window (get-buffer-window gnus-article-buffer t))
7768         endp)
7769     (gnus-configure-windows 'article)
7770     (if (or (null gnus-current-article)
7771             (null gnus-article-current)
7772             (/= article (cdr gnus-article-current))
7773             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7774         ;; Selected subject is different from current article's.
7775         (gnus-summary-display-article article)
7776       (gnus-summary-recenter)
7777       (when article-window
7778         (gnus-eval-in-buffer-window gnus-article-buffer
7779           (setq endp (gnus-article-prev-page lines)))
7780         (when (and move endp)
7781           (cond (lines
7782                  (gnus-message 3 "Beginning of message"))
7783                 ((null lines)
7784                  (if (and (eq gnus-summary-goto-unread 'never)
7785                           (not (gnus-summary-first-article-p article)))
7786                      (gnus-summary-prev-article)
7787                    (gnus-summary-prev-unread-article))))))))
7788   (gnus-summary-position-point))
7789
7790 (defun gnus-summary-prev-page-or-article (&optional lines)
7791   "Show previous page of selected article.
7792 Argument LINES specifies lines to be scrolled down.
7793 If at the beginning of the article, go to the next article."
7794   (interactive "P")
7795   (gnus-summary-prev-page lines t))
7796
7797 (defun gnus-summary-scroll-up (lines)
7798   "Scroll up (or down) one line current article.
7799 Argument LINES specifies lines to be scrolled up (or down if negative)."
7800   (interactive "p")
7801   (gnus-configure-windows 'article)
7802   (gnus-summary-show-thread)
7803   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7804     (gnus-eval-in-buffer-window gnus-article-buffer
7805       (cond ((> lines 0)
7806              (when (gnus-article-next-page lines)
7807                (gnus-message 3 "End of message")))
7808             ((< lines 0)
7809              (gnus-article-prev-page (- lines))))))
7810   (gnus-summary-recenter)
7811   (gnus-summary-position-point))
7812
7813 (defun gnus-summary-scroll-down (lines)
7814   "Scroll down (or up) one line current article.
7815 Argument LINES specifies lines to be scrolled down (or up if negative)."
7816   (interactive "p")
7817   (gnus-summary-scroll-up (- lines)))
7818
7819 (defun gnus-summary-next-same-subject ()
7820   "Select next article which has the same subject as current one."
7821   (interactive)
7822   (gnus-summary-next-article nil (gnus-summary-article-subject)))
7823
7824 (defun gnus-summary-prev-same-subject ()
7825   "Select previous article which has the same subject as current one."
7826   (interactive)
7827   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7828
7829 (defun gnus-summary-next-unread-same-subject ()
7830   "Select next unread article which has the same subject as current one."
7831   (interactive)
7832   (gnus-summary-next-article t (gnus-summary-article-subject)))
7833
7834 (defun gnus-summary-prev-unread-same-subject ()
7835   "Select previous unread article which has the same subject as current one."
7836   (interactive)
7837   (gnus-summary-prev-article t (gnus-summary-article-subject)))
7838
7839 (defun gnus-summary-first-unread-article ()
7840   "Select the first unread article.
7841 Return nil if there are no unread articles."
7842   (interactive)
7843   (prog1
7844       (when (gnus-summary-first-subject t)
7845         (gnus-summary-show-thread)
7846         (gnus-summary-first-subject t)
7847         (gnus-summary-display-article (gnus-summary-article-number)))
7848     (gnus-summary-position-point)))
7849
7850 (defun gnus-summary-first-unread-subject ()
7851   "Place the point on the subject line of the first unread article.
7852 Return nil if there are no unread articles."
7853   (interactive)
7854   (prog1
7855       (when (gnus-summary-first-subject t)
7856         (gnus-summary-show-thread)
7857         (gnus-summary-first-subject t))
7858     (gnus-summary-position-point)))
7859
7860 (defun gnus-summary-first-unseen-subject ()
7861   "Place the point on the subject line of the first unseen article.
7862 Return nil if there are no unseen articles."
7863   (interactive)
7864   (prog1
7865       (when (gnus-summary-first-subject nil nil t)
7866         (gnus-summary-show-thread)
7867         (gnus-summary-first-subject nil nil t))
7868     (gnus-summary-position-point)))
7869
7870 (defun gnus-summary-first-unseen-or-unread-subject ()
7871   "Place the point on the subject line of the first unseen article or,
7872 if all article have been seen, on the subject line of the first unread
7873 article."
7874   (interactive)
7875   (prog1
7876       (unless (when (gnus-summary-first-subject nil nil t)
7877                 (gnus-summary-show-thread)
7878                 (gnus-summary-first-subject nil nil t))
7879         (when (gnus-summary-first-subject t)
7880           (gnus-summary-show-thread)
7881           (gnus-summary-first-subject t)))
7882     (gnus-summary-position-point)))
7883
7884 (defun gnus-summary-first-article ()
7885   "Select the first article.
7886 Return nil if there are no articles."
7887   (interactive)
7888   (prog1
7889       (when (gnus-summary-first-subject)
7890         (gnus-summary-show-thread)
7891         (gnus-summary-first-subject)
7892         (gnus-summary-display-article (gnus-summary-article-number)))
7893     (gnus-summary-position-point)))
7894
7895 (defun gnus-summary-best-unread-article (&optional arg)
7896   "Select the unread article with the highest score.
7897 If given a prefix argument, select the next unread article that has a
7898 score higher than the default score."
7899   (interactive "P")
7900   (let ((article (if arg
7901                      (gnus-summary-better-unread-subject)
7902                    (gnus-summary-best-unread-subject))))
7903     (if article
7904         (gnus-summary-goto-article article)
7905       (error "No unread articles"))))
7906
7907 (defun gnus-summary-best-unread-subject ()
7908   "Select the unread subject with the highest score."
7909   (interactive)
7910   (let ((best -1000000)
7911         (data gnus-newsgroup-data)
7912         article score)
7913     (while data
7914       (and (gnus-data-unread-p (car data))
7915            (> (setq score
7916                     (gnus-summary-article-score (gnus-data-number (car data))))
7917               best)
7918            (setq best score
7919                  article (gnus-data-number (car data))))
7920       (setq data (cdr data)))
7921     (when article
7922       (gnus-summary-goto-subject article))
7923     (gnus-summary-position-point)
7924     article))
7925
7926 (defun gnus-summary-better-unread-subject ()
7927   "Select the first unread subject that has a score over the default score."
7928   (interactive)
7929   (let ((data gnus-newsgroup-data)
7930         article score)
7931     (while (and (setq article (gnus-data-number (car data)))
7932                 (or (gnus-data-read-p (car data))
7933                     (not (> (gnus-summary-article-score article)
7934                             gnus-summary-default-score))))
7935       (setq data (cdr data)))
7936     (when article
7937       (gnus-summary-goto-subject article))
7938     (gnus-summary-position-point)
7939     article))
7940
7941 (defun gnus-summary-last-subject ()
7942   "Go to the last displayed subject line in the group."
7943   (let ((article (gnus-data-number (car (gnus-data-list t)))))
7944     (when article
7945       (gnus-summary-goto-subject article))))
7946
7947 (defun gnus-summary-goto-article (article &optional all-headers force)
7948   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7949 If ALL-HEADERS is non-nil, no header lines are hidden.
7950 If FORCE, go to the article even if it isn't displayed.  If FORCE
7951 is a number, it is the line the article is to be displayed on."
7952   (interactive
7953    (list
7954     (completing-read
7955      "Article number or Message-ID: "
7956      (mapcar (lambda (number) (list (int-to-string number)))
7957              gnus-newsgroup-limit))
7958     current-prefix-arg
7959     t))
7960   (prog1
7961       (if (and (stringp article)
7962                (string-match "@\\|%40" article))
7963           (gnus-summary-refer-article article)
7964         (when (stringp article)
7965           (setq article (string-to-number article)))
7966         (if (gnus-summary-goto-subject article force)
7967             (gnus-summary-display-article article all-headers)
7968           (gnus-message 4 "Couldn't go to article %s" article) nil))
7969     (gnus-summary-position-point)))
7970
7971 (defun gnus-summary-goto-last-article ()
7972   "Go to the previously read article."
7973   (interactive)
7974   (prog1
7975       (when gnus-last-article
7976         (gnus-summary-goto-article gnus-last-article nil t))
7977     (gnus-summary-position-point)))
7978
7979 (defun gnus-summary-pop-article (number)
7980   "Pop one article off the history and go to the previous.
7981 NUMBER articles will be popped off."
7982   (interactive "p")
7983   (let (to)
7984     (setq gnus-newsgroup-history
7985           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
7986     (if to
7987         (gnus-summary-goto-article (car to) nil t)
7988       (error "Article history empty")))
7989   (gnus-summary-position-point))
7990
7991 ;; Summary commands and functions for limiting the summary buffer.
7992
7993 (defun gnus-summary-limit-to-articles (n)
7994   "Limit the summary buffer to the next N articles.
7995 If not given a prefix, use the process marked articles instead."
7996   (interactive "P")
7997   (prog1
7998       (let ((articles (gnus-summary-work-articles n)))
7999         (setq gnus-newsgroup-processable nil)
8000         (gnus-summary-limit articles))
8001     (gnus-summary-position-point)))
8002
8003 (defun gnus-summary-pop-limit (&optional total)
8004   "Restore the previous limit.
8005 If given a prefix, remove all limits."
8006   (interactive "P")
8007   (when total
8008     (setq gnus-newsgroup-limits
8009           (list (mapcar (lambda (h) (mail-header-number h))
8010                         gnus-newsgroup-headers))))
8011   (unless gnus-newsgroup-limits
8012     (error "No limit to pop"))
8013   (prog1
8014       (gnus-summary-limit nil 'pop)
8015     (gnus-summary-position-point)))
8016
8017 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
8018   "Limit the summary buffer to articles that have subjects that match a regexp.
8019 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
8020   (interactive
8021    (list (read-string (if current-prefix-arg
8022                           "Exclude subject (regexp): "
8023                         "Limit to subject (regexp): "))
8024          nil current-prefix-arg))
8025   (unless header
8026     (setq header "subject"))
8027   (when (not (equal "" subject))
8028     (prog1
8029         (let ((articles (gnus-summary-find-matching
8030                          (or header "subject") subject 'all nil nil
8031                          not-matching)))
8032           (unless articles
8033             (error "Found no matches for \"%s\"" subject))
8034           (gnus-summary-limit articles))
8035       (gnus-summary-position-point))))
8036
8037 (defun gnus-summary-limit-to-author (from &optional not-matching)
8038   "Limit the summary buffer to articles that have authors that match a regexp.
8039 If NOT-MATCHING, excluding articles that have authors that match a regexp."
8040   (interactive
8041    (list (read-string (if current-prefix-arg
8042                           "Exclude author (regexp): "
8043                         "Limit to author (regexp): "))
8044          current-prefix-arg))
8045   (gnus-summary-limit-to-subject from "from" not-matching))
8046
8047 (defun gnus-summary-limit-to-recipient (recipient &optional not-matching)
8048   "Limit the summary buffer to articles with the given RECIPIENT.
8049
8050 If NOT-MATCHING, exclude RECIPIENT.
8051
8052 To and Cc headers are checked.  You need to include them in
8053 `nnmail-extra-headers'."
8054   ;; Unlike `rmail-summary-by-recipients', doesn't include From.
8055   (interactive
8056    (list (read-string (format "%s recipient (regexp): "
8057                               (if current-prefix-arg "Exclude" "Limit to")))
8058          current-prefix-arg))
8059   (when (not (equal "" recipient))
8060     (prog1 (let* ((to
8061                    (if (memq 'To nnmail-extra-headers)
8062                        (gnus-summary-find-matching
8063                         (cons 'extra 'To) recipient 'all nil nil
8064                         not-matching)
8065                      (gnus-message
8066                       1 "`To' isn't present in `nnmail-extra-headers'")
8067                      (sit-for 1)
8068                      nil))
8069                   (cc
8070                    (if (memq 'Cc nnmail-extra-headers)
8071                        (gnus-summary-find-matching
8072                         (cons 'extra 'Cc) recipient 'all nil nil
8073                         not-matching)
8074                      (gnus-message
8075                       1 "`Cc' isn't present in `nnmail-extra-headers'")
8076                      (sit-for 1)
8077                      nil))
8078                   (articles
8079                    (if not-matching
8080                        ;; We need the numbers that are in both lists:
8081                        (mapcar (lambda (a)
8082                                  (and (memq a to) a))
8083                                cc)
8084                      (nconc to cc))))
8085              (unless articles
8086                (error "Found no matches for \"%s\"" recipient))
8087              (gnus-summary-limit articles))
8088       (gnus-summary-position-point))))
8089
8090 (defun gnus-summary-limit-to-address (address &optional not-matching)
8091   "Limit the summary buffer to articles with the given ADDRESS.
8092
8093 If NOT-MATCHING, exclude ADDRESS.
8094
8095 To, Cc and From headers are checked.  You need to include `To' and `Cc'
8096 in `nnmail-extra-headers'."
8097   (interactive
8098    (list (read-string (format "%s address (regexp): "
8099                               (if current-prefix-arg "Exclude" "Limit to")))
8100          current-prefix-arg))
8101   (when (not (equal "" address))
8102     (prog1 (let* ((to
8103                    (if (memq 'To nnmail-extra-headers)
8104                        (gnus-summary-find-matching
8105                         (cons 'extra 'To) address 'all nil nil
8106                         not-matching)
8107                      (gnus-message
8108                       1 "`To' isn't present in `nnmail-extra-headers'")
8109                      (sit-for 1)
8110                      t))
8111                   (cc
8112                    (if (memq 'Cc nnmail-extra-headers)
8113                        (gnus-summary-find-matching
8114                         (cons 'extra 'Cc) address 'all nil nil
8115                         not-matching)
8116                      (gnus-message
8117                       1 "`Cc' isn't present in `nnmail-extra-headers'")
8118                      (sit-for 1)
8119                      t))
8120                   (from
8121                    (gnus-summary-find-matching "from" address
8122                                                'all nil nil not-matching))
8123                   (articles
8124                    (if not-matching
8125                        ;; We need the numbers that are in all lists:
8126                        (if (eq cc t)
8127                            (if (eq to t)
8128                                from
8129                              (mapcar (lambda (a) (car (memq a from))) to))
8130                          (if (eq to t)
8131                              (mapcar (lambda (a) (car (memq a from))) cc)
8132                            (mapcar (lambda (a) (car (memq a from)))
8133                                    (mapcar (lambda (a) (car (memq a to)))
8134                                            cc))))
8135                      (nconc (if (eq to t) nil to)
8136                             (if (eq cc t) nil cc)
8137                             from))))
8138              (unless articles
8139                (error "Found no matches for \"%s\"" address))
8140              (gnus-summary-limit articles))
8141       (gnus-summary-position-point))))
8142
8143 (defun gnus-summary-limit-strange-charsets-predicate (header)
8144   (let ((string (concat (mail-header-subject header)
8145                         (mail-header-from header)))
8146         charset found)
8147     (dotimes (i (1- (length string)))
8148       (setq charset (format "%s" (char-charset (aref string (1+ i)))))
8149       (when (string-match "unicode\\|big\\|japanese" charset)
8150         (setq found t)))
8151     found))
8152
8153 (defun gnus-summary-limit-to-predicate (predicate)
8154   "Limit to articles where PREDICATE returns non-nil.
8155 PREDICATE will be called with the header structures of the
8156 articles."
8157   (let ((articles nil)
8158         (case-fold-search t))
8159     (dolist (header gnus-newsgroup-headers)
8160       (when (funcall predicate header)
8161         (push (mail-header-number header) articles)))
8162     (gnus-summary-limit (nreverse articles))))
8163
8164 (defun gnus-summary-limit-to-age (age &optional younger-p)
8165   "Limit the summary buffer to articles that are older than (or equal) AGE days.
8166 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
8167 articles that are younger than AGE days."
8168   (interactive
8169    (let ((younger current-prefix-arg)
8170          (days-got nil)
8171          days)
8172      (while (not days-got)
8173        (setq days (if younger
8174                       (read-string "Limit to articles younger than (in days, older when negative): ")
8175                     (read-string
8176                      "Limit to articles older than (in days, younger when negative): ")))
8177        (when (> (length days) 0)
8178          (setq days (read days)))
8179        (if (numberp days)
8180            (progn
8181              (setq days-got t)
8182              (when (< days 0)
8183                (setq younger (not younger))
8184                (setq days (* days -1))))
8185          (message "Please enter a number.")
8186          (sleep-for 1)))
8187      (list days younger)))
8188   (prog1
8189       (let ((data gnus-newsgroup-data)
8190             (cutoff (days-to-time age))
8191             articles d date is-younger)
8192         (while (setq d (pop data))
8193           (when (and (vectorp (gnus-data-header d))
8194                      (setq date (mail-header-date (gnus-data-header d))))
8195             (setq is-younger (time-less-p
8196                               (time-since (condition-case ()
8197                                               (date-to-time date)
8198                                             (error '(0 0))))
8199                               cutoff))
8200             (when (if younger-p
8201                       is-younger
8202                     (not is-younger))
8203               (push (gnus-data-number d) articles))))
8204         (gnus-summary-limit (nreverse articles)))
8205     (gnus-summary-position-point)))
8206
8207 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
8208   "Limit the summary buffer to articles that match an 'extra' header."
8209   (interactive
8210    (let ((header
8211           (intern
8212            (gnus-completing-read-with-default
8213             (symbol-name (car gnus-extra-headers))
8214             (if current-prefix-arg
8215                 "Exclude extra header"
8216               "Limit extra header")
8217             (mapcar (lambda (x)
8218                       (cons (symbol-name x) x))
8219                     gnus-extra-headers)
8220             nil
8221             t))))
8222      (list header
8223            (read-string (format "%s header %s (regexp): "
8224                                 (if current-prefix-arg "Exclude" "Limit to")
8225                                 header))
8226            current-prefix-arg)))
8227   (when (not (equal "" regexp))
8228     (prog1
8229         (let ((articles (gnus-summary-find-matching
8230                          (cons 'extra header) regexp 'all nil nil
8231                          not-matching)))
8232           (unless articles
8233             (error "Found no matches for \"%s\"" regexp))
8234           (gnus-summary-limit articles))
8235       (gnus-summary-position-point))))
8236
8237 (defun gnus-summary-limit-to-display-predicate ()
8238   "Limit the summary buffer to the predicated in the `display' group parameter."
8239   (interactive)
8240   (unless gnus-newsgroup-display
8241     (error "There is no `display' group parameter"))
8242   (let (articles)
8243     (dolist (number gnus-newsgroup-articles)
8244       (when (funcall gnus-newsgroup-display)
8245         (push number articles)))
8246     (gnus-summary-limit articles))
8247   (gnus-summary-position-point))
8248
8249 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
8250 (make-obsolete
8251  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
8252
8253 (defun gnus-summary-limit-to-unread (&optional all)
8254   "Limit the summary buffer to articles that are not marked as read.
8255 If ALL is non-nil, limit strictly to unread articles."
8256   (interactive "P")
8257   (if all
8258       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
8259     (gnus-summary-limit-to-marks
8260      ;; Concat all the marks that say that an article is read and have
8261      ;; those removed.
8262      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
8263            gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
8264            gnus-low-score-mark gnus-expirable-mark
8265            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
8266            gnus-duplicate-mark gnus-souped-mark)
8267      'reverse)))
8268
8269 (defun gnus-summary-limit-to-headers (match &optional reverse)
8270   "Limit the summary buffer to articles that have headers that match MATCH.
8271 If REVERSE (the prefix), limit to articles that don't match."
8272   (interactive "sMatch headers (regexp): \nP")
8273   (gnus-summary-limit-to-bodies match reverse t))
8274
8275 (defun gnus-summary-limit-to-bodies (match &optional reverse headersp)
8276   "Limit the summary buffer to articles that have bodies that match MATCH.
8277 If REVERSE (the prefix), limit to articles that don't match."
8278   (interactive "sMatch body (regexp): \nP")
8279   (let ((articles nil)
8280         (gnus-select-article-hook nil)  ;Disable hook.
8281         (gnus-article-prepare-hook nil)
8282         (gnus-use-article-prefetch nil)
8283         (gnus-keep-backlog nil)
8284         (gnus-break-pages nil)
8285         (gnus-summary-display-arrow nil)
8286         (gnus-updated-mode-lines nil)
8287         (gnus-auto-center-summary nil)
8288         (gnus-display-mime-function nil))
8289     (dolist (data gnus-newsgroup-data)
8290       (let (gnus-mark-article-hook)
8291         (gnus-summary-select-article t t nil (gnus-data-number data)))
8292       (save-excursion
8293         (set-buffer gnus-article-buffer)
8294         (article-goto-body)
8295         (let* ((case-fold-search t)
8296                (found (if headersp
8297                           (re-search-backward match nil t)
8298                         (re-search-forward match nil t))))
8299           (when (or (and found
8300                          (not reverse))
8301                     (and (not found)
8302                          reverse))
8303             (push (gnus-data-number data) articles)))))
8304     (if (not articles)
8305         (message "No messages matched")
8306       (gnus-summary-limit articles)))
8307   (gnus-summary-position-point))
8308
8309 (defun gnus-summary-limit-to-singletons (&optional threadsp)
8310   "Limit the summary buffer to articles that aren't part on any thread.
8311 If THREADSP (the prefix), limit to articles that are in threads."
8312   (interactive "P")
8313   (let ((articles nil)
8314         thread-articles
8315         threads)
8316     (dolist (thread gnus-newsgroup-threads)
8317       (if (stringp (car thread))
8318           (dolist (thread (cdr thread))
8319             (push thread threads))
8320         (push thread threads)))
8321     (dolist (thread threads)
8322       (setq thread-articles (gnus-articles-in-thread thread))
8323       (when (or (and threadsp
8324                      (> (length thread-articles) 1))
8325                 (and (not threadsp)
8326                      (= (length thread-articles) 1)))
8327         (setq articles (nconc thread-articles articles))))
8328     (if (not articles)
8329         (message "No messages matched")
8330       (gnus-summary-limit articles))
8331     (gnus-summary-position-point)))
8332
8333 (defun gnus-summary-limit-to-replied (&optional unreplied)
8334   "Limit the summary buffer to replied articles.
8335 If UNREPLIED (the prefix), limit to unreplied articles."
8336   (interactive "P")
8337   (if unreplied
8338       (gnus-summary-limit
8339        (gnus-set-difference gnus-newsgroup-articles
8340         gnus-newsgroup-replied))
8341     (gnus-summary-limit gnus-newsgroup-replied))
8342   (gnus-summary-position-point))
8343
8344 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
8345 (make-obsolete 'gnus-summary-delete-marked-with
8346                'gnus-summary-limit-exclude-marks)
8347
8348 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
8349   "Exclude articles that are marked with MARKS (e.g. \"DK\").
8350 If REVERSE, limit the summary buffer to articles that are marked
8351 with MARKS.  MARKS can either be a string of marks or a list of marks.
8352 Returns how many articles were removed."
8353   (interactive "sMarks: ")
8354   (gnus-summary-limit-to-marks marks t))
8355
8356 (defun gnus-summary-limit-to-marks (marks &optional reverse)
8357   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
8358 If REVERSE (the prefix), limit the summary buffer to articles that are
8359 not marked with MARKS.  MARKS can either be a string of marks or a
8360 list of marks.
8361 Returns how many articles were removed."
8362   (interactive "sMarks: \nP")
8363   (prog1
8364       (let ((data gnus-newsgroup-data)
8365             (marks (if (listp marks) marks
8366                      (append marks nil))) ; Transform to list.
8367             articles)
8368         (while data
8369           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
8370                   (memq (gnus-data-mark (car data)) marks))
8371             (push (gnus-data-number (car data)) articles))
8372           (setq data (cdr data)))
8373         (gnus-summary-limit articles))
8374     (gnus-summary-position-point)))
8375
8376 (defun gnus-summary-limit-to-score (score)
8377   "Limit to articles with score at or above SCORE."
8378   (interactive "NLimit to articles with score of at least: ")
8379   (let ((data gnus-newsgroup-data)
8380         articles)
8381     (while data
8382       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
8383                 score)
8384         (push (gnus-data-number (car data)) articles))
8385       (setq data (cdr data)))
8386     (prog1
8387         (gnus-summary-limit articles)
8388       (gnus-summary-position-point))))
8389
8390 (defun gnus-summary-limit-to-unseen ()
8391   "Limit to unseen articles."
8392   (interactive)
8393   (prog1
8394       (gnus-summary-limit gnus-newsgroup-unseen)
8395     (gnus-summary-position-point)))
8396
8397 (defun gnus-summary-limit-include-thread (id)
8398   "Display all the hidden articles that is in the thread with ID in it.
8399 When called interactively, ID is the Message-ID of the current
8400 article."
8401   (interactive (list (mail-header-id (gnus-summary-article-header))))
8402   (let ((articles (gnus-articles-in-thread
8403                    (gnus-id-to-thread (gnus-root-id id)))))
8404     (prog1
8405         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
8406       (gnus-summary-limit-include-matching-articles
8407        "subject"
8408        (regexp-quote (gnus-simplify-subject-re
8409                       (mail-header-subject (gnus-id-to-header id)))))
8410       (gnus-summary-position-point))))
8411
8412 (defun gnus-summary-limit-include-matching-articles (header regexp)
8413   "Display all the hidden articles that have HEADERs that match REGEXP."
8414   (interactive (list (read-string "Match on header: ")
8415                      (read-string "Regexp: ")))
8416   (let ((articles (gnus-find-matching-articles header regexp)))
8417     (prog1
8418         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
8419       (gnus-summary-position-point))))
8420
8421 (defun gnus-summary-insert-dormant-articles ()
8422   "Insert all the dormant articles for this group into the current buffer."
8423   (interactive)
8424   (let ((gnus-verbose (max 6 gnus-verbose)))
8425     (if (not gnus-newsgroup-dormant)
8426         (gnus-message 3 "No dormant articles for this group")
8427       (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
8428
8429 (defun gnus-summary-insert-ticked-articles ()
8430   "Insert ticked articles for this group into the current buffer."
8431   (interactive)
8432   (let ((gnus-verbose (max 6 gnus-verbose)))
8433     (if (not gnus-newsgroup-marked)
8434         (gnus-message 3 "No ticked articles for this group")
8435       (gnus-summary-goto-subjects gnus-newsgroup-marked))))
8436
8437 (defun gnus-summary-limit-include-dormant ()
8438   "Display all the hidden articles that are marked as dormant.
8439 Note that this command only works on a subset of the articles currently
8440 fetched for this group."
8441   (interactive)
8442   (unless gnus-newsgroup-dormant
8443     (error "There are no dormant articles in this group"))
8444   (prog1
8445       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
8446     (gnus-summary-position-point)))
8447
8448 (defun gnus-summary-limit-exclude-dormant ()
8449   "Hide all dormant articles."
8450   (interactive)
8451   (prog1
8452       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
8453     (gnus-summary-position-point)))
8454
8455 (defun gnus-summary-limit-exclude-childless-dormant ()
8456   "Hide all dormant articles that have no children."
8457   (interactive)
8458   (let ((data (gnus-data-list t))
8459         articles d children)
8460     ;; Find all articles that are either not dormant or have
8461     ;; children.
8462     (while (setq d (pop data))
8463       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
8464                 (and (setq children
8465                            (gnus-article-children (gnus-data-number d)))
8466                      (let (found)
8467                        (while children
8468                          (when (memq (car children) articles)
8469                            (setq children nil
8470                                  found t))
8471                          (pop children))
8472                        found)))
8473         (push (gnus-data-number d) articles)))
8474     ;; Do the limiting.
8475     (prog1
8476         (gnus-summary-limit articles)
8477       (gnus-summary-position-point))))
8478
8479 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
8480   "Mark all unread excluded articles as read.
8481 If ALL, mark even excluded ticked and dormants as read."
8482   (interactive "P")
8483   (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
8484   (let ((articles (gnus-sorted-ndifference
8485                    (sort
8486                     (mapcar (lambda (h) (mail-header-number h))
8487                             gnus-newsgroup-headers)
8488                     '<)
8489                    gnus-newsgroup-limit))
8490         article)
8491     (setq gnus-newsgroup-unreads
8492           (gnus-sorted-intersection gnus-newsgroup-unreads
8493                                     gnus-newsgroup-limit))
8494     (if all
8495         (setq gnus-newsgroup-dormant nil
8496               gnus-newsgroup-marked nil
8497               gnus-newsgroup-reads
8498               (nconc
8499                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
8500                gnus-newsgroup-reads))
8501       (while (setq article (pop articles))
8502         (unless (or (memq article gnus-newsgroup-dormant)
8503                     (memq article gnus-newsgroup-marked))
8504           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
8505
8506 (defun gnus-summary-limit (articles &optional pop)
8507   (if pop
8508       ;; We pop the previous limit off the stack and use that.
8509       (setq articles (car gnus-newsgroup-limits)
8510             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
8511     ;; We use the new limit, so we push the old limit on the stack.
8512     (push gnus-newsgroup-limit gnus-newsgroup-limits))
8513   ;; Set the limit.
8514   (setq gnus-newsgroup-limit articles)
8515   (let ((total (length gnus-newsgroup-data))
8516         (data (gnus-data-find-list (gnus-summary-article-number)))
8517         (gnus-summary-mark-below nil)   ; Inhibit this.
8518         found)
8519     ;; This will do all the work of generating the new summary buffer
8520     ;; according to the new limit.
8521     (gnus-summary-prepare)
8522     ;; Hide any threads, possibly.
8523     (gnus-summary-maybe-hide-threads)
8524     ;; Try to return to the article you were at, or one in the
8525     ;; neighborhood.
8526     (when data
8527       ;; We try to find some article after the current one.
8528       (while data
8529         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
8530           (setq data nil
8531                 found t))
8532         (setq data (cdr data))))
8533     (unless found
8534       ;; If there is no data, that means that we were after the last
8535       ;; article.  The same goes when we can't find any articles
8536       ;; after the current one.
8537       (goto-char (point-max))
8538       (gnus-summary-find-prev))
8539     (gnus-set-mode-line 'summary)
8540     ;; We return how many articles were removed from the summary
8541     ;; buffer as a result of the new limit.
8542     (- total (length gnus-newsgroup-data))))
8543
8544 (defsubst gnus-invisible-cut-children (threads)
8545   (let ((num 0))
8546     (while threads
8547       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
8548         (incf num))
8549       (pop threads))
8550     (< num 2)))
8551
8552 (defsubst gnus-cut-thread (thread)
8553   "Go forwards in the thread until we find an article that we want to display."
8554   (when (or (eq gnus-fetch-old-headers 'some)
8555             (eq gnus-fetch-old-headers 'invisible)
8556             (numberp gnus-fetch-old-headers)
8557             (eq gnus-build-sparse-threads 'some)
8558             (eq gnus-build-sparse-threads 'more))
8559     ;; Deal with old-fetched headers and sparse threads.
8560     (while (and
8561             thread
8562             (or
8563              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
8564              (gnus-summary-article-ancient-p
8565               (mail-header-number (car thread))))
8566             (if (or (<= (length (cdr thread)) 1)
8567                     (eq gnus-fetch-old-headers 'invisible))
8568                 (setq gnus-newsgroup-limit
8569                       (delq (mail-header-number (car thread))
8570                             gnus-newsgroup-limit)
8571                       thread (cadr thread))
8572               (when (gnus-invisible-cut-children (cdr thread))
8573                 (let ((th (cdr thread)))
8574                   (while th
8575                     (if (memq (mail-header-number (caar th))
8576                               gnus-newsgroup-limit)
8577                         (setq thread (car th)
8578                               th nil)
8579                       (setq th (cdr th))))))))))
8580   thread)
8581
8582 (defun gnus-cut-threads (threads)
8583   "Cut off all uninteresting articles from the beginning of THREADS."
8584   (when (or (eq gnus-fetch-old-headers 'some)
8585             (eq gnus-fetch-old-headers 'invisible)
8586             (numberp gnus-fetch-old-headers)
8587             (eq gnus-build-sparse-threads 'some)
8588             (eq gnus-build-sparse-threads 'more))
8589     (let ((th threads))
8590       (while th
8591         (setcar th (gnus-cut-thread (car th)))
8592         (setq th (cdr th)))))
8593   ;; Remove nixed out threads.
8594   (delq nil threads))
8595
8596 (defun gnus-summary-initial-limit (&optional show-if-empty)
8597   "Figure out what the initial limit is supposed to be on group entry.
8598 This entails weeding out unwanted dormants, low-scored articles,
8599 fetch-old-headers verbiage, and so on."
8600   ;; Most groups have nothing to remove.
8601   (if (or gnus-inhibit-limiting
8602           (and (null gnus-newsgroup-dormant)
8603                (eq gnus-newsgroup-display 'gnus-not-ignore)
8604                (not (eq gnus-fetch-old-headers 'some))
8605                (not (numberp gnus-fetch-old-headers))
8606                (not (eq gnus-fetch-old-headers 'invisible))
8607                (null gnus-summary-expunge-below)
8608                (not (eq gnus-build-sparse-threads 'some))
8609                (not (eq gnus-build-sparse-threads 'more))
8610                (null gnus-thread-expunge-below)
8611                (not gnus-use-nocem)))
8612       ()                                ; Do nothing.
8613     (push gnus-newsgroup-limit gnus-newsgroup-limits)
8614     (setq gnus-newsgroup-limit nil)
8615     (mapatoms
8616      (lambda (node)
8617        (unless (car (symbol-value node))
8618          ;; These threads have no parents -- they are roots.
8619          (let ((nodes (cdr (symbol-value node)))
8620                thread)
8621            (while nodes
8622              (if (and gnus-thread-expunge-below
8623                       (< (gnus-thread-total-score (car nodes))
8624                          gnus-thread-expunge-below))
8625                  (gnus-expunge-thread (pop nodes))
8626                (setq thread (pop nodes))
8627                (gnus-summary-limit-children thread))))))
8628      gnus-newsgroup-dependencies)
8629     ;; If this limitation resulted in an empty group, we might
8630     ;; pop the previous limit and use it instead.
8631     (when (and (not gnus-newsgroup-limit)
8632                show-if-empty)
8633       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
8634     gnus-newsgroup-limit))
8635
8636 (defun gnus-summary-limit-children (thread)
8637   "Return 1 if this subthread is visible and 0 if it is not."
8638   ;; First we get the number of visible children to this thread.  This
8639   ;; is done by recursing down the thread using this function, so this
8640   ;; will really go down to a leaf article first, before slowly
8641   ;; working its way up towards the root.
8642   (when thread
8643     (let* ((max-lisp-eval-depth (max 5000 max-lisp-eval-depth))
8644            (children
8645            (if (cdr thread)
8646                (apply '+ (mapcar 'gnus-summary-limit-children
8647                                  (cdr thread)))
8648              0))
8649           (number (mail-header-number (car thread)))
8650           score)
8651       (if (and
8652            (not (memq number gnus-newsgroup-marked))
8653            (or
8654             ;; If this article is dormant and has absolutely no visible
8655             ;; children, then this article isn't visible.
8656             (and (memq number gnus-newsgroup-dormant)
8657                  (zerop children))
8658             ;; If this is "fetch-old-headered" and there is no
8659             ;; visible children, then we don't want this article.
8660             (and (or (eq gnus-fetch-old-headers 'some)
8661                      (numberp gnus-fetch-old-headers))
8662                  (gnus-summary-article-ancient-p number)
8663                  (zerop children))
8664             ;; If this is "fetch-old-headered" and `invisible', then
8665             ;; we don't want this article.
8666             (and (eq gnus-fetch-old-headers 'invisible)
8667                  (gnus-summary-article-ancient-p number))
8668             ;; If this is a sparsely inserted article with no children,
8669             ;; we don't want it.
8670             (and (eq gnus-build-sparse-threads 'some)
8671                  (gnus-summary-article-sparse-p number)
8672                  (zerop children))
8673             ;; If we use expunging, and this article is really
8674             ;; low-scored, then we don't want this article.
8675             (when (and gnus-summary-expunge-below
8676                        (< (setq score
8677                                 (or (cdr (assq number gnus-newsgroup-scored))
8678                                     gnus-summary-default-score))
8679                           gnus-summary-expunge-below))
8680               ;; We increase the expunge-tally here, but that has
8681               ;; nothing to do with the limits, really.
8682               (incf gnus-newsgroup-expunged-tally)
8683               ;; We also mark as read here, if that's wanted.
8684               (when (and gnus-summary-mark-below
8685                          (< score gnus-summary-mark-below))
8686                 (setq gnus-newsgroup-unreads
8687                       (delq number gnus-newsgroup-unreads))
8688                 (if gnus-newsgroup-auto-expire
8689                     (push number gnus-newsgroup-expirable)
8690                   (push (cons number gnus-low-score-mark)
8691                         gnus-newsgroup-reads)))
8692               t)
8693             ;; Do the `display' group parameter.
8694             (and gnus-newsgroup-display
8695                  (not (funcall gnus-newsgroup-display)))
8696             ;; Check NoCeM things.
8697             (when (and gnus-use-nocem
8698                        (gnus-nocem-unwanted-article-p
8699                         (mail-header-id (car thread))))
8700               (setq gnus-newsgroup-unreads
8701                     (delq number gnus-newsgroup-unreads))
8702               t)))
8703           ;; Nope, invisible article.
8704           0
8705         ;; Ok, this article is to be visible, so we add it to the limit
8706         ;; and return 1.
8707         (push number gnus-newsgroup-limit)
8708         1))))
8709
8710 (defun gnus-expunge-thread (thread)
8711   "Mark all articles in THREAD as read."
8712   (let* ((number (mail-header-number (car thread))))
8713     (incf gnus-newsgroup-expunged-tally)
8714     ;; We also mark as read here, if that's wanted.
8715     (setq gnus-newsgroup-unreads
8716           (delq number gnus-newsgroup-unreads))
8717     (if gnus-newsgroup-auto-expire
8718         (push number gnus-newsgroup-expirable)
8719       (push (cons number gnus-low-score-mark)
8720             gnus-newsgroup-reads)))
8721   ;; Go recursively through all subthreads.
8722   (mapcar 'gnus-expunge-thread (cdr thread)))
8723
8724 ;; Summary article oriented commands
8725
8726 (defun gnus-summary-refer-parent-article (n)
8727   "Refer parent article N times.
8728 If N is negative, go to ancestor -N instead.
8729 The difference between N and the number of articles fetched is returned."
8730   (interactive "p")
8731   (let ((skip 1)
8732         error header ref)
8733     (when (not (natnump n))
8734       (setq skip (abs n)
8735             n 1))
8736     (while (and (> n 0)
8737                 (not error))
8738       (setq header (gnus-summary-article-header))
8739       (if (and (eq (mail-header-number header)
8740                    (cdr gnus-article-current))
8741                (equal gnus-newsgroup-name
8742                       (car gnus-article-current)))
8743           ;; If we try to find the parent of the currently
8744           ;; displayed article, then we take a look at the actual
8745           ;; References header, since this is slightly more
8746           ;; reliable than the References field we got from the
8747           ;; server.
8748           (with-current-buffer gnus-original-article-buffer
8749             (nnheader-narrow-to-headers)
8750             (unless (setq ref (message-fetch-field "references"))
8751               (when (setq ref (message-fetch-field "in-reply-to"))
8752                 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8753             (widen))
8754         (setq ref
8755               ;; It's not the current article, so we take a bet on
8756               ;; the value we got from the server.
8757               (mail-header-references header)))
8758       (if (and ref
8759                (not (equal ref "")))
8760           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8761             (gnus-message 1 "Couldn't find parent"))
8762         (gnus-message 1 "No references in article %d"
8763                       (gnus-summary-article-number))
8764         (setq error t))
8765       (decf n))
8766     (gnus-summary-position-point)
8767     n))
8768
8769 (defun gnus-summary-refer-references ()
8770   "Fetch all articles mentioned in the References header.
8771 Return the number of articles fetched."
8772   (interactive)
8773   (let ((ref (mail-header-references (gnus-summary-article-header)))
8774         (current (gnus-summary-article-number))
8775         (n 0))
8776     (if (or (not ref)
8777             (equal ref ""))
8778         (error "No References in the current article")
8779       ;; For each Message-ID in the References header...
8780       (while (string-match "<[^>]*>" ref)
8781         (incf n)
8782         ;; ... fetch that article.
8783         (gnus-summary-refer-article
8784          (prog1 (match-string 0 ref)
8785            (setq ref (substring ref (match-end 0))))))
8786       (gnus-summary-goto-subject current)
8787       (gnus-summary-position-point)
8788       n)))
8789
8790 (defun gnus-summary-refer-thread (&optional limit)
8791   "Fetch all articles in the current thread.
8792 If LIMIT (the numerical prefix), fetch that many old headers instead
8793 of what's specified by the `gnus-refer-thread-limit' variable."
8794   (interactive "P")
8795   (let ((id (mail-header-id (gnus-summary-article-header)))
8796         (limit (if limit (prefix-numeric-value limit)
8797                  gnus-refer-thread-limit)))
8798     (unless (eq gnus-fetch-old-headers 'invisible)
8799       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8800       ;; Retrieve the headers and read them in.
8801       (if (eq (if (numberp limit)
8802                   (gnus-retrieve-headers
8803                    (list (min
8804                           (+ (mail-header-number
8805                               (gnus-summary-article-header))
8806                              limit)
8807                           gnus-newsgroup-end))
8808                    gnus-newsgroup-name (* limit 2))
8809                 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8810                 ;; headers.
8811                 (gnus-retrieve-headers (list gnus-newsgroup-end)
8812                                        gnus-newsgroup-name limit))
8813               'nov)
8814           (gnus-build-all-threads)
8815         (error "Can't fetch thread from back ends that don't support NOV"))
8816       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8817     (gnus-summary-limit-include-thread id)))
8818
8819 (defun gnus-summary-refer-article (message-id)
8820   "Fetch an article specified by MESSAGE-ID."
8821   (interactive "sMessage-ID: ")
8822   (when (and (stringp message-id)
8823              (not (zerop (length message-id))))
8824     (setq message-id (gnus-replace-in-string message-id " " ""))
8825     ;; Construct the correct Message-ID if necessary.
8826     ;; Suggested by tale@pawl.rpi.edu.
8827     (unless (string-match "^<" message-id)
8828       (setq message-id (concat "<" message-id)))
8829     (unless (string-match ">$" message-id)
8830       (setq message-id (concat message-id ">")))
8831     ;; People often post MIDs from URLs, so unhex it:
8832     (unless (string-match "@" message-id)
8833       (setq message-id (gnus-url-unhex-string message-id)))
8834     (let* ((header (gnus-id-to-header message-id))
8835            (sparse (and header
8836                         (gnus-summary-article-sparse-p
8837                          (mail-header-number header))
8838                         (memq (mail-header-number header)
8839                               gnus-newsgroup-limit)))
8840            number)
8841       (cond
8842        ;; If the article is present in the buffer we just go to it.
8843        ((and header
8844              (or (not (gnus-summary-article-sparse-p
8845                        (mail-header-number header)))
8846                  sparse))
8847         (prog1
8848             (gnus-summary-goto-article
8849              (mail-header-number header) nil t)
8850           (when sparse
8851             (gnus-summary-update-article (mail-header-number header)))))
8852        (t
8853         ;; We fetch the article.
8854         (catch 'found
8855           (dolist (gnus-override-method (gnus-refer-article-methods))
8856             (when (and (gnus-check-server gnus-override-method)
8857                        ;; Fetch the header,
8858                        (setq number (gnus-summary-insert-subject message-id)))
8859               ;; and display the article.
8860               (gnus-summary-select-article nil nil nil number)
8861               (throw 'found t)))
8862           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8863
8864 (defun gnus-refer-article-methods ()
8865   "Return a list of referable methods."
8866   (cond
8867    ;; No method, so we default to current and native.
8868    ((null gnus-refer-article-method)
8869     (list gnus-current-select-method gnus-select-method))
8870    ;; Current.
8871    ((eq 'current gnus-refer-article-method)
8872     (list gnus-current-select-method))
8873    ;; List of select methods.
8874    ((not (and (symbolp (car gnus-refer-article-method))
8875               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8876     (let (out)
8877       (dolist (method gnus-refer-article-method)
8878         (push (if (eq 'current method)
8879                   gnus-current-select-method
8880                 method)
8881               out))
8882       (nreverse out)))
8883    ;; One single select method.
8884    (t
8885     (list gnus-refer-article-method))))
8886
8887 (defun gnus-summary-edit-parameters ()
8888   "Edit the group parameters of the current group."
8889   (interactive)
8890   (gnus-group-edit-group gnus-newsgroup-name 'params))
8891
8892 (defun gnus-summary-customize-parameters ()
8893   "Customize the group parameters of the current group."
8894   (interactive)
8895   (gnus-group-customize gnus-newsgroup-name))
8896
8897 (defun gnus-summary-enter-digest-group (&optional force)
8898   "Enter an nndoc group based on the current article.
8899 If FORCE, force a digest interpretation.  If not, try
8900 to guess what the document format is."
8901   (interactive "P")
8902   (let ((conf gnus-current-window-configuration))
8903     (save-window-excursion
8904       (save-excursion
8905         (let (gnus-article-prepare-hook
8906               gnus-display-mime-function
8907               gnus-break-pages)
8908           (gnus-summary-select-article))))
8909     (setq gnus-current-window-configuration conf)
8910     (let* ((name (format "%s-%d"
8911                          (gnus-group-prefixed-name
8912                           gnus-newsgroup-name (list 'nndoc ""))
8913                          (with-current-buffer gnus-summary-buffer
8914                            gnus-current-article)))
8915            (ogroup gnus-newsgroup-name)
8916            (params (append (gnus-info-params (gnus-get-info ogroup))
8917                            (list (cons 'to-group ogroup))
8918                            (list (cons 'parent-group ogroup))
8919                            (list (cons 'save-article-group ogroup))))
8920            (case-fold-search t)
8921            (buf (current-buffer))
8922            dig to-address)
8923       (with-current-buffer gnus-original-article-buffer
8924         ;; Have the digest group inherit the main mail address of
8925         ;; the parent article.
8926         (when (setq to-address (or (gnus-fetch-field "reply-to")
8927                                    (gnus-fetch-field "from")))
8928           (setq params
8929                 (append
8930                  (list (cons 'to-address
8931                              (funcall gnus-decode-encoded-address-function
8932                                       to-address))))))
8933         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8934         (insert-buffer-substring gnus-original-article-buffer)
8935         ;; Remove lines that may lead nndoc to misinterpret the
8936         ;; document type.
8937         (narrow-to-region
8938          (goto-char (point-min))
8939          (or (search-forward "\n\n" nil t) (point)))
8940         (goto-char (point-min))
8941         (delete-matching-lines "^Path:\\|^From ")
8942         (widen))
8943       (unwind-protect
8944           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8945                     (gnus-newsgroup-ephemeral-ignored-charsets
8946                      gnus-newsgroup-ignored-charsets))
8947                 (gnus-group-read-ephemeral-group
8948                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8949                               (nndoc-article-type
8950                                ,(if force 'mbox 'guess)))
8951                  t nil nil nil
8952                  `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8953                                                         "ADAPT")))))
8954               ;; Make all postings to this group go to the parent group.
8955               (nconc (gnus-info-params (gnus-get-info name))
8956                      params)
8957             ;; Couldn't select this doc group.
8958             (switch-to-buffer buf)
8959             (gnus-set-global-variables)
8960             (gnus-configure-windows 'summary)
8961             (gnus-message 3 "Article couldn't be entered?"))
8962         (kill-buffer dig)))))
8963
8964 (defun gnus-summary-read-document (n)
8965   "Open a new group based on the current article(s).
8966 This will allow you to read digests and other similar
8967 documents as newsgroups.
8968 Obeys the standard process/prefix convention."
8969   (interactive "P")
8970   (let* ((ogroup gnus-newsgroup-name)
8971          (params (append (gnus-info-params (gnus-get-info ogroup))
8972                          (list (cons 'to-group ogroup))))
8973          group egroup groups vgroup)
8974     (dolist (article (gnus-summary-work-articles n))
8975       (setq group (format "%s-%d" gnus-newsgroup-name article))
8976       (gnus-summary-remove-process-mark article)
8977       (when (gnus-summary-display-article article)
8978         (save-excursion
8979           (with-temp-buffer
8980             (insert-buffer-substring gnus-original-article-buffer)
8981             ;; Remove some headers that may lead nndoc to make
8982             ;; the wrong guess.
8983             (message-narrow-to-head)
8984             (goto-char (point-min))
8985             (delete-matching-lines "^Path:\\|^From ")
8986             (widen)
8987             (if (setq egroup
8988                       (gnus-group-read-ephemeral-group
8989                        group `(nndoc ,group (nndoc-address ,(current-buffer))
8990                                      (nndoc-article-type guess))
8991                        t nil t))
8992                 (progn
8993                   ;; Make all postings to this group go to the parent group.
8994                   (nconc (gnus-info-params (gnus-get-info egroup))
8995                          params)
8996                   (push egroup groups))
8997               ;; Couldn't select this doc group.
8998               (gnus-error 3 "Article couldn't be entered"))))))
8999     ;; Now we have selected all the documents.
9000     (cond
9001      ((not groups)
9002       (error "None of the articles could be interpreted as documents"))
9003      ((gnus-group-read-ephemeral-group
9004        (setq vgroup (format
9005                      "nnvirtual:%s-%s" gnus-newsgroup-name
9006                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
9007        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
9008        t
9009        (cons (current-buffer) 'summary)))
9010      (t
9011       (error "Couldn't select virtual nndoc group")))))
9012
9013 (defun gnus-summary-isearch-article (&optional regexp-p)
9014   "Do incremental search forward on the current article.
9015 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
9016   (interactive "P")
9017   (gnus-summary-select-article)
9018   (gnus-configure-windows 'article)
9019   (gnus-eval-in-buffer-window gnus-article-buffer
9020     (save-restriction
9021       (widen)
9022       (isearch-forward regexp-p))))
9023
9024 (defun gnus-summary-repeat-search-article-forward ()
9025   "Repeat the previous search forwards."
9026   (interactive)
9027   (unless gnus-last-search-regexp
9028     (error "No previous search"))
9029   (gnus-summary-search-article-forward gnus-last-search-regexp))
9030
9031 (defun gnus-summary-repeat-search-article-backward ()
9032   "Repeat the previous search backwards."
9033   (interactive)
9034   (unless gnus-last-search-regexp
9035     (error "No previous search"))
9036   (gnus-summary-search-article-forward gnus-last-search-regexp t))
9037
9038 (defun gnus-summary-search-article-forward (regexp &optional backward)
9039   "Search for an article containing REGEXP forward.
9040 If BACKWARD, search backward instead."
9041   (interactive
9042    (list (read-string
9043           (format "Search article %s (regexp%s): "
9044                   (if current-prefix-arg "backward" "forward")
9045                   (if gnus-last-search-regexp
9046                       (concat ", default " gnus-last-search-regexp)
9047                     "")))
9048          current-prefix-arg))
9049   (if (string-equal regexp "")
9050       (setq regexp (or gnus-last-search-regexp ""))
9051     (setq gnus-last-search-regexp regexp)
9052     (setq gnus-article-before-search gnus-current-article))
9053   ;; Intentionally set gnus-last-article.
9054   (setq gnus-last-article gnus-article-before-search)
9055   (let ((gnus-last-article gnus-last-article))
9056     (if (gnus-summary-search-article regexp backward)
9057         (gnus-summary-show-thread)
9058       (signal 'search-failed (list regexp)))))
9059
9060 (defun gnus-summary-search-article-backward (regexp)
9061   "Search for an article containing REGEXP backward."
9062   (interactive
9063    (list (read-string
9064           (format "Search article backward (regexp%s): "
9065                   (if gnus-last-search-regexp
9066                       (concat ", default " gnus-last-search-regexp)
9067                     "")))))
9068   (gnus-summary-search-article-forward regexp 'backward))
9069
9070 (defun gnus-summary-search-article (regexp &optional backward)
9071   "Search for an article containing REGEXP.
9072 Optional argument BACKWARD means do search for backward.
9073 `gnus-select-article-hook' is not called during the search."
9074   ;; We have to require this here to make sure that the following
9075   ;; dynamic binding isn't shadowed by autoloading.
9076   (require 'gnus-async)
9077   (require 'gnus-art)
9078   (let ((gnus-select-article-hook nil)  ;Disable hook.
9079         (gnus-article-prepare-hook nil)
9080         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
9081         (gnus-use-article-prefetch nil)
9082         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
9083         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
9084         (gnus-visual nil)
9085         (gnus-keep-backlog nil)
9086         (gnus-break-pages nil)
9087         (gnus-summary-display-arrow nil)
9088         (gnus-updated-mode-lines nil)
9089         (gnus-auto-center-summary nil)
9090         (sum (current-buffer))
9091         (gnus-display-mime-function nil)
9092         (found nil)
9093         point)
9094     (gnus-save-hidden-threads
9095       (gnus-summary-select-article)
9096       (set-buffer gnus-article-buffer)
9097       (goto-char (window-point (get-buffer-window (current-buffer))))
9098       (when backward
9099         (forward-line -1))
9100       (while (not found)
9101         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
9102         (if (if backward
9103                 (re-search-backward regexp nil t)
9104               (re-search-forward regexp nil t))
9105             ;; We found the regexp.
9106             (progn
9107               (setq found 'found)
9108               (beginning-of-line)
9109               (set-window-start
9110                (get-buffer-window (current-buffer))
9111                (point))
9112               (forward-line 1)
9113               (set-window-point
9114                (get-buffer-window (current-buffer))
9115                (point))
9116               (set-buffer sum)
9117               (setq point (point)))
9118           ;; We didn't find it, so we go to the next article.
9119           (set-buffer sum)
9120           (setq found 'not)
9121           (while (eq found 'not)
9122             (if (not (if backward (gnus-summary-find-prev)
9123                        (gnus-summary-find-next)))
9124                 ;; No more articles.
9125                 (setq found t)
9126               ;; Select the next article and adjust point.
9127               (unless (gnus-summary-article-sparse-p
9128                        (gnus-summary-article-number))
9129                 (setq found nil)
9130                 (gnus-summary-select-article)
9131                 (set-buffer gnus-article-buffer)
9132                 (widen)
9133                 (goto-char (if backward (point-max) (point-min))))))))
9134       (gnus-message 7 ""))
9135     ;; Return whether we found the regexp.
9136     (when (eq found 'found)
9137       (goto-char point)
9138       (gnus-summary-show-thread)
9139       (gnus-summary-goto-subject gnus-current-article)
9140       (gnus-summary-position-point)
9141       t)))
9142
9143 (defun gnus-find-matching-articles (header regexp)
9144   "Return a list of all articles that match REGEXP on HEADER.
9145 This search includes all articles in the current group that Gnus has
9146 fetched headers for, whether they are displayed or not."
9147   (let ((articles nil)
9148         ;; Can't eta-reduce because it's a macro.
9149         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
9150         (case-fold-search t))
9151     (dolist (header gnus-newsgroup-headers)
9152       (when (string-match regexp (funcall func header))
9153         (push (mail-header-number header) articles)))
9154     (nreverse articles)))
9155
9156 (defun gnus-summary-find-matching (header regexp &optional backward unread
9157                                           not-case-fold not-matching)
9158   "Return a list of all articles that match REGEXP on HEADER.
9159 The search stars on the current article and goes forwards unless
9160 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
9161 If UNREAD is non-nil, only unread articles will
9162 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
9163 in the comparisons. If NOT-MATCHING, return a list of all articles that
9164 not match REGEXP on HEADER."
9165   (let ((case-fold-search (not not-case-fold))
9166         articles d func)
9167     (if (consp header)
9168         (if (eq (car header) 'extra)
9169             (setq func
9170                   `(lambda (h)
9171                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
9172                          "")))
9173           (error "%s is an invalid header" header))
9174       (unless (fboundp (intern (concat "mail-header-" header)))
9175         (error "%s is not a valid header" header))
9176       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
9177     (dolist (d (if (eq backward 'all)
9178                    gnus-newsgroup-data
9179                  (gnus-data-find-list
9180                   (gnus-summary-article-number)
9181                   (gnus-data-list backward))))
9182       (when (and (or (not unread)       ; We want all articles...
9183                      (gnus-data-unread-p d)) ; Or just unreads.
9184                  (vectorp (gnus-data-header d)) ; It's not a pseudo.
9185                  (if not-matching
9186                      (not (string-match
9187                            regexp
9188                            (funcall func (gnus-data-header d))))
9189                    (string-match regexp
9190                                  (funcall func (gnus-data-header d)))))
9191         (push (gnus-data-number d) articles))) ; Success!
9192     (nreverse articles)))
9193
9194 (defun gnus-summary-execute-command (header regexp command &optional backward)
9195   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
9196 If HEADER is an empty string (or nil), the match is done on the entire
9197 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
9198   (interactive
9199    (list (let ((completion-ignore-case t))
9200            (completing-read
9201             "Header name: "
9202             (mapcar (lambda (header) (list (format "%s" header)))
9203                     (append
9204                      '("Number" "Subject" "From" "Lines" "Date"
9205                        "Message-ID" "Xref" "References" "Body")
9206                      gnus-extra-headers))
9207             nil 'require-match))
9208          (read-string "Regexp: ")
9209          (read-key-sequence "Command: ")
9210          current-prefix-arg))
9211   (when (equal header "Body")
9212     (setq header ""))
9213   ;; Hidden thread subtrees must be searched as well.
9214   (gnus-summary-show-all-threads)
9215   ;; We don't want to change current point nor window configuration.
9216   (save-excursion
9217     (save-window-excursion
9218       (let (gnus-visual
9219             gnus-treat-strip-trailing-blank-lines
9220             gnus-treat-strip-leading-blank-lines
9221             gnus-treat-strip-multiple-blank-lines
9222             gnus-treat-hide-boring-headers
9223             gnus-treat-fold-newsgroups
9224             gnus-article-prepare-hook)
9225         (gnus-message 6 "Executing %s..." (key-description command))
9226         ;; We'd like to execute COMMAND interactively so as to give arguments.
9227         (gnus-execute header regexp
9228                       `(call-interactively ',(key-binding command))
9229                       backward)
9230         (gnus-message 6 "Executing %s...done" (key-description command))))))
9231
9232 (defun gnus-summary-beginning-of-article ()
9233   "Scroll the article back to the beginning."
9234   (interactive)
9235   (gnus-summary-select-article)
9236   (gnus-configure-windows 'article)
9237   (gnus-eval-in-buffer-window gnus-article-buffer
9238     (widen)
9239     (goto-char (point-min))
9240     (when gnus-break-pages
9241       (gnus-narrow-to-page))))
9242
9243 (defun gnus-summary-end-of-article ()
9244   "Scroll to the end of the article."
9245   (interactive)
9246   (gnus-summary-select-article)
9247   (gnus-configure-windows 'article)
9248   (gnus-eval-in-buffer-window gnus-article-buffer
9249     (widen)
9250     (goto-char (point-max))
9251     (recenter -3)
9252     (when gnus-break-pages
9253       (gnus-narrow-to-page))))
9254
9255 (defun gnus-summary-print-truncate-and-quote (string &optional len)
9256   "Truncate to LEN and quote all \"(\"'s in STRING."
9257   (gnus-replace-in-string (if (and len (> (length string) len))
9258                               (substring string 0 len)
9259                             string)
9260                           "[()]" "\\\\\\&"))
9261
9262 (defun gnus-summary-print-article (&optional filename n)
9263   "Generate and print a PostScript image of the process-marked (mail) articles.
9264
9265 If used interactively, print the current article if none are
9266 process-marked.  With prefix arg, prompt the user for the name of the
9267 file to save in.
9268
9269 When used from Lisp, accept two optional args FILENAME and N.  N means
9270 to print the next N articles.  If N is negative, print the N previous
9271 articles.  If N is nil and articles have been marked with the process
9272 mark, print these instead.
9273
9274 If the optional first argument FILENAME is nil, send the image to the
9275 printer.  If FILENAME is a string, save the PostScript image in a file with
9276 that name.  If FILENAME is a number, prompt the user for the name of the file
9277 to save in."
9278   (interactive (list (ps-print-preprint current-prefix-arg)))
9279   (dolist (article (gnus-summary-work-articles n))
9280     (gnus-summary-select-article nil nil 'pseudo article)
9281     (gnus-eval-in-buffer-window gnus-article-buffer
9282       (gnus-print-buffer))
9283     (gnus-summary-remove-process-mark article))
9284   (ps-despool filename))
9285
9286 (defun gnus-print-buffer ()
9287   (let ((buffer (generate-new-buffer " *print*")))
9288     (unwind-protect
9289         (progn
9290           (copy-to-buffer buffer (point-min) (point-max))
9291           (set-buffer buffer)
9292           (gnus-remove-text-with-property 'gnus-decoration)
9293           (when (gnus-visual-p 'article-highlight 'highlight)
9294             ;; Copy-to-buffer doesn't copy overlay.  So redo
9295             ;; highlight.
9296             (let ((gnus-article-buffer buffer))
9297               (gnus-article-highlight-citation t)
9298               (gnus-article-highlight-signature)
9299               (gnus-article-emphasize)
9300               (gnus-article-delete-invisible-text)))
9301           (let ((ps-left-header
9302                  (list
9303                   (concat "("
9304                           (gnus-summary-print-truncate-and-quote
9305                            (mail-header-subject gnus-current-headers)
9306                            66) ")")
9307                   (concat "("
9308                           (gnus-summary-print-truncate-and-quote
9309                            (mail-header-from gnus-current-headers)
9310                            45) ")")))
9311                 (ps-right-header
9312                  (list
9313                   "/pagenumberstring load"
9314                   (concat "("
9315                           (mail-header-date gnus-current-headers) ")"))))
9316             (gnus-run-hooks 'gnus-ps-print-hook)
9317             (save-excursion
9318               (if ps-print-color-p
9319                   (ps-spool-buffer-with-faces)
9320                 (ps-spool-buffer)))))
9321       (kill-buffer buffer))))
9322
9323 (defun gnus-summary-show-article (&optional arg)
9324   "Force redisplaying of the current article.
9325 If ARG (the prefix) is a number, show the article with the charset
9326 defined in `gnus-summary-show-article-charset-alist', or the charset
9327 input.
9328 If ARG (the prefix) is non-nil and not a number, show the raw article
9329 without any article massaging functions being run.  Normally, the key
9330 strokes are `C-u g'."
9331   (interactive "P")
9332   (cond
9333    ((numberp arg)
9334     (gnus-summary-show-article t)
9335     (let ((gnus-newsgroup-charset
9336            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
9337                (mm-read-coding-system
9338                 "View as charset: " ;; actually it is coding system.
9339                 (with-current-buffer gnus-article-buffer
9340                   (mm-detect-coding-region (point) (point-max))))))
9341           (gnus-newsgroup-ignored-charsets 'gnus-all))
9342       (gnus-summary-select-article nil 'force)
9343       (let ((deps gnus-newsgroup-dependencies)
9344             head header lines)
9345         (with-current-buffer gnus-original-article-buffer
9346           (save-restriction
9347             (message-narrow-to-head)
9348             (setq head (buffer-string))
9349             (goto-char (point-min))
9350             (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
9351               (goto-char (point-max))
9352               (widen)
9353               (setq lines (1- (count-lines (point) (point-max))))))
9354           (with-temp-buffer
9355             (insert (format "211 %d Article retrieved.\n"
9356                             (cdr gnus-article-current)))
9357             (insert head)
9358             (if lines (insert (format "Lines: %d\n" lines)))
9359             (insert ".\n")
9360             (let ((nntp-server-buffer (current-buffer)))
9361               (setq header (car (gnus-get-newsgroup-headers deps t))))))
9362         (gnus-data-set-header
9363          (gnus-data-find (cdr gnus-article-current))
9364          header)
9365         (gnus-summary-update-article-line
9366          (cdr gnus-article-current) header)
9367         (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9368           (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
9369    ((not arg)
9370     ;; Select the article the normal way.
9371     (gnus-summary-select-article nil 'force))
9372    (t
9373     ;; We have to require this here to make sure that the following
9374     ;; dynamic binding isn't shadowed by autoloading.
9375     (require 'gnus-async)
9376     (require 'gnus-art)
9377     ;; Bind the article treatment functions to nil.
9378     (let ((gnus-have-all-headers t)
9379           gnus-article-prepare-hook
9380           gnus-article-decode-hook
9381           gnus-display-mime-function
9382           gnus-break-pages)
9383       ;; Destroy any MIME parts.
9384       (when (gnus-buffer-live-p gnus-article-buffer)
9385         (with-current-buffer gnus-article-buffer
9386           (mm-destroy-parts gnus-article-mime-handles)
9387           ;; Set it to nil for safety reason.
9388           (setq gnus-article-mime-handle-alist nil)
9389           (setq gnus-article-mime-handles nil)))
9390       (gnus-summary-select-article nil 'force))))
9391   (gnus-summary-goto-subject gnus-current-article)
9392   (gnus-summary-position-point))
9393
9394 (defun gnus-summary-show-raw-article ()
9395   "Show the raw article without any article massaging functions being run."
9396   (interactive)
9397   (gnus-summary-show-article t))
9398
9399 (defun gnus-summary-verbose-headers (&optional arg)
9400   "Toggle permanent full header display.
9401 If ARG is a positive number, turn header display on.
9402 If ARG is a negative number, turn header display off."
9403   (interactive "P")
9404   (setq gnus-show-all-headers
9405         (cond ((or (not (numberp arg))
9406                    (zerop arg))
9407                (not gnus-show-all-headers))
9408               ((natnump arg)
9409                t)))
9410   (gnus-summary-show-article))
9411
9412 (defun gnus-summary-toggle-header (&optional arg)
9413   "Show the headers if they are hidden, or hide them if they are shown.
9414 If ARG is a positive number, show the entire header.
9415 If ARG is a negative number, hide the unwanted header lines."
9416   (interactive "P")
9417   (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
9418                      (get-buffer-window gnus-article-buffer t))))
9419     (with-current-buffer gnus-article-buffer
9420       (widen)
9421       (article-narrow-to-head)
9422       (let* ((inhibit-read-only t)
9423              (inhibit-point-motion-hooks t)
9424              (hidden (if (numberp arg)
9425                          (>= arg 0)
9426                        (or (not (looking-at "[^ \t\n]+:"))
9427                            (gnus-article-hidden-text-p 'headers))))
9428              s e)
9429         (delete-region (point-min) (point-max))
9430         (with-current-buffer gnus-original-article-buffer
9431           (goto-char (setq s (point-min)))
9432           (setq e (if (search-forward "\n\n" nil t)
9433                       (1- (point))
9434                     (point-max))))
9435         (insert-buffer-substring gnus-original-article-buffer s e)
9436         (run-hooks 'gnus-article-decode-hook)
9437         (if hidden
9438             (let ((gnus-treat-hide-headers nil)
9439                   (gnus-treat-hide-boring-headers nil))
9440               (gnus-delete-wash-type 'headers)
9441               (gnus-treat-article 'head))
9442           (gnus-treat-article 'head))
9443         (widen)
9444         (if window
9445             (set-window-start window (goto-char (point-min))))
9446         (if gnus-break-pages
9447             (gnus-narrow-to-page)
9448           (when (gnus-visual-p 'page-marker)
9449             (let ((inhibit-read-only t))
9450               (gnus-remove-text-with-property 'gnus-prev)
9451               (gnus-remove-text-with-property 'gnus-next))))
9452         (gnus-set-mode-line 'article)))))
9453
9454 (defun gnus-summary-show-all-headers ()
9455   "Make all header lines visible."
9456   (interactive)
9457   (gnus-summary-toggle-header 1))
9458
9459 (defun gnus-summary-caesar-message (&optional arg)
9460   "Caesar rotate the current article by 13.
9461 With a non-numerical prefix, also rotate headers.  A numerical
9462 prefix specifies how many places to rotate each letter forward."
9463   (interactive "P")
9464   (gnus-summary-select-article)
9465   (let ((mail-header-separator ""))
9466     (gnus-eval-in-buffer-window gnus-article-buffer
9467       (save-restriction
9468         (widen)
9469         (let ((start (window-start))
9470               (inhibit-read-only t))
9471           (if (equal arg '(4))
9472               (message-caesar-buffer-body nil t)
9473             (message-caesar-buffer-body arg))
9474           (set-window-start (get-buffer-window (current-buffer)) start)))))
9475   ;; Create buttons and stuff...
9476   (gnus-treat-article nil))
9477
9478 (declare-function idna-to-unicode "ext:idna" (str))
9479
9480 (defun gnus-summary-idna-message (&optional arg)
9481   "Decode IDNA encoded domain names in the current articles.
9482 IDNA encoded domain names looks like `xn--bar'.  If a string
9483 remain unencoded after running this function, it is likely an
9484 invalid IDNA string (`xn--bar' is invalid).
9485
9486 You must have GNU Libidn (`http://www.gnu.org/software/libidn/')
9487 installed for this command to work."
9488   (interactive "P")
9489   (if (not (and (condition-case nil (require 'idna)
9490                   (file-error))
9491                 (mm-coding-system-p 'utf-8)
9492                 (executable-find (symbol-value 'idna-program))))
9493       (gnus-message
9494        5 "GNU Libidn not installed properly (`idn' or `idna.el' missing)")
9495     (gnus-summary-select-article)
9496     (let ((mail-header-separator ""))
9497       (gnus-eval-in-buffer-window gnus-article-buffer
9498         (save-restriction
9499           (widen)
9500           (let ((start (window-start))
9501                 buffer-read-only)
9502             (while (re-search-forward "\\(xn--[-0-9a-z]+\\)" nil t)
9503               (replace-match (idna-to-unicode (match-string 1))))
9504             (set-window-start (get-buffer-window (current-buffer)) start)))))))
9505
9506 (defun gnus-summary-morse-message (&optional arg)
9507   "Morse decode the current article."
9508   (interactive "P")
9509   (gnus-summary-select-article)
9510   (let ((mail-header-separator ""))
9511     (gnus-eval-in-buffer-window gnus-article-buffer
9512       (save-excursion
9513         (save-restriction
9514           (widen)
9515           (let ((pos (window-start))
9516                 (inhibit-read-only t))
9517             (goto-char (point-min))
9518             (when (message-goto-body)
9519               (gnus-narrow-to-body))
9520             (goto-char (point-min))
9521             (while (search-forward "·" (point-max) t)
9522               (replace-match "."))
9523             (unmorse-region (point-min) (point-max))
9524             (widen)
9525             (set-window-start (get-buffer-window (current-buffer)) pos)))))))
9526
9527 (defun gnus-summary-stop-page-breaking ()
9528   "Stop page breaking in the current article."
9529   (interactive)
9530   (gnus-summary-select-article)
9531   (gnus-eval-in-buffer-window gnus-article-buffer
9532     (widen)
9533     (when (gnus-visual-p 'page-marker)
9534       (let ((inhibit-read-only t))
9535         (gnus-remove-text-with-property 'gnus-prev)
9536         (gnus-remove-text-with-property 'gnus-next))
9537       (setq gnus-page-broken nil))))
9538
9539 (defun gnus-summary-move-article (&optional n to-newsgroup
9540                                             select-method action)
9541   "Move the current article to a different newsgroup.
9542 If N is a positive number, move the N next articles.
9543 If N is a negative number, move the N previous articles.
9544 If N is nil and any articles have been marked with the process mark,
9545 move those articles instead.
9546 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9547 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9548 re-spool using this method.
9549
9550 When called interactively with TO-NEWSGROUP being nil, the value of
9551 the variable `gnus-move-split-methods' is used for finding a default
9552 for the target newsgroup.
9553
9554 For this function to work, both the current newsgroup and the
9555 newsgroup that you want to move to have to support the `request-move'
9556 and `request-accept' functions.
9557
9558 ACTION can be either `move' (the default), `crosspost' or `copy'."
9559   (interactive "P")
9560   (unless action
9561     (setq action 'move))
9562   ;; Check whether the source group supports the required functions.
9563   (cond ((and (eq action 'move)
9564               (not (gnus-check-backend-function
9565                     'request-move-article gnus-newsgroup-name)))
9566          (error "The current group does not support article moving"))
9567         ((and (eq action 'crosspost)
9568               (not (gnus-check-backend-function
9569                     'request-replace-article gnus-newsgroup-name)))
9570          (error "The current group does not support article editing")))
9571   (let ((articles (gnus-summary-work-articles n))
9572         (prefix (if (gnus-check-backend-function
9573                      'request-move-article gnus-newsgroup-name)
9574                     (funcall gnus-move-group-prefix-function
9575                              gnus-newsgroup-name)
9576                   ""))
9577         (names '((move "Move" "Moving")
9578                  (copy "Copy" "Copying")
9579                  (crosspost "Crosspost" "Crossposting")))
9580         (copy-buf (save-excursion
9581                     (nnheader-set-temp-buffer " *copy article*")))
9582         art-group to-method new-xref article to-groups
9583         articles-to-update-marks encoded)
9584     (unless (assq action names)
9585       (error "Unknown action %s" action))
9586     ;; Read the newsgroup name.
9587     (when (and (not to-newsgroup)
9588                (not select-method))
9589       (if (and gnus-move-split-methods
9590                (not
9591                 (and (memq gnus-current-article articles)
9592                      (gnus-buffer-live-p gnus-original-article-buffer))))
9593           ;; When `gnus-move-split-methods' is non-nil, we have to
9594           ;; select an article to give `gnus-read-move-group-name' an
9595           ;; opportunity to suggest an appropriate default.  However,
9596           ;; we needn't render or mark the article.
9597           (let ((gnus-display-mime-function nil)
9598                 (gnus-article-prepare-hook nil)
9599                 (gnus-mark-article-hook nil))
9600             (gnus-summary-select-article nil nil nil (car articles))))
9601       (setq to-newsgroup (gnus-read-move-group-name
9602                           (cadr (assq action names))
9603                           (symbol-value
9604                            (intern (format "gnus-current-%s-group" action)))
9605                           articles prefix)
9606             encoded to-newsgroup
9607             to-method (gnus-server-to-method (gnus-group-method to-newsgroup)))
9608       (set (intern (format "gnus-current-%s-group" action))
9609            (mm-decode-coding-string
9610             to-newsgroup
9611             (gnus-group-name-charset to-method to-newsgroup))))
9612     (unless to-method
9613       (setq to-method (or select-method
9614                           (gnus-server-to-method
9615                            (gnus-group-method to-newsgroup)))))
9616     (setq to-newsgroup
9617           (or encoded
9618               (and to-newsgroup
9619                    (mm-encode-coding-string
9620                     to-newsgroup
9621                     (gnus-group-name-charset to-method to-newsgroup)))))
9622     ;; Check the method we are to move this article to...
9623     (unless (gnus-check-backend-function
9624              'request-accept-article (car to-method))
9625       (error "%s does not support article copying" (car to-method)))
9626     (unless (gnus-check-server to-method)
9627       (error "Can't open server %s" (car to-method)))
9628     (gnus-message 6 "%s to %s: %s..."
9629                   (caddr (assq action names))
9630                   (or (car select-method)
9631                       (gnus-group-decoded-name to-newsgroup))
9632                   articles)
9633     (while articles
9634       (setq article (pop articles))
9635       (setq
9636        art-group
9637        (cond
9638         ;; Move the article.
9639         ((eq action 'move)
9640          ;; Remove this article from future suppression.
9641          (gnus-dup-unsuppress-article article)
9642          (let* ((from-method (gnus-find-method-for-group
9643                               gnus-newsgroup-name))
9644                 (to-method (or select-method
9645                                (gnus-find-method-for-group to-newsgroup)))
9646                 (move-is-internal (gnus-method-equal from-method to-method)))
9647            (gnus-request-move-article
9648             article                     ; Article to move
9649             gnus-newsgroup-name         ; From newsgroup
9650             (nth 1 (gnus-find-method-for-group
9651                     gnus-newsgroup-name)) ; Server
9652             (list 'gnus-request-accept-article
9653                   to-newsgroup (list 'quote select-method)
9654                   (not articles) t)     ; Accept form
9655             (not articles)              ; Only save nov last time
9656             move-is-internal)))         ; is this move internal?
9657         ;; Copy the article.
9658         ((eq action 'copy)
9659          (with-current-buffer copy-buf
9660            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
9661              (save-restriction
9662                (nnheader-narrow-to-headers)
9663                (dolist (hdr gnus-copy-article-ignored-headers)
9664                  (message-remove-header hdr t)))
9665              (gnus-request-accept-article
9666               to-newsgroup select-method (not articles) t))))
9667         ;; Crosspost the article.
9668         ((eq action 'crosspost)
9669          (let ((xref (message-tokenize-header
9670                       (mail-header-xref (gnus-summary-article-header article))
9671                       " ")))
9672            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
9673                                   ":" (number-to-string article)))
9674            (unless xref
9675              (setq xref (list (system-name))))
9676            (setq new-xref
9677                  (concat
9678                   (mapconcat 'identity
9679                              (delete "Xref:" (delete new-xref xref))
9680                              " ")
9681                   " " new-xref))
9682            (with-current-buffer copy-buf
9683              ;; First put the article in the destination group.
9684              (gnus-request-article-this-buffer article gnus-newsgroup-name)
9685              (when (consp (setq art-group
9686                                 (gnus-request-accept-article
9687                                  to-newsgroup select-method (not articles) t)))
9688                (setq new-xref (concat new-xref " " (car art-group)
9689                                       ":"
9690                                       (number-to-string (cdr art-group))))
9691                ;; Now we have the new Xrefs header, so we insert
9692                ;; it and replace the new article.
9693                (nnheader-replace-header "Xref" new-xref)
9694                (gnus-request-replace-article
9695                 (cdr art-group) to-newsgroup (current-buffer) t)
9696                art-group))))))
9697       (cond
9698        ((not art-group)
9699         (gnus-message 1 "Couldn't %s article %s: %s"
9700                       (cadr (assq action names)) article
9701                       (nnheader-get-report (car to-method))))
9702        ((eq art-group 'junk)
9703         (when (eq action 'move)
9704           (gnus-summary-mark-article article gnus-canceled-mark)
9705           (gnus-message 4 "Deleted article %s" article)
9706           ;; run the delete hook
9707           (run-hook-with-args 'gnus-summary-article-delete-hook
9708                               action
9709                               (gnus-data-header
9710                                (assoc article (gnus-data-list nil)))
9711                               gnus-newsgroup-name nil
9712                               select-method)))
9713        (t
9714         (let* ((pto-group (gnus-group-prefixed-name
9715                            (car art-group) to-method))
9716                (info (gnus-get-info pto-group))
9717                (to-group (gnus-info-group info))
9718                to-marks)
9719           ;; Update the group that has been moved to.
9720           (when (and info
9721                      (memq action '(move copy)))
9722             (unless (member to-group to-groups)
9723               (push to-group to-groups))
9724
9725             (unless (memq article gnus-newsgroup-unreads)
9726               (push 'read to-marks)
9727               (gnus-info-set-read
9728                info (gnus-add-to-range (gnus-info-read info)
9729                                        (list (cdr art-group)))))
9730
9731             ;; See whether the article is to be put in the cache.
9732             (let ((marks (if (gnus-group-auto-expirable-p to-group)
9733                              gnus-article-mark-lists
9734                            (delete '(expirable . expire)
9735                                    (copy-sequence gnus-article-mark-lists))))
9736                   (to-article (cdr art-group)))
9737
9738               ;; Enter the article into the cache in the new group,
9739               ;; if that is required.
9740               (when gnus-use-cache
9741                 (gnus-cache-possibly-enter-article
9742                  to-group to-article
9743                  (memq article gnus-newsgroup-marked)
9744                  (memq article gnus-newsgroup-dormant)
9745                  (memq article gnus-newsgroup-unreads)))
9746
9747               (when gnus-preserve-marks
9748                 ;; Copy any marks over to the new group.
9749                 (when (and (equal to-group gnus-newsgroup-name)
9750                            (not (memq article gnus-newsgroup-unreads)))
9751                   ;; Mark this article as read in this group.
9752                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
9753                   (setcdr (gnus-active to-group) to-article)
9754                   (setcdr gnus-newsgroup-active to-article))
9755
9756                 (while marks
9757                   (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
9758                     (when (memq article (symbol-value
9759                                          (intern (format "gnus-newsgroup-%s"
9760                                                          (caar marks)))))
9761                       (push (cdar marks) to-marks)
9762                       ;; If the other group is the same as this group,
9763                       ;; then we have to add the mark to the list.
9764                       (when (equal to-group gnus-newsgroup-name)
9765                         (set (intern (format "gnus-newsgroup-%s" (caar marks)))
9766                              (cons to-article
9767                                    (symbol-value
9768                                     (intern (format "gnus-newsgroup-%s"
9769                                                     (caar marks)))))))
9770                       ;; Copy the marks to other group.
9771                       (gnus-add-marked-articles
9772                        to-group (cdar marks) (list to-article) info)))
9773                   (setq marks (cdr marks)))
9774
9775                 (gnus-request-set-mark
9776                  to-group (list (list (list to-article) 'add to-marks))))
9777
9778               (gnus-dribble-enter
9779                (concat "(gnus-group-set-info '"
9780                        (gnus-prin1-to-string (gnus-get-info to-group))
9781                        ")"))))
9782
9783           ;; Update the Xref header in this article to point to
9784           ;; the new crossposted article we have just created.
9785           (when (eq action 'crosspost)
9786             (with-current-buffer copy-buf
9787               (gnus-request-article-this-buffer article gnus-newsgroup-name)
9788               (nnheader-replace-header "Xref" new-xref)
9789               (gnus-request-replace-article
9790                article gnus-newsgroup-name (current-buffer) t)))
9791
9792           ;; run the move/copy/crosspost/respool hook
9793           (run-hook-with-args 'gnus-summary-article-move-hook
9794                               action
9795                               (gnus-data-header
9796                                (assoc article (gnus-data-list nil)))
9797                               gnus-newsgroup-name
9798                               to-newsgroup
9799                               select-method))
9800
9801         ;;;!!!Why is this necessary?
9802         (set-buffer gnus-summary-buffer)
9803
9804         (gnus-summary-goto-subject article)
9805         (when (eq action 'move)
9806           (gnus-summary-mark-article article gnus-canceled-mark))))
9807       (push article articles-to-update-marks))
9808
9809     (apply 'gnus-summary-remove-process-mark articles-to-update-marks)
9810     ;; Re-activate all groups that have been moved to.
9811     (with-current-buffer gnus-group-buffer
9812       (let ((gnus-group-marked to-groups))
9813         (gnus-group-get-new-news-this-group nil t)))
9814
9815     (gnus-kill-buffer copy-buf)
9816     (gnus-summary-position-point)
9817     (gnus-set-mode-line 'summary)))
9818
9819 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9820   "Copy the current article to some other group.
9821 If TO-NEWSGROUP is string, do not prompt for a newsgroup to copy to.
9822 When called interactively, if TO-NEWSGROUP is nil, use the value of
9823 the variable `gnus-move-split-methods' for finding a default target
9824 newsgroup.
9825 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9826 re-spool using this method."
9827   (interactive "P")
9828   (gnus-summary-move-article n to-newsgroup select-method 'copy))
9829
9830 (defun gnus-summary-crosspost-article (&optional n)
9831   "Crosspost the current article to some other group."
9832   (interactive "P")
9833   (gnus-summary-move-article n nil nil 'crosspost))
9834
9835 (defcustom gnus-summary-respool-default-method nil
9836   "Default method type for respooling an article.
9837 If nil, use to the current newsgroup method."
9838   :type 'symbol
9839   :group 'gnus-summary-mail)
9840
9841 (defun gnus-summary-respool-article (&optional n method)
9842   "Respool the current article.
9843 The article will be squeezed through the mail spooling process again,
9844 which means that it will be put in some mail newsgroup or other
9845 depending on `nnmail-split-methods'.
9846 If N is a positive number, respool the N next articles.
9847 If N is a negative number, respool the N previous articles.
9848 If N is nil and any articles have been marked with the process mark,
9849 respool those articles instead.
9850
9851 Respooling can be done both from mail groups and \"real\" newsgroups.
9852 In the former case, the articles in question will be moved from the
9853 current group into whatever groups they are destined to.  In the
9854 latter case, they will be copied into the relevant groups."
9855   (interactive
9856    (list current-prefix-arg
9857          (let* ((methods (gnus-methods-using 'respool))
9858                 (methname
9859                  (symbol-name (or gnus-summary-respool-default-method
9860                                   (car (gnus-find-method-for-group
9861                                         gnus-newsgroup-name)))))
9862                 (method
9863                  (gnus-completing-read-with-default
9864                   methname "Backend to use when respooling"
9865                   methods nil t nil 'gnus-mail-method-history))
9866                 ms)
9867            (cond
9868             ((zerop (length (setq ms (gnus-servers-using-backend
9869                                       (intern method)))))
9870              (list (intern method) ""))
9871             ((= 1 (length ms))
9872              (car ms))
9873             (t
9874              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9875                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9876                            ms-alist))))))))
9877   (unless method
9878     (error "No method given for respooling"))
9879   (if (assoc (symbol-name
9880               (car (gnus-find-method-for-group gnus-newsgroup-name)))
9881              (gnus-methods-using 'respool))
9882       (gnus-summary-move-article n nil method)
9883     (gnus-summary-copy-article n nil method)))
9884
9885 (defun gnus-summary-import-article (file &optional edit)
9886   "Import an arbitrary file into a mail newsgroup."
9887   (interactive "fImport file: \nP")
9888   (let ((group gnus-newsgroup-name)
9889         (now (current-time))
9890         atts lines group-art)
9891     (unless (gnus-check-backend-function 'request-accept-article group)
9892       (error "%s does not support article importing" group))
9893     (or (file-readable-p file)
9894         (not (file-regular-p file))
9895         (error "Can't read %s" file))
9896     (with-current-buffer (gnus-get-buffer-create " *import file*")
9897       (erase-buffer)
9898       (nnheader-insert-file-contents file)
9899       (goto-char (point-min))
9900       (if (nnheader-article-p)
9901           (save-restriction
9902             (goto-char (point-min))
9903             (search-forward "\n\n" nil t)
9904             (narrow-to-region (point-min) (1- (point)))
9905             (goto-char (point-min))
9906             (unless (re-search-forward "^date:" nil t)
9907               (goto-char (point-max))
9908               (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9909        ;; This doesn't look like an article, so we fudge some headers.
9910         (setq atts (file-attributes file)
9911               lines (count-lines (point-min) (point-max)))
9912         (insert "From: " (read-string "From: ") "\n"
9913                 "Subject: " (read-string "Subject: ") "\n"
9914                 "Date: " (message-make-date (nth 5 atts)) "\n"
9915                 "Message-ID: " (message-make-message-id) "\n"
9916                 "Lines: " (int-to-string lines) "\n"
9917                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9918       (setq group-art (gnus-request-accept-article group nil t))
9919       (kill-buffer (current-buffer)))
9920     (setq gnus-newsgroup-active (gnus-activate-group group))
9921     (forward-line 1)
9922     (gnus-summary-goto-article (cdr group-art) nil t)
9923     (when edit
9924       (gnus-summary-edit-article))))
9925
9926 (defun gnus-summary-create-article ()
9927   "Create an article in a mail newsgroup."
9928   (interactive)
9929   (let ((group gnus-newsgroup-name)
9930         (now (current-time))
9931         group-art)
9932     (unless (gnus-check-backend-function 'request-accept-article group)
9933       (error "%s does not support article importing" group))
9934     (with-current-buffer (gnus-get-buffer-create " *import file*")
9935       (erase-buffer)
9936       (goto-char (point-min))
9937       ;; This doesn't look like an article, so we fudge some headers.
9938       (insert "From: " (read-string "From: ") "\n"
9939               "Subject: " (read-string "Subject: ") "\n"
9940               "Date: " (message-make-date now) "\n"
9941               "Message-ID: " (message-make-message-id) "\n")
9942       (setq group-art (gnus-request-accept-article group nil t))
9943       (kill-buffer (current-buffer)))
9944     (setq gnus-newsgroup-active (gnus-activate-group group))
9945     (forward-line 1)
9946     (gnus-summary-goto-article (cdr group-art) nil t)
9947     (gnus-summary-edit-article)))
9948
9949 (defun gnus-summary-article-posted-p ()
9950   "Say whether the current (mail) article is available from news as well.
9951 This will be the case if the article has both been mailed and posted."
9952   (interactive)
9953   (let ((id (mail-header-references (gnus-summary-article-header)))
9954         (gnus-override-method (car (gnus-refer-article-methods))))
9955     (if (gnus-request-head id "")
9956         (gnus-message 2 "The current message was found on %s"
9957                       gnus-override-method)
9958       (gnus-message 2 "The current message couldn't be found on %s"
9959                     gnus-override-method)
9960       nil)))
9961
9962 (defun gnus-summary-expire-articles (&optional now)
9963   "Expire all articles that are marked as expirable in the current group."
9964   (interactive)
9965   (when (and (not gnus-group-is-exiting-without-update-p)
9966              (gnus-check-backend-function
9967               'request-expire-articles gnus-newsgroup-name))
9968     ;; This backend supports expiry.
9969     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
9970            (expirable (if total
9971                           (progn
9972                             ;; We need to update the info for
9973                             ;; this group for `gnus-list-of-read-articles'
9974                             ;; to give us the right answer.
9975                             (gnus-run-hooks 'gnus-exit-group-hook)
9976                             (gnus-summary-update-info)
9977                             (gnus-list-of-read-articles gnus-newsgroup-name))
9978                         (setq gnus-newsgroup-expirable
9979                               (sort gnus-newsgroup-expirable '<))))
9980            (expiry-wait (if now 'immediate
9981                           (gnus-group-find-parameter
9982                            gnus-newsgroup-name 'expiry-wait)))
9983            (nnmail-expiry-target
9984             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
9985                 nnmail-expiry-target))
9986            es)
9987       (when expirable
9988         ;; There are expirable articles in this group, so we run them
9989         ;; through the expiry process.
9990         (gnus-message 6 "Expiring articles...")
9991         (unless (gnus-check-group gnus-newsgroup-name)
9992           (error "Can't open server for %s" gnus-newsgroup-name))
9993         ;; The list of articles that weren't expired is returned.
9994         (save-excursion
9995           (if expiry-wait
9996               (let ((nnmail-expiry-wait-function nil)
9997                     (nnmail-expiry-wait expiry-wait))
9998                 (setq es (gnus-request-expire-articles
9999                           expirable gnus-newsgroup-name)))
10000             (setq es (gnus-request-expire-articles
10001                       expirable gnus-newsgroup-name)))
10002           (unless total
10003             (setq gnus-newsgroup-expirable es))
10004           ;; We go through the old list of expirable, and mark all
10005           ;; really expired articles as nonexistent.
10006           (unless (eq es expirable) ;If nothing was expired, we don't mark.
10007             (let ((gnus-use-cache nil))
10008               (dolist (article expirable)
10009                 (when (and (not (memq article es))
10010                            (gnus-data-find article))
10011                   (gnus-summary-mark-article article gnus-canceled-mark)
10012                   (run-hook-with-args 'gnus-summary-article-expire-hook
10013                                       'delete
10014                                       (gnus-data-header
10015                                        (assoc article (gnus-data-list nil)))
10016                                       gnus-newsgroup-name
10017                                       nil
10018                                       nil))))))
10019         (gnus-message 6 "Expiring articles...done")))))
10020
10021 (defun gnus-summary-expire-articles-now ()
10022   "Expunge all expirable articles in the current group.
10023 This means that *all* articles that are marked as expirable will be
10024 deleted forever, right now."
10025   (interactive)
10026   (or gnus-expert-user
10027       (gnus-yes-or-no-p
10028        "Are you really, really sure you want to delete all expirable messages? ")
10029       (error "Phew!"))
10030   (gnus-summary-expire-articles t))
10031
10032 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
10033 (defun gnus-summary-delete-article (&optional n)
10034   "Delete the N next (mail) articles.
10035 This command actually deletes articles.  This is not a marking
10036 command.  The article will disappear forever from your life, never to
10037 return.
10038
10039 If N is negative, delete backwards.
10040 If N is nil and articles have been marked with the process mark,
10041 delete these instead.
10042
10043 If `gnus-novice-user' is non-nil you will be asked for
10044 confirmation before the articles are deleted."
10045   (interactive "P")
10046   (unless (gnus-check-backend-function 'request-expire-articles
10047                                        gnus-newsgroup-name)
10048     (error "The current newsgroup does not support article deletion"))
10049   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
10050     (error "Couldn't open server"))
10051   ;; Compute the list of articles to delete.
10052   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
10053         (nnmail-expiry-target 'delete)
10054         not-deleted)
10055     (if (and gnus-novice-user
10056              (not (gnus-yes-or-no-p
10057                    (format "Do you really want to delete %s forever? "
10058                            (if (> (length articles) 1)
10059                                (format "these %s articles" (length articles))
10060                              "this article")))))
10061         ()
10062       ;; Delete the articles.
10063       (setq not-deleted (gnus-request-expire-articles
10064                          articles gnus-newsgroup-name 'force))
10065       (while articles
10066         (gnus-summary-remove-process-mark (car articles))
10067         ;; The backend might not have been able to delete the article
10068         ;; after all.
10069         (unless (memq (car articles) not-deleted)
10070           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
10071         (let* ((article (car articles))
10072                (ghead  (gnus-data-header
10073                                     (assoc article (gnus-data-list nil)))))
10074           (run-hook-with-args 'gnus-summary-article-delete-hook
10075                               'delete ghead gnus-newsgroup-name nil
10076                               nil))
10077         (setq articles (cdr articles)))
10078       (when not-deleted
10079         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
10080     (gnus-summary-position-point)
10081     (gnus-set-mode-line 'summary)
10082     not-deleted))
10083
10084 (defun gnus-summary-edit-article (&optional arg)
10085   "Edit the current article.
10086 This will have permanent effect only in mail groups.
10087 If ARG is nil, edit the decoded articles.
10088 If ARG is 1, edit the raw articles.
10089 If ARG is 2, edit the raw articles even in read-only groups.
10090 If ARG is 3, edit the articles with the current handles.
10091 Otherwise, allow editing of articles even in read-only
10092 groups."
10093   (interactive "P")
10094   (let (force raw current-handles)
10095     (cond
10096      ((null arg))
10097      ((eq arg 1)
10098       (setq raw t))
10099      ((eq arg 2)
10100       (setq raw t
10101             force t))
10102      ((eq arg 3)
10103       (setq current-handles
10104             (and (gnus-buffer-live-p gnus-article-buffer)
10105                  (with-current-buffer gnus-article-buffer
10106                    (prog1
10107                        gnus-article-mime-handles
10108                      (setq gnus-article-mime-handles nil))))))
10109      (t
10110       (setq force t)))
10111     (when (and raw (not force)
10112                (member gnus-newsgroup-name '("nndraft:delayed"
10113                                              "nndraft:drafts"
10114                                              "nndraft:queue")))
10115       (error "Can't edit the raw article in group %s"
10116              gnus-newsgroup-name))
10117     (with-current-buffer gnus-summary-buffer
10118       (let ((mail-parse-charset gnus-newsgroup-charset)
10119             (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
10120         (gnus-set-global-variables)
10121         (when (and (not force)
10122                    (gnus-group-read-only-p))
10123           (error "The current newsgroup does not support article editing"))
10124         (gnus-summary-show-article t)
10125         (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
10126           (with-current-buffer gnus-article-buffer
10127             (mm-enable-multibyte)))
10128         (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
10129             (setq raw t))
10130         (gnus-article-edit-article
10131          (if raw 'ignore
10132            `(lambda ()
10133               (let ((mbl mml-buffer-list))
10134                 (setq mml-buffer-list nil)
10135                 (let ((rfc2047-quote-decoded-words-containing-tspecials t))
10136                   (mime-to-mml ,'current-handles))
10137                 (let ((mbl1 mml-buffer-list))
10138                   (setq mml-buffer-list mbl)
10139                   (set (make-local-variable 'mml-buffer-list) mbl1))
10140                 (gnus-make-local-hook 'kill-buffer-hook)
10141                 (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
10142          `(lambda (no-highlight)
10143             (let ((mail-parse-charset ',gnus-newsgroup-charset)
10144                   (message-options message-options)
10145                   (message-options-set-recipient)
10146                   (mail-parse-ignored-charsets
10147                    ',gnus-newsgroup-ignored-charsets)
10148                   (rfc2047-header-encoding-alist
10149                    ',(let ((charset (gnus-group-name-charset
10150                                      (gnus-find-method-for-group
10151                                       gnus-newsgroup-name)
10152                                      gnus-newsgroup-name)))
10153                        (append (list (cons "Newsgroups" charset)
10154                                      (cons "Followup-To" charset)
10155                                      (cons "Xref" charset))
10156                                rfc2047-header-encoding-alist))))
10157               ,(if (not raw) '(progn
10158                                 (mml-to-mime)
10159                                 (mml-destroy-buffers)
10160                                 (remove-hook 'kill-buffer-hook
10161                                              'mml-destroy-buffers t)
10162                                 (kill-local-variable 'mml-buffer-list)))
10163               (gnus-summary-edit-article-done
10164                ,(or (mail-header-references gnus-current-headers) "")
10165                ,(gnus-group-read-only-p)
10166                ,gnus-summary-buffer no-highlight))))))))
10167
10168 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
10169
10170 (defun gnus-summary-edit-article-done (&optional references read-only buffer
10171                                                  no-highlight)
10172   "Make edits to the current article permanent."
10173   (interactive)
10174   (save-excursion
10175    ;; The buffer restriction contains the entire article if it exists.
10176     (when (article-goto-body)
10177       (let ((lines (count-lines (point) (point-max)))
10178             (length (- (point-max) (point)))
10179             (case-fold-search t)
10180             (body (copy-marker (point))))
10181         (goto-char (point-min))
10182         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
10183           (delete-region (match-beginning 1) (match-end 1))
10184           (insert (number-to-string length)))
10185         (goto-char (point-min))
10186         (when (re-search-forward
10187                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
10188           (delete-region (match-beginning 1) (match-end 1))
10189           (insert (number-to-string length)))
10190         (goto-char (point-min))
10191         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
10192           (delete-region (match-beginning 1) (match-end 1))
10193           (insert (number-to-string lines))))))
10194   ;; Replace the article.
10195   (let ((buf (current-buffer)))
10196     (with-temp-buffer
10197       (insert-buffer-substring buf)
10198
10199       (if (and (not read-only)
10200                (not (gnus-request-replace-article
10201                      (cdr gnus-article-current) (car gnus-article-current)
10202                      (current-buffer) t)))
10203           (error "Couldn't replace article")
10204         ;; Update the summary buffer.
10205         (if (and references
10206                  (equal (message-tokenize-header references " ")
10207                         (message-tokenize-header
10208                          (or (message-fetch-field "references") "") " ")))
10209             ;; We only have to update this line.
10210             (save-excursion
10211               (save-restriction
10212                 (message-narrow-to-head)
10213                 (let ((head (buffer-substring-no-properties
10214                              (point-min) (point-max)))
10215                       header)
10216                   (with-temp-buffer
10217                     (insert (format "211 %d Article retrieved.\n"
10218                                     (cdr gnus-article-current)))
10219                     (insert head)
10220                     (insert ".\n")
10221                     (let ((nntp-server-buffer (current-buffer)))
10222                       (setq header (car (gnus-get-newsgroup-headers
10223                                          nil t))))
10224                     (with-current-buffer gnus-summary-buffer
10225                       (gnus-data-set-header
10226                        (gnus-data-find (cdr gnus-article-current))
10227                        header)
10228                       (gnus-summary-update-article-line
10229                        (cdr gnus-article-current) header)
10230                       (if (gnus-summary-goto-subject
10231                            (cdr gnus-article-current) nil t)
10232                           (gnus-summary-update-secondary-mark
10233                            (cdr gnus-article-current))))))))
10234           ;; Update threads.
10235           (set-buffer (or buffer gnus-summary-buffer))
10236           (gnus-summary-update-article (cdr gnus-article-current))
10237           (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10238               (gnus-summary-update-secondary-mark
10239                (cdr gnus-article-current))))
10240         ;; Prettify the article buffer again.
10241         (unless no-highlight
10242           (with-current-buffer gnus-article-buffer
10243             ;;;!!! Fix this -- article should be rehighlighted.
10244             ;;;(gnus-run-hooks 'gnus-article-display-hook)
10245             (set-buffer gnus-original-article-buffer)
10246             (gnus-request-article
10247              (cdr gnus-article-current)
10248              (car gnus-article-current) (current-buffer))))
10249         ;; Prettify the summary buffer line.
10250         (when (gnus-visual-p 'summary-highlight 'highlight)
10251           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
10252
10253 (defun gnus-summary-edit-wash (key)
10254   "Perform editing command KEY in the article buffer."
10255   (interactive
10256    (list
10257     (progn
10258       (message "%s" (concat (this-command-keys) "- "))
10259       (read-char))))
10260   (message "")
10261   (gnus-summary-edit-article)
10262   (execute-kbd-macro (concat (this-command-keys) key))
10263   (gnus-article-edit-done))
10264
10265 ;;; Respooling
10266
10267 (defun gnus-summary-respool-query (&optional silent trace)
10268   "Query where the respool algorithm would put this article."
10269   (interactive)
10270   (let (gnus-mark-article-hook)
10271     (gnus-summary-select-article)
10272     (with-current-buffer gnus-original-article-buffer
10273       (let ((groups (nnmail-article-group 'identity trace)))
10274         (unless silent
10275           (if groups
10276               (message "This message would go to %s"
10277                        (mapconcat 'car groups ", "))
10278             (message "This message would go to no groups"))
10279           groups)))))
10280
10281 (defun gnus-summary-respool-trace ()
10282   "Trace where the respool algorithm would put this article.
10283 Display a buffer showing all fancy splitting patterns which matched."
10284   (interactive)
10285   (gnus-summary-respool-query nil t))
10286
10287 ;; Summary marking commands.
10288
10289 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
10290   "Mark articles which has the same subject as read, and then select the next.
10291 If UNMARK is positive, remove any kind of mark.
10292 If UNMARK is negative, tick articles."
10293   (interactive "P")
10294   (when unmark
10295     (setq unmark (prefix-numeric-value unmark)))
10296   (let ((count
10297          (gnus-summary-mark-same-subject
10298           (gnus-summary-article-subject) unmark)))
10299     ;; Select next unread article.  If auto-select-same mode, should
10300     ;; select the first unread article.
10301     (gnus-summary-next-article t (and gnus-auto-select-same
10302                                       (gnus-summary-article-subject)))
10303     (gnus-message 7 "%d article%s marked as %s"
10304                   count (if (= count 1) " is" "s are")
10305                   (if unmark "unread" "read"))))
10306
10307 (defun gnus-summary-kill-same-subject (&optional unmark)
10308   "Mark articles which has the same subject as read.
10309 If UNMARK is positive, remove any kind of mark.
10310 If UNMARK is negative, tick articles."
10311   (interactive "P")
10312   (when unmark
10313     (setq unmark (prefix-numeric-value unmark)))
10314   (let ((count
10315          (gnus-summary-mark-same-subject
10316           (gnus-summary-article-subject) unmark)))
10317     ;; If marked as read, go to next unread subject.
10318     (when (null unmark)
10319       ;; Go to next unread subject.
10320       (gnus-summary-next-subject 1 t))
10321     (gnus-message 7 "%d articles are marked as %s"
10322                   count (if unmark "unread" "read"))))
10323
10324 (defun gnus-summary-mark-same-subject (subject &optional unmark)
10325   "Mark articles with same SUBJECT as read, and return marked number.
10326 If optional argument UNMARK is positive, remove any kinds of marks.
10327 If optional argument UNMARK is negative, mark articles as unread instead."
10328   (let ((count 1))
10329     (save-excursion
10330       (cond
10331        ((null unmark)                   ; Mark as read.
10332         (while (and
10333                 (progn
10334                   (gnus-summary-mark-article-as-read gnus-killed-mark)
10335                   (gnus-summary-show-thread) t)
10336                 (gnus-summary-find-subject subject))
10337           (setq count (1+ count))))
10338        ((> unmark 0)                    ; Tick.
10339         (while (and
10340                 (progn
10341                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
10342                   (gnus-summary-show-thread) t)
10343                 (gnus-summary-find-subject subject))
10344           (setq count (1+ count))))
10345        (t                               ; Mark as unread.
10346         (while (and
10347                 (progn
10348                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
10349                   (gnus-summary-show-thread) t)
10350                 (gnus-summary-find-subject subject))
10351           (setq count (1+ count)))))
10352       (gnus-set-mode-line 'summary)
10353       ;; Return the number of marked articles.
10354       count)))
10355
10356 (defun gnus-summary-mark-as-processable (n &optional unmark)
10357   "Set the process mark on the next N articles.
10358 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
10359 the process mark instead.  The difference between N and the actual
10360 number of articles marked is returned."
10361   (interactive "P")
10362   (if (and (null n) (gnus-region-active-p))
10363       (gnus-uu-mark-region (region-beginning) (region-end) unmark)
10364     (setq n (prefix-numeric-value n))
10365     (let ((backward (< n 0))
10366           (n (abs n)))
10367       (while (and
10368               (> n 0)
10369               (if unmark
10370                   (gnus-summary-remove-process-mark
10371                    (gnus-summary-article-number))
10372                 (gnus-summary-set-process-mark (gnus-summary-article-number)))
10373               (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
10374         (setq n (1- n)))
10375       (when (/= 0 n)
10376         (gnus-message 7 "No more articles"))
10377       (gnus-summary-recenter)
10378       (gnus-summary-position-point)
10379       n)))
10380
10381 (defun gnus-summary-unmark-as-processable (n)
10382   "Remove the process mark from the next N articles.
10383 If N is negative, unmark backward instead.  The difference between N and
10384 the actual number of articles unmarked is returned."
10385   (interactive "P")
10386   (gnus-summary-mark-as-processable n t))
10387
10388 (defun gnus-summary-unmark-all-processable ()
10389   "Remove the process mark from all articles."
10390   (interactive)
10391   (save-excursion
10392     (while gnus-newsgroup-processable
10393       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
10394   (gnus-summary-position-point))
10395
10396 (defun gnus-summary-add-mark (article type)
10397   "Mark ARTICLE with a mark of TYPE."
10398   (let ((vtype (car (assq type gnus-article-mark-lists)))
10399         var)
10400     (if (not vtype)
10401         (error "No such mark type: %s" type)
10402       (setq var (intern (format "gnus-newsgroup-%s" type)))
10403       (set var (cons article (symbol-value var)))
10404       (if (memq type '(processable cached replied forwarded recent saved))
10405           (gnus-summary-update-secondary-mark article)
10406         ;;; !!! This is bogus.  We should find out what primary
10407         ;;; !!! mark we want to set.
10408         (gnus-summary-update-mark gnus-del-mark 'unread)))))
10409
10410 (defun gnus-summary-mark-as-expirable (n)
10411   "Mark N articles forward as expirable.
10412 If N is negative, mark backward instead.  The difference between N and
10413 the actual number of articles marked is returned."
10414   (interactive "p")
10415   (gnus-summary-mark-forward n gnus-expirable-mark))
10416
10417 (defun gnus-summary-mark-as-spam (n)
10418   "Mark N articles forward as spam.
10419 If N is negative, mark backward instead.  The difference between N and
10420 the actual number of articles marked is returned."
10421   (interactive "p")
10422   (gnus-summary-mark-forward n gnus-spam-mark))
10423
10424 (defun gnus-summary-mark-article-as-replied (article)
10425   "Mark ARTICLE as replied to and update the summary line.
10426 ARTICLE can also be a list of articles."
10427   (interactive (list (gnus-summary-article-number)))
10428   (let ((articles (if (listp article) article (list article))))
10429     (dolist (article articles)
10430       (unless (numberp article)
10431         (error "%s is not a number" article))
10432       (push article gnus-newsgroup-replied)
10433       (let ((inhibit-read-only t))
10434         (when (gnus-summary-goto-subject article nil t)
10435           (gnus-summary-update-secondary-mark article))))))
10436
10437 (defun gnus-summary-mark-article-as-forwarded (article)
10438   "Mark ARTICLE as forwarded and update the summary line.
10439 ARTICLE can also be a list of articles."
10440   (let ((articles (if (listp article) article (list article))))
10441     (dolist (article articles)
10442       (push article gnus-newsgroup-forwarded)
10443       (let ((inhibit-read-only t))
10444         (when (gnus-summary-goto-subject article nil t)
10445           (gnus-summary-update-secondary-mark article))))))
10446
10447 (defun gnus-summary-set-bookmark (article)
10448   "Set a bookmark in current article."
10449   (interactive (list (gnus-summary-article-number)))
10450   (when (or (not (get-buffer gnus-article-buffer))
10451             (not gnus-current-article)
10452             (not gnus-article-current)
10453             (not (equal gnus-newsgroup-name (car gnus-article-current))))
10454     (error "No current article selected"))
10455   ;; Remove old bookmark, if one exists.
10456   (gnus-pull article gnus-newsgroup-bookmarks)
10457   ;; Set the new bookmark, which is on the form
10458   ;; (article-number . line-number-in-body).
10459   (push
10460    (cons article
10461          (with-current-buffer gnus-article-buffer
10462            (count-lines
10463             (min (point)
10464                  (save-excursion
10465                    (article-goto-body)
10466                    (point)))
10467             (point))))
10468    gnus-newsgroup-bookmarks)
10469   (gnus-message 6 "A bookmark has been added to the current article."))
10470
10471 (defun gnus-summary-remove-bookmark (article)
10472   "Remove the bookmark from the current article."
10473   (interactive (list (gnus-summary-article-number)))
10474   ;; Remove old bookmark, if one exists.
10475   (if (not (assq article gnus-newsgroup-bookmarks))
10476       (gnus-message 6 "No bookmark in current article.")
10477     (gnus-pull article gnus-newsgroup-bookmarks)
10478     (gnus-message 6 "Removed bookmark.")))
10479
10480 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10481 (defun gnus-summary-mark-as-dormant (n)
10482   "Mark N articles forward as dormant.
10483 If N is negative, mark backward instead.  The difference between N and
10484 the actual number of articles marked is returned."
10485   (interactive "p")
10486   (gnus-summary-mark-forward n gnus-dormant-mark))
10487
10488 (defun gnus-summary-set-process-mark (article)
10489   "Set the process mark on ARTICLE and update the summary line."
10490   (setq gnus-newsgroup-processable
10491         (cons article
10492               (delq article gnus-newsgroup-processable)))
10493   (when (gnus-summary-goto-subject article)
10494     (gnus-summary-show-thread)
10495     (gnus-summary-goto-subject article)
10496     (gnus-summary-update-secondary-mark article)))
10497
10498 (defun gnus-summary-remove-process-mark (&rest articles)
10499   "Remove the process mark from ARTICLES and update the summary line."
10500   (dolist (article articles)
10501     (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
10502     (when (gnus-summary-goto-subject article)
10503       (gnus-summary-show-thread)
10504       (gnus-summary-goto-subject article)
10505       (gnus-summary-update-secondary-mark article)))
10506   t)
10507
10508 (defun gnus-summary-set-saved-mark (article)
10509   "Set the process mark on ARTICLE and update the summary line."
10510   (push article gnus-newsgroup-saved)
10511   (when (gnus-summary-goto-subject article)
10512     (gnus-summary-update-secondary-mark article)))
10513
10514 (defun gnus-summary-mark-forward (n &optional mark no-expire)
10515   "Mark N articles as read forwards.
10516 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
10517 The difference between N and the actual number of articles marked is
10518 returned.
10519 If NO-EXPIRE, auto-expiry will be inhibited."
10520   (interactive "p")
10521   (gnus-summary-show-thread)
10522   (let ((backward (< n 0))
10523         (gnus-summary-goto-unread
10524          (and gnus-summary-goto-unread
10525               (not (eq gnus-summary-goto-unread 'never))
10526               (not (memq mark (list gnus-unread-mark gnus-spam-mark
10527                                     gnus-ticked-mark gnus-dormant-mark)))))
10528         (n (abs n))
10529         (mark (or mark gnus-del-mark)))
10530     (while (and (> n 0)
10531                 (gnus-summary-mark-article nil mark no-expire)
10532                 (zerop (gnus-summary-next-subject
10533                         (if backward -1 1)
10534                         (and gnus-summary-goto-unread
10535                              (not (eq gnus-summary-goto-unread 'never)))
10536                         t)))
10537       (setq n (1- n)))
10538     (when (/= 0 n)
10539       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
10540     (gnus-summary-recenter)
10541     (gnus-summary-position-point)
10542     (gnus-set-mode-line 'summary)
10543     n))
10544
10545 (defun gnus-summary-mark-article-as-read (mark)
10546   "Mark the current article quickly as read with MARK."
10547   (let ((article (gnus-summary-article-number)))
10548     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10549     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10550     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10551     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10552     (push (cons article mark) gnus-newsgroup-reads)
10553     ;; Possibly remove from cache, if that is used.
10554     (when gnus-use-cache
10555       (gnus-cache-enter-remove-article article))
10556     ;; Allow the backend to change the mark.
10557     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10558     ;; Check for auto-expiry.
10559     (when (and gnus-newsgroup-auto-expire
10560                (memq mark gnus-auto-expirable-marks))
10561       (setq mark gnus-expirable-mark)
10562       ;; Let the backend know about the mark change.
10563       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10564       (push article gnus-newsgroup-expirable))
10565     ;; Set the mark in the buffer.
10566     (gnus-summary-update-mark mark 'unread)
10567     t))
10568
10569 (defun gnus-summary-mark-article-as-unread (mark)
10570   "Mark the current article quickly as unread with MARK."
10571   (let* ((article (gnus-summary-article-number))
10572          (old-mark (gnus-summary-article-mark article)))
10573     ;; Allow the backend to change the mark.
10574     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10575     (if (eq mark old-mark)
10576         t
10577       (if (<= article 0)
10578           (progn
10579             (gnus-error 1 "Can't mark negative article numbers")
10580             nil)
10581         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10582         (setq gnus-newsgroup-spam-marked
10583               (delq article gnus-newsgroup-spam-marked))
10584         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10585         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
10586         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
10587         (cond ((= mark gnus-ticked-mark)
10588                (setq gnus-newsgroup-marked
10589                      (gnus-add-to-sorted-list gnus-newsgroup-marked
10590                                               article)))
10591               ((= mark gnus-spam-mark)
10592                (setq gnus-newsgroup-spam-marked
10593                      (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10594                                               article)))
10595               ((= mark gnus-dormant-mark)
10596                (setq gnus-newsgroup-dormant
10597                      (gnus-add-to-sorted-list gnus-newsgroup-dormant
10598                                               article)))
10599               (t
10600                (setq gnus-newsgroup-unreads
10601                      (gnus-add-to-sorted-list gnus-newsgroup-unreads
10602                                               article))))
10603         (gnus-pull article gnus-newsgroup-reads)
10604
10605         ;; See whether the article is to be put in the cache.
10606         (and gnus-use-cache
10607              (vectorp (gnus-summary-article-header article))
10608              (save-excursion
10609                (gnus-cache-possibly-enter-article
10610                 gnus-newsgroup-name article
10611                 (= mark gnus-ticked-mark)
10612                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10613
10614         ;; Fix the mark.
10615         (gnus-summary-update-mark mark 'unread)
10616         t))))
10617
10618 (defun gnus-summary-mark-article (&optional article mark no-expire)
10619   "Mark ARTICLE with MARK.  MARK can be any character.
10620 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
10621 `??' (dormant) and `?E' (expirable).
10622 If MARK is nil, then the default character `?r' is used.
10623 If ARTICLE is nil, then the article on the current line will be
10624 marked.
10625 If NO-EXPIRE, auto-expiry will be inhibited."
10626   ;; The mark might be a string.
10627   (when (stringp mark)
10628     (setq mark (aref mark 0)))
10629   ;; If no mark is given, then we check auto-expiring.
10630   (when (null mark)
10631     (setq mark gnus-del-mark))
10632   (when (and (not no-expire)
10633              gnus-newsgroup-auto-expire
10634              (memq mark gnus-auto-expirable-marks))
10635     (setq mark gnus-expirable-mark))
10636   (let ((article (or article (gnus-summary-article-number)))
10637         (old-mark (gnus-summary-article-mark article)))
10638     ;; Allow the backend to change the mark.
10639     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10640     (if (eq mark old-mark)
10641         t
10642       (unless article
10643         (error "No article on current line"))
10644       (if (not (if (or (= mark gnus-unread-mark)
10645                        (= mark gnus-ticked-mark)
10646                        (= mark gnus-spam-mark)
10647                        (= mark gnus-dormant-mark))
10648                    (gnus-mark-article-as-unread article mark)
10649                  (gnus-mark-article-as-read article mark)))
10650           t
10651         ;; See whether the article is to be put in the cache.
10652         (and gnus-use-cache
10653              (not (= mark gnus-canceled-mark))
10654              (vectorp (gnus-summary-article-header article))
10655              (save-excursion
10656                (gnus-cache-possibly-enter-article
10657                 gnus-newsgroup-name article
10658                 (= mark gnus-ticked-mark)
10659                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10660
10661         (when (gnus-summary-goto-subject article nil t)
10662           (let ((inhibit-read-only t))
10663             (gnus-summary-show-thread)
10664             ;; Fix the mark.
10665             (gnus-summary-update-mark mark 'unread)
10666             t))))))
10667
10668 (defun gnus-summary-update-secondary-mark (article)
10669   "Update the secondary (read, process, cache) mark."
10670   (gnus-summary-update-mark
10671    (cond ((memq article gnus-newsgroup-processable)
10672           gnus-process-mark)
10673          ((memq article gnus-newsgroup-cached)
10674           gnus-cached-mark)
10675          ((memq article gnus-newsgroup-replied)
10676           gnus-replied-mark)
10677          ((memq article gnus-newsgroup-forwarded)
10678           gnus-forwarded-mark)
10679          ((memq article gnus-newsgroup-saved)
10680           gnus-saved-mark)
10681          ((memq article gnus-newsgroup-recent)
10682           gnus-recent-mark)
10683          ((memq article gnus-newsgroup-unseen)
10684           gnus-unseen-mark)
10685          (t gnus-no-mark))
10686    'replied)
10687   (when (gnus-visual-p 'summary-highlight 'highlight)
10688     (gnus-run-hooks 'gnus-summary-update-hook))
10689   t)
10690
10691 (defun gnus-summary-update-download-mark (article)
10692   "Update the download mark."
10693   (gnus-summary-update-mark
10694    (cond ((memq article gnus-newsgroup-undownloaded)
10695           gnus-undownloaded-mark)
10696          (gnus-newsgroup-agentized
10697           gnus-downloaded-mark)
10698          (t
10699           gnus-no-mark))
10700    'download)
10701   (gnus-summary-update-line t)
10702   t)
10703
10704 (defun gnus-summary-update-mark (mark type)
10705   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
10706         (inhibit-read-only t))
10707     (re-search-backward "[\n\r]" (point-at-bol) 'move-to-limit)
10708     (when forward
10709       (when (looking-at "\r")
10710         (incf forward))
10711       (when (<= (+ forward (point)) (point-max))
10712         ;; Go to the right position on the line.
10713         (goto-char (+ forward (point)))
10714         ;; Replace the old mark with the new mark.
10715         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
10716         ;; Optionally update the marks by some user rule.
10717         (when (eq type 'unread)
10718           (gnus-data-set-mark
10719            (gnus-data-find (gnus-summary-article-number)) mark)
10720           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
10721
10722 (defun gnus-mark-article-as-read (article &optional mark)
10723   "Enter ARTICLE in the pertinent lists and remove it from others."
10724   ;; Make the article expirable.
10725   (let ((mark (or mark gnus-del-mark)))
10726     (setq gnus-newsgroup-expirable
10727           (if (= mark gnus-expirable-mark)
10728               (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
10729             (delq article gnus-newsgroup-expirable)))
10730     ;; Remove from unread and marked lists.
10731     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10732     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10733     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10734     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10735     (push (cons article mark) gnus-newsgroup-reads)
10736     ;; Possibly remove from cache, if that is used.
10737     (when gnus-use-cache
10738       (gnus-cache-enter-remove-article article))
10739     t))
10740
10741 (defun gnus-mark-article-as-unread (article &optional mark)
10742   "Enter ARTICLE in the pertinent lists and remove it from others."
10743   (let ((mark (or mark gnus-ticked-mark)))
10744     (if (<= article 0)
10745         (progn
10746           (gnus-error 1 "Can't mark negative article numbers")
10747           nil)
10748       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
10749             gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
10750             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
10751             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
10752             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10753
10754       ;; Unsuppress duplicates?
10755       (when gnus-suppress-duplicates
10756         (gnus-dup-unsuppress-article article))
10757
10758       (cond ((= mark gnus-ticked-mark)
10759              (setq gnus-newsgroup-marked
10760                    (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
10761             ((= mark gnus-spam-mark)
10762              (setq gnus-newsgroup-spam-marked
10763                    (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10764                                             article)))
10765             ((= mark gnus-dormant-mark)
10766              (setq gnus-newsgroup-dormant
10767                    (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10768             (t
10769              (setq gnus-newsgroup-unreads
10770                    (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10771       (gnus-pull article gnus-newsgroup-reads)
10772       t)))
10773
10774 (defalias 'gnus-summary-mark-as-unread-forward
10775   'gnus-summary-tick-article-forward)
10776 (make-obsolete 'gnus-summary-mark-as-unread-forward
10777                'gnus-summary-tick-article-forward)
10778 (defun gnus-summary-tick-article-forward (n)
10779   "Tick N articles forwards.
10780 If N is negative, tick backwards instead.
10781 The difference between N and the number of articles ticked is returned."
10782   (interactive "p")
10783   (gnus-summary-mark-forward n gnus-ticked-mark))
10784
10785 (defalias 'gnus-summary-mark-as-unread-backward
10786   'gnus-summary-tick-article-backward)
10787 (make-obsolete 'gnus-summary-mark-as-unread-backward
10788                'gnus-summary-tick-article-backward)
10789 (defun gnus-summary-tick-article-backward (n)
10790   "Tick N articles backwards.
10791 The difference between N and the number of articles ticked is returned."
10792   (interactive "p")
10793   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10794
10795 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10796 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10797 (defun gnus-summary-tick-article (&optional article clear-mark)
10798   "Mark current article as unread.
10799 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10800 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10801   (interactive)
10802   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10803                                        gnus-ticked-mark)))
10804
10805 (defun gnus-summary-mark-as-read-forward (n)
10806   "Mark N articles as read forwards.
10807 If N is negative, mark backwards instead.
10808 The difference between N and the actual number of articles marked is
10809 returned."
10810   (interactive "p")
10811   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10812
10813 (defun gnus-summary-mark-as-read-backward (n)
10814   "Mark the N articles as read backwards.
10815 The difference between N and the actual number of articles marked is
10816 returned."
10817   (interactive "p")
10818   (gnus-summary-mark-forward
10819    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10820
10821 (defun gnus-summary-mark-as-read (&optional article mark)
10822   "Mark current article as read.
10823 ARTICLE specifies the article to be marked as read.
10824 MARK specifies a string to be inserted at the beginning of the line."
10825   (gnus-summary-mark-article article mark))
10826
10827 (defun gnus-summary-clear-mark-forward (n)
10828   "Clear marks from N articles forward.
10829 If N is negative, clear backward instead.
10830 The difference between N and the number of marks cleared is returned."
10831   (interactive "p")
10832   (gnus-summary-mark-forward n gnus-unread-mark))
10833
10834 (defun gnus-summary-clear-mark-backward (n)
10835   "Clear marks from N articles backward.
10836 The difference between N and the number of marks cleared is returned."
10837   (interactive "p")
10838   (gnus-summary-mark-forward (- n) gnus-unread-mark))
10839
10840 (defun gnus-summary-mark-unread-as-read ()
10841   "Intended to be used by `gnus-mark-article-hook'."
10842   (when (memq gnus-current-article gnus-newsgroup-unreads)
10843     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10844
10845 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10846   "Intended to be used by `gnus-mark-article-hook'."
10847   (let ((mark (gnus-summary-article-mark)))
10848     (when (or (gnus-unread-mark-p mark)
10849               (gnus-read-mark-p mark))
10850       (gnus-summary-mark-article gnus-current-article
10851                                  (or new-mark gnus-read-mark)))))
10852
10853 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10854   "Intended to be used by `gnus-mark-article-hook'."
10855   (let ((mark (gnus-summary-article-mark)))
10856     (when (or (gnus-unread-mark-p mark)
10857               (gnus-read-mark-p mark))
10858       (gnus-summary-mark-article (gnus-summary-article-number)
10859                                  (or new-mark gnus-read-mark)))))
10860
10861 (defun gnus-summary-mark-unread-as-ticked ()
10862   "Intended to be used by `gnus-mark-article-hook'."
10863   (when (memq gnus-current-article gnus-newsgroup-unreads)
10864     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10865
10866 (defun gnus-summary-mark-region-as-read (point mark all)
10867   "Mark all unread articles between point and mark as read.
10868 If given a prefix, mark all articles between point and mark as read,
10869 even ticked and dormant ones."
10870   (interactive "r\nP")
10871   (save-excursion
10872     (let (article)
10873       (goto-char point)
10874       (beginning-of-line)
10875       (while (and
10876               (< (point) mark)
10877               (progn
10878                 (when (or all
10879                           (memq (setq article (gnus-summary-article-number))
10880                                 gnus-newsgroup-unreads))
10881                   (gnus-summary-mark-article article gnus-del-mark))
10882                 t)
10883               (gnus-summary-find-next))))))
10884
10885 (defun gnus-summary-mark-below (score mark)
10886   "Mark articles with score less than SCORE with MARK."
10887   (interactive "P\ncMark: ")
10888   (setq score (if score
10889                   (prefix-numeric-value score)
10890                 (or gnus-summary-default-score 0)))
10891   (with-current-buffer gnus-summary-buffer
10892     (goto-char (point-min))
10893     (while
10894         (progn
10895           (and (< (gnus-summary-article-score) score)
10896                (gnus-summary-mark-article nil mark))
10897           (gnus-summary-find-next)))))
10898
10899 (defun gnus-summary-kill-below (&optional score)
10900   "Mark articles with score below SCORE as read."
10901   (interactive "P")
10902   (gnus-summary-mark-below score gnus-killed-mark))
10903
10904 (defun gnus-summary-clear-above (&optional score)
10905   "Clear all marks from articles with score above SCORE."
10906   (interactive "P")
10907   (gnus-summary-mark-above score gnus-unread-mark))
10908
10909 (defun gnus-summary-tick-above (&optional score)
10910   "Tick all articles with score above SCORE."
10911   (interactive "P")
10912   (gnus-summary-mark-above score gnus-ticked-mark))
10913
10914 (defun gnus-summary-mark-above (score mark)
10915   "Mark articles with score over SCORE with MARK."
10916   (interactive "P\ncMark: ")
10917   (setq score (if score
10918                   (prefix-numeric-value score)
10919                 (or gnus-summary-default-score 0)))
10920   (with-current-buffer gnus-summary-buffer
10921     (goto-char (point-min))
10922     (while (and (progn
10923                   (when (> (gnus-summary-article-score) score)
10924                     (gnus-summary-mark-article nil mark))
10925                   t)
10926                 (gnus-summary-find-next)))))
10927
10928 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10929 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10930 (defun gnus-summary-limit-include-expunged (&optional no-error)
10931   "Display all the hidden articles that were expunged for low scores."
10932   (interactive)
10933   (let ((inhibit-read-only t))
10934     (let ((scored gnus-newsgroup-scored)
10935           headers h)
10936       (while scored
10937         (unless (gnus-summary-article-header (caar scored))
10938           (and (setq h (gnus-number-to-header (caar scored)))
10939                (< (cdar scored) gnus-summary-expunge-below)
10940                (push h headers)))
10941         (setq scored (cdr scored)))
10942       (if (not headers)
10943           (when (not no-error)
10944             (error "No expunged articles hidden"))
10945         (goto-char (point-min))
10946         (push gnus-newsgroup-limit gnus-newsgroup-limits)
10947         (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
10948         (dolist (x headers)
10949           (push (mail-header-number x) gnus-newsgroup-limit))
10950         (gnus-summary-prepare-unthreaded (nreverse headers))
10951         (goto-char (point-min))
10952         (gnus-summary-position-point)
10953         t))))
10954
10955 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
10956   "Mark all unread articles in this newsgroup as read.
10957 If prefix argument ALL is non-nil, ticked and dormant articles will
10958 also be marked as read.
10959 If QUIETLY is non-nil, no questions will be asked.
10960
10961 If TO-HERE is non-nil, it should be a point in the buffer.  All
10962 articles before (after, if REVERSE is set) this point will be marked
10963 as read.
10964
10965 Note that this function will only catch up the unread article
10966 in the current summary buffer limitation.
10967
10968 The number of articles marked as read is returned."
10969   (interactive "P")
10970   (prog1
10971       (save-excursion
10972         (when (or quietly
10973                   (not gnus-interactive-catchup) ;Without confirmation?
10974                   gnus-expert-user
10975                   (gnus-y-or-n-p
10976                    (if all
10977                        "Mark absolutely all articles as read? "
10978                      "Mark all unread articles as read? ")))
10979           (if (and not-mark
10980                    (not gnus-newsgroup-adaptive)
10981                    (not gnus-newsgroup-auto-expire)
10982                    (not gnus-suppress-duplicates)
10983                    (or (not gnus-use-cache)
10984                        (eq gnus-use-cache 'passive)))
10985               (progn
10986                 (when all
10987                   (setq gnus-newsgroup-marked nil
10988                         gnus-newsgroup-spam-marked nil
10989                         gnus-newsgroup-dormant nil))
10990                 (setq gnus-newsgroup-unreads
10991                       (gnus-sorted-nunion
10992                        (gnus-sorted-intersection gnus-newsgroup-unreads
10993                                                  gnus-newsgroup-downloadable)
10994                        (gnus-sorted-difference gnus-newsgroup-unfetched
10995                                                gnus-newsgroup-cached))))
10996             ;; We actually mark all articles as canceled, which we
10997             ;; have to do when using auto-expiry or adaptive scoring.
10998             (gnus-summary-show-all-threads)
10999             (if (and to-here reverse)
11000                 (progn
11001                   (goto-char to-here)
11002                   (gnus-summary-mark-current-read-and-unread-as-read
11003                    gnus-catchup-mark)
11004                   (while (gnus-summary-find-next (not all))
11005                     (gnus-summary-mark-article-as-read gnus-catchup-mark)))
11006               (when (gnus-summary-first-subject (not all))
11007                 (while (and
11008                         (if to-here (< (point) to-here) t)
11009                         (gnus-summary-mark-article-as-read gnus-catchup-mark)
11010                         (gnus-summary-find-next (not all))))))
11011             (gnus-set-mode-line 'summary))
11012           t))
11013     (gnus-summary-position-point)))
11014
11015 (defun gnus-summary-catchup-to-here (&optional all)
11016   "Mark all unticked articles before the current one as read.
11017 If ALL is non-nil, also mark ticked and dormant articles as read."
11018   (interactive "P")
11019   (save-excursion
11020     (gnus-save-hidden-threads
11021       (let ((beg (point)))
11022         ;; We check that there are unread articles.
11023         (when (or all (gnus-summary-find-prev))
11024           (gnus-summary-catchup all t beg)))))
11025   (gnus-summary-position-point))
11026
11027 (defun gnus-summary-catchup-from-here (&optional all)
11028   "Mark all unticked articles after (and including) the current one as read.
11029 If ALL is non-nil, also mark ticked and dormant articles as read."
11030   (interactive "P")
11031   (save-excursion
11032     (gnus-save-hidden-threads
11033       (let ((beg (point)))
11034         ;; We check that there are unread articles.
11035         (when (or all (gnus-summary-find-next))
11036           (gnus-summary-catchup all t beg nil t)))))
11037   (gnus-summary-position-point))
11038
11039 (defun gnus-summary-catchup-all (&optional quietly)
11040   "Mark all articles in this newsgroup as read.
11041 This command is dangerous.  Normally, you want \\[gnus-summary-catchup]
11042 instead, which marks only unread articles as read."
11043   (interactive "P")
11044   (gnus-summary-catchup t quietly))
11045
11046 (defun gnus-summary-catchup-and-exit (&optional all quietly)
11047   "Mark all unread articles in this group as read, then exit.
11048 If prefix argument ALL is non-nil, all articles are marked as read.
11049 If QUIETLY is non-nil, no questions will be asked."
11050   (interactive "P")
11051   (when (gnus-summary-catchup all quietly nil 'fast)
11052     ;; Select next newsgroup or exit.
11053     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
11054              (eq gnus-auto-select-next 'quietly))
11055         (gnus-summary-next-group nil)
11056       (gnus-summary-exit))))
11057
11058 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
11059   "Mark all articles in this newsgroup as read, and then exit.
11060 This command is dangerous.  Normally, you want \\[gnus-summary-catchup-and-exit]
11061 instead, which marks only unread articles as read."
11062   (interactive "P")
11063   (gnus-summary-catchup-and-exit t quietly))
11064
11065 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
11066   "Mark all articles in this group as read and select the next group.
11067 If given a prefix, mark all articles, unread as well as ticked, as
11068 read."
11069   (interactive "P")
11070   (save-excursion
11071     (gnus-summary-catchup all))
11072   (gnus-summary-next-group))
11073
11074 (defun gnus-summary-catchup-and-goto-prev-group (&optional all)
11075   "Mark all articles in this group as read and select the previous group.
11076 If given a prefix, mark all articles, unread as well as ticked, as
11077 read."
11078   (interactive "P")
11079   (save-excursion
11080     (gnus-summary-catchup all))
11081   (gnus-summary-next-group nil nil t))
11082
11083 ;;;
11084 ;;; with article
11085 ;;;
11086
11087 (defmacro gnus-with-article (article &rest forms)
11088   "Select ARTICLE and perform FORMS in the original article buffer.
11089 Then replace the article with the result."
11090   `(progn
11091      ;; We don't want the article to be marked as read.
11092      (let (gnus-mark-article-hook)
11093        (gnus-summary-select-article t t nil ,article))
11094      (set-buffer gnus-original-article-buffer)
11095      ,@forms
11096      (if (not (gnus-check-backend-function
11097                'request-replace-article (car gnus-article-current)))
11098          (gnus-message 5 "Read-only group; not replacing")
11099        (unless (gnus-request-replace-article
11100                 ,article (car gnus-article-current)
11101                 (current-buffer) t)
11102          (error "Couldn't replace article")))
11103      ;; The cache and backlog have to be flushed somewhat.
11104      (when gnus-keep-backlog
11105        (gnus-backlog-remove-article
11106         (car gnus-article-current) (cdr gnus-article-current)))
11107      (when gnus-use-cache
11108        (gnus-cache-update-article
11109         (car gnus-article-current) (cdr gnus-article-current)))))
11110
11111 (put 'gnus-with-article 'lisp-indent-function 1)
11112 (put 'gnus-with-article 'edebug-form-spec '(form body))
11113
11114 ;; Thread-based commands.
11115
11116 (defun gnus-summary-articles-in-thread (&optional article)
11117   "Return a list of all articles in the current thread.
11118 If ARTICLE is non-nil, return all articles in the thread that starts
11119 with that article."
11120   (let* ((article (or article (gnus-summary-article-number)))
11121          (data (gnus-data-find-list article))
11122          (top-level (gnus-data-level (car data)))
11123          (top-subject
11124           (cond ((null gnus-thread-operation-ignore-subject)
11125                  (gnus-simplify-subject-re
11126                   (mail-header-subject (gnus-data-header (car data)))))
11127                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
11128                  (gnus-simplify-subject-fuzzy
11129                   (mail-header-subject (gnus-data-header (car data)))))
11130                 (t nil)))
11131          (end-point (save-excursion
11132                       (if (gnus-summary-go-to-next-thread)
11133                           (point) (point-max))))
11134          articles)
11135     (while (and data
11136                 (< (gnus-data-pos (car data)) end-point))
11137       (when (or (not top-subject)
11138                 (string= top-subject
11139                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
11140                              (gnus-simplify-subject-fuzzy
11141                               (mail-header-subject
11142                                (gnus-data-header (car data))))
11143                            (gnus-simplify-subject-re
11144                             (mail-header-subject
11145                              (gnus-data-header (car data)))))))
11146         (push (gnus-data-number (car data)) articles))
11147       (unless (and (setq data (cdr data))
11148                    (> (gnus-data-level (car data)) top-level))
11149         (setq data nil)))
11150     ;; Return the list of articles.
11151     (nreverse articles)))
11152
11153 (defun gnus-summary-rethread-current ()
11154   "Rethread the thread the current article is part of."
11155   (interactive)
11156   (let* ((gnus-show-threads t)
11157          (article (gnus-summary-article-number))
11158          (id (mail-header-id (gnus-summary-article-header)))
11159          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
11160     (unless id
11161       (error "No article on the current line"))
11162     (gnus-rebuild-thread id)
11163     (gnus-summary-goto-subject article)))
11164
11165 (defun gnus-summary-reparent-thread ()
11166   "Make the current article child of the marked (or previous) article.
11167
11168 Note that the re-threading will only work if `gnus-thread-ignore-subject'
11169 is non-nil or the Subject: of both articles are the same."
11170   (interactive)
11171   (unless (not (gnus-group-read-only-p))
11172     (error "The current newsgroup does not support article editing"))
11173   (unless (<= (length gnus-newsgroup-processable) 1)
11174     (error "No more than one article may be marked"))
11175   (let ((child (gnus-summary-article-number))
11176         ;; First grab the marked article, otherwise one line up.
11177         (parent (if (not (null gnus-newsgroup-processable))
11178                     (car gnus-newsgroup-processable)
11179                   (save-excursion
11180                     (if (eq (forward-line -1) 0)
11181                         (gnus-summary-article-number)
11182                       (error "Beginning of summary buffer"))))))
11183     (gnus-summary-reparent-children parent (list child))))
11184
11185 (defun gnus-summary-reparent-children (parent children)
11186   "Make PARENT the parent of CHILDREN.
11187 When called interactively, PARENT is the current article and CHILDREN
11188 are the process-marked articles."
11189   (interactive
11190    (list (gnus-summary-article-number)
11191          (gnus-summary-work-articles nil)))
11192   (dolist (child children)
11193     (save-window-excursion
11194       (let ((gnus-article-buffer " *reparent*"))
11195         (unless (not (eq parent child))
11196           (error "An article may not be self-referential"))
11197         (let ((message-id (mail-header-id
11198                            (gnus-summary-article-header parent))))
11199           (unless (and message-id (not (equal message-id "")))
11200             (error "No message-id in desired parent"))
11201           (gnus-with-article child
11202             (save-restriction
11203               (goto-char (point-min))
11204               (message-narrow-to-head)
11205               (if (re-search-forward "^References: " nil t)
11206                   (progn
11207                     (re-search-forward "^[^ \t]" nil t)
11208                     (forward-line -1)
11209                     (end-of-line)
11210                     (insert " " message-id))
11211                 (insert "References: " message-id "\n"))))
11212           (set-buffer gnus-summary-buffer)
11213           (gnus-summary-unmark-all-processable)
11214           (gnus-summary-update-article child)
11215           (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
11216             (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
11217           (gnus-summary-rethread-current)
11218           (gnus-message 3 "Article %d is now the child of article %d"
11219                         child parent))))))
11220
11221 (defun gnus-summary-toggle-threads (&optional arg)
11222   "Toggle showing conversation threads.
11223 If ARG is positive number, turn showing conversation threads on."
11224   (interactive "P")
11225   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
11226     (setq gnus-show-threads
11227           (if (null arg) (not gnus-show-threads)
11228             (> (prefix-numeric-value arg) 0)))
11229     (gnus-summary-prepare)
11230     (gnus-summary-goto-subject current)
11231     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
11232     (gnus-summary-position-point)))
11233
11234 (defun gnus-summary-show-all-threads ()
11235   "Show all threads."
11236   (interactive)
11237   (save-excursion
11238     (let ((buffer-read-only nil))
11239       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
11240   (gnus-summary-position-point))
11241
11242 (defun gnus-summary-show-thread ()
11243   "Show thread subtrees.
11244 Returns nil if no thread was there to be shown."
11245   (interactive)
11246   (let ((buffer-read-only nil)
11247         (orig (point))
11248         (end (point-at-eol))
11249         ;; Leave point at bol
11250         (beg (progn (beginning-of-line) (point))))
11251     (prog1
11252         ;; Any hidden lines here?
11253         (search-forward "\r" end t)
11254       (subst-char-in-region beg end ?\^M ?\n t)
11255       (goto-char orig)
11256       (gnus-summary-position-point))))
11257
11258 (defun gnus-summary-maybe-hide-threads ()
11259   "If requested, hide the threads that should be hidden."
11260   (when (and gnus-show-threads
11261              gnus-thread-hide-subtree)
11262     (gnus-summary-hide-all-threads
11263      (if (or (consp gnus-thread-hide-subtree)
11264              (functionp gnus-thread-hide-subtree))
11265          (gnus-make-predicate gnus-thread-hide-subtree)
11266        nil))))
11267
11268 ;;; Hiding predicates.
11269
11270 (defun gnus-article-unread-p (header)
11271   (memq (mail-header-number header) gnus-newsgroup-unreads))
11272
11273 (defun gnus-article-unseen-p (header)
11274   (memq (mail-header-number header) gnus-newsgroup-unseen))
11275
11276 (defun gnus-map-articles (predicate articles)
11277   "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
11278   (apply 'gnus-or (mapcar predicate
11279                           (mapcar (lambda (number)
11280                                     (gnus-summary-article-header number))
11281                                   articles))))
11282
11283 (defun gnus-summary-hide-all-threads (&optional predicate)
11284   "Hide all thread subtrees.
11285 If PREDICATE is supplied, threads that satisfy this predicate
11286 will not be hidden."
11287   (interactive)
11288   (save-excursion
11289     (goto-char (point-min))
11290     (let ((end nil))
11291       (while (not end)
11292         (when (or (not predicate)
11293                   (gnus-map-articles
11294                    predicate (gnus-summary-article-children)))
11295             (gnus-summary-hide-thread))
11296         (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
11297   (gnus-summary-position-point))
11298
11299 (defun gnus-summary-hide-thread ()
11300   "Hide thread subtrees.
11301 If PREDICATE is supplied, threads that satisfy this predicate
11302 will not be hidden.
11303 Returns nil if no threads were there to be hidden."
11304   (interactive)
11305   (let ((buffer-read-only nil)
11306         (start (point))
11307         (article (gnus-summary-article-number)))
11308     (goto-char start)
11309     ;; Go forward until either the buffer ends or the subthread ends.
11310     (when (and (not (eobp))
11311                (or (zerop (gnus-summary-next-thread 1 t))
11312                    (goto-char (point-max))))
11313       (prog1
11314           (if (and (> (point) start)
11315                    (search-backward "\n" start t))
11316               (progn
11317                 (subst-char-in-region start (point) ?\n ?\^M)
11318                 (gnus-summary-goto-subject article))
11319             (goto-char start)
11320             nil)))))
11321
11322 (defun gnus-summary-go-to-next-thread (&optional previous)
11323   "Go to the same level (or less) next thread.
11324 If PREVIOUS is non-nil, go to previous thread instead.
11325 Return the article number moved to, or nil if moving was impossible."
11326   (let ((level (gnus-summary-thread-level))
11327         (way (if previous -1 1))
11328         (beg (point)))
11329     (forward-line way)
11330     (while (and (not (eobp))
11331                 (< level (gnus-summary-thread-level)))
11332       (forward-line way))
11333     (if (eobp)
11334         (progn
11335           (goto-char beg)
11336           nil)
11337       (setq beg (point))
11338       (prog1
11339           (gnus-summary-article-number)
11340         (goto-char beg)))))
11341
11342 (defun gnus-summary-next-thread (n &optional silent)
11343   "Go to the same level next N'th thread.
11344 If N is negative, search backward instead.
11345 Returns the difference between N and the number of skips actually
11346 done.
11347
11348 If SILENT, don't output messages."
11349   (interactive "p")
11350   (let ((backward (< n 0))
11351         (n (abs n)))
11352     (while (and (> n 0)
11353                 (gnus-summary-go-to-next-thread backward))
11354       (decf n))
11355     (unless silent
11356       (gnus-summary-position-point))
11357     (when (and (not silent) (/= 0 n))
11358       (gnus-message 7 "No more threads"))
11359     n))
11360
11361 (defun gnus-summary-prev-thread (n)
11362   "Go to the same level previous N'th thread.
11363 Returns the difference between N and the number of skips actually
11364 done."
11365   (interactive "p")
11366   (gnus-summary-next-thread (- n)))
11367
11368 (defun gnus-summary-go-down-thread ()
11369   "Go down one level in the current thread."
11370   (let ((children (gnus-summary-article-children)))
11371     (when children
11372       (gnus-summary-goto-subject (car children)))))
11373
11374 (defun gnus-summary-go-up-thread ()
11375   "Go up one level in the current thread."
11376   (let ((parent (gnus-summary-article-parent)))
11377     (when parent
11378       (gnus-summary-goto-subject parent))))
11379
11380 (defun gnus-summary-down-thread (n)
11381   "Go down thread N steps.
11382 If N is negative, go up instead.
11383 Returns the difference between N and how many steps down that were
11384 taken."
11385   (interactive "p")
11386   (let ((up (< n 0))
11387         (n (abs n)))
11388     (while (and (> n 0)
11389                 (if up (gnus-summary-go-up-thread)
11390                   (gnus-summary-go-down-thread)))
11391       (setq n (1- n)))
11392     (gnus-summary-position-point)
11393     (when (/= 0 n)
11394       (gnus-message 7 "Can't go further"))
11395     n))
11396
11397 (defun gnus-summary-up-thread (n)
11398   "Go up thread N steps.
11399 If N is negative, go down instead.
11400 Returns the difference between N and how many steps down that were
11401 taken."
11402   (interactive "p")
11403   (gnus-summary-down-thread (- n)))
11404
11405 (defun gnus-summary-top-thread ()
11406   "Go to the top of the thread."
11407   (interactive)
11408   (while (gnus-summary-go-up-thread))
11409   (gnus-summary-article-number))
11410
11411 (defun gnus-summary-expire-thread ()
11412   "Mark articles under current thread as expired."
11413   (interactive)
11414   (gnus-summary-kill-thread 0))
11415
11416 (defun gnus-summary-kill-thread (&optional unmark)
11417   "Mark articles under current thread as read.
11418 If the prefix argument is positive, remove any kinds of marks.
11419 If the prefix argument is zero, mark thread as expired.
11420 If the prefix argument is negative, tick articles instead."
11421   (interactive "P")
11422   (when unmark
11423     (setq unmark (prefix-numeric-value unmark)))
11424   (let ((articles (gnus-summary-articles-in-thread))
11425         (hide (or (null unmark) (= unmark 0))))
11426     (save-excursion
11427       ;; Expand the thread.
11428       (gnus-summary-show-thread)
11429       ;; Mark all the articles.
11430       (while articles
11431         (gnus-summary-goto-subject (car articles))
11432         (cond ((null unmark)
11433                (gnus-summary-mark-article-as-read gnus-killed-mark))
11434               ((> unmark 0)
11435                (gnus-summary-mark-article-as-unread gnus-unread-mark))
11436               ((= unmark 0)
11437                (gnus-summary-mark-article-as-unread gnus-expirable-mark))
11438               (t
11439                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
11440         (setq articles (cdr articles))))
11441     ;; Hide killed subtrees when hide is true.
11442     (and hide
11443          gnus-thread-hide-killed
11444          (gnus-summary-hide-thread))
11445     ;; If hide is t, go to next unread subject.
11446     (when hide
11447       ;; Go to next unread subject.
11448       (gnus-summary-next-subject 1 t)))
11449   (gnus-set-mode-line 'summary))
11450
11451 ;; Summary sorting commands
11452
11453 (defun gnus-summary-sort-by-number (&optional reverse)
11454   "Sort the summary buffer by article number.
11455 Argument REVERSE means reverse order."
11456   (interactive "P")
11457   (gnus-summary-sort 'number reverse))
11458
11459 (defun gnus-summary-sort-by-random (&optional reverse)
11460   "Randomize the order in the summary buffer.
11461 Argument REVERSE means to randomize in reverse order."
11462   (interactive "P")
11463   (gnus-summary-sort 'random reverse))
11464
11465 (defun gnus-summary-sort-by-author (&optional reverse)
11466   "Sort the summary buffer by author name alphabetically.
11467 If `case-fold-search' is non-nil, case of letters is ignored.
11468 Argument REVERSE means reverse order."
11469   (interactive "P")
11470   (gnus-summary-sort 'author reverse))
11471
11472 (defun gnus-summary-sort-by-recipient (&optional reverse)
11473   "Sort the summary buffer by recipient name alphabetically.
11474 If `case-fold-search' is non-nil, case of letters is ignored.
11475 Argument REVERSE means reverse order."
11476   (interactive "P")
11477   (gnus-summary-sort 'recipient reverse))
11478
11479 (defun gnus-summary-sort-by-subject (&optional reverse)
11480   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
11481 If `case-fold-search' is non-nil, case of letters is ignored.
11482 Argument REVERSE means reverse order."
11483   (interactive "P")
11484   (gnus-summary-sort 'subject reverse))
11485
11486 (defun gnus-summary-sort-by-date (&optional reverse)
11487   "Sort the summary buffer by date.
11488 Argument REVERSE means reverse order."
11489   (interactive "P")
11490   (gnus-summary-sort 'date reverse))
11491
11492 (defun gnus-summary-sort-by-score (&optional reverse)
11493   "Sort the summary buffer by score.
11494 Argument REVERSE means reverse order."
11495   (interactive "P")
11496   (gnus-summary-sort 'score reverse))
11497
11498 (defun gnus-summary-sort-by-lines (&optional reverse)
11499   "Sort the summary buffer by the number of lines.
11500 Argument REVERSE means reverse order."
11501   (interactive "P")
11502   (gnus-summary-sort 'lines reverse))
11503
11504 (defun gnus-summary-sort-by-chars (&optional reverse)
11505   "Sort the summary buffer by article length.
11506 Argument REVERSE means reverse order."
11507   (interactive "P")
11508   (gnus-summary-sort 'chars reverse))
11509
11510 (defun gnus-summary-sort-by-original (&optional reverse)
11511   "Sort the summary buffer using the default sorting method.
11512 Argument REVERSE means reverse order."
11513   (interactive "P")
11514   (let* ((inhibit-read-only t)
11515          (gnus-summary-prepare-hook nil))
11516     ;; We do the sorting by regenerating the threads.
11517     (gnus-summary-prepare)
11518     ;; Hide subthreads if needed.
11519     (gnus-summary-maybe-hide-threads)))
11520
11521 (defun gnus-summary-sort (predicate reverse)
11522   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
11523   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
11524          (article (intern (format "gnus-article-sort-by-%s" predicate)))
11525          (gnus-thread-sort-functions
11526           (if (not reverse)
11527               thread
11528             `(lambda (t1 t2)
11529                (,thread t2 t1))))
11530          (gnus-sort-gathered-threads-function
11531           gnus-thread-sort-functions)
11532          (gnus-article-sort-functions
11533           (if (not reverse)
11534               article
11535             `(lambda (t1 t2)
11536                (,article t2 t1))))
11537          (inhibit-read-only t)
11538          (gnus-summary-prepare-hook nil))
11539     ;; We do the sorting by regenerating the threads.
11540     (gnus-summary-prepare)
11541     ;; Hide subthreads if needed.
11542     (gnus-summary-maybe-hide-threads)))
11543
11544 ;; Summary saving commands.
11545
11546 (defun gnus-summary-save-article (&optional n not-saved)
11547   "Save the current article using the default saver function.
11548 If N is a positive number, save the N next articles.
11549 If N is a negative number, save the N previous articles.
11550 If N is nil and any articles have been marked with the process mark,
11551 save those articles instead.
11552 The variable `gnus-default-article-saver' specifies the saver function.
11553
11554 If the optional second argument NOT-SAVED is non-nil, articles saved
11555 will not be marked as saved."
11556   (interactive "P")
11557   (require 'gnus-art)
11558   (let* ((articles (gnus-summary-work-articles n))
11559          (save-buffer (save-excursion
11560                         (nnheader-set-temp-buffer " *Gnus Save*")))
11561          (num (length articles))
11562          ;; Whether to save decoded articles or raw articles.
11563          (decode (when gnus-article-save-coding-system
11564                    (get gnus-default-article-saver :decode)))
11565          ;; When saving many articles in a single file, use the other
11566          ;; function to save articles other than the first one.
11567          (saver2 (get gnus-default-article-saver :function))
11568          (gnus-prompt-before-saving (if saver2
11569                                         t
11570                                       gnus-prompt-before-saving))
11571          (gnus-default-article-saver gnus-default-article-saver)
11572          header file)
11573     (dolist (article articles)
11574       (setq header (gnus-summary-article-header article))
11575       (if (not (vectorp header))
11576           ;; This is a pseudo-article.
11577           (if (assq 'name header)
11578               (gnus-copy-file (cdr (assq 'name header)))
11579             (gnus-message 1 "Article %d is unsaveable" article))
11580         ;; This is a real article.
11581         (save-window-excursion
11582           (let ((gnus-display-mime-function (when decode
11583                                               gnus-display-mime-function))
11584                 (gnus-article-prepare-hook (when decode
11585                                              gnus-article-prepare-hook)))
11586             (gnus-summary-select-article t nil nil article)
11587             (gnus-summary-goto-subject article)))
11588         (with-current-buffer save-buffer
11589           (erase-buffer)
11590           (insert-buffer-substring (if decode
11591                                        gnus-article-buffer
11592                                      gnus-original-article-buffer)))
11593         (setq file (gnus-article-save save-buffer file num))
11594         (gnus-summary-remove-process-mark article)
11595         (unless not-saved
11596           (gnus-summary-set-saved-mark article)))
11597       (when saver2
11598         (setq gnus-default-article-saver saver2
11599               saver2 nil)))
11600     (gnus-kill-buffer save-buffer)
11601     (gnus-summary-position-point)
11602     (gnus-set-mode-line 'summary)
11603     n))
11604
11605 (defun gnus-summary-pipe-output (&optional arg headers)
11606   "Pipe the current article to a subprocess.
11607 If N is a positive number, pipe the N next articles.
11608 If N is a negative number, pipe the N previous articles.
11609 If N is nil and any articles have been marked with the process mark,
11610 pipe those articles instead.
11611 If HEADERS (the symbolic prefix), include the headers, too."
11612   (interactive (gnus-interactive "P\ny"))
11613   (require 'gnus-art)
11614   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)
11615         (gnus-save-all-headers (or headers gnus-save-all-headers)))
11616     (gnus-summary-save-article arg t))
11617   (let ((buffer (get-buffer "*Shell Command Output*")))
11618     (when (and buffer
11619                (not (zerop (buffer-size buffer))))
11620       (gnus-configure-windows 'pipe))))
11621
11622 (defun gnus-summary-save-article-mail (&optional arg)
11623   "Append the current article to a Unix mail box file.
11624 If N is a positive number, save the N next articles.
11625 If N is a negative number, save the N previous articles.
11626 If N is nil and any articles have been marked with the process mark,
11627 save those articles instead."
11628   (interactive "P")
11629   (require 'gnus-art)
11630   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
11631     (gnus-summary-save-article arg)))
11632
11633 (defun gnus-summary-save-article-rmail (&optional arg)
11634   "Append the current article to an rmail file.
11635 If N is a positive number, save the N next articles.
11636 If N is a negative number, save the N previous articles.
11637 If N is nil and any articles have been marked with the process mark,
11638 save those articles instead."
11639   (interactive "P")
11640   (require 'gnus-art)
11641   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
11642     (gnus-summary-save-article arg)))
11643
11644 (defun gnus-summary-save-article-file (&optional arg)
11645   "Append the current article to a file.
11646 If N is a positive number, save the N next articles.
11647 If N is a negative number, save the N previous articles.
11648 If N is nil and any articles have been marked with the process mark,
11649 save those articles instead."
11650   (interactive "P")
11651   (require 'gnus-art)
11652   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
11653     (gnus-summary-save-article arg)))
11654
11655 (defun gnus-summary-write-article-file (&optional arg)
11656   "Write the current article to a file, deleting the previous file.
11657 If N is a positive number, save the N next articles.
11658 If N is a negative number, save the N previous articles.
11659 If N is nil and any articles have been marked with the process mark,
11660 save those articles instead."
11661   (interactive "P")
11662   (require 'gnus-art)
11663   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
11664     (gnus-summary-save-article arg)))
11665
11666 (defun gnus-summary-save-article-body-file (&optional arg)
11667   "Append the current article body to a file.
11668 If N is a positive number, save the N next articles.
11669 If N is a negative number, save the N previous articles.
11670 If N is nil and any articles have been marked with the process mark,
11671 save those articles instead."
11672   (interactive "P")
11673   (require 'gnus-art)
11674   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
11675     (gnus-summary-save-article arg)))
11676
11677 (defun gnus-summary-write-article-body-file (&optional arg)
11678   "Write the current article body to a file, deleting the previous file.
11679 If N is a positive number, save the N next articles.
11680 If N is a negative number, save the N previous articles.
11681 If N is nil and any articles have been marked with the process mark,
11682 save those articles instead."
11683   (interactive "P")
11684   (require 'gnus-art)
11685   (let ((gnus-default-article-saver 'gnus-summary-write-body-to-file))
11686     (gnus-summary-save-article arg)))
11687
11688 (defun gnus-summary-muttprint (&optional arg)
11689   "Print the current article using Muttprint.
11690 If N is a positive number, save the N next articles.
11691 If N is a negative number, save the N previous articles.
11692 If N is nil and any articles have been marked with the process mark,
11693 save those articles instead."
11694   (interactive "P")
11695   (require 'gnus-art)
11696   (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
11697     (gnus-summary-save-article arg t)))
11698
11699 (defun gnus-summary-pipe-message (program)
11700   "Pipe the current article through PROGRAM."
11701   (interactive "sProgram: ")
11702   (gnus-summary-select-article)
11703   (let ((mail-header-separator ""))
11704     (gnus-eval-in-buffer-window gnus-article-buffer
11705       (save-restriction
11706         (widen)
11707         (let ((start (window-start))
11708               (inhibit-read-only t))
11709           (message-pipe-buffer-body program)
11710           (set-window-start (get-buffer-window (current-buffer)) start))))))
11711
11712 (defun gnus-get-split-value (methods)
11713   "Return a value based on the split METHODS."
11714   (let (split-name method result match)
11715     (when methods
11716       (with-current-buffer gnus-original-article-buffer
11717         (save-restriction
11718           (nnheader-narrow-to-headers)
11719           (while (and methods (not split-name))
11720             (goto-char (point-min))
11721             (setq method (pop methods))
11722             (setq match (car method))
11723             (when (cond
11724                    ((stringp match)
11725                     ;; Regular expression.
11726                     (ignore-errors
11727                       (re-search-forward match nil t)))
11728                    ((functionp match)
11729                     ;; Function.
11730                     (save-restriction
11731                       (widen)
11732                       (setq result (funcall match gnus-newsgroup-name))))
11733                    ((consp match)
11734                     ;; Form.
11735                     (save-restriction
11736                       (widen)
11737                       (setq result (eval match)))))
11738               (setq split-name (cdr method))
11739               (cond ((stringp result)
11740                      (push (expand-file-name
11741                             result gnus-article-save-directory)
11742                            split-name))
11743                     ((consp result)
11744                      (setq split-name (append result split-name)))))))))
11745     (nreverse split-name)))
11746
11747 (defun gnus-valid-move-group-p (group)
11748   (and (boundp group)
11749        (symbol-name group)
11750        (symbol-value group)
11751        (gnus-get-function (gnus-find-method-for-group
11752                            (symbol-name group)) 'request-accept-article t)))
11753
11754 (defun gnus-read-move-group-name (prompt default articles prefix)
11755   "Read a group name."
11756   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
11757          (minibuffer-confirm-incomplete nil) ; XEmacs
11758          (prom
11759           (format "%s %s to"
11760                   prompt
11761                   (if (> (length articles) 1)
11762                       (format "these %d articles" (length articles))
11763                     "this article")))
11764          (to-newsgroup
11765           (let (active group)
11766             (when (or (null split-name) (= 1 (length split-name)))
11767               (setq active (gnus-make-hashtable (length gnus-active-hashtb)))
11768               (mapatoms (lambda (symbol)
11769                           (setq group (symbol-name symbol))
11770                           (when (string-match "[^\000-\177]" group)
11771                             (setq group (gnus-group-decoded-name group)))
11772                           (set (intern group active) group))
11773                         gnus-active-hashtb))
11774             (cond
11775              ((null split-name)
11776               (gnus-completing-read-with-default
11777                default prom active 'gnus-valid-move-group-p nil prefix
11778                'gnus-group-history))
11779              ((= 1 (length split-name))
11780               (gnus-completing-read-with-default
11781                (car split-name) prom active 'gnus-valid-move-group-p nil nil
11782                'gnus-group-history))
11783              (t
11784               (gnus-completing-read-with-default
11785                nil prom (mapcar 'list (nreverse split-name)) nil nil nil
11786                'gnus-group-history)))))
11787          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup)))
11788          encoded)
11789     (when to-newsgroup
11790       (if (or (string= to-newsgroup "")
11791               (string= to-newsgroup prefix))
11792           (setq to-newsgroup default))
11793       (unless to-newsgroup
11794         (error "No group name entered"))
11795       (setq encoded (mm-encode-coding-string
11796                      to-newsgroup
11797                      (gnus-group-name-charset to-method to-newsgroup)))
11798       (or (gnus-active encoded)
11799           (gnus-activate-group encoded nil nil to-method)
11800           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
11801                                      to-newsgroup))
11802               (or (and (gnus-request-create-group encoded to-method)
11803                        (gnus-activate-group encoded nil nil to-method)
11804                        (gnus-subscribe-group encoded))
11805                   (error "Couldn't create group %s" to-newsgroup)))
11806           (error "No such group: %s" to-newsgroup))
11807       encoded)))
11808
11809 (defvar gnus-summary-save-parts-counter)
11810 (declare-function mm-uu-dissect "mm-uu" (&optional noheader mime-type))
11811
11812 (defun gnus-summary-save-parts (type dir n &optional reverse)
11813   "Save parts matching TYPE to DIR.
11814 If REVERSE, save parts that do not match TYPE."
11815   (interactive
11816    (list (read-string "Save parts of type: "
11817                       (or (car gnus-summary-save-parts-type-history)
11818                           gnus-summary-save-parts-default-mime)
11819                       'gnus-summary-save-parts-type-history)
11820          (setq gnus-summary-save-parts-last-directory
11821                (read-file-name "Save to directory: "
11822                                gnus-summary-save-parts-last-directory
11823                                nil t))
11824          current-prefix-arg))
11825   (gnus-summary-iterate n
11826     (let ((gnus-display-mime-function nil)
11827           gnus-article-prepare-hook
11828           gnus-article-decode-hook
11829           gnus-display-mime-function
11830           gnus-break-pages
11831           (gnus-inhibit-treatment t))
11832       (gnus-summary-select-article))
11833     (with-current-buffer gnus-article-buffer
11834       (let ((handles (or gnus-article-mime-handles
11835                          (mm-dissect-buffer nil gnus-article-loose-mime)
11836                          (and gnus-article-emulate-mime
11837                               (mm-uu-dissect))))
11838             (gnus-summary-save-parts-counter 1))
11839         (when handles
11840           (gnus-summary-save-parts-1 type dir handles reverse)
11841           (unless gnus-article-mime-handles ;; Don't destroy this case.
11842             (mm-destroy-parts handles)))))))
11843
11844 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11845   (if (stringp (car handle))
11846       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11847               (cdr handle))
11848     (when (if reverse
11849               (not (string-match type (mm-handle-media-type handle)))
11850             (string-match type (mm-handle-media-type handle)))
11851       (let ((file (expand-file-name
11852                    (gnus-map-function
11853                     mm-file-name-rewrite-functions
11854                     (file-name-nondirectory
11855                      (or
11856                       (mail-content-type-get
11857                        (mm-handle-disposition handle) 'filename)
11858                       (mail-content-type-get
11859                        (mm-handle-type handle) 'name)
11860                       (format "%s.%d.%d" gnus-newsgroup-name
11861                               (cdr gnus-article-current)
11862                               gnus-summary-save-parts-counter))))
11863                    dir)))
11864         (incf gnus-summary-save-parts-counter)
11865         (unless (file-exists-p file)
11866           (mm-save-part-to-file handle file))))))
11867
11868 ;; Summary extract commands
11869
11870 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
11871   (let ((inhibit-read-only t)
11872         (article (gnus-summary-article-number))
11873         after-article b e)
11874     (unless (gnus-summary-goto-subject article)
11875       (error "No such article: %d" article))
11876     (gnus-summary-position-point)
11877     ;; If all commands are to be bunched up on one line, we collect
11878     ;; them here.
11879     (unless gnus-view-pseudos-separately
11880       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
11881             files action)
11882         (while ps
11883           (setq action (cdr (assq 'action (car ps))))
11884           (setq files (list (cdr (assq 'name (car ps)))))
11885           (while (and ps (cdr ps)
11886                       (string= (or action "1")
11887                                (or (cdr (assq 'action (cadr ps))) "2")))
11888             (push (cdr (assq 'name (cadr ps))) files)
11889             (setcdr ps (cddr ps)))
11890           (when files
11891             (when (not (string-match "%s" action))
11892               (push " " files))
11893             (push " " files)
11894             (when (assq 'execute (car ps))
11895               (setcdr (assq 'execute (car ps))
11896                       (funcall (if (string-match "%s" action)
11897                                    'format 'concat)
11898                                action
11899                                (mapconcat
11900                                 (lambda (f)
11901                                   (if (equal f " ")
11902                                       f
11903                                     (shell-quote-argument f)))
11904                                 files " ")))))
11905           (setq ps (cdr ps)))))
11906     (if (and gnus-view-pseudos (not not-view))
11907         (while pslist
11908           (when (assq 'execute (car pslist))
11909             (gnus-execute-command (cdr (assq 'execute (car pslist)))
11910                                   (eq gnus-view-pseudos 'not-confirm)))
11911           (setq pslist (cdr pslist)))
11912       (save-excursion
11913         (while pslist
11914           (setq after-article (or (cdr (assq 'article (car pslist)))
11915                                   (gnus-summary-article-number)))
11916           (gnus-summary-goto-subject after-article)
11917           (forward-line 1)
11918           (setq b (point))
11919           (insert "    " (file-name-nondirectory
11920                           (cdr (assq 'name (car pslist))))
11921                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
11922           (setq e (point))
11923           (forward-line -1)             ; back to `b'
11924           (gnus-add-text-properties
11925            b (1- e) (list 'gnus-number gnus-reffed-article-number
11926                           gnus-mouse-face-prop gnus-mouse-face))
11927           (gnus-data-enter
11928            after-article gnus-reffed-article-number
11929            gnus-unread-mark b (car pslist) 0 (- e b))
11930           (setq gnus-newsgroup-unreads
11931                 (gnus-add-to-sorted-list gnus-newsgroup-unreads
11932                                          gnus-reffed-article-number))
11933           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
11934           (setq pslist (cdr pslist)))))))
11935
11936 (defun gnus-pseudos< (p1 p2)
11937   (let ((c1 (cdr (assq 'action p1)))
11938         (c2 (cdr (assq 'action p2))))
11939     (and c1 c2 (string< c1 c2))))
11940
11941 (defun gnus-request-pseudo-article (props)
11942   (cond ((assq 'execute props)
11943          (gnus-execute-command (cdr (assq 'execute props)))))
11944   (let ((gnus-current-article (gnus-summary-article-number)))
11945     (gnus-run-hooks 'gnus-mark-article-hook)))
11946
11947 (defun gnus-execute-command (command &optional automatic)
11948   (save-excursion
11949     (gnus-article-setup-buffer)
11950     (set-buffer gnus-article-buffer)
11951     (setq buffer-read-only nil)
11952     (let ((command (if automatic command
11953                      (read-string "Command: " (cons command 0)))))
11954       (erase-buffer)
11955       (insert "$ " command "\n\n")
11956       (if gnus-view-pseudo-asynchronously
11957           (start-process "gnus-execute" (current-buffer) shell-file-name
11958                          shell-command-switch command)
11959         (call-process shell-file-name nil t nil
11960                       shell-command-switch command)))))
11961
11962 ;; Summary kill commands.
11963
11964 (defun gnus-summary-edit-global-kill (article)
11965   "Edit the \"global\" kill file."
11966   (interactive (list (gnus-summary-article-number)))
11967   (gnus-group-edit-global-kill article))
11968
11969 (defun gnus-summary-edit-local-kill ()
11970   "Edit a local kill file applied to the current newsgroup."
11971   (interactive)
11972   (setq gnus-current-headers (gnus-summary-article-header))
11973   (gnus-group-edit-local-kill
11974    (gnus-summary-article-number) gnus-newsgroup-name))
11975
11976 ;;; Header reading.
11977
11978 (defun gnus-read-header (id &optional header)
11979   "Read the headers of article ID and enter them into the Gnus system."
11980   (let ((group gnus-newsgroup-name)
11981         (gnus-override-method
11982          (or
11983           gnus-override-method
11984           (and (gnus-news-group-p gnus-newsgroup-name)
11985                (car (gnus-refer-article-methods)))))
11986         where)
11987     ;; First we check to see whether the header in question is already
11988     ;; fetched.
11989     (if (stringp id)
11990         ;; This is a Message-ID.
11991         (setq header (or header (gnus-id-to-header id)))
11992       ;; This is an article number.
11993       (setq header (or header (gnus-summary-article-header id))))
11994     (if (and header
11995              (not (gnus-summary-article-sparse-p (mail-header-number header))))
11996         ;; We have found the header.
11997         header
11998       ;; We have to really fetch the header to this article.
11999       (with-current-buffer nntp-server-buffer
12000         (when (setq where (gnus-request-head id group))
12001           (nnheader-fold-continuation-lines)
12002           (goto-char (point-max))
12003           (insert ".\n")
12004           (goto-char (point-min))
12005           (insert "211 ")
12006           (princ (cond
12007                   ((numberp id) id)
12008                   ((cdr where) (cdr where))
12009                   (header (mail-header-number header))
12010                   (t gnus-reffed-article-number))
12011                  (current-buffer))
12012           (insert " Article retrieved.\n"))
12013         (if (or (not where)
12014                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
12015             ()                          ; Malformed head.
12016           (unless (gnus-summary-article-sparse-p (mail-header-number header))
12017             (when (and (stringp id)
12018                        (or
12019                         (not (string= (gnus-group-real-name group)
12020                                       (car where)))
12021                         (not (gnus-server-equal gnus-override-method
12022                                                 (gnus-group-method group)))))
12023               ;; If we fetched by Message-ID and the article came from
12024               ;; a different group (or server), we fudge some bogus
12025               ;; article numbers for this article.
12026               (mail-header-set-number header gnus-reffed-article-number))
12027             (with-current-buffer gnus-summary-buffer
12028               (decf gnus-reffed-article-number)
12029               (gnus-remove-header (mail-header-number header))
12030               (push header gnus-newsgroup-headers)
12031               (setq gnus-current-headers header)
12032               (push (mail-header-number header) gnus-newsgroup-limit)))
12033           header)))))
12034
12035 (defun gnus-remove-header (number)
12036   "Remove header NUMBER from `gnus-newsgroup-headers'."
12037   (if (and gnus-newsgroup-headers
12038            (= number (mail-header-number (car gnus-newsgroup-headers))))
12039       (pop gnus-newsgroup-headers)
12040     (let ((headers gnus-newsgroup-headers))
12041       (while (and (cdr headers)
12042                   (not (= number (mail-header-number (cadr headers)))))
12043         (pop headers))
12044       (when (cdr headers)
12045         (setcdr headers (cddr headers))))))
12046
12047 ;;;
12048 ;;; summary highlights
12049 ;;;
12050
12051 (defun gnus-highlight-selected-summary ()
12052   "Highlight selected article in summary buffer."
12053   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
12054   (when gnus-summary-selected-face
12055     (save-excursion
12056       (let* ((beg (point-at-bol))
12057              (end (point-at-eol))
12058              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
12059              (from (if (get-text-property beg gnus-mouse-face-prop)
12060                        beg
12061                      (or (next-single-property-change
12062                           beg gnus-mouse-face-prop nil end)
12063                          beg)))
12064              (to
12065               (if (= from end)
12066                   (- from 2)
12067                 (or (next-single-property-change
12068                      from gnus-mouse-face-prop nil end)
12069                     end))))
12070         ;; If no mouse-face prop on line we will have to = from = end,
12071         ;; so we highlight the entire line instead.
12072         (when (= (+ to 2) from)
12073           (setq from beg)
12074           (setq to end))
12075         (if gnus-newsgroup-selected-overlay
12076             ;; Move old overlay.
12077             (gnus-move-overlay
12078              gnus-newsgroup-selected-overlay from to (current-buffer))
12079           ;; Create new overlay.
12080           (gnus-overlay-put
12081            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
12082            'face gnus-summary-selected-face))))))
12083
12084 (defvar gnus-summary-highlight-line-cached nil)
12085 (defvar gnus-summary-highlight-line-trigger nil)
12086
12087 (defun gnus-summary-highlight-line-0 ()
12088   (if (and (eq gnus-summary-highlight-line-trigger
12089                gnus-summary-highlight)
12090            gnus-summary-highlight-line-cached)
12091       gnus-summary-highlight-line-cached
12092     (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
12093           gnus-summary-highlight-line-cached
12094           (let* ((cond (list 'cond))
12095                  (c cond)
12096                  (list gnus-summary-highlight))
12097             (while list
12098               (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
12099                               nil))
12100               (setq c (cdr c)
12101                     list (cdr list)))
12102             (gnus-byte-compile (list 'lambda nil cond))))))
12103
12104 (defun gnus-summary-highlight-line ()
12105   "Highlight current line according to `gnus-summary-highlight'."
12106   (let* ((beg (point-at-bol))
12107          (article (or (gnus-summary-article-number) gnus-current-article))
12108          (score (or (cdr (assq article
12109                                gnus-newsgroup-scored))
12110                     gnus-summary-default-score 0))
12111          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
12112          (inhibit-read-only t)
12113          (default gnus-summary-default-score)
12114          (default-high gnus-summary-default-high-score)
12115          (default-low gnus-summary-default-low-score)
12116          (uncached (and gnus-summary-use-undownloaded-faces
12117                         (memq article gnus-newsgroup-undownloaded)
12118                         (not (memq article gnus-newsgroup-cached)))))
12119     (let ((face (funcall (gnus-summary-highlight-line-0))))
12120       (unless (eq face (get-text-property beg 'face))
12121         (gnus-put-text-property-excluding-characters-with-faces
12122          beg (point-at-eol) 'face
12123          (setq face (if (boundp face) (symbol-value face) face)))
12124         (when gnus-summary-highlight-line-function
12125           (funcall gnus-summary-highlight-line-function article face))))))
12126
12127 (defun gnus-update-read-articles (group unread &optional compute)
12128   "Update the list of read articles in GROUP.
12129 UNREAD is a sorted list."
12130   (let ((active (or gnus-newsgroup-active (gnus-active group)))
12131         (info (gnus-get-info group))
12132         (prev 1)
12133         read)
12134     (if (or (not info) (not active))
12135         ;; There is no info on this group if it was, in fact,
12136         ;; killed.  Gnus stores no information on killed groups, so
12137         ;; there's nothing to be done.
12138         ;; One could store the information somewhere temporarily,
12139         ;; perhaps...  Hmmm...
12140         ()
12141       ;; Remove any negative articles numbers.
12142       (while (and unread (< (car unread) 0))
12143         (setq unread (cdr unread)))
12144       ;; Remove any expired article numbers
12145       (while (and unread (< (car unread) (car active)))
12146         (setq unread (cdr unread)))
12147       ;; Compute the ranges of read articles by looking at the list of
12148       ;; unread articles.
12149       (while unread
12150         (when (/= (car unread) prev)
12151           (push (if (= prev (1- (car unread))) prev
12152                   (cons prev (1- (car unread))))
12153                 read))
12154         (setq prev (1+ (car unread)))
12155         (setq unread (cdr unread)))
12156       (when (<= prev (cdr active))
12157         (push (cons prev (cdr active)) read))
12158       (setq read (if (> (length read) 1) (nreverse read) read))
12159       (if compute
12160           read
12161         (save-excursion
12162           (let (setmarkundo)
12163             ;; Propagate the read marks to the backend.
12164             (when (and gnus-propagate-marks
12165                        (gnus-check-backend-function 'request-set-mark group))
12166               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
12167                     (add (gnus-remove-from-range read (gnus-info-read info))))
12168                 (when (or add del)
12169                   (unless (gnus-check-group group)
12170                     (error "Can't open server for %s" group))
12171                   (gnus-request-set-mark
12172                    group (delq nil (list (if add (list add 'add '(read)))
12173                                          (if del (list del 'del '(read))))))
12174                   (setq setmarkundo
12175                         `(gnus-request-set-mark
12176                           ,group
12177                           ',(delq nil (list
12178                                        (if del (list del 'add '(read)))
12179                                        (if add (list add 'del '(read))))))))))
12180             (set-buffer gnus-group-buffer)
12181             (gnus-undo-register
12182               `(progn
12183                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
12184                  (gnus-info-set-read ',info ',(gnus-info-read info))
12185                  (gnus-get-unread-articles-in-group ',info
12186                                                     (gnus-active ,group))
12187                  (gnus-group-update-group ,group t)
12188                  ,setmarkundo))))
12189         ;; Enter this list into the group info.
12190         (gnus-info-set-read info read)
12191         ;; Set the number of unread articles in gnus-newsrc-hashtb.
12192         (gnus-get-unread-articles-in-group info (gnus-active group))
12193         t))))
12194
12195 (defun gnus-offer-save-summaries ()
12196   "Offer to save all active summary buffers."
12197   (let (buffers)
12198     ;; Go through all buffers and find all summaries.
12199     (dolist (buffer (buffer-list))
12200       (when (and (setq buffer (buffer-name buffer))
12201                  (string-match "Summary" buffer)
12202                  (with-current-buffer buffer
12203                    ;; We check that this is, indeed, a summary buffer.
12204                    (and (eq major-mode 'gnus-summary-mode)
12205                         ;; Also make sure this isn't bogus.
12206                         gnus-newsgroup-prepared
12207                         ;; Also make sure that this isn't a
12208                         ;; dead summary buffer.
12209                         (not gnus-dead-summary-mode))))
12210         (push buffer buffers)))
12211     ;; Go through all these summary buffers and offer to save them.
12212     (when buffers
12213       (save-excursion
12214         (map-y-or-n-p
12215          "Update summary buffer %s? "
12216          (lambda (buf)
12217            (switch-to-buffer buf)
12218            (gnus-summary-exit))
12219          buffers)))))
12220
12221 (defun gnus-summary-setup-default-charset ()
12222   "Setup newsgroup default charset."
12223   (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
12224       (setq gnus-newsgroup-charset nil)
12225     (let* ((ignored-charsets
12226             (or gnus-newsgroup-ephemeral-ignored-charsets
12227                 (append
12228                  (and gnus-newsgroup-name
12229                       (gnus-parameter-ignored-charsets gnus-newsgroup-name))
12230                  gnus-newsgroup-ignored-charsets))))
12231       (setq gnus-newsgroup-charset
12232             (or gnus-newsgroup-ephemeral-charset
12233                 (and gnus-newsgroup-name
12234                      (gnus-parameter-charset gnus-newsgroup-name))
12235                 gnus-default-charset))
12236       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
12237            ignored-charsets))))
12238
12239 ;;;
12240 ;;; Mime Commands
12241 ;;;
12242
12243 (defun gnus-summary-display-buttonized (&optional show-all-parts)
12244   "Display the current article buffer fully MIME-buttonized.
12245 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
12246 treated as multipart/mixed."
12247   (interactive "P")
12248   (require 'gnus-art)
12249   (let ((gnus-unbuttonized-mime-types nil)
12250         (gnus-mime-display-multipart-as-mixed show-all-parts))
12251     (gnus-summary-show-article)))
12252
12253 (defun gnus-summary-repair-multipart (article)
12254   "Add a Content-Type header to a multipart article without one."
12255   (interactive (list (gnus-summary-article-number)))
12256   (gnus-with-article article
12257     (message-narrow-to-head)
12258     (message-remove-header "Mime-Version")
12259     (goto-char (point-max))
12260     (insert "Mime-Version: 1.0\n")
12261     (widen)
12262     (when (search-forward "\n--" nil t)
12263       (let ((separator (buffer-substring (point) (point-at-eol))))
12264         (message-narrow-to-head)
12265         (message-remove-header "Content-Type")
12266         (goto-char (point-max))
12267         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
12268                         separator))
12269         (widen))))
12270   (let (gnus-mark-article-hook)
12271     (gnus-summary-select-article t t nil article)))
12272
12273 (defun gnus-summary-toggle-display-buttonized ()
12274   "Toggle the buttonizing of the article buffer."
12275   (interactive)
12276   (require 'gnus-art)
12277   (if (setq gnus-inhibit-mime-unbuttonizing
12278             (not gnus-inhibit-mime-unbuttonizing))
12279       (let ((gnus-unbuttonized-mime-types nil))
12280         (gnus-summary-show-article))
12281     (gnus-summary-show-article)))
12282
12283 ;;;
12284 ;;; Generic summary marking commands
12285 ;;;
12286
12287 (defvar gnus-summary-marking-alist
12288   '((read gnus-del-mark "d")
12289     (unread gnus-unread-mark "u")
12290     (ticked gnus-ticked-mark "!")
12291     (dormant gnus-dormant-mark "?")
12292     (expirable gnus-expirable-mark "e"))
12293   "An alist of names/marks/keystrokes.")
12294
12295 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
12296 (defvar gnus-summary-mark-map)
12297
12298 (defun gnus-summary-make-all-marking-commands ()
12299   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
12300   (dolist (elem gnus-summary-marking-alist)
12301     (apply 'gnus-summary-make-marking-command elem)))
12302
12303 (defun gnus-summary-make-marking-command (name mark keystroke)
12304   (let ((map (make-sparse-keymap)))
12305     (define-key gnus-summary-generic-mark-map keystroke map)
12306     (dolist (lway `((next "next" next nil "n")
12307                     (next-unread "next unread" next t "N")
12308                     (prev "previous" prev nil "p")
12309                     (prev-unread "previous unread" prev t "P")
12310                     (nomove "" nil nil ,keystroke)))
12311       (let ((func (gnus-summary-make-marking-command-1
12312                    mark (car lway) lway name)))
12313         (setq func (eval func))
12314         (define-key map (nth 4 lway) func)))))
12315
12316 (defun gnus-summary-make-marking-command-1 (mark way lway name)
12317   `(defun ,(intern
12318             (format "gnus-summary-put-mark-as-%s%s"
12319                     name (if (eq way 'nomove)
12320                              ""
12321                            (concat "-" (symbol-name way)))))
12322      (n)
12323      ,(format
12324        "Mark the current article as %s%s.
12325 If N, the prefix, then repeat N times.
12326 If N is negative, move in reverse order.
12327 The difference between N and the actual number of articles marked is
12328 returned."
12329        name (cadr lway))
12330      (interactive "p")
12331      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
12332
12333 (defun gnus-summary-generic-mark (n mark move unread)
12334   "Mark N articles with MARK."
12335   (unless (eq major-mode 'gnus-summary-mode)
12336     (error "This command can only be used in the summary buffer"))
12337   (gnus-summary-show-thread)
12338   (let ((nummove
12339          (cond
12340           ((eq move 'next) 1)
12341           ((eq move 'prev) -1)
12342           (t 0))))
12343     (if (zerop nummove)
12344         (setq n 1)
12345       (when (< n 0)
12346         (setq n (abs n)
12347               nummove (* -1 nummove))))
12348     (while (and (> n 0)
12349                 (gnus-summary-mark-article nil mark)
12350                 (zerop (gnus-summary-next-subject nummove unread t)))
12351       (setq n (1- n)))
12352     (when (/= 0 n)
12353       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
12354     (gnus-summary-recenter)
12355     (gnus-summary-position-point)
12356     (gnus-set-mode-line 'summary)
12357     n))
12358
12359 (defun gnus-summary-insert-articles (articles)
12360   (when (setq articles
12361               (gnus-sorted-difference articles
12362                                       (mapcar (lambda (h)
12363                                                 (mail-header-number h))
12364                                               gnus-newsgroup-headers)))
12365     (setq gnus-newsgroup-headers
12366           (gnus-merge 'list
12367                       gnus-newsgroup-headers
12368                       (gnus-fetch-headers articles)
12369                       'gnus-article-sort-by-number))
12370     ;; Suppress duplicates?
12371     (when gnus-suppress-duplicates
12372       (gnus-dup-suppress-articles))
12373
12374     (if (and gnus-fetch-old-headers
12375              (eq gnus-headers-retrieved-by 'nov))
12376         ;; We might want to build some more threads first.
12377         (if (eq gnus-fetch-old-headers 'invisible)
12378             (gnus-build-all-threads)
12379           (gnus-build-old-threads))
12380       ;; Mark the inserted articles that are unread as unread.
12381       (setq gnus-newsgroup-unreads
12382             (gnus-sorted-nunion
12383              gnus-newsgroup-unreads
12384              (gnus-sorted-nintersection
12385               (gnus-list-of-unread-articles gnus-newsgroup-name)
12386               articles)))
12387       ;; Mark the inserted articles as selected so that the information
12388       ;; of the marks having been changed by a user may be updated when
12389       ;; exiting this group.  See `gnus-summary-update-info'.
12390       (dolist (art articles)
12391         (setq gnus-newsgroup-unselected (delq art gnus-newsgroup-unselected))))
12392     ;; Let the Gnus agent mark articles as read.
12393     (when gnus-agent
12394       (gnus-agent-get-undownloaded-list))
12395     ;; Remove list identifiers from subject
12396     (when gnus-list-identifiers
12397       (gnus-summary-remove-list-identifiers))
12398     ;; First and last article in this newsgroup.
12399     (when gnus-newsgroup-headers
12400       (setq gnus-newsgroup-begin
12401             (mail-header-number (car gnus-newsgroup-headers))
12402             gnus-newsgroup-end
12403             (mail-header-number
12404              (gnus-last-element gnus-newsgroup-headers))))
12405     (when gnus-use-scoring
12406       (gnus-possibly-score-headers))))
12407
12408 (defun gnus-summary-insert-old-articles (&optional all)
12409   "Insert all old articles in this group.
12410 If ALL is non-nil, already read articles become readable.
12411 If ALL is a number, fetch this number of articles."
12412   (interactive "P")
12413   (prog1
12414       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
12415             older len)
12416         (setq older
12417               ;; Some nntp servers lie about their active range.  When
12418               ;; this happens, the active range can be in the millions.
12419               ;; Use a compressed range to avoid creating a huge list.
12420               (gnus-range-difference (list gnus-newsgroup-active) old))
12421         (setq len (gnus-range-length older))
12422         (cond
12423          ((null older) nil)
12424          ((numberp all)
12425           (if (< all len)
12426               (let ((older-range (nreverse older)))
12427                 (setq older nil)
12428
12429                 (while (> all 0)
12430                   (let* ((r (pop older-range))
12431                          (min (if (numberp r) r (car r)))
12432                          (max (if (numberp r) r (cdr r))))
12433                     (while (and (<= min max)
12434                                 (> all 0))
12435                       (push max older)
12436                       (setq all (1- all)
12437                             max (1- max))))))
12438             (setq older (gnus-uncompress-range older))))
12439          (all
12440           (setq older (gnus-uncompress-range older)))
12441          (t
12442           (when (and (numberp gnus-large-newsgroup)
12443                    (> len gnus-large-newsgroup))
12444               (let* ((cursor-in-echo-area nil)
12445                      (initial (gnus-parameter-large-newsgroup-initial
12446                                gnus-newsgroup-name))
12447                      (input
12448                       (read-string
12449                        (format
12450                         "How many articles from %s (%s %d): "
12451                         (gnus-group-decoded-name gnus-newsgroup-name)
12452                         (if initial "max" "default")
12453                         len)
12454                        (if initial
12455                            (cons (number-to-string initial)
12456                                  0)))))
12457                 (unless (string-match "^[ \t]*$" input)
12458                   (setq all (string-to-number input))
12459                   (if (< all len)
12460                       (let ((older-range (nreverse older)))
12461                         (setq older nil)
12462
12463                         (while (> all 0)
12464                           (let* ((r (pop older-range))
12465                                  (min (if (numberp r) r (car r)))
12466                                  (max (if (numberp r) r (cdr r))))
12467                             (while (and (<= min max)
12468                                         (> all 0))
12469                               (push max older)
12470                               (setq all (1- all)
12471                                     max (1- max))))))))))
12472           (setq older (gnus-uncompress-range older))))
12473         (if (not older)
12474             (message "No old news.")
12475           (gnus-summary-insert-articles older)
12476           (gnus-summary-limit (gnus-sorted-nunion old older))))
12477     (gnus-summary-position-point)))
12478
12479 (defun gnus-summary-insert-new-articles ()
12480   "Insert all new articles in this group."
12481   (interactive)
12482   (prog1
12483       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
12484             (old-active gnus-newsgroup-active)
12485             (nnmail-fetched-sources (list t))
12486             i new)
12487         (setq gnus-newsgroup-active
12488               (gnus-activate-group gnus-newsgroup-name 'scan))
12489         (setq i (cdr gnus-newsgroup-active))
12490         (while (> i (cdr old-active))
12491           (push i new)
12492           (decf i))
12493         (if (not new)
12494             (message "No gnus is bad news")
12495           (gnus-summary-insert-articles new)
12496           (setq gnus-newsgroup-unreads
12497                 (gnus-sorted-nunion gnus-newsgroup-unreads new))
12498           (gnus-summary-limit (gnus-sorted-nunion old new))))
12499     (gnus-summary-position-point)))
12500
12501 (gnus-summary-make-all-marking-commands)
12502
12503 (gnus-ems-redefine)
12504
12505 (provide 'gnus-sum)
12506
12507 (run-hooks 'gnus-sum-load-hook)
12508
12509 ;; Local Variables:
12510 ;; coding: iso-8859-1
12511 ;; End:
12512
12513 ;; arch-tag: 17c6748f-6d00-4d36-bf01-835c42f31235
12514 ;;; gnus-sum.el ends here