127acd3184bace3d33b8284abbcf499615628290
[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, 2009, 2010 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 of the License, or
14 ;; (at your option) 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.  If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 ;; For Emacs < 22.2.
29 (eval-and-compile
30   (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
31 (eval-when-compile
32   (require 'cl))
33 (eval-when-compile
34   (when (featurep 'xemacs)
35     (require 'easy-mmode))) ; for `define-minor-mode'
36
37 (defvar tool-bar-mode)
38 (defvar gnus-tmp-header)
39
40 (require 'gnus)
41 (require 'gnus-group)
42 (require 'gnus-spec)
43 (require 'gnus-range)
44 (require 'gnus-int)
45 (require 'gnus-undo)
46 (require 'gnus-util)
47 (require 'gmm-utils)
48 (require 'mm-decode)
49 (require 'nnoo)
50
51 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
52 (autoload 'gnus-cache-write-active "gnus-cache")
53 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
54 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
55 (autoload 'gnus-pick-line-number "gnus-salt" nil t)
56 (autoload 'mm-uu-dissect "mm-uu")
57 (autoload 'gnus-article-outlook-deuglify-article "deuglify"
58   "Deuglify broken Outlook (Express) articles and redisplay."
59   t)
60 (autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
61 (autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
62 (autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
63
64 (defcustom gnus-kill-summary-on-exit t
65   "*If non-nil, kill the summary buffer when you exit from it.
66 If nil, the summary will become a \"*Dead Summary*\" buffer, and
67 it will be killed sometime later."
68   :group 'gnus-summary-exit
69   :type 'boolean)
70
71 (defcustom gnus-summary-next-group-on-exit t
72   "If non-nil, go to the next unread newsgroup on summary exit.
73 See `gnus-group-goto-unread'."
74   :link '(custom-manual "(gnus)Group Maneuvering")
75   :group 'gnus-summary-exit
76   :version "23.1" ;; No Gnus
77   :type 'boolean)
78
79 (defcustom gnus-summary-stop-at-end-of-message nil
80   "If non-nil, don't select the next message when using `SPC'."
81   :link '(custom-manual "(gnus)Group Maneuvering")
82   :group 'gnus-summary-maneuvering
83   :version "24.1"
84   :type 'boolean)
85
86 (defcustom gnus-fetch-old-headers nil
87   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
88 If an unread article in the group refers to an older, already
89 read (or just marked as read) article, the old article will not
90 normally be displayed in the Summary buffer.  If this variable is
91 t, Gnus will attempt to grab the headers to the old articles, and
92 thereby build complete threads.  If it has the value `some', all
93 old headers will be fetched but only enough headers to connect
94 otherwise loose threads will be displayed.  This variable can
95 also be a number.  In that case, no more than that number of old
96 headers will be fetched.  If it has the value `invisible', all
97 old headers will be fetched, but none will be displayed.
98
99 The server has to support NOV for any of this to work.
100
101 This feature can seriously impact performance it ignores all
102 locally cached header entries.  Setting it to t for groups for a
103 server that doesn't expire articles (such as news.gmane.org),
104 leads to very slow summary generation."
105   :group 'gnus-thread
106   :type '(choice (const :tag "off" nil)
107                  (const :tag "on" t)
108                  (const some)
109                  (const invisible)
110                  number
111                  (sexp :menu-tag "other" t)))
112
113 (defcustom gnus-refer-thread-limit 500
114   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
115 If t, fetch all the available old headers."
116   :group 'gnus-thread
117   :type '(choice number
118                  (sexp :menu-tag "other" t)))
119
120 (defcustom gnus-summary-make-false-root 'adopt
121   "*nil means that Gnus won't gather loose threads.
122 If the root of a thread has expired or been read in a previous
123 session, the information necessary to build a complete thread has been
124 lost.  Instead of having many small sub-threads from this original thread
125 scattered all over the summary buffer, Gnus can gather them.
126
127 If non-nil, Gnus will try to gather all loose sub-threads from an
128 original thread into one large thread.
129
130 If this variable is non-nil, it should be one of `none', `adopt',
131 `dummy' or `empty'.
132
133 If this variable is `none', Gnus will not make a false root, but just
134 present the sub-threads after another.
135 If this variable is `dummy', Gnus will create a dummy root that will
136 have all the sub-threads as children.
137 If this variable is `adopt', Gnus will make one of the \"children\"
138 the parent and mark all the step-children as such.
139 If this variable is `empty', the \"children\" are printed with empty
140 subject fields.  (Or rather, they will be printed with a string
141 given by the `gnus-summary-same-subject' variable.)"
142   :group 'gnus-thread
143   :type '(choice (const :tag "off" nil)
144                  (const none)
145                  (const dummy)
146                  (const adopt)
147                  (const empty)))
148
149 (defcustom gnus-summary-make-false-root-always nil
150   "Always make a false dummy root."
151   :version "22.1"
152   :group 'gnus-thread
153   :type 'boolean)
154
155 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
156   "*A regexp to match subjects to be excluded from loose thread gathering.
157 As loose thread gathering is done on subjects only, that means that
158 there can be many false gatherings performed.  By rooting out certain
159 common subjects, gathering might become saner."
160   :group 'gnus-thread
161   :type 'regexp)
162
163 (defcustom gnus-summary-gather-subject-limit nil
164   "*Maximum length of subject comparisons when gathering loose threads.
165 Use nil to compare full subjects.  Setting this variable to a low
166 number will help gather threads that have been corrupted by
167 newsreaders chopping off subject lines, but it might also mean that
168 unrelated articles that have subject that happen to begin with the
169 same few characters will be incorrectly gathered.
170
171 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
172 comparing subjects."
173   :group 'gnus-thread
174   :type '(choice (const :tag "off" nil)
175                  (const fuzzy)
176                  (sexp :menu-tag "on" t)))
177
178 (defcustom gnus-simplify-subject-functions nil
179   "List of functions taking a string argument that simplify subjects.
180 The functions are applied recursively.
181
182 Useful functions to put in this list include:
183 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
184 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
185   :group 'gnus-thread
186   :type '(repeat function))
187
188 (defcustom gnus-simplify-ignored-prefixes nil
189   "*Remove matches for this regexp from subject lines when simplifying fuzzily."
190   :group 'gnus-thread
191   :type '(choice (const :tag "off" nil)
192                  regexp))
193
194 (defcustom gnus-build-sparse-threads nil
195   "*If non-nil, fill in the gaps in threads.
196 If `some', only fill in the gaps that are needed to tie loose threads
197 together.  If `more', fill in all leaf nodes that Gnus can find.  If
198 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
199   :group 'gnus-thread
200   :type '(choice (const :tag "off" nil)
201                  (const some)
202                  (const more)
203                  (sexp :menu-tag "all" t)))
204
205 (defcustom gnus-summary-thread-gathering-function
206   'gnus-gather-threads-by-subject
207   "*Function used for gathering loose threads.
208 There are two pre-defined functions: `gnus-gather-threads-by-subject',
209 which only takes Subjects into consideration; and
210 `gnus-gather-threads-by-references', which compared the References
211 headers of the articles to find matches."
212   :group 'gnus-thread
213   :type '(radio (function-item gnus-gather-threads-by-subject)
214                 (function-item gnus-gather-threads-by-references)
215                 (function :tag "other")))
216
217 (defcustom gnus-summary-same-subject ""
218   "*String indicating that the current article has the same subject as the previous.
219 This variable will only be used if the value of
220 `gnus-summary-make-false-root' is `empty'."
221   :group 'gnus-summary-format
222   :type 'string)
223
224 (defcustom gnus-summary-goto-unread nil
225   "*If t, many commands will go to the next unread article.
226 This applies to marking commands as well as other commands that
227 \"naturally\" select the next article, like, for instance, `SPC' at
228 the end of an article.
229
230 If nil, the marking commands do NOT go to the next unread article
231 \(they go to the next article instead).  If `never', commands that
232 usually go to the next unread article, will go to the next article,
233 whether it is read or not."
234   :version "24.1"
235   :group 'gnus-summary-marks
236   :link '(custom-manual "(gnus)Setting Marks")
237   :type '(choice (const :tag "off" nil)
238                  (const never)
239                  (sexp :menu-tag "on" t)))
240
241 (defcustom gnus-summary-default-score 0
242   "*Default article score level.
243 All scores generated by the score files will be added to this score.
244 If this variable is nil, scoring will be disabled."
245   :group 'gnus-score-default
246   :type '(choice (const :tag "disable")
247                  integer))
248
249 (defcustom gnus-summary-default-high-score 0
250   "*Default threshold for a high scored article.
251 An article will be highlighted as high scored if its score is greater
252 than this score."
253   :version "22.1"
254   :group 'gnus-score-default
255   :type 'integer)
256
257 (defcustom gnus-summary-default-low-score 0
258   "*Default threshold for a low scored article.
259 An article will be highlighted as low scored if its score is smaller
260 than this score."
261   :version "22.1"
262   :group 'gnus-score-default
263   :type 'integer)
264
265 (defcustom gnus-summary-zcore-fuzz 0
266   "*Fuzziness factor for the zcore in the summary buffer.
267 Articles with scores closer than this to `gnus-summary-default-score'
268 will not be marked."
269   :group 'gnus-summary-format
270   :type 'integer)
271
272 (defcustom gnus-simplify-subject-fuzzy-regexp nil
273   "*Strings to be removed when doing fuzzy matches.
274 This can either be a regular expression or list of regular expressions
275 that will be removed from subject strings if fuzzy subject
276 simplification is selected."
277   :group 'gnus-thread
278   :type '(repeat regexp))
279
280 (defcustom gnus-show-threads t
281   "*If non-nil, display threads in summary mode."
282   :group 'gnus-thread
283   :type 'boolean)
284
285 (defcustom gnus-thread-hide-subtree nil
286   "*If non-nil, hide all threads initially.
287 This can be a predicate specifier which says which threads to hide.
288 If threads are hidden, you have to run the command
289 `gnus-summary-show-thread' by hand or select an article."
290   :group 'gnus-thread
291   :type '(radio (sexp :format "Non-nil\n"
292                       :match (lambda (widget value)
293                                (not (or (consp value) (functionp value))))
294                       :value t)
295                 (const nil)
296                 (sexp :tag "Predicate specifier")))
297
298 (defcustom gnus-thread-hide-killed t
299   "*If non-nil, hide killed threads automatically."
300   :group 'gnus-thread
301   :type 'boolean)
302
303 (defcustom gnus-thread-ignore-subject t
304   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
305 If nil, articles that have different subjects from their parents will
306 start separate threads."
307   :group 'gnus-thread
308   :type 'boolean)
309
310 (defcustom gnus-thread-operation-ignore-subject t
311   "*If non-nil, subjects will be ignored when doing thread commands.
312 This affects commands like `gnus-summary-kill-thread' and
313 `gnus-summary-lower-thread'.
314
315 If this variable is nil, articles in the same thread with different
316 subjects will not be included in the operation in question.  If this
317 variable is `fuzzy', only articles that have subjects that are fuzzily
318 equal will be included."
319   :group 'gnus-thread
320   :type '(choice (const :tag "off" nil)
321                  (const fuzzy)
322                  (sexp :tag "on" t)))
323
324 (defcustom gnus-thread-indent-level 4
325   "*Number that says how much each sub-thread should be indented."
326   :group 'gnus-thread
327   :type 'integer)
328
329 (defcustom gnus-auto-extend-newsgroup t
330   "*If non-nil, extend newsgroup forward and backward when requested."
331   :group 'gnus-summary-choose
332   :type 'boolean)
333
334 (defcustom gnus-auto-select-first t
335   "If non-nil, select an article on group entry.
336 An article is selected automatically when entering a group
337 e.g. with \\<gnus-group-mode-map>\\[gnus-group-read-group], or via `gnus-summary-next-page' or
338 `gnus-summary-catchup-and-goto-next-group'.
339
340 Which article is selected is controlled by the variable
341 `gnus-auto-select-subject'.
342
343 If you want to prevent automatic selection of articles in some
344 newsgroups, set the variable to nil in `gnus-select-group-hook'."
345   ;; Commands include...
346   ;; \\<gnus-group-mode-map>\\[gnus-group-read-group]
347   ;; \\<gnus-summary-mode-map>\\[gnus-summary-next-page]
348   ;; \\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]
349   :group 'gnus-group-select
350   :type '(choice (const :tag "none" nil)
351                  (sexp :menu-tag "first" t)))
352
353 (defcustom gnus-auto-select-subject 'unseen-or-unread
354   "*Says what subject to place under point when entering a group.
355
356 This variable can either be the symbols `first' (place point on the
357 first subject), `unread' (place point on the subject line of the first
358 unread article), `best' (place point on the subject line of the
359 higest-scored article), `unseen' (place point on the subject line of
360 the first unseen article), `unseen-or-unread' (place point on the subject
361 line of the first unseen article or, if all article have been seen, on the
362 subject line of the first unread article), or a function to be called to
363 place point on some subject line."
364   :version "24.1"
365   :group 'gnus-group-select
366   :type '(choice (const best)
367                  (const unread)
368                  (const first)
369                  (const unseen)
370                  (const unseen-or-unread)))
371
372 (defcustom gnus-auto-select-next t
373   "*If non-nil, offer to go to the next group from the end of the previous.
374 If the value is t and the next newsgroup is empty, Gnus will exit
375 summary mode and go back to group mode.  If the value is neither nil
376 nor t, Gnus will select the following unread newsgroup.  In
377 particular, if the value is the symbol `quietly', the next unread
378 newsgroup will be selected without any confirmation, and if it is
379 `almost-quietly', the next group will be selected without any
380 confirmation if you are located on the last article in the group.
381 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
382 will go to the next group without confirmation."
383   :group 'gnus-summary-maneuvering
384   :type '(choice (const :tag "off" nil)
385                  (const quietly)
386                  (const almost-quietly)
387                  (const slightly-quietly)
388                  (sexp :menu-tag "on" t)))
389
390 (defcustom gnus-auto-select-same nil
391   "*If non-nil, select the next article with the same subject.
392 If there are no more articles with the same subject, go to
393 the first unread article."
394   :group 'gnus-summary-maneuvering
395   :type 'boolean)
396
397 (defcustom gnus-auto-select-on-ephemeral-exit 'next-noselect
398   "What article should be selected after exiting an ephemeral group.
399 Valid values include:
400
401 `next'
402   Select the next article.
403 `next-unread'
404   Select the next unread article.
405 `next-noselect'
406   Move the cursor to the next article.  This is the default.
407 `next-unread-noselect'
408   Move the cursor to the next unread article.
409
410 If it has any other value or there is no next (unread) article, the
411 article selected before entering to the ephemeral group will appear."
412   :version "23.1" ;; No Gnus
413   :group 'gnus-summary-maneuvering
414   :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
415                  (const next) (const next-unread)
416                  (const next-noselect) (const next-unread-noselect)
417                  (sexp :tag "other" :value nil)))
418
419 (defcustom gnus-auto-goto-ignores 'unfetched
420   "*Says how to handle unfetched articles when maneuvering.
421
422 This variable can either be the symbols nil (maneuver to any
423 article), `undownloaded' (maneuvering while unplugged ignores articles
424 that have not been fetched), `always-undownloaded' (maneuvering always
425 ignores articles that have not been fetched), `unfetched' (maneuvering
426 ignores articles whose headers have not been fetched).
427
428 NOTE: The list of unfetched articles will always be nil when plugged
429 and, when unplugged, a subset of the undownloaded article list."
430   :version "22.1"
431   :group 'gnus-summary-maneuvering
432   :type '(choice (const :tag "None" nil)
433                  (const :tag "Undownloaded when unplugged" undownloaded)
434                  (const :tag "Undownloaded" always-undownloaded)
435                  (const :tag "Unfetched" unfetched)))
436
437 (defcustom gnus-summary-check-current nil
438   "*If non-nil, consider the current article when moving.
439 The \"unread\" movement commands will stay on the same line if the
440 current article is unread."
441   :group 'gnus-summary-maneuvering
442   :type 'boolean)
443
444 (defcustom gnus-auto-center-summary 2
445   "*If non-nil, always center the current summary buffer.
446 In particular, if `vertical' do only vertical recentering.  If non-nil
447 and non-`vertical', do both horizontal and vertical recentering."
448   :group 'gnus-summary-maneuvering
449   :type '(choice (const :tag "none" nil)
450                  (const vertical)
451                  (integer :tag "height")
452                  (sexp :menu-tag "both" t)))
453
454 (defvar gnus-auto-center-group t
455   "*If non-nil, always center the group buffer.")
456
457 (defcustom gnus-show-all-headers nil
458   "*If non-nil, don't hide any headers."
459   :group 'gnus-article-hiding
460   :group 'gnus-article-headers
461   :type 'boolean)
462
463 (defcustom gnus-summary-ignore-duplicates nil
464   "*If non-nil, ignore articles with identical Message-ID headers."
465   :group 'gnus-summary
466   :type 'boolean)
467
468 (defcustom gnus-single-article-buffer nil
469   "*If non-nil, display all articles in the same buffer.
470 If nil, each group will get its own article buffer."
471   :version "24.1"
472   :group 'gnus-article-various
473   :type 'boolean)
474
475 (defcustom gnus-break-pages t
476   "*If non-nil, do page breaking on articles.
477 The page delimiter is specified by the `gnus-page-delimiter'
478 variable."
479   :group 'gnus-article-various
480   :type 'boolean)
481
482 (defcustom gnus-move-split-methods nil
483   "*Variable used to suggest where articles are to be moved to.
484 It uses the same syntax as the `gnus-split-methods' variable.
485 However, whereas `gnus-split-methods' specifies file names as targets,
486 this variable specifies group names."
487   :group 'gnus-summary-mail
488   :type '(repeat (choice (list :value (fun) function)
489                          (cons :value ("" "") regexp (repeat string))
490                          (sexp :value nil))))
491
492 (defcustom gnus-move-group-prefix-function 'gnus-group-real-prefix
493   "Function used to compute default prefix for article move/copy/etc prompts.
494 The function should take one argument, a group name, and return a
495 string with the suggested prefix."
496   :group 'gnus-summary-mail
497   :type 'function)
498
499 ;; FIXME: Although the custom type is `character' for the following variables,
500 ;; using multibyte characters (Latin-1, UTF-8) doesn't work.  -- rs
501
502 (defcustom gnus-unread-mark ?           ;Whitespace
503   "*Mark used for unread articles."
504   :group 'gnus-summary-marks
505   :type 'character)
506
507 (defcustom gnus-ticked-mark ?!
508   "*Mark used for ticked articles."
509   :group 'gnus-summary-marks
510   :type 'character)
511
512 (defcustom gnus-dormant-mark ??
513   "*Mark used for dormant articles."
514   :group 'gnus-summary-marks
515   :type 'character)
516
517 (defcustom gnus-del-mark ?r
518   "*Mark used for del'd articles."
519   :group 'gnus-summary-marks
520   :type 'character)
521
522 (defcustom gnus-read-mark ?R
523   "*Mark used for read articles."
524   :group 'gnus-summary-marks
525   :type 'character)
526
527 (defcustom gnus-expirable-mark ?E
528   "*Mark used for expirable articles."
529   :group 'gnus-summary-marks
530   :type 'character)
531
532 (defcustom gnus-killed-mark ?K
533   "*Mark used for killed articles."
534   :group 'gnus-summary-marks
535   :type 'character)
536
537 (defcustom gnus-spam-mark ?$
538   "*Mark used for spam articles."
539   :version "22.1"
540   :group 'gnus-summary-marks
541   :type 'character)
542
543 (defcustom gnus-kill-file-mark ?X
544   "*Mark used for articles killed by kill files."
545   :group 'gnus-summary-marks
546   :type 'character)
547
548 (defcustom gnus-low-score-mark ?Y
549   "*Mark used for articles with a low score."
550   :group 'gnus-summary-marks
551   :type 'character)
552
553 (defcustom gnus-catchup-mark ?C
554   "*Mark used for articles that are caught up."
555   :group 'gnus-summary-marks
556   :type 'character)
557
558 (defcustom gnus-replied-mark ?A
559   "*Mark used for articles that have been replied to."
560   :group 'gnus-summary-marks
561   :type 'character)
562
563 (defcustom gnus-forwarded-mark ?F
564   "*Mark used for articles that have been forwarded."
565   :version "22.1"
566   :group 'gnus-summary-marks
567   :type 'character)
568
569 (defcustom gnus-recent-mark ?N
570   "*Mark used for articles that are recent."
571   :version "22.1"
572   :group 'gnus-summary-marks
573   :type 'character)
574
575 (defcustom gnus-cached-mark ?*
576   "*Mark used for articles that are in the cache."
577   :group 'gnus-summary-marks
578   :type 'character)
579
580 (defcustom gnus-saved-mark ?S
581   "*Mark used for articles that have been saved."
582   :group 'gnus-summary-marks
583   :type 'character)
584
585 (defcustom gnus-unseen-mark ?.
586   "*Mark used for articles that haven't been seen."
587   :version "22.1"
588   :group 'gnus-summary-marks
589   :type 'character)
590
591 (defcustom gnus-no-mark ?               ;Whitespace
592   "*Mark used for articles that have no other secondary mark."
593   :version "22.1"
594   :group 'gnus-summary-marks
595   :type 'character)
596
597 (defcustom gnus-ancient-mark ?O
598   "*Mark used for ancient articles."
599   :group 'gnus-summary-marks
600   :type 'character)
601
602 (defcustom gnus-sparse-mark ?Q
603   "*Mark used for sparsely reffed articles."
604   :group 'gnus-summary-marks
605   :type 'character)
606
607 (defcustom gnus-canceled-mark ?G
608   "*Mark used for canceled articles."
609   :group 'gnus-summary-marks
610   :type 'character)
611
612 (defcustom gnus-duplicate-mark ?M
613   "*Mark used for duplicate articles."
614   :group 'gnus-summary-marks
615   :type 'character)
616
617 (defcustom gnus-undownloaded-mark ?-
618   "*Mark used for articles that weren't downloaded."
619   :version "22.1"
620   :group 'gnus-summary-marks
621   :type 'character)
622
623 (defcustom gnus-downloaded-mark ?+
624   "*Mark used for articles that were downloaded."
625   :group 'gnus-summary-marks
626   :type 'character)
627
628 (defcustom gnus-downloadable-mark ?%
629   "*Mark used for articles that are to be downloaded."
630   :group 'gnus-summary-marks
631   :type 'character)
632
633 (defcustom gnus-unsendable-mark ?=
634   "*Mark used for articles that won't be sent."
635   :group 'gnus-summary-marks
636   :type 'character)
637
638 (defcustom gnus-score-over-mark ?+
639   "*Score mark used for articles with high scores."
640   :group 'gnus-summary-marks
641   :type 'character)
642
643 (defcustom gnus-score-below-mark ?-
644   "*Score mark used for articles with low scores."
645   :group 'gnus-summary-marks
646   :type 'character)
647
648 (defcustom gnus-empty-thread-mark ?     ;Whitespace
649   "*There is no thread under the article."
650   :group 'gnus-summary-marks
651   :type 'character)
652
653 (defcustom gnus-not-empty-thread-mark ?=
654   "*There is a thread under the article."
655   :group 'gnus-summary-marks
656   :type 'character)
657
658 (defcustom gnus-view-pseudo-asynchronously nil
659   "*If non-nil, Gnus will view pseudo-articles asynchronously."
660   :group 'gnus-extract-view
661   :type 'boolean)
662
663 (defcustom gnus-auto-expirable-marks
664   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
665         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
666         gnus-duplicate-mark)
667   "*The list of marks converted into expiration if a group is auto-expirable."
668   :version "24.1"
669   :group 'gnus-summary
670   :type '(repeat character))
671
672 (defcustom gnus-inhibit-user-auto-expire t
673   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
674   :version "21.1"
675   :group 'gnus-summary
676   :type 'boolean)
677
678 (defcustom gnus-mark-copied-or-moved-articles-as-expirable nil
679   "If non-nil, mark articles copied or moved to auto-expire group as expirable.
680 If nil, the expirable marks will be unchanged except that the marks
681 will be removed when copying or moving articles to a group that has
682 not turned auto-expire on.  If non-nil, articles that have been read
683 will be marked as expirable when being copied or moved to a group in
684 which auto-expire is turned on."
685   :version "23.2"
686   :type 'boolean
687   :group 'gnus-summary-marks)
688
689 (defcustom gnus-view-pseudos nil
690   "*If `automatic', pseudo-articles will be viewed automatically.
691 If `not-confirm', pseudos will be viewed automatically, and the user
692 will not be asked to confirm the command."
693   :group 'gnus-extract-view
694   :type '(choice (const :tag "off" nil)
695                  (const automatic)
696                  (const not-confirm)))
697
698 (defcustom gnus-view-pseudos-separately t
699   "*If non-nil, one pseudo-article will be created for each file to be viewed.
700 If nil, all files that use the same viewing command will be given as a
701 list of parameters to that command."
702   :group 'gnus-extract-view
703   :type 'boolean)
704
705 (defcustom gnus-insert-pseudo-articles t
706   "*If non-nil, insert pseudo-articles when decoding articles."
707   :group 'gnus-extract-view
708   :type 'boolean)
709
710 (defcustom gnus-summary-dummy-line-format
711   "   %(:                             :%) %S\n"
712   "*The format specification for the dummy roots in the summary buffer.
713 It works along the same lines as a normal formatting string,
714 with some simple extensions.
715
716 %S  The subject
717
718 General format specifiers can also be used.
719 See `(gnus)Formatting Variables'."
720   :link '(custom-manual "(gnus)Formatting Variables")
721   :group 'gnus-threading
722   :type 'string)
723
724 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
725   "*The format specification for the summary mode line.
726 It works along the same lines as a normal formatting string,
727 with some simple extensions:
728
729 %G  Group name
730 %p  Unprefixed group name
731 %A  Current article number
732 %z  Current article score
733 %V  Gnus version
734 %U  Number of unread articles in the group
735 %e  Number of unselected articles in the group
736 %Z  A string with unread/unselected article counts
737 %g  Shortish group name
738 %S  Subject of the current article
739 %u  User-defined spec
740 %s  Current score file name
741 %d  Number of dormant articles
742 %r  Number of articles that have been marked as read in this session
743 %E  Number of articles expunged by the score files"
744   :group 'gnus-summary-format
745   :type 'string)
746
747 (defcustom gnus-list-identifiers nil
748   "Regexp that matches list identifiers to be removed from subject.
749 This can also be a list of regexps."
750   :version "21.1"
751   :group 'gnus-summary-format
752   :group 'gnus-article-hiding
753   :type '(choice (const :tag "none" nil)
754                  (regexp :value ".*")
755                  (repeat :value (".*") regexp)))
756
757 (defcustom gnus-summary-mark-below 0
758   "*Mark all articles with a score below this variable as read.
759 This variable is local to each summary buffer and usually set by the
760 score file."
761   :group 'gnus-score-default
762   :type 'integer)
763
764 (defun gnus-widget-reversible-match (widget value)
765   "Ignoring WIDGET, convert VALUE to internal form.
766 VALUE should have the form `FOO' or `(not FOO)', where FOO is an symbol."
767   ;; (debug value)
768   (or (symbolp value)
769       (and (listp value)
770            (eq (length value) 2)
771            (eq (nth 0 value) 'not)
772            (symbolp (nth 1 value)))))
773
774 (defun gnus-widget-reversible-to-internal (widget value)
775   "Ignoring WIDGET, convert VALUE to internal form.
776 VALUE should have the form `FOO' or `(not FOO)', where FOO is an atom.
777 FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t)."
778   ;; (debug value)
779   (if (atom value)
780       (list value nil)
781     (list (nth 1 value) t)))
782
783 (defun gnus-widget-reversible-to-external (widget value)
784   "Ignoring WIDGET, convert VALUE to external form.
785 VALUE should have the form `(FOO nil)' or `(FOO t)', where FOO is an atom.
786 \(FOO  nil) is converted to FOO and (FOO t) is converted to (not FOO)."
787   ;; (debug value)
788   (if (nth 1 value)
789       (list 'not (nth 0 value))
790     (nth 0 value)))
791
792 (define-widget 'gnus-widget-reversible 'group
793   "A `group' that convert values."
794   :match 'gnus-widget-reversible-match
795   :value-to-internal 'gnus-widget-reversible-to-internal
796   :value-to-external 'gnus-widget-reversible-to-external)
797
798 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
799   "*List of functions used for sorting articles in the summary buffer.
800
801 Each function takes two articles and returns non-nil if the first
802 article should be sorted before the other.  If you use more than one
803 function, the primary sort function should be the last.  You should
804 probably always include `gnus-article-sort-by-number' in the list of
805 sorting functions -- preferably first.  Also note that sorting by date
806 is often much slower than sorting by number, and the sorting order is
807 very similar.  (Sorting by date means sorting by the time the message
808 was sent, sorting by number means sorting by arrival time.)
809
810 Each item can also be a list `(not F)' where F is a function;
811 this reverses the sort order.
812
813 Ready-made functions include `gnus-article-sort-by-number',
814 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
815 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
816 and `gnus-article-sort-by-score'.
817
818 When threading is turned on, the variable `gnus-thread-sort-functions'
819 controls how articles are sorted."
820   :group 'gnus-summary-sort
821   :type '(repeat (gnus-widget-reversible
822                   (choice (function-item gnus-article-sort-by-number)
823                           (function-item gnus-article-sort-by-author)
824                           (function-item gnus-article-sort-by-subject)
825                           (function-item gnus-article-sort-by-date)
826                           (function-item gnus-article-sort-by-score)
827                           (function-item gnus-article-sort-by-random)
828                           (function :tag "other"))
829                   (boolean :tag "Reverse order"))))
830
831
832 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
833   "*List of functions used for sorting threads in the summary buffer.
834 By default, threads are sorted by article number.
835
836 Each function takes two threads and returns non-nil if the first
837 thread should be sorted before the other.  If you use more than one
838 function, the primary sort function should be the last.  You should
839 probably always include `gnus-thread-sort-by-number' in the list of
840 sorting functions -- preferably first.  Also note that sorting by date
841 is often much slower than sorting by number, and the sorting order is
842 very similar.  (Sorting by date means sorting by the time the message
843 was sent, sorting by number means sorting by arrival time.)
844
845 Each list item can also be a list `(not F)' where F is a
846 function; this specifies reversed sort order.
847
848 Ready-made functions include `gnus-thread-sort-by-number',
849 `gnus-thread-sort-by-author', `gnus-thread-sort-by-recipient'
850 `gnus-thread-sort-by-subject', `gnus-thread-sort-by-date',
851 `gnus-thread-sort-by-score', `gnus-thread-sort-by-most-recent-number',
852 `gnus-thread-sort-by-most-recent-date', `gnus-thread-sort-by-random',
853 and `gnus-thread-sort-by-total-score' (see
854 `gnus-thread-score-function').
855
856 When threading is turned off, the variable
857 `gnus-article-sort-functions' controls how articles are sorted."
858   :group 'gnus-summary-sort
859   :type '(repeat
860           (gnus-widget-reversible
861            (choice (function-item gnus-thread-sort-by-number)
862                    (function-item gnus-thread-sort-by-author)
863                    (function-item gnus-thread-sort-by-recipient)
864                    (function-item gnus-thread-sort-by-subject)
865                    (function-item gnus-thread-sort-by-date)
866                    (function-item gnus-thread-sort-by-score)
867                    (function-item gnus-thread-sort-by-most-recent-number)
868                    (function-item gnus-thread-sort-by-most-recent-date)
869                    (function-item gnus-thread-sort-by-random)
870                    (function-item gnus-thread-sort-by-total-score)
871                    (function :tag "other"))
872            (boolean :tag "Reverse order"))))
873
874 (defcustom gnus-thread-score-function '+
875   "*Function used for calculating the total score of a thread.
876
877 The function is called with the scores of the article and each
878 subthread and should then return the score of the thread.
879
880 Some functions you can use are `+', `max', or `min'."
881   :group 'gnus-summary-sort
882   :type 'function)
883
884 (defcustom gnus-summary-expunge-below nil
885   "All articles that have a score less than this variable will be expunged.
886 This variable is local to the summary buffers."
887   :group 'gnus-score-default
888   :type '(choice (const :tag "off" nil)
889                  integer))
890
891 (defcustom gnus-thread-expunge-below nil
892   "All threads that have a total score less than this variable will be expunged.
893 See `gnus-thread-score-function' for en explanation of what a
894 \"thread score\" is.
895
896 This variable is local to the summary buffers."
897   :group 'gnus-threading
898   :group 'gnus-score-default
899   :type '(choice (const :tag "off" nil)
900                  integer))
901
902 (defcustom gnus-summary-mode-hook nil
903   "*A hook for Gnus summary mode.
904 This hook is run before any variables are set in the summary buffer."
905   :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
906   :group 'gnus-summary-various
907   :type 'hook)
908
909 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
910 (when (featurep 'xemacs)
911   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
912   (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
913   (add-hook 'gnus-summary-mode-hook
914             'gnus-xmas-switch-horizontal-scrollbar-off))
915
916 (defcustom gnus-summary-menu-hook nil
917   "*Hook run after the creation of the summary mode menu."
918   :group 'gnus-summary-visual
919   :type 'hook)
920
921 (defcustom gnus-summary-exit-hook nil
922   "*A hook called on exit from the summary buffer.
923 It will be called with point in the group buffer."
924   :group 'gnus-summary-exit
925   :type 'hook)
926
927 (defcustom gnus-summary-prepare-hook nil
928   "*A hook called after the summary buffer has been generated.
929 If you want to modify the summary buffer, you can use this hook."
930   :group 'gnus-summary-various
931   :type 'hook)
932
933 (defcustom gnus-summary-prepared-hook nil
934   "*A hook called as the last thing after the summary buffer has been generated."
935   :group 'gnus-summary-various
936   :type 'hook)
937
938 (defcustom gnus-summary-generate-hook nil
939   "*A hook run just before generating the summary buffer.
940 This hook is commonly used to customize threading variables and the
941 like."
942   :group 'gnus-summary-various
943   :type 'hook)
944
945 (defcustom gnus-select-group-hook nil
946   "*A hook called when a newsgroup is selected.
947
948 If you'd like to simplify subjects like the
949 `gnus-summary-next-same-subject' command does, you can use the
950 following hook:
951
952  (add-hook gnus-select-group-hook
953            (lambda ()
954              (mapcar (lambda (header)
955                        (mail-header-set-subject
956                         header
957                         (gnus-simplify-subject
958                          (mail-header-subject header) 're-only)))
959                      gnus-newsgroup-headers)))"
960   :group 'gnus-group-select
961   :type 'hook)
962
963 (defcustom gnus-select-article-hook nil
964   "*A hook called when an article is selected."
965   :group 'gnus-summary-choose
966   :options '(gnus-agent-fetch-selected-article)
967   :type 'hook)
968
969 (defcustom gnus-visual-mark-article-hook
970   (list 'gnus-highlight-selected-summary)
971   "*Hook run after selecting an article in the summary buffer.
972 It is meant to be used for highlighting the article in some way.  It
973 is not run if `gnus-visual' is nil."
974   :group 'gnus-summary-visual
975   :type 'hook)
976
977 (defcustom gnus-parse-headers-hook nil
978   "*A hook called before parsing the headers."
979   :group 'gnus-various
980   :type 'hook)
981
982 (defcustom gnus-exit-group-hook nil
983   "*A hook called when exiting summary mode.
984 This hook is not called from the non-updating exit commands like `Q'."
985   :group 'gnus-various
986   :type 'hook)
987
988 (defcustom gnus-summary-update-hook nil
989   "*A hook called when a summary line is changed.
990 The hook will not be called if `gnus-visual' is nil.
991
992 The default function `gnus-summary-highlight-line' will
993 highlight the line according to the `gnus-summary-highlight'
994 variable."
995   :group 'gnus-summary-visual
996   :type 'hook)
997
998 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
999   "*A hook called when an article is selected for the first time.
1000 The hook is intended to mark an article as read (or unread)
1001 automatically when it is selected."
1002   :group 'gnus-summary-choose
1003   :type 'hook)
1004
1005 (defcustom gnus-group-no-more-groups-hook nil
1006   "*A hook run when returning to group mode having no more (unread) groups."
1007   :group 'gnus-group-select
1008   :type 'hook)
1009
1010 (defcustom gnus-ps-print-hook nil
1011   "*A hook run before ps-printing something from Gnus."
1012   :group 'gnus-summary
1013   :type 'hook)
1014
1015 (defcustom gnus-summary-article-move-hook nil
1016   "*A hook called after an article is moved, copied, respooled, or crossposted."
1017   :version "22.1"
1018   :group 'gnus-summary
1019   :type 'hook)
1020
1021 (defcustom gnus-summary-article-delete-hook nil
1022   "*A hook called after an article is deleted."
1023   :version "22.1"
1024   :group 'gnus-summary
1025   :type 'hook)
1026
1027 (defcustom gnus-summary-article-expire-hook nil
1028   "*A hook called after an article is expired."
1029   :version "22.1"
1030   :group 'gnus-summary
1031   :type 'hook)
1032
1033 (defcustom gnus-summary-display-arrow
1034   (and (fboundp 'display-graphic-p)
1035        (display-graphic-p))
1036   "*If non-nil, display an arrow highlighting the current article."
1037   :version "22.1"
1038   :group 'gnus-summary
1039   :type 'boolean)
1040
1041 (defcustom gnus-summary-selected-face 'gnus-summary-selected
1042   "Face used for highlighting the current article in the summary buffer."
1043   :group 'gnus-summary-visual
1044   :type 'face)
1045
1046 (defvar gnus-tmp-downloaded nil)
1047
1048 (defcustom gnus-summary-highlight
1049   '(((eq mark gnus-canceled-mark)
1050      . gnus-summary-cancelled)
1051     ((and uncached (> score default-high))
1052      . gnus-summary-high-undownloaded)
1053     ((and uncached (< score default-low))
1054      . gnus-summary-low-undownloaded)
1055     (uncached
1056      . gnus-summary-normal-undownloaded)
1057     ((and (> score default-high)
1058           (or (eq mark gnus-dormant-mark)
1059               (eq mark gnus-ticked-mark)))
1060      . gnus-summary-high-ticked)
1061     ((and (< score default-low)
1062           (or (eq mark gnus-dormant-mark)
1063               (eq mark gnus-ticked-mark)))
1064      . gnus-summary-low-ticked)
1065     ((or (eq mark gnus-dormant-mark)
1066          (eq mark gnus-ticked-mark))
1067      . gnus-summary-normal-ticked)
1068     ((and (> score default-high) (eq mark gnus-ancient-mark))
1069      . gnus-summary-high-ancient)
1070     ((and (< score default-low) (eq mark gnus-ancient-mark))
1071      . gnus-summary-low-ancient)
1072     ((eq mark gnus-ancient-mark)
1073      . gnus-summary-normal-ancient)
1074     ((and (> score default-high) (eq mark gnus-unread-mark))
1075      . gnus-summary-high-unread)
1076     ((and (< score default-low) (eq mark gnus-unread-mark))
1077      . gnus-summary-low-unread)
1078     ((eq mark gnus-unread-mark)
1079      . gnus-summary-normal-unread)
1080     ((> score default-high)
1081      . gnus-summary-high-read)
1082     ((< score default-low)
1083      . gnus-summary-low-read)
1084     (t
1085      . gnus-summary-normal-read))
1086   "*Controls the highlighting of summary buffer lines.
1087
1088 A list of (FORM . FACE) pairs.  When deciding how a particular
1089 summary line should be displayed, each form is evaluated.  The content
1090 of the face field after the first true form is used.  You can change
1091 how those summary lines are displayed, by editing the face field.
1092
1093 You can use the following variables in the FORM field.
1094
1095 score:        The article's score.
1096 default:      The default article score.
1097 default-high: The default score for high scored articles.
1098 default-low:  The default score for low scored articles.
1099 below:        The score below which articles are automatically marked as read.
1100 mark:         The article's mark.
1101 uncached:     Non-nil if the article is uncached."
1102   :group 'gnus-summary-visual
1103   :type '(repeat (cons (sexp :tag "Form" nil)
1104                        face)))
1105 (put 'gnus-summary-highlight 'risky-local-variable t)
1106
1107 (defcustom gnus-alter-header-function nil
1108   "Function called to allow alteration of article header structures.
1109 The function is called with one parameter, the article header vector,
1110 which it may alter in any way."
1111   :type '(choice (const :tag "None" nil)
1112                  function)
1113   :group 'gnus-summary)
1114
1115 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
1116   "Function used to decode a string with encoded words.")
1117
1118 (defvar gnus-decode-encoded-address-function
1119   'mail-decode-encoded-address-string
1120   "Function used to decode addresses with encoded words.")
1121
1122 (defcustom gnus-extra-headers '(To Newsgroups)
1123   "*Extra headers to parse."
1124   :version "21.1"
1125   :group 'gnus-summary
1126   :type '(repeat symbol))
1127
1128 (defcustom gnus-ignored-from-addresses
1129   (and user-mail-address
1130        (not (string= user-mail-address ""))
1131        (regexp-quote user-mail-address))
1132   "*From headers that may be suppressed in favor of To headers.
1133 This can be a regexp or a list of regexps."
1134   :version "21.1"
1135   :group 'gnus-summary
1136   :type '(choice regexp
1137                  (repeat :tag "Regexp List" regexp)))
1138
1139 (defsubst gnus-ignored-from-addresses ()
1140   (gmm-regexp-concat gnus-ignored-from-addresses))
1141
1142 (defcustom gnus-summary-to-prefix "-> "
1143   "*String prefixed to the To field in the summary line when
1144 using `gnus-ignored-from-addresses'."
1145   :version "22.1"
1146   :group 'gnus-summary
1147   :type 'string)
1148
1149 (defcustom gnus-summary-newsgroup-prefix "=> "
1150   "*String prefixed to the Newsgroup field in the summary
1151 line when using `gnus-ignored-from-addresses'."
1152   :version "22.1"
1153   :group 'gnus-summary
1154   :type 'string)
1155
1156 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
1157   "List of charsets that should be ignored.
1158 When these charsets are used in the \"charset\" parameter, the
1159 default charset will be used instead."
1160   :version "21.1"
1161   :type '(repeat symbol)
1162   :group 'gnus-charset)
1163
1164 (defcustom gnus-newsgroup-maximum-articles nil
1165   "The maximum number of articles a newsgroup.
1166 If this is a number, old articles in a newsgroup exceeding this number
1167 are silently ignored.  If it is nil, no article is ignored.  Note that
1168 setting this variable to a number might prevent you from reading very
1169 old articles."
1170   :group 'gnus-group-select
1171   :version "22.2"
1172   :type '(choice (const :tag "No limit" nil)
1173                  integer))
1174
1175 (gnus-define-group-parameter
1176  ignored-charsets
1177  :type list
1178  :function-document
1179  "Return the ignored charsets of GROUP."
1180  :variable gnus-group-ignored-charsets-alist
1181  :variable-default
1182  '(("alt\\.chinese\\.text" iso-8859-1))
1183  :variable-document
1184  "Alist of regexps (to match group names) and charsets that should be ignored.
1185 When these charsets are used in the \"charset\" parameter, the
1186 default charset will be used instead."
1187  :variable-group gnus-charset
1188  :variable-type '(repeat (cons (regexp :tag "Group")
1189                                (repeat symbol)))
1190  :parameter-type '(choice :tag "Ignored charsets"
1191                           :value nil
1192                           (repeat (symbol)))
1193  :parameter-document       "\
1194 List of charsets that should be ignored.
1195
1196 When these charsets are used in the \"charset\" parameter, the
1197 default charset will be used instead.")
1198
1199 (defcustom gnus-group-highlight-words-alist nil
1200   "Alist of group regexps and highlight regexps.
1201 This variable uses the same syntax as `gnus-emphasis-alist'."
1202   :version "21.1"
1203   :type '(repeat (cons (regexp :tag "Group")
1204                        (repeat (list (regexp :tag "Highlight regexp")
1205                                      (number :tag "Group for entire word" 0)
1206                                      (number :tag "Group for displayed part" 0)
1207                                      (symbol :tag "Face"
1208                                              gnus-emphasis-highlight-words)))))
1209   :group 'gnus-summary-visual)
1210
1211 (defcustom gnus-summary-show-article-charset-alist
1212   nil
1213   "Alist of number and charset.
1214 The article will be shown with the charset corresponding to the
1215 numbered argument.
1216 For example: ((1 . cn-gb-2312) (2 . big5))."
1217   :version "21.1"
1218   :type '(repeat (cons (number :tag "Argument" 1)
1219                        (symbol :tag "Charset")))
1220   :group 'gnus-charset)
1221
1222 (defcustom gnus-preserve-marks t
1223   "Whether marks are preserved when moving, copying and respooling messages."
1224   :version "21.1"
1225   :type 'boolean
1226   :group 'gnus-summary-marks)
1227
1228 (defcustom gnus-propagate-marks t
1229   "If non-nil, do not propagate marks to the backends."
1230   :version "23.1" ;; No Gnus
1231   :type 'boolean
1232   :group 'gnus-summary-marks)
1233
1234 (defcustom gnus-alter-articles-to-read-function nil
1235   "Function to be called to alter the list of articles to be selected."
1236   :type '(choice (const nil) function)
1237   :group 'gnus-summary)
1238
1239 (defcustom gnus-orphan-score nil
1240   "*All orphans get this score added.  Set in the score file."
1241   :group 'gnus-score-default
1242   :type '(choice (const nil)
1243                  integer))
1244
1245 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1246   "*A regexp to match MIME parts when saving multiple parts of a
1247 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1248 This regexp will be used by default when prompting the user for which
1249 type of files to save."
1250   :group 'gnus-summary
1251   :type 'regexp)
1252
1253 (defcustom gnus-read-all-available-headers nil
1254   "Whether Gnus should parse all headers made available to it.
1255 This is mostly relevant for slow back ends where the user may
1256 wish to widen the summary buffer to include all headers
1257 that were fetched."
1258   :version "22.1"
1259   :group 'gnus-summary
1260   :type '(choice boolean regexp))
1261
1262 (defcustom gnus-summary-pipe-output-default-command nil
1263   "Command (and optional arguments) used to pipe article to subprocess.
1264 This will be used as the default command if it is non-nil.  The value
1265 will be updated if you modify it when executing the command
1266 `gnus-summary-pipe-output' or the function `gnus-summary-save-in-pipe'."
1267   :version "23.1" ;; No Gnus
1268   :group 'gnus-summary
1269   :type '(radio (const :tag "None" nil) (string :tag "Command")))
1270
1271 (defcustom gnus-summary-muttprint-program "muttprint"
1272   "Command (and optional arguments) used to run Muttprint.
1273 The value will be updated if you modify it when executing the command
1274 `gnus-summary-muttprint'."
1275   :version "22.1"
1276   :group 'gnus-summary
1277   :type 'string)
1278
1279 (defcustom gnus-article-loose-mime t
1280   "If non-nil, don't require MIME-Version header.
1281 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1282 supply the MIME-Version header or deliberately strip it from the mail.
1283 If non-nil (the default), Gnus will treat some articles as MIME
1284 even if the MIME-Version header is missing."
1285   :version "22.1"
1286   :type 'boolean
1287   :group 'gnus-article-mime)
1288
1289 (defcustom gnus-article-emulate-mime t
1290   "If non-nil, use MIME emulation for uuencode and the like.
1291 This means that Gnus will search message bodies for text that look
1292 like uuencoded bits, yEncoded bits, and so on, and present that using
1293 the normal Gnus MIME machinery."
1294   :version "22.1"
1295   :type 'boolean
1296   :group 'gnus-article-mime)
1297
1298 ;;; Internal variables
1299
1300 (defvar gnus-summary-display-cache nil)
1301 (defvar gnus-article-mime-handles nil)
1302 (defvar gnus-article-decoded-p nil)
1303 (defvar gnus-article-charset nil)
1304 (defvar gnus-article-ignored-charsets nil)
1305 (defvar gnus-scores-exclude-files nil)
1306 (defvar gnus-page-broken nil)
1307
1308 (defvar gnus-original-article nil)
1309 (defvar gnus-article-internal-prepare-hook nil)
1310 (defvar gnus-newsgroup-process-stack nil)
1311
1312 (defvar gnus-thread-indent-array nil)
1313 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1314 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1315   "Function called to sort the articles within a thread after it has been gathered together.")
1316
1317 (defvar gnus-summary-save-parts-type-history nil)
1318 (defvar gnus-summary-save-parts-last-directory mm-default-directory)
1319
1320 ;; Avoid highlighting in kill files.
1321 (defvar gnus-summary-inhibit-highlight nil)
1322 (defvar gnus-newsgroup-selected-overlay nil)
1323 (defvar gnus-inhibit-limiting nil)
1324 (defvar gnus-newsgroup-adaptive-score-file nil)
1325 (defvar gnus-current-score-file nil)
1326 (defvar gnus-current-move-group nil)
1327 (defvar gnus-current-copy-group nil)
1328 (defvar gnus-current-crosspost-group nil)
1329 (defvar gnus-newsgroup-display nil)
1330
1331 (defvar gnus-newsgroup-dependencies nil)
1332 (defvar gnus-newsgroup-adaptive nil)
1333 (defvar gnus-summary-display-article-function nil)
1334 (defvar gnus-summary-highlight-line-function nil
1335   "Function called after highlighting a summary line.")
1336
1337 (defvar gnus-summary-line-format-alist
1338   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1339     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1340     (?s gnus-tmp-subject-or-nil ?s)
1341     (?n gnus-tmp-name ?s)
1342     (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
1343         ?s)
1344     (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
1345             gnus-tmp-from) ?s)
1346     (?F gnus-tmp-from ?s)
1347     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1348     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1349     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1350     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1351     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1352     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1353     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1354     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1355     (?L gnus-tmp-lines ?s)
1356     (?O gnus-tmp-downloaded ?c)
1357     (?I gnus-tmp-indentation ?s)
1358     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1359     (?R gnus-tmp-replied ?c)
1360     (?\[ gnus-tmp-opening-bracket ?c)
1361     (?\] gnus-tmp-closing-bracket ?c)
1362     (?\> (make-string gnus-tmp-level ? ) ?s)
1363     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1364     (?i gnus-tmp-score ?d)
1365     (?z gnus-tmp-score-char ?c)
1366     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1367     (?U gnus-tmp-unread ?c)
1368     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1369         ?s)
1370     (?t (gnus-summary-number-of-articles-in-thread
1371          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1372         ?d)
1373     (?e (gnus-summary-number-of-articles-in-thread
1374          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1375         ?c)
1376     (?u gnus-tmp-user-defined ?s)
1377     (?P (gnus-pick-line-number) ?d)
1378     (?B gnus-tmp-thread-tree-header-string ?s)
1379     (user-date (gnus-user-date
1380                 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1381   "An alist of format specifications that can appear in summary lines.
1382 These are paired with what variables they correspond with, along with
1383 the type of the variable (string, integer, character, etc).")
1384
1385 (defvar gnus-summary-dummy-line-format-alist
1386   `((?S gnus-tmp-subject ?s)
1387     (?N gnus-tmp-number ?d)
1388     (?u gnus-tmp-user-defined ?s)))
1389
1390 (defvar gnus-summary-mode-line-format-alist
1391   `((?G gnus-tmp-group-name ?s)
1392     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1393     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1394     (?A gnus-tmp-article-number ?d)
1395     (?Z gnus-tmp-unread-and-unselected ?s)
1396     (?V gnus-version ?s)
1397     (?U gnus-tmp-unread-and-unticked ?d)
1398     (?S gnus-tmp-subject ?s)
1399     (?e gnus-tmp-unselected ?d)
1400     (?u gnus-tmp-user-defined ?s)
1401     (?d (length gnus-newsgroup-dormant) ?d)
1402     (?t (length gnus-newsgroup-marked) ?d)
1403     (?h (length gnus-newsgroup-spam-marked) ?d)
1404     (?r (length gnus-newsgroup-reads) ?d)
1405     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1406     (?E gnus-newsgroup-expunged-tally ?d)
1407     (?s (gnus-current-score-file-nondirectory) ?s)))
1408
1409 ;; This is here rather than in gnus-art for compilation reasons.
1410 (defvar gnus-article-mode-line-format-alist
1411   (nconc '((?w (gnus-article-wash-status) ?s)
1412            (?m (gnus-article-mime-part-status) ?s))
1413          gnus-summary-mode-line-format-alist))
1414
1415 (defvar gnus-last-search-regexp nil
1416   "Default regexp for article search command.")
1417
1418 (defvar gnus-last-shell-command nil
1419   "Default shell command on article.")
1420
1421 (defvar gnus-newsgroup-agentized nil
1422   "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1423 (defvar gnus-newsgroup-begin nil)
1424 (defvar gnus-newsgroup-end nil)
1425 (defvar gnus-newsgroup-last-rmail nil)
1426 (defvar gnus-newsgroup-last-mail nil)
1427 (defvar gnus-newsgroup-last-folder nil)
1428 (defvar gnus-newsgroup-last-file nil)
1429 (defvar gnus-newsgroup-last-directory nil)
1430 (defvar gnus-newsgroup-auto-expire nil)
1431 (defvar gnus-newsgroup-active nil)
1432
1433 (defvar gnus-newsgroup-data nil)
1434 (defvar gnus-newsgroup-data-reverse nil)
1435 (defvar gnus-newsgroup-limit nil)
1436 (defvar gnus-newsgroup-limits nil)
1437 (defvar gnus-summary-use-undownloaded-faces nil)
1438
1439 (defvar gnus-newsgroup-unreads nil
1440   "Sorted list of unread articles in the current newsgroup.")
1441
1442 (defvar gnus-newsgroup-unselected nil
1443   "Sorted list of unselected unread articles in the current newsgroup.")
1444
1445 (defvar gnus-newsgroup-reads nil
1446   "Alist of read articles and article marks in the current newsgroup.")
1447
1448 (defvar gnus-newsgroup-expunged-tally nil)
1449
1450 (defvar gnus-newsgroup-marked nil
1451   "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1452
1453 (defvar gnus-newsgroup-spam-marked nil
1454   "List of ranges of articles that have been marked as spam.")
1455
1456 (defvar gnus-newsgroup-killed nil
1457   "List of ranges of articles that have been through the scoring process.")
1458
1459 (defvar gnus-newsgroup-cached nil
1460   "Sorted list of articles that come from the article cache.")
1461
1462 (defvar gnus-newsgroup-saved nil
1463   "List of articles that have been saved.")
1464
1465 (defvar gnus-newsgroup-kill-headers nil)
1466
1467 (defvar gnus-newsgroup-replied nil
1468   "List of articles that have been replied to in the current newsgroup.")
1469
1470 (defvar gnus-newsgroup-forwarded nil
1471   "List of articles that have been forwarded in the current newsgroup.")
1472
1473 (defvar gnus-newsgroup-recent nil
1474   "List of articles that have are recent in the current newsgroup.")
1475
1476 (defvar gnus-newsgroup-expirable nil
1477   "Sorted list of articles in the current newsgroup that can be expired.")
1478
1479 (defvar gnus-newsgroup-processable nil
1480   "List of articles in the current newsgroup that can be processed.")
1481
1482 (defvar gnus-newsgroup-downloadable nil
1483   "Sorted list of articles in the current newsgroup that can be processed.")
1484
1485 (defvar gnus-newsgroup-unfetched nil
1486   "Sorted list of articles in the current newsgroup whose headers have
1487 not been fetched into the agent.
1488
1489 This list will always be a subset of gnus-newsgroup-undownloaded.")
1490
1491 (defvar gnus-newsgroup-undownloaded nil
1492   "List of articles in the current newsgroup that haven't been downloaded.")
1493
1494 (defvar gnus-newsgroup-unsendable nil
1495   "List of articles in the current newsgroup that won't be sent.")
1496
1497 (defvar gnus-newsgroup-bookmarks nil
1498   "List of articles in the current newsgroup that have bookmarks.")
1499
1500 (defvar gnus-newsgroup-dormant nil
1501   "Sorted list of dormant articles in the current newsgroup.")
1502
1503 (defvar gnus-newsgroup-unseen nil
1504   "List of unseen articles in the current newsgroup.")
1505
1506 (defvar gnus-newsgroup-seen nil
1507   "Range of seen articles in the current newsgroup.")
1508
1509 (defvar gnus-newsgroup-articles nil
1510   "List of articles in the current newsgroup.")
1511
1512 (defvar gnus-newsgroup-scored nil
1513   "List of scored articles in the current newsgroup.")
1514
1515 (defvar gnus-newsgroup-headers nil
1516   "List of article headers in the current newsgroup.")
1517
1518 (defvar gnus-newsgroup-threads nil)
1519
1520 (defvar gnus-newsgroup-prepared nil
1521   "Whether the current group has been prepared properly.")
1522
1523 (defvar gnus-newsgroup-ancient nil
1524   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1525
1526 (defvar gnus-newsgroup-sparse nil)
1527
1528 (defvar gnus-current-article nil)
1529 (defvar gnus-article-current nil)
1530 (defvar gnus-current-headers nil)
1531 (defvar gnus-have-all-headers nil)
1532 (defvar gnus-last-article nil)
1533 (defvar gnus-newsgroup-history nil)
1534 (defvar gnus-newsgroup-charset nil)
1535 (defvar gnus-newsgroup-ephemeral-charset nil)
1536 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1537
1538 (defvar gnus-article-before-search nil)
1539
1540 (defvar gnus-summary-local-variables
1541   '(gnus-newsgroup-name
1542     gnus-newsgroup-begin gnus-newsgroup-end
1543     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1544     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1545     gnus-newsgroup-last-directory
1546     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1547     gnus-newsgroup-unselected gnus-newsgroup-marked
1548     gnus-newsgroup-spam-marked
1549     gnus-newsgroup-reads gnus-newsgroup-saved
1550     gnus-newsgroup-replied gnus-newsgroup-forwarded
1551     gnus-newsgroup-recent
1552     gnus-newsgroup-expirable
1553     gnus-newsgroup-processable gnus-newsgroup-killed
1554     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1555     gnus-newsgroup-unfetched
1556     gnus-newsgroup-unsendable gnus-newsgroup-unseen
1557     gnus-newsgroup-seen gnus-newsgroup-articles
1558     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1559     gnus-newsgroup-headers gnus-newsgroup-threads
1560     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1561     gnus-current-article gnus-current-headers gnus-have-all-headers
1562     gnus-last-article gnus-article-internal-prepare-hook
1563     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1564     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1565     gnus-thread-expunge-below
1566     gnus-score-alist gnus-current-score-file
1567     (gnus-summary-expunge-below . global)
1568     (gnus-summary-mark-below . global)
1569     (gnus-orphan-score . global)
1570     gnus-newsgroup-active gnus-scores-exclude-files
1571     gnus-newsgroup-history gnus-newsgroup-ancient
1572     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1573     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1574     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1575     (gnus-newsgroup-expunged-tally . 0)
1576     gnus-cache-removable-articles gnus-newsgroup-cached
1577     gnus-newsgroup-data gnus-newsgroup-data-reverse
1578     gnus-newsgroup-limit gnus-newsgroup-limits
1579     gnus-newsgroup-charset gnus-newsgroup-display
1580     gnus-summary-use-undownloaded-faces)
1581   "Variables that are buffer-local to the summary buffers.")
1582
1583 (defvar gnus-newsgroup-variables nil
1584   "A list of variables that have separate values in different newsgroups.
1585 A list of newsgroup (summary buffer) local variables, or cons of
1586 variables and their default expressions to be evalled (when the default
1587 values are not nil), that should be made global while the summary buffer
1588 is active.
1589
1590 Note: The default expressions will be evaluated (using function `eval')
1591 before assignment to the local variable rather than just assigned to it.
1592 If the default expression is the symbol `global', that symbol will not
1593 be evaluated but the global value of the local variable will be used
1594 instead.
1595
1596 These variables can be used to set variables in the group parameters
1597 while still allowing them to affect operations done in other buffers.
1598 For example:
1599
1600 \(setq gnus-newsgroup-variables
1601      '(message-use-followup-to
1602        (gnus-visible-headers .
1603          \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1604 ")
1605
1606 (eval-when-compile
1607   ;; Bind features so that require will believe that gnus-sum has
1608   ;; already been loaded (avoids infinite recursion)
1609   (let ((features (cons 'gnus-sum features)))
1610     (require 'gnus-art)))
1611
1612 ;; MIME stuff.
1613
1614 (defvar gnus-decode-encoded-word-methods
1615   '(mail-decode-encoded-word-string)
1616   "List of methods used to decode encoded words.
1617
1618 This variable is a list of FUNCTION or (REGEXP . FUNCTION).  If item
1619 is FUNCTION, FUNCTION will be apply to all newsgroups.  If item is a
1620 \(REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
1621 whose names match REGEXP.
1622
1623 For example:
1624 \((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
1625  mail-decode-encoded-word-string
1626  (\"chinese\" . rfc1843-decode-string))")
1627
1628 (defvar gnus-decode-encoded-word-methods-cache nil)
1629
1630 (defun gnus-multi-decode-encoded-word-string (string)
1631   "Apply the functions from `gnus-encoded-word-methods' that match."
1632   (unless (and gnus-decode-encoded-word-methods-cache
1633                (eq gnus-newsgroup-name
1634                    (car gnus-decode-encoded-word-methods-cache)))
1635     (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
1636     (dolist (method gnus-decode-encoded-word-methods)
1637       (if (symbolp method)
1638           (nconc gnus-decode-encoded-word-methods-cache (list method))
1639         (if (and gnus-newsgroup-name
1640                  (string-match (car method) gnus-newsgroup-name))
1641             (nconc gnus-decode-encoded-word-methods-cache
1642                    (list (cdr method)))))))
1643   (dolist (method (cdr gnus-decode-encoded-word-methods-cache) string)
1644     (setq string (funcall method string))))
1645
1646 ;; Subject simplification.
1647
1648 (defun gnus-simplify-whitespace (str)
1649   "Remove excessive whitespace from STR."
1650   ;; Multiple spaces.
1651   (while (string-match "[ \t][ \t]+" str)
1652     (setq str (concat (substring str 0 (match-beginning 0))
1653                         " "
1654                         (substring str (match-end 0)))))
1655   ;; Leading spaces.
1656   (when (string-match "^[ \t]+" str)
1657     (setq str (substring str (match-end 0))))
1658   ;; Trailing spaces.
1659   (when (string-match "[ \t]+$" str)
1660     (setq str (substring str 0 (match-beginning 0))))
1661   str)
1662
1663 (defun gnus-simplify-all-whitespace (str)
1664   "Remove all whitespace from STR."
1665   (while (string-match "[ \t\n]+" str)
1666     (setq str (replace-match "" nil nil str)))
1667   str)
1668
1669 (defsubst gnus-simplify-subject-re (subject)
1670   "Remove \"Re:\" from subject lines."
1671   (if (string-match message-subject-re-regexp subject)
1672       (substring subject (match-end 0))
1673     subject))
1674
1675 (defun gnus-simplify-subject (subject &optional re-only)
1676   "Remove `Re:' and words in parentheses.
1677 If RE-ONLY is non-nil, strip leading `Re:'s only."
1678   (let ((case-fold-search t))           ;Ignore case.
1679     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1680     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1681       (setq subject (substring subject (match-end 0))))
1682     ;; Remove uninteresting prefixes.
1683     (when (and (not re-only)
1684                gnus-simplify-ignored-prefixes
1685                (string-match gnus-simplify-ignored-prefixes subject))
1686       (setq subject (substring subject (match-end 0))))
1687     ;; Remove words in parentheses from end.
1688     (unless re-only
1689       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1690         (setq subject (substring subject 0 (match-beginning 0)))))
1691     ;; Return subject string.
1692     subject))
1693
1694 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1695 ;; all whitespace.
1696 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1697   (goto-char (point-min))
1698   (while (re-search-forward regexp nil t)
1699     (replace-match (or newtext ""))))
1700
1701 (defun gnus-simplify-buffer-fuzzy ()
1702   "Simplify string in the buffer fuzzily.
1703 The string in the accessible portion of the current buffer is simplified.
1704 It is assumed to be a single-line subject.
1705 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1706 matter is removed.  Additional things can be deleted by setting
1707 `gnus-simplify-subject-fuzzy-regexp'."
1708   (let ((case-fold-search t)
1709         (modified-tick))
1710     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1711
1712     (while (not (eq modified-tick (buffer-modified-tick)))
1713       (setq modified-tick (buffer-modified-tick))
1714       (cond
1715        ((listp gnus-simplify-subject-fuzzy-regexp)
1716         (mapc 'gnus-simplify-buffer-fuzzy-step
1717               gnus-simplify-subject-fuzzy-regexp))
1718        (gnus-simplify-subject-fuzzy-regexp
1719         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1720       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1721       (gnus-simplify-buffer-fuzzy-step
1722        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1723       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1724
1725     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1726     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1727     (gnus-simplify-buffer-fuzzy-step " $")
1728     (gnus-simplify-buffer-fuzzy-step "^ +")))
1729
1730 (defun gnus-simplify-subject-fuzzy (subject)
1731   "Simplify a subject string fuzzily.
1732 See `gnus-simplify-buffer-fuzzy' for details."
1733   (save-excursion
1734     (gnus-set-work-buffer)
1735     (let ((case-fold-search t))
1736       ;; Remove uninteresting prefixes.
1737       (when (and gnus-simplify-ignored-prefixes
1738                  (string-match gnus-simplify-ignored-prefixes subject))
1739         (setq subject (substring subject (match-end 0))))
1740       (insert subject)
1741       (inline (gnus-simplify-buffer-fuzzy))
1742       (buffer-string))))
1743
1744 (defsubst gnus-simplify-subject-fully (subject)
1745   "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1746   (cond
1747    (gnus-simplify-subject-functions
1748     (gnus-map-function gnus-simplify-subject-functions subject))
1749    ((null gnus-summary-gather-subject-limit)
1750     (gnus-simplify-subject-re subject))
1751    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1752     (gnus-simplify-subject-fuzzy subject))
1753    ((numberp gnus-summary-gather-subject-limit)
1754     (truncate-string-to-width (gnus-simplify-subject-re subject)
1755                               gnus-summary-gather-subject-limit))
1756    (t
1757     subject)))
1758
1759 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1760   "Check whether two subjects are equal.
1761 If optional argument SIMPLE-FIRST is t, first argument is already
1762 simplified."
1763   (cond
1764    ((null simple-first)
1765     (equal (gnus-simplify-subject-fully s1)
1766            (gnus-simplify-subject-fully s2)))
1767    (t
1768     (equal s1
1769            (gnus-simplify-subject-fully s2)))))
1770
1771 (defun gnus-summary-bubble-group ()
1772   "Increase the score of the current group.
1773 This is a handy function to add to `gnus-summary-exit-hook' to
1774 increase the score of each group you read."
1775   (gnus-group-add-score gnus-newsgroup-name))
1776
1777 \f
1778 ;;;
1779 ;;; Gnus summary mode
1780 ;;;
1781
1782 (put 'gnus-summary-mode 'mode-class 'special)
1783
1784 (defvar gnus-article-commands-menu)
1785
1786 ;; Non-orthogonal keys
1787
1788 (gnus-define-keys gnus-summary-mode-map
1789   " " gnus-summary-next-page
1790   "\177" gnus-summary-prev-page
1791   [delete] gnus-summary-prev-page
1792   [backspace] gnus-summary-prev-page
1793   "\r" gnus-summary-scroll-up
1794   "\M-\r" gnus-summary-scroll-down
1795   "n" gnus-summary-next-unread-article
1796   "p" gnus-summary-prev-unread-article
1797   "N" gnus-summary-next-article
1798   "P" gnus-summary-prev-article
1799   "\M-\C-n" gnus-summary-next-same-subject
1800   "\M-\C-p" gnus-summary-prev-same-subject
1801   "\M-n" gnus-summary-next-unread-subject
1802   "\M-p" gnus-summary-prev-unread-subject
1803   "." gnus-summary-first-unread-article
1804   "," gnus-summary-best-unread-article
1805   "\M-s" gnus-summary-search-article-forward
1806   "\M-r" gnus-summary-search-article-backward
1807   "\M-S" gnus-summary-repeat-search-article-forward
1808   "\M-R" gnus-summary-repeat-search-article-backward
1809   "<" gnus-summary-beginning-of-article
1810   ">" gnus-summary-end-of-article
1811   "j" gnus-summary-goto-article
1812   "^" gnus-summary-refer-parent-article
1813   "\M-^" gnus-summary-refer-article
1814   "u" gnus-summary-tick-article-forward
1815   "!" gnus-summary-tick-article-forward
1816   "U" gnus-summary-tick-article-backward
1817   "d" gnus-summary-mark-as-read-forward
1818   "D" gnus-summary-mark-as-read-backward
1819   "E" gnus-summary-mark-as-expirable
1820   "\M-u" gnus-summary-clear-mark-forward
1821   "\M-U" gnus-summary-clear-mark-backward
1822   "k" gnus-summary-kill-same-subject-and-select
1823   "\C-k" gnus-summary-kill-same-subject
1824   "\M-\C-k" gnus-summary-kill-thread
1825   "\M-\C-l" gnus-summary-lower-thread
1826   "e" gnus-summary-edit-article
1827   "#" gnus-summary-mark-as-processable
1828   "\M-#" gnus-summary-unmark-as-processable
1829   "\M-\C-t" gnus-summary-toggle-threads
1830   "\M-\C-s" gnus-summary-show-thread
1831   "\M-\C-h" gnus-summary-hide-thread
1832   "\M-\C-f" gnus-summary-next-thread
1833   "\M-\C-b" gnus-summary-prev-thread
1834   [(meta down)] gnus-summary-next-thread
1835   [(meta up)] gnus-summary-prev-thread
1836   "\M-\C-u" gnus-summary-up-thread
1837   "\M-\C-d" gnus-summary-down-thread
1838   "&" gnus-summary-execute-command
1839   "c" gnus-summary-catchup-and-exit
1840   "\C-w" gnus-summary-mark-region-as-read
1841   "\C-t" gnus-summary-toggle-truncation
1842   "?" gnus-summary-mark-as-dormant
1843   "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1844   "\C-c\C-s\C-n" gnus-summary-sort-by-number
1845   "\C-c\C-s\C-m\C-n" gnus-summary-sort-by-most-recent-number
1846   "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1847   "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1848   "\C-c\C-s\C-a" gnus-summary-sort-by-author
1849   "\C-c\C-s\C-t" gnus-summary-sort-by-recipient
1850   "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1851   "\C-c\C-s\C-d" gnus-summary-sort-by-date
1852   "\C-c\C-s\C-m\C-d" gnus-summary-sort-by-most-recent-date
1853   "\C-c\C-s\C-i" gnus-summary-sort-by-score
1854   "\C-c\C-s\C-o" gnus-summary-sort-by-original
1855   "\C-c\C-s\C-r" gnus-summary-sort-by-random
1856   "=" gnus-summary-expand-window
1857   "\C-x\C-s" gnus-summary-reselect-current-group
1858   "\M-g" gnus-summary-rescan-group
1859   "\C-c\C-r" gnus-summary-caesar-message
1860   "f" gnus-summary-followup
1861   "F" gnus-summary-followup-with-original
1862   "C" gnus-summary-cancel-article
1863   "r" gnus-summary-reply
1864   "R" gnus-summary-reply-with-original
1865   "\C-c\C-f" gnus-summary-mail-forward
1866   "o" gnus-summary-save-article
1867   "\C-o" gnus-summary-save-article-mail
1868   "|" gnus-summary-pipe-output
1869   "\M-k" gnus-summary-edit-local-kill
1870   "\M-K" gnus-summary-edit-global-kill
1871   ;; "V" gnus-version
1872   "\C-c\C-d" gnus-summary-describe-group
1873   "q" gnus-summary-exit
1874   "Q" gnus-summary-exit-no-update
1875   "\C-c\C-i" gnus-info-find-node
1876   gnus-mouse-2 gnus-mouse-pick-article
1877   [follow-link] mouse-face
1878   "m" gnus-summary-mail-other-window
1879   "a" gnus-summary-post-news
1880   "x" gnus-summary-limit-to-unread
1881   "s" gnus-summary-isearch-article
1882   "t" gnus-summary-toggle-header
1883   "g" gnus-summary-show-article
1884   "l" gnus-summary-goto-last-article
1885   "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1886   "\C-d" gnus-summary-enter-digest-group
1887   "\M-\C-d" gnus-summary-read-document
1888   "\M-\C-e" gnus-summary-edit-parameters
1889   "\M-\C-a" gnus-summary-customize-parameters
1890   "\C-c\C-b" gnus-bug
1891   "*" gnus-cache-enter-article
1892   "\M-*" gnus-cache-remove-article
1893   "\M-&" gnus-summary-universal-argument
1894   "\C-l" gnus-recenter
1895   "I" gnus-summary-increase-score
1896   "L" gnus-summary-lower-score
1897   "\M-i" gnus-symbolic-argument
1898   "h" gnus-summary-select-article-buffer
1899
1900   "b" gnus-article-view-part
1901   "\M-t" gnus-summary-toggle-display-buttonized
1902
1903   "V" gnus-summary-score-map
1904   "X" gnus-uu-extract-map
1905   "S" gnus-summary-send-map)
1906
1907 ;; Sort of orthogonal keymap
1908 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1909   "t" gnus-summary-tick-article-forward
1910   "!" gnus-summary-tick-article-forward
1911   "d" gnus-summary-mark-as-read-forward
1912   "r" gnus-summary-mark-as-read-forward
1913   "c" gnus-summary-clear-mark-forward
1914   " " gnus-summary-clear-mark-forward
1915   "e" gnus-summary-mark-as-expirable
1916   "x" gnus-summary-mark-as-expirable
1917   "?" gnus-summary-mark-as-dormant
1918   "b" gnus-summary-set-bookmark
1919   "B" gnus-summary-remove-bookmark
1920   "#" gnus-summary-mark-as-processable
1921   "\M-#" gnus-summary-unmark-as-processable
1922   "S" gnus-summary-limit-include-expunged
1923   "C" gnus-summary-catchup
1924   "H" gnus-summary-catchup-to-here
1925   "h" gnus-summary-catchup-from-here
1926   "\C-c" gnus-summary-catchup-all
1927   "k" gnus-summary-kill-same-subject-and-select
1928   "K" gnus-summary-kill-same-subject
1929   "P" gnus-uu-mark-map)
1930
1931 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1932   "c" gnus-summary-clear-above
1933   "u" gnus-summary-tick-above
1934   "m" gnus-summary-mark-above
1935   "k" gnus-summary-kill-below)
1936
1937 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1938   "/" gnus-summary-limit-to-subject
1939   "n" gnus-summary-limit-to-articles
1940   "b" gnus-summary-limit-to-bodies
1941   "h" gnus-summary-limit-to-headers
1942   "w" gnus-summary-pop-limit
1943   "s" gnus-summary-limit-to-subject
1944   "a" gnus-summary-limit-to-author
1945   "u" gnus-summary-limit-to-unread
1946   "m" gnus-summary-limit-to-marks
1947   "M" gnus-summary-limit-exclude-marks
1948   "v" gnus-summary-limit-to-score
1949   "*" gnus-summary-limit-include-cached
1950   "D" gnus-summary-limit-include-dormant
1951   "T" gnus-summary-limit-include-thread
1952   "d" gnus-summary-limit-exclude-dormant
1953   "t" gnus-summary-limit-to-age
1954   "." gnus-summary-limit-to-unseen
1955   "x" gnus-summary-limit-to-extra
1956   "p" gnus-summary-limit-to-display-predicate
1957   "E" gnus-summary-limit-include-expunged
1958   "c" gnus-summary-limit-exclude-childless-dormant
1959   "C" gnus-summary-limit-mark-excluded-as-read
1960   "o" gnus-summary-insert-old-articles
1961   "N" gnus-summary-insert-new-articles
1962   "S" gnus-summary-limit-to-singletons
1963   "r" gnus-summary-limit-to-replied
1964   "R" gnus-summary-limit-to-recipient
1965   "A" gnus-summary-limit-to-address)
1966
1967 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1968   "n" gnus-summary-next-unread-article
1969   "p" gnus-summary-prev-unread-article
1970   "N" gnus-summary-next-article
1971   "P" gnus-summary-prev-article
1972   "\C-n" gnus-summary-next-same-subject
1973   "\C-p" gnus-summary-prev-same-subject
1974   "\M-n" gnus-summary-next-unread-subject
1975   "\M-p" gnus-summary-prev-unread-subject
1976   "f" gnus-summary-first-unread-article
1977   "b" gnus-summary-best-unread-article
1978   "j" gnus-summary-goto-article
1979   "g" gnus-summary-goto-subject
1980   "l" gnus-summary-goto-last-article
1981   "o" gnus-summary-pop-article)
1982
1983 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1984   "k" gnus-summary-kill-thread
1985   "E" gnus-summary-expire-thread
1986   "l" gnus-summary-lower-thread
1987   "i" gnus-summary-raise-thread
1988   "T" gnus-summary-toggle-threads
1989   "t" gnus-summary-rethread-current
1990   "^" gnus-summary-reparent-thread
1991   "\M-^" gnus-summary-reparent-children
1992   "s" gnus-summary-show-thread
1993   "S" gnus-summary-show-all-threads
1994   "h" gnus-summary-hide-thread
1995   "H" gnus-summary-hide-all-threads
1996   "n" gnus-summary-next-thread
1997   "p" gnus-summary-prev-thread
1998   "u" gnus-summary-up-thread
1999   "o" gnus-summary-top-thread
2000   "d" gnus-summary-down-thread
2001   "#" gnus-uu-mark-thread
2002   "\M-#" gnus-uu-unmark-thread)
2003
2004 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
2005   "g" gnus-summary-prepare
2006   "c" gnus-summary-insert-cached-articles
2007   "d" gnus-summary-insert-dormant-articles
2008   "t" gnus-summary-insert-ticked-articles)
2009
2010 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
2011   "c" gnus-summary-catchup-and-exit
2012   "C" gnus-summary-catchup-all-and-exit
2013   "E" gnus-summary-exit-no-update
2014   "Q" gnus-summary-exit
2015   "Z" gnus-summary-exit
2016   "n" gnus-summary-catchup-and-goto-next-group
2017   "p" gnus-summary-catchup-and-goto-prev-group
2018   "R" gnus-summary-reselect-current-group
2019   "G" gnus-summary-rescan-group
2020   "N" gnus-summary-next-group
2021   "s" gnus-summary-save-newsrc
2022   "P" gnus-summary-prev-group)
2023
2024 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
2025   " " gnus-summary-next-page
2026   "n" gnus-summary-next-page
2027   "\177" gnus-summary-prev-page
2028   [delete] gnus-summary-prev-page
2029   "p" gnus-summary-prev-page
2030   "\r" gnus-summary-scroll-up
2031   "\M-\r" gnus-summary-scroll-down
2032   "<" gnus-summary-beginning-of-article
2033   ">" gnus-summary-end-of-article
2034   "b" gnus-summary-beginning-of-article
2035   "e" gnus-summary-end-of-article
2036   "^" gnus-summary-refer-parent-article
2037   "r" gnus-summary-refer-parent-article
2038   "D" gnus-summary-enter-digest-group
2039   "R" gnus-summary-refer-references
2040   "T" gnus-summary-refer-thread
2041   "g" gnus-summary-show-article
2042   "s" gnus-summary-isearch-article
2043   "P" gnus-summary-print-article
2044   "S" gnus-sticky-article
2045   "M" gnus-mailing-list-insinuate
2046   "t" gnus-article-babel)
2047
2048 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
2049   "b" gnus-article-add-buttons
2050   "B" gnus-article-add-buttons-to-head
2051   "o" gnus-article-treat-overstrike
2052   "e" gnus-article-emphasize
2053   "w" gnus-article-fill-cited-article
2054   "Q" gnus-article-fill-long-lines
2055   "L" gnus-article-toggle-truncate-lines
2056   "C" gnus-article-capitalize-sentences
2057   "c" gnus-article-remove-cr
2058   "q" gnus-article-de-quoted-unreadable
2059   "6" gnus-article-de-base64-unreadable
2060   "Z" gnus-article-decode-HZ
2061   "A" gnus-article-treat-ansi-sequences
2062   "h" gnus-article-wash-html
2063   "u" gnus-article-unsplit-urls
2064   "s" gnus-summary-force-verify-and-decrypt
2065   "f" gnus-article-display-x-face
2066   "l" gnus-summary-stop-page-breaking
2067   "r" gnus-summary-caesar-message
2068   "m" gnus-summary-morse-message
2069   "t" gnus-summary-toggle-header
2070   "g" gnus-treat-smiley
2071   "v" gnus-summary-verbose-headers
2072   "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
2073   "p" gnus-article-verify-x-pgp-sig
2074   "d" gnus-article-treat-dumbquotes
2075   "i" gnus-summary-idna-message)
2076
2077 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
2078   ;; mnemonic: deuglif*Y*
2079   "u" gnus-article-outlook-unwrap-lines
2080   "a" gnus-article-outlook-repair-attribution
2081   "c" gnus-article-outlook-rearrange-citation
2082   "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
2083
2084 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
2085   "a" gnus-article-hide
2086   "h" gnus-article-hide-headers
2087   "b" gnus-article-hide-boring-headers
2088   "s" gnus-article-hide-signature
2089   "c" gnus-article-hide-citation
2090   "C" gnus-article-hide-citation-in-followups
2091   "l" gnus-article-hide-list-identifiers
2092   "B" gnus-article-strip-banner
2093   "P" gnus-article-hide-pem
2094   "\C-c" gnus-article-hide-citation-maybe)
2095
2096 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
2097   "a" gnus-article-highlight
2098   "h" gnus-article-highlight-headers
2099   "c" gnus-article-highlight-citation
2100   "s" gnus-article-highlight-signature)
2101
2102 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
2103   "f" gnus-article-treat-fold-headers
2104   "u" gnus-article-treat-unfold-headers
2105   "n" gnus-article-treat-fold-newsgroups)
2106
2107 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
2108   "x" gnus-article-display-x-face
2109   "d" gnus-article-display-face
2110   "s" gnus-treat-smiley
2111   "D" gnus-article-remove-images
2112   "W" gnus-html-show-images
2113   "f" gnus-treat-from-picon
2114   "m" gnus-treat-mail-picon
2115   "n" gnus-treat-newsgroups-picon)
2116
2117 (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
2118   "w" gnus-article-decode-mime-words
2119   "c" gnus-article-decode-charset
2120   "v" gnus-mime-view-all-parts
2121   "b" gnus-article-view-part)
2122
2123 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
2124   "z" gnus-article-date-ut
2125   "u" gnus-article-date-ut
2126   "l" gnus-article-date-local
2127   "p" gnus-article-date-english
2128   "e" gnus-article-date-lapsed
2129   "o" gnus-article-date-original
2130   "i" gnus-article-date-iso8601
2131   "s" gnus-article-date-user)
2132
2133 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
2134   "t" gnus-article-remove-trailing-blank-lines
2135   "l" gnus-article-strip-leading-blank-lines
2136   "m" gnus-article-strip-multiple-blank-lines
2137   "a" gnus-article-strip-blank-lines
2138   "A" gnus-article-strip-all-blank-lines
2139   "s" gnus-article-strip-leading-space
2140   "e" gnus-article-strip-trailing-space
2141   "w" gnus-article-remove-leading-whitespace)
2142
2143 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
2144   "v" gnus-version
2145   "f" gnus-summary-fetch-faq
2146   "d" gnus-summary-describe-group
2147   "h" gnus-summary-describe-briefly
2148   "i" gnus-info-find-node
2149   "c" gnus-group-fetch-charter
2150   "C" gnus-group-fetch-control)
2151
2152 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
2153   "e" gnus-summary-expire-articles
2154   "\M-\C-e" gnus-summary-expire-articles-now
2155   "\177" gnus-summary-delete-article
2156   [delete] gnus-summary-delete-article
2157   [backspace] gnus-summary-delete-article
2158   "m" gnus-summary-move-article
2159   "r" gnus-summary-respool-article
2160   "w" gnus-summary-edit-article
2161   "c" gnus-summary-copy-article
2162   "B" gnus-summary-crosspost-article
2163   "q" gnus-summary-respool-query
2164   "t" gnus-summary-respool-trace
2165   "i" gnus-summary-import-article
2166   "I" gnus-summary-create-article
2167   "p" gnus-summary-article-posted-p)
2168
2169 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
2170   "o" gnus-summary-save-article
2171   "m" gnus-summary-save-article-mail
2172   "F" gnus-summary-write-article-file
2173   "r" gnus-summary-save-article-rmail
2174   "f" gnus-summary-save-article-file
2175   "b" gnus-summary-save-article-body-file
2176   "B" gnus-summary-write-article-body-file
2177   "h" gnus-summary-save-article-folder
2178   "v" gnus-summary-save-article-vm
2179   "p" gnus-summary-pipe-output
2180   "P" gnus-summary-muttprint)
2181
2182 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
2183   "b" gnus-summary-display-buttonized
2184   "m" gnus-summary-repair-multipart
2185   "v" gnus-article-view-part
2186   "o" gnus-article-save-part
2187   "O" gnus-article-save-part-and-strip
2188   "r" gnus-article-replace-part
2189   "d" gnus-article-delete-part
2190   "t" gnus-article-view-part-as-type
2191   "j" gnus-article-jump-to-part
2192   "c" gnus-article-copy-part
2193   "C" gnus-article-view-part-as-charset
2194   "e" gnus-article-view-part-externally
2195   "H" gnus-article-browse-html-article
2196   "E" gnus-article-encrypt-body
2197   "i" gnus-article-inline-part
2198   "|" gnus-article-pipe-part)
2199
2200 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
2201   "p" gnus-summary-mark-as-processable
2202   "u" gnus-summary-unmark-as-processable
2203   "U" gnus-summary-unmark-all-processable
2204   "v" gnus-uu-mark-over
2205   "s" gnus-uu-mark-series
2206   "r" gnus-uu-mark-region
2207   "g" gnus-uu-unmark-region
2208   "R" gnus-uu-mark-by-regexp
2209   "G" gnus-uu-unmark-by-regexp
2210   "t" gnus-uu-mark-thread
2211   "T" gnus-uu-unmark-thread
2212   "a" gnus-uu-mark-all
2213   "b" gnus-uu-mark-buffer
2214   "S" gnus-uu-mark-sparse
2215   "k" gnus-summary-kill-process-mark
2216   "y" gnus-summary-yank-process-mark
2217   "w" gnus-summary-save-process-mark
2218   "i" gnus-uu-invert-processable)
2219
2220 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2221   ;;"x" gnus-uu-extract-any
2222   "m" gnus-summary-save-parts
2223   "u" gnus-uu-decode-uu
2224   "U" gnus-uu-decode-uu-and-save
2225   "s" gnus-uu-decode-unshar
2226   "S" gnus-uu-decode-unshar-and-save
2227   "o" gnus-uu-decode-save
2228   "O" gnus-uu-decode-save
2229   "b" gnus-uu-decode-binhex
2230   "B" gnus-uu-decode-binhex
2231   "Y" gnus-uu-decode-yenc
2232   "p" gnus-uu-decode-postscript
2233   "P" gnus-uu-decode-postscript-and-save)
2234
2235 (gnus-define-keys
2236     (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2237   "u" gnus-uu-decode-uu-view
2238   "U" gnus-uu-decode-uu-and-save-view
2239   "s" gnus-uu-decode-unshar-view
2240   "S" gnus-uu-decode-unshar-and-save-view
2241   "o" gnus-uu-decode-save-view
2242   "O" gnus-uu-decode-save-view
2243   "b" gnus-uu-decode-binhex-view
2244   "B" gnus-uu-decode-binhex-view
2245   "p" gnus-uu-decode-postscript-view
2246   "P" gnus-uu-decode-postscript-and-save-view)
2247
2248 (defvar gnus-article-post-menu nil)
2249
2250 (defconst gnus-summary-menu-maxlen 20)
2251
2252 (defun gnus-summary-menu-split (menu)
2253   ;; If we have lots of elements, divide them into groups of 20
2254   ;; and make a pane (or submenu) for each one.
2255   (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2256       (let ((menu menu) sublists next
2257             (i 1))
2258         (while menu
2259           ;; Pull off the next gnus-summary-menu-maxlen elements
2260           ;; and make them the next element of sublist.
2261           (setq next (nthcdr gnus-summary-menu-maxlen menu))
2262           (if next
2263               (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2264                       nil))
2265           (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2266                                              (aref (car (last menu)) 0)) menu)
2267                                sublists))
2268           (setq i (1+ i))
2269           (setq menu next))
2270         (nreverse sublists))
2271     ;; Few elements--put them all in one pane.
2272     menu))
2273
2274 (defun gnus-summary-make-menu-bar ()
2275   (gnus-turn-off-edit-menu 'summary)
2276
2277   (unless (boundp 'gnus-summary-misc-menu)
2278
2279     (easy-menu-define
2280       gnus-summary-kill-menu gnus-summary-mode-map ""
2281       (cons
2282        "Score"
2283        (nconc
2284         (list
2285          ["Customize" gnus-score-customize t])
2286         (gnus-make-score-map 'increase)
2287         (gnus-make-score-map 'lower)
2288         '(("Mark"
2289            ["Kill below" gnus-summary-kill-below t]
2290            ["Mark above" gnus-summary-mark-above t]
2291            ["Tick above" gnus-summary-tick-above t]
2292            ["Clear above" gnus-summary-clear-above t])
2293           ["Current score" gnus-summary-current-score t]
2294           ["Set score" gnus-summary-set-score t]
2295           ["Switch current score file..." gnus-score-change-score-file t]
2296           ["Set mark below..." gnus-score-set-mark-below t]
2297           ["Set expunge below..." gnus-score-set-expunge-below t]
2298           ["Edit current score file" gnus-score-edit-current-scores t]
2299           ["Edit score file..." gnus-score-edit-file t]
2300           ["Trace score" gnus-score-find-trace t]
2301           ["Find words" gnus-score-find-favourite-words t]
2302           ["Rescore buffer" gnus-summary-rescore t]
2303           ["Increase score..." gnus-summary-increase-score t]
2304           ["Lower score..." gnus-summary-lower-score t]))))
2305
2306     ;; Define both the Article menu in the summary buffer and the
2307     ;; equivalent Commands menu in the article buffer here for
2308     ;; consistency.
2309     (let ((innards
2310            `(("Hide"
2311               ["All" gnus-article-hide t]
2312               ["Headers" gnus-article-hide-headers t]
2313               ["Signature" gnus-article-hide-signature t]
2314               ["Citation" gnus-article-hide-citation t]
2315               ["List identifiers" gnus-article-hide-list-identifiers t]
2316               ["Banner" gnus-article-strip-banner t]
2317               ["Boring headers" gnus-article-hide-boring-headers t])
2318              ("Highlight"
2319               ["All" gnus-article-highlight t]
2320               ["Headers" gnus-article-highlight-headers t]
2321               ["Signature" gnus-article-highlight-signature t]
2322               ["Citation" gnus-article-highlight-citation t])
2323              ("MIME"
2324               ["Words" gnus-article-decode-mime-words t]
2325               ["Charset" gnus-article-decode-charset t]
2326               ["QP" gnus-article-de-quoted-unreadable t]
2327               ["Base64" gnus-article-de-base64-unreadable t]
2328               ["View MIME buttons" gnus-summary-display-buttonized t]
2329               ["View all" gnus-mime-view-all-parts t]
2330               ["Verify and Decrypt" gnus-summary-force-verify-and-decrypt t]
2331               ["Encrypt body" gnus-article-encrypt-body
2332                :active (not (gnus-group-read-only-p))
2333                ,@(if (featurep 'xemacs) nil
2334                    '(:help "Encrypt the message body on disk"))]
2335               ["Extract all parts..." gnus-summary-save-parts t]
2336               ("Multipart"
2337                ["Repair multipart" gnus-summary-repair-multipart t]
2338                ["Pipe part..." gnus-article-pipe-part t]
2339                ["Inline part" gnus-article-inline-part t]
2340                ["View part as type..." gnus-article-view-part-as-type t]
2341                ["Encrypt body" gnus-article-encrypt-body
2342                 :active (not (gnus-group-read-only-p))
2343                ,@(if (featurep 'xemacs) nil
2344                    '(:help "Encrypt the message body on disk"))]
2345                ["View part externally" gnus-article-view-part-externally t]
2346                ["View HTML parts in browser" gnus-article-browse-html-article t]
2347                ["View part with charset..." gnus-article-view-part-as-charset t]
2348                ["Copy part" gnus-article-copy-part t]
2349                ["Save part..." gnus-article-save-part t]
2350                ["View part" gnus-article-view-part t]))
2351              ("Date"
2352               ["Local" gnus-article-date-local t]
2353               ["ISO8601" gnus-article-date-iso8601 t]
2354               ["UT" gnus-article-date-ut t]
2355               ["Original" gnus-article-date-original t]
2356               ["Lapsed" gnus-article-date-lapsed t]
2357               ["User-defined" gnus-article-date-user t])
2358              ("Display"
2359               ["Remove images" gnus-article-remove-images t]
2360               ["Toggle smiley" gnus-treat-smiley t]
2361               ["Show X-Face" gnus-article-display-x-face t]
2362               ["Show picons in From" gnus-treat-from-picon t]
2363               ["Show picons in mail headers" gnus-treat-mail-picon t]
2364               ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2365               ("View as different encoding"
2366                ,@(gnus-summary-menu-split
2367                   (mapcar
2368                    (lambda (cs)
2369                      ;; Since easymenu under Emacs doesn't allow
2370                      ;; lambda forms for menu commands, we should
2371                      ;; provide intern'ed function symbols.
2372                      (let ((command (intern (format "\
2373 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2374                        (fset command
2375                              `(lambda ()
2376                                 (interactive)
2377                                 (let ((gnus-summary-show-article-charset-alist
2378                                        '((1 . ,cs))))
2379                                   (gnus-summary-show-article 1))))
2380                        `[,(symbol-name cs) ,command t]))
2381                    (sort (if (fboundp 'coding-system-list)
2382                              (coding-system-list)
2383                            (mapcar 'car mm-mime-mule-charset-alist))
2384                          'string<)))))
2385              ("Washing"
2386               ("Remove Blanks"
2387                ["Leading" gnus-article-strip-leading-blank-lines t]
2388                ["Multiple" gnus-article-strip-multiple-blank-lines t]
2389                ["Trailing" gnus-article-remove-trailing-blank-lines t]
2390                ["All of the above" gnus-article-strip-blank-lines t]
2391                ["All" gnus-article-strip-all-blank-lines t]
2392                ["Leading space" gnus-article-strip-leading-space t]
2393                ["Trailing space" gnus-article-strip-trailing-space t]
2394                ["Leading space in headers"
2395                 gnus-article-remove-leading-whitespace t])
2396               ["Overstrike" gnus-article-treat-overstrike t]
2397               ["Dumb quotes" gnus-article-treat-dumbquotes t]
2398               ["Emphasis" gnus-article-emphasize t]
2399               ["Word wrap" gnus-article-fill-cited-article t]
2400               ["Fill long lines" gnus-article-fill-long-lines t]
2401               ["Toggle truncate long lines" gnus-article-toggle-truncate-lines t]
2402               ["Capitalize sentences" gnus-article-capitalize-sentences t]
2403               ["Remove CR" gnus-article-remove-cr t]
2404               ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
2405               ["Base64" gnus-article-de-base64-unreadable t]
2406               ["Rot 13" gnus-summary-caesar-message
2407                ,@(if (featurep 'xemacs) '(t)
2408                    '(:help "\"Caesar rotate\" article by 13"))]
2409               ["De-IDNA" gnus-summary-idna-message t]
2410               ["Morse decode" gnus-summary-morse-message t]
2411               ["Unix pipe..." gnus-summary-pipe-message t]
2412               ["Add buttons" gnus-article-add-buttons t]
2413               ["Add buttons to head" gnus-article-add-buttons-to-head t]
2414               ["Stop page breaking" gnus-summary-stop-page-breaking t]
2415               ["Verbose header" gnus-summary-verbose-headers t]
2416               ["Toggle header" gnus-summary-toggle-header t]
2417               ["Unfold headers" gnus-article-treat-unfold-headers t]
2418               ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2419               ["Html" gnus-article-wash-html t]
2420               ["Unsplit URLs" gnus-article-unsplit-urls t]
2421               ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2422               ["Decode HZ" gnus-article-decode-HZ t]
2423               ["ANSI sequences" gnus-article-treat-ansi-sequences t]
2424               ("(Outlook) Deuglify"
2425                ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2426                ["Repair attribution" gnus-article-outlook-repair-attribution t]
2427                ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2428                ["Full (Outlook) deuglify"
2429                 gnus-article-outlook-deuglify-article t])
2430               )
2431              ("Output"
2432               ["Save in default format..." gnus-summary-save-article
2433                ,@(if (featurep 'xemacs) '(t)
2434                    '(:help "Save article using default method"))]
2435               ["Save in file..." gnus-summary-save-article-file
2436                ,@(if (featurep 'xemacs) '(t)
2437                    '(:help "Save article in file"))]
2438               ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2439               ["Save in MH folder..." gnus-summary-save-article-folder t]
2440               ["Save in VM folder..." gnus-summary-save-article-vm t]
2441               ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2442               ["Save body in file..." gnus-summary-save-article-body-file t]
2443               ["Pipe through a filter..." gnus-summary-pipe-output t]
2444               ["Print with Muttprint..." gnus-summary-muttprint t]
2445               ["Print" gnus-summary-print-article
2446                ,@(if (featurep 'xemacs) '(t)
2447                    '(:help "Generate and print a PostScript image"))])
2448              ("Copy, move,... (Backend)"
2449               ,@(if (featurep 'xemacs) nil
2450                   '(:help "Copying, moving, expiring articles..."))
2451               ["Respool article..." gnus-summary-respool-article t]
2452               ["Move article..." gnus-summary-move-article
2453                (gnus-check-backend-function
2454                 'request-move-article gnus-newsgroup-name)]
2455               ["Copy article..." gnus-summary-copy-article t]
2456               ["Crosspost article..." gnus-summary-crosspost-article
2457                (gnus-check-backend-function
2458                 'request-replace-article gnus-newsgroup-name)]
2459               ["Import file..." gnus-summary-import-article
2460                (gnus-check-backend-function
2461                 'request-accept-article gnus-newsgroup-name)]
2462               ["Create article..." gnus-summary-create-article
2463                (gnus-check-backend-function
2464                 'request-accept-article gnus-newsgroup-name)]
2465               ["Check if posted" gnus-summary-article-posted-p t]
2466               ["Edit article" gnus-summary-edit-article
2467                (not (gnus-group-read-only-p))]
2468               ["Delete article" gnus-summary-delete-article
2469                (gnus-check-backend-function
2470                 'request-expire-articles gnus-newsgroup-name)]
2471               ["Query respool" gnus-summary-respool-query t]
2472               ["Trace respool" gnus-summary-respool-trace t]
2473               ["Delete expirable articles" gnus-summary-expire-articles-now
2474                (gnus-check-backend-function
2475                 'request-expire-articles gnus-newsgroup-name)])
2476              ("Extract"
2477               ["Uudecode" gnus-uu-decode-uu
2478                ,@(if (featurep 'xemacs) '(t)
2479                    '(:help "Decode uuencoded article(s)"))]
2480               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2481               ["Unshar" gnus-uu-decode-unshar t]
2482               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2483               ["Save" gnus-uu-decode-save t]
2484               ["Binhex" gnus-uu-decode-binhex t]
2485               ["Postscript" gnus-uu-decode-postscript t]
2486               ["All MIME parts" gnus-summary-save-parts t])
2487              ("Cache"
2488               ["Enter article" gnus-cache-enter-article t]
2489               ["Remove article" gnus-cache-remove-article t])
2490              ["Translate" gnus-article-babel t]
2491              ["Select article buffer" gnus-summary-select-article-buffer t]
2492              ["Make article buffer sticky" gnus-sticky-article t]
2493              ["Enter digest buffer" gnus-summary-enter-digest-group t]
2494              ["Isearch article..." gnus-summary-isearch-article t]
2495              ["Beginning of the article" gnus-summary-beginning-of-article t]
2496              ["End of the article" gnus-summary-end-of-article t]
2497              ["Fetch parent of article" gnus-summary-refer-parent-article t]
2498              ["Fetch referenced articles" gnus-summary-refer-references t]
2499              ["Fetch current thread" gnus-summary-refer-thread t]
2500              ["Fetch article with id..." gnus-summary-refer-article t]
2501              ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2502              ["Redisplay" gnus-summary-show-article t]
2503              ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2504       (easy-menu-define
2505         gnus-summary-article-menu gnus-summary-mode-map ""
2506         (cons "Article" innards))
2507
2508       (if (not (keymapp gnus-summary-article-menu))
2509           (easy-menu-define
2510             gnus-article-commands-menu gnus-article-mode-map ""
2511             (cons "Commands" innards))
2512         ;; in Emacs, don't share menu.
2513         (setq gnus-article-commands-menu
2514               (copy-keymap gnus-summary-article-menu))
2515         (define-key gnus-article-mode-map [menu-bar commands]
2516           (cons "Commands" gnus-article-commands-menu))))
2517
2518     (easy-menu-define
2519       gnus-summary-thread-menu gnus-summary-mode-map ""
2520       '("Threads"
2521         ["Find all messages in thread" gnus-summary-refer-thread t]
2522         ["Toggle threading" gnus-summary-toggle-threads t]
2523         ["Hide threads" gnus-summary-hide-all-threads t]
2524         ["Show threads" gnus-summary-show-all-threads t]
2525         ["Hide thread" gnus-summary-hide-thread t]
2526         ["Show thread" gnus-summary-show-thread t]
2527         ["Go to next thread" gnus-summary-next-thread t]
2528         ["Go to previous thread" gnus-summary-prev-thread t]
2529         ["Go down thread" gnus-summary-down-thread t]
2530         ["Go up thread" gnus-summary-up-thread t]
2531         ["Top of thread" gnus-summary-top-thread t]
2532         ["Mark thread as read" gnus-summary-kill-thread t]
2533         ["Mark thread as expired" gnus-summary-expire-thread t]
2534         ["Lower thread score" gnus-summary-lower-thread t]
2535         ["Raise thread score" gnus-summary-raise-thread t]
2536         ["Rethread current" gnus-summary-rethread-current t]))
2537
2538     (easy-menu-define
2539       gnus-summary-post-menu gnus-summary-mode-map ""
2540       `("Post"
2541         ["Send a message (mail or news)" gnus-summary-post-news
2542          ,@(if (featurep 'xemacs) '(t)
2543              '(:help "Compose a new message (mail or news)"))]
2544         ["Followup" gnus-summary-followup
2545          ,@(if (featurep 'xemacs) '(t)
2546              '(:help "Post followup to this article"))]
2547         ["Followup and yank" gnus-summary-followup-with-original
2548          ,@(if (featurep 'xemacs) '(t)
2549              '(:help "Post followup to this article, quoting its contents"))]
2550         ["Supersede article" gnus-summary-supersede-article t]
2551         ["Cancel article" gnus-summary-cancel-article
2552          ,@(if (featurep 'xemacs) '(t)
2553              '(:help "Cancel an article you posted"))]
2554         ["Reply" gnus-summary-reply t]
2555         ["Reply and yank" gnus-summary-reply-with-original t]
2556         ["Wide reply" gnus-summary-wide-reply t]
2557         ["Wide reply and yank" gnus-summary-wide-reply-with-original
2558          ,@(if (featurep 'xemacs) '(t)
2559              '(:help "Mail a reply, quoting this article"))]
2560         ["Very wide reply" gnus-summary-very-wide-reply t]
2561         ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2562          ,@(if (featurep 'xemacs) '(t)
2563              '(:help "Mail a very wide reply, quoting this article"))]
2564         ["Mail forward" gnus-summary-mail-forward t]
2565         ["Post forward" gnus-summary-post-forward t]
2566         ["Digest and mail" gnus-uu-digest-mail-forward t]
2567         ["Digest and post" gnus-uu-digest-post-forward t]
2568         ["Resend message" gnus-summary-resend-message t]
2569         ["Resend message edit" gnus-summary-resend-message-edit t]
2570         ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2571         ["Send a mail" gnus-summary-mail-other-window t]
2572         ["Create a local message" gnus-summary-news-other-window t]
2573         ["Uuencode and post" gnus-uu-post-news
2574          ,@(if (featurep 'xemacs) '(t)
2575              '(:help "Post a uuencoded article"))]
2576         ["Followup via news" gnus-summary-followup-to-mail t]
2577         ["Followup via news and yank"
2578          gnus-summary-followup-to-mail-with-original t]
2579         ["Strip signature on reply"
2580          (lambda ()
2581            (interactive)
2582            (if (not (memq message-cite-function
2583                           '(message-cite-original-without-signature
2584                             message-cite-original)))
2585                ;; Stupid workaround for XEmacs not honoring :visible.
2586                (message "Can't toggle this value of `message-cite-function'")
2587              (setq message-cite-function
2588                    (if (eq message-cite-function
2589                            'message-cite-original-without-signature)
2590                        'message-cite-original
2591                      'message-cite-original-without-signature))))
2592          ;; XEmacs barfs on :visible.
2593          ,@(if (featurep 'xemacs) nil
2594              '(:visible (memq message-cite-function
2595                               '(message-cite-original-without-signature
2596                                 message-cite-original))))
2597          :style toggle
2598          :selected (eq message-cite-function
2599                        'message-cite-original-without-signature)
2600          ,@(if (featurep 'xemacs) nil
2601              '(:help "Strip signature from cited article when replying."))]
2602         ;;("Draft"
2603         ;;["Send" gnus-summary-send-draft t]
2604         ;;["Send bounced" gnus-resend-bounced-mail t])
2605         ))
2606
2607     (cond
2608      ((not (keymapp gnus-summary-post-menu))
2609       (setq gnus-article-post-menu gnus-summary-post-menu))
2610      ((not gnus-article-post-menu)
2611       ;; Don't share post menu.
2612       (setq gnus-article-post-menu
2613             (copy-keymap gnus-summary-post-menu))))
2614     (define-key gnus-article-mode-map [menu-bar post]
2615       (cons "Post" gnus-article-post-menu))
2616
2617     (easy-menu-define
2618       gnus-summary-misc-menu gnus-summary-mode-map ""
2619       `("Gnus"
2620         ("Mark Read"
2621          ["Mark as read" gnus-summary-mark-as-read-forward t]
2622          ["Mark same subject and select"
2623           gnus-summary-kill-same-subject-and-select t]
2624          ["Mark same subject" gnus-summary-kill-same-subject t]
2625          ["Catchup" gnus-summary-catchup
2626           ,@(if (featurep 'xemacs) '(t)
2627               '(:help "Mark unread articles in this group as read"))]
2628          ["Catchup all" gnus-summary-catchup-all t]
2629          ["Catchup to here" gnus-summary-catchup-to-here t]
2630          ["Catchup from here" gnus-summary-catchup-from-here t]
2631          ["Catchup region" gnus-summary-mark-region-as-read
2632           (gnus-mark-active-p)]
2633          ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2634         ("Mark Various"
2635          ["Tick" gnus-summary-tick-article-forward t]
2636          ["Mark as dormant" gnus-summary-mark-as-dormant t]
2637          ["Remove marks" gnus-summary-clear-mark-forward t]
2638          ["Set expirable mark" gnus-summary-mark-as-expirable t]
2639          ["Set bookmark" gnus-summary-set-bookmark t]
2640          ["Remove bookmark" gnus-summary-remove-bookmark t])
2641         ("Limit to"
2642          ["Marks..." gnus-summary-limit-to-marks t]
2643          ["Subject..." gnus-summary-limit-to-subject t]
2644          ["Author..." gnus-summary-limit-to-author t]
2645          ["Recipient..." gnus-summary-limit-to-recipient t]
2646          ["Address..." gnus-summary-limit-to-address t]
2647          ["Age..." gnus-summary-limit-to-age t]
2648          ["Extra..." gnus-summary-limit-to-extra t]
2649          ["Score..." gnus-summary-limit-to-score t]
2650          ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2651          ["Unread" gnus-summary-limit-to-unread t]
2652          ["Unseen" gnus-summary-limit-to-unseen t]
2653          ["Singletons" gnus-summary-limit-to-singletons t]
2654          ["Replied" gnus-summary-limit-to-replied t]
2655          ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2656          ["Next or process marked articles" gnus-summary-limit-to-articles t]
2657          ["Pop limit" gnus-summary-pop-limit t]
2658          ["Show dormant" gnus-summary-limit-include-dormant t]
2659          ["Hide childless dormant"
2660           gnus-summary-limit-exclude-childless-dormant t]
2661          ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2662          ["Hide marked" gnus-summary-limit-exclude-marks t]
2663          ["Show expunged" gnus-summary-limit-include-expunged t])
2664         ("Process Mark"
2665          ["Set mark" gnus-summary-mark-as-processable t]
2666          ["Remove mark" gnus-summary-unmark-as-processable t]
2667          ["Remove all marks" gnus-summary-unmark-all-processable t]
2668          ["Invert marks" gnus-uu-invert-processable t]
2669          ["Mark above" gnus-uu-mark-over t]
2670          ["Mark series" gnus-uu-mark-series t]
2671          ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2672          ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2673          ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2674          ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2675          ["Mark all" gnus-uu-mark-all t]
2676          ["Mark buffer" gnus-uu-mark-buffer t]
2677          ["Mark sparse" gnus-uu-mark-sparse t]
2678          ["Mark thread" gnus-uu-mark-thread t]
2679          ["Unmark thread" gnus-uu-unmark-thread t]
2680          ("Process Mark Sets"
2681           ["Kill" gnus-summary-kill-process-mark t]
2682           ["Yank" gnus-summary-yank-process-mark
2683            gnus-newsgroup-process-stack]
2684           ["Save" gnus-summary-save-process-mark t]
2685           ["Run command on marked..." gnus-summary-universal-argument t]))
2686         ("Registry Marks")
2687         ("Scroll article"
2688          ["Page forward" gnus-summary-next-page
2689           ,@(if (featurep 'xemacs) '(t)
2690               '(:help "Show next page of article"))]
2691          ["Page backward" gnus-summary-prev-page
2692           ,@(if (featurep 'xemacs) '(t)
2693               '(:help "Show previous page of article"))]
2694          ["Line forward" gnus-summary-scroll-up t])
2695         ("Move"
2696          ["Next unread article" gnus-summary-next-unread-article t]
2697          ["Previous unread article" gnus-summary-prev-unread-article t]
2698          ["Next article" gnus-summary-next-article t]
2699          ["Previous article" gnus-summary-prev-article t]
2700          ["Next unread subject" gnus-summary-next-unread-subject t]
2701          ["Previous unread subject" gnus-summary-prev-unread-subject t]
2702          ["Next article same subject" gnus-summary-next-same-subject t]
2703          ["Previous article same subject" gnus-summary-prev-same-subject t]
2704          ["First unread article" gnus-summary-first-unread-article t]
2705          ["Best unread article" gnus-summary-best-unread-article t]
2706          ["Go to subject number..." gnus-summary-goto-subject t]
2707          ["Go to article number..." gnus-summary-goto-article t]
2708          ["Go to the last article" gnus-summary-goto-last-article t]
2709          ["Pop article off history" gnus-summary-pop-article t])
2710         ("Sort"
2711          ["Sort by number" gnus-summary-sort-by-number t]
2712          ["Sort by most recent number" gnus-summary-sort-by-most-recent-number t]
2713          ["Sort by author" gnus-summary-sort-by-author t]
2714          ["Sort by recipient" gnus-summary-sort-by-recipient t]
2715          ["Sort by subject" gnus-summary-sort-by-subject t]
2716          ["Sort by date" gnus-summary-sort-by-date t]
2717          ["Sort by most recent date" gnus-summary-sort-by-most-recent-date t]
2718          ["Sort by score" gnus-summary-sort-by-score t]
2719          ["Sort by lines" gnus-summary-sort-by-lines t]
2720          ["Sort by characters" gnus-summary-sort-by-chars t]
2721          ["Randomize" gnus-summary-sort-by-random t]
2722          ["Original sort" gnus-summary-sort-by-original t])
2723         ("Help"
2724          ["Fetch group FAQ" gnus-summary-fetch-faq t]
2725          ["Describe group" gnus-summary-describe-group t]
2726          ["Fetch charter" gnus-group-fetch-charter
2727           ,@(if (featurep 'xemacs) nil
2728               '(:help "Display the charter of the current group"))]
2729          ["Fetch control message" gnus-group-fetch-control
2730           ,@(if (featurep 'xemacs) nil
2731               '(:help "Display the archived control message for the current group"))]
2732          ["Read manual" gnus-info-find-node t])
2733         ("Modes"
2734          ["Pick and read" gnus-pick-mode t]
2735          ["Binary" gnus-binary-mode t])
2736         ("Regeneration"
2737          ["Regenerate" gnus-summary-prepare t]
2738          ["Insert cached articles" gnus-summary-insert-cached-articles t]
2739          ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2740          ["Insert ticked articles" gnus-summary-insert-ticked-articles t]
2741          ["Toggle threading" gnus-summary-toggle-threads t])
2742         ["See old articles" gnus-summary-insert-old-articles t]
2743         ["See new articles" gnus-summary-insert-new-articles t]
2744         ["Filter articles..." gnus-summary-execute-command t]
2745         ["Run command on articles..." gnus-summary-universal-argument t]
2746         ["Search articles forward..." gnus-summary-search-article-forward t]
2747         ["Search articles backward..." gnus-summary-search-article-backward t]
2748         ["Toggle line truncation" gnus-summary-toggle-truncation t]
2749         ["Expand window" gnus-summary-expand-window t]
2750         ["Expire expirable articles" gnus-summary-expire-articles
2751          (gnus-check-backend-function
2752           'request-expire-articles gnus-newsgroup-name)]
2753         ["Edit local kill file" gnus-summary-edit-local-kill t]
2754         ["Edit main kill file" gnus-summary-edit-global-kill t]
2755         ["Edit group parameters" gnus-summary-edit-parameters t]
2756         ["Customize group parameters" gnus-summary-customize-parameters t]
2757         ["Send a bug report" gnus-bug t]
2758         ("Exit"
2759          ["Catchup and exit" gnus-summary-catchup-and-exit
2760           ,@(if (featurep 'xemacs) '(t)
2761               '(:help "Mark unread articles in this group as read, then exit"))]
2762          ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2763          ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2764          ["Catchup and goto prev" gnus-summary-catchup-and-goto-prev-group t]
2765          ["Exit group" gnus-summary-exit
2766           ,@(if (featurep 'xemacs) '(t)
2767               '(:help "Exit current group, return to group selection mode"))]
2768          ["Exit group without updating" gnus-summary-exit-no-update t]
2769          ["Exit and goto next group" gnus-summary-next-group t]
2770          ["Exit and goto prev group" gnus-summary-prev-group t]
2771          ["Reselect group" gnus-summary-reselect-current-group t]
2772          ["Rescan group" gnus-summary-rescan-group t]
2773          ["Update dribble" gnus-summary-save-newsrc t])))
2774
2775     (gnus-run-hooks 'gnus-summary-menu-hook)))
2776
2777 (defvar gnus-summary-tool-bar-map nil)
2778
2779 ;; Note: The :set function in the `gnus-summary-tool-bar*' variables will only
2780 ;; affect _new_ message buffers.  We might add a function that walks thru all
2781 ;; summary-mode buffers and force the update.
2782 (defun gnus-summary-tool-bar-update (&optional symbol value)
2783   "Update summary mode toolbar.
2784 Setter function for custom variables."
2785   (setq-default gnus-summary-tool-bar-map nil)
2786   (when symbol
2787     ;; When used as ":set" function:
2788     (set-default symbol value))
2789   (when (gnus-buffer-live-p gnus-summary-buffer)
2790     (with-current-buffer gnus-summary-buffer
2791       (gnus-summary-make-tool-bar))))
2792
2793 (defcustom gnus-summary-tool-bar (if (eq gmm-tool-bar-style 'gnome)
2794                                      'gnus-summary-tool-bar-gnome
2795                                    'gnus-summary-tool-bar-retro)
2796   "Specifies the Gnus summary tool bar.
2797
2798 It can be either a list or a symbol refering to a list.  See
2799 `gmm-tool-bar-from-list' for the format of the list.  The
2800 default key map is `gnus-summary-mode-map'.
2801
2802 Pre-defined symbols include `gnus-summary-tool-bar-gnome' and
2803 `gnus-summary-tool-bar-retro'."
2804   :type '(choice (const :tag "GNOME style" gnus-summary-tool-bar-gnome)
2805                  (const :tag "Retro look"  gnus-summary-tool-bar-retro)
2806                  (repeat :tag "User defined list" gmm-tool-bar-item)
2807                  (symbol))
2808   :version "23.1" ;; No Gnus
2809   :initialize 'custom-initialize-default
2810   :set 'gnus-summary-tool-bar-update
2811   :group 'gnus-summary)
2812
2813 (defcustom gnus-summary-tool-bar-gnome
2814   '((gnus-summary-post-news "mail/compose" nil)
2815     (gnus-summary-insert-new-articles "mail/inbox" nil
2816                                       :visible (or (not gnus-agent)
2817                                                    gnus-plugged))
2818     (gnus-summary-reply-with-original "mail/reply")
2819     (gnus-summary-reply "mail/reply" nil :visible nil)
2820     (gnus-summary-followup-with-original "mail/reply-all")
2821     (gnus-summary-followup "mail/reply-all" nil :visible nil)
2822     (gnus-summary-mail-forward "mail/forward")
2823     (gnus-summary-save-article "mail/save")
2824     (gnus-summary-search-article-forward "search" nil :visible nil)
2825     (gnus-summary-print-article "print")
2826     (gnus-summary-tick-article-forward "flag-followup" nil :visible nil)
2827     ;; Some new commands that may need more suitable icons:
2828     (gnus-summary-save-newsrc "save" nil :visible nil)
2829     ;; (gnus-summary-show-article "stock_message-display" nil :visible nil)
2830     (gnus-summary-prev-article "left-arrow")
2831     (gnus-summary-next-article "right-arrow")
2832     (gnus-summary-next-page "next-page")
2833     ;; (gnus-summary-enter-digest-group "right_arrow" nil :visible nil)
2834     ;;
2835     ;; Maybe some sort-by-... could be added:
2836     ;; (gnus-summary-sort-by-author "sort-a-z" nil :visible nil)
2837     ;; (gnus-summary-sort-by-date "sort-1-9" nil :visible nil)
2838     (gnus-summary-mark-as-expirable
2839      "delete" nil
2840      :visible (gnus-check-backend-function 'request-expire-articles
2841                                            gnus-newsgroup-name))
2842     (gnus-summary-mark-as-spam
2843      "mail/spam" t
2844      :visible (and (fboundp 'spam-group-ham-contents-p)
2845                    (spam-group-ham-contents-p gnus-newsgroup-name))
2846      :help "Mark as spam")
2847     (gnus-summary-mark-as-read-forward
2848      "mail/not-spam" nil
2849      :visible (and (fboundp 'spam-group-spam-contents-p)
2850                    (spam-group-spam-contents-p gnus-newsgroup-name)))
2851     ;;
2852     (gnus-summary-exit "exit")
2853     (gmm-customize-mode "preferences" t :help "Edit mode preferences")
2854     (gnus-info-find-node "help"))
2855   "List of functions for the summary tool bar (GNOME style).
2856
2857 See `gmm-tool-bar-from-list' for the format of the list."
2858   :type '(repeat gmm-tool-bar-item)
2859   :version "23.1" ;; No Gnus
2860   :initialize 'custom-initialize-default
2861   :set 'gnus-summary-tool-bar-update
2862   :group 'gnus-summary)
2863
2864 (defcustom gnus-summary-tool-bar-retro
2865   '((gnus-summary-prev-unread-article "gnus/prev-ur")
2866     (gnus-summary-next-unread-article "gnus/next-ur")
2867     (gnus-summary-post-news "gnus/post")
2868     (gnus-summary-followup-with-original "gnus/fuwo")
2869     (gnus-summary-followup "gnus/followup")
2870     (gnus-summary-reply-with-original "gnus/reply-wo")
2871     (gnus-summary-reply "gnus/reply")
2872     (gnus-summary-caesar-message "gnus/rot13")
2873     (gnus-uu-decode-uu "gnus/uu-decode")
2874     (gnus-summary-save-article-file "gnus/save-aif")
2875     (gnus-summary-save-article "gnus/save-art")
2876     (gnus-uu-post-news "gnus/uu-post")
2877     (gnus-summary-catchup "gnus/catchup")
2878     (gnus-summary-catchup-and-exit "gnus/cu-exit")
2879     (gnus-summary-exit "gnus/exit-summ")
2880     ;; Some new command that may need more suitable icons:
2881     (gnus-summary-print-article "gnus/print" nil :visible nil)
2882     (gnus-summary-mark-as-expirable "gnus/close" nil :visible nil)
2883     (gnus-summary-save-newsrc "gnus/save" nil :visible nil)
2884     ;; (gnus-summary-enter-digest-group "gnus/right_arrow" nil :visible nil)
2885     (gnus-summary-search-article-forward "gnus/search" nil :visible nil)
2886     ;; (gnus-summary-insert-new-articles "gnus/paste" nil :visible nil)
2887     ;; (gnus-summary-toggle-threads "gnus/open" nil :visible nil)
2888     ;;
2889     (gnus-info-find-node "gnus/help" nil :visible nil))
2890   "List of functions for the summary tool bar (retro look).
2891
2892 See `gmm-tool-bar-from-list' for the format of the list."
2893   :type '(repeat gmm-tool-bar-item)
2894   :version "23.1" ;; No Gnus
2895   :initialize 'custom-initialize-default
2896   :set 'gnus-summary-tool-bar-update
2897   :group 'gnus-summary)
2898
2899 (defcustom gnus-summary-tool-bar-zap-list t
2900   "List of icon items from the global tool bar.
2901 These items are not displayed in the Gnus summary mode tool bar.
2902
2903 See `gmm-tool-bar-from-list' for the format of the list."
2904   :type 'gmm-tool-bar-zap-list
2905   :version "23.1" ;; No Gnus
2906   :initialize 'custom-initialize-default
2907   :set 'gnus-summary-tool-bar-update
2908   :group 'gnus-summary)
2909
2910 (defvar image-load-path)
2911 (defvar tool-bar-map)
2912
2913 (defun gnus-summary-make-tool-bar (&optional force)
2914   "Make a summary mode tool bar from `gnus-summary-tool-bar'.
2915 When FORCE, rebuild the tool bar."
2916   (when (and (not (featurep 'xemacs))
2917              (boundp 'tool-bar-mode)
2918              tool-bar-mode
2919              (or (not gnus-summary-tool-bar-map) force))
2920     (let* ((load-path
2921             (gmm-image-load-path-for-library "gnus"
2922                                              "mail/save.xpm"
2923                                              nil t))
2924            (image-load-path (cons (car load-path)
2925                                   (when (boundp 'image-load-path)
2926                                     image-load-path)))
2927            (map (gmm-tool-bar-from-list gnus-summary-tool-bar
2928                                         gnus-summary-tool-bar-zap-list
2929                                         'gnus-summary-mode-map)))
2930       (when map
2931         ;; Need to set `gnus-summary-tool-bar-map' because `gnus-article-mode'
2932         ;; uses it's value.
2933         (setq gnus-summary-tool-bar-map map))))
2934   (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map))
2935
2936 (defun gnus-score-set-default (var value)
2937   "A version of set that updates the GNU Emacs menu-bar."
2938   (set var value)
2939   ;; It is the message that forces the active status to be updated.
2940   (message ""))
2941
2942 (defun gnus-make-score-map (type)
2943   "Make a summary score map of type TYPE."
2944   (if t
2945       nil
2946     (let ((headers '(("author" "from" string)
2947                      ("subject" "subject" string)
2948                      ("article body" "body" string)
2949                      ("article head" "head" string)
2950                      ("xref" "xref" string)
2951                      ("extra header" "extra" string)
2952                      ("lines" "lines" number)
2953                      ("followups to author" "followup" string)))
2954           (types '((number ("less than" <)
2955                            ("greater than" >)
2956                            ("equal" =))
2957                    (string ("substring" s)
2958                            ("exact string" e)
2959                            ("fuzzy string" f)
2960                            ("regexp" r))))
2961           (perms '(("temporary" (current-time-string))
2962                    ("permanent" nil)
2963                    ("immediate" now)))
2964           header)
2965       (list
2966        (apply
2967         'nconc
2968         (list
2969          (if (eq type 'lower)
2970              "Lower score"
2971            "Increase score"))
2972         (let (outh)
2973           (while headers
2974             (setq header (car headers))
2975             (setq outh
2976                   (cons
2977                    (apply
2978                     'nconc
2979                     (list (car header))
2980                     (let ((ts (cdr (assoc (nth 2 header) types)))
2981                           outt)
2982                       (while ts
2983                         (setq outt
2984                               (cons
2985                                (apply
2986                                 'nconc
2987                                 (list (caar ts))
2988                                 (let ((ps perms)
2989                                       outp)
2990                                   (while ps
2991                                     (setq outp
2992                                           (cons
2993                                            (vector
2994                                             (caar ps)
2995                                             (list
2996                                              'gnus-summary-score-entry
2997                                              (nth 1 header)
2998                                              (if (or (string= (nth 1 header)
2999                                                               "head")
3000                                                      (string= (nth 1 header)
3001                                                               "body"))
3002                                                  ""
3003                                                (list 'gnus-summary-header
3004                                                      (nth 1 header)))
3005                                              (list 'quote (nth 1 (car ts)))
3006                                              (list 'gnus-score-delta-default
3007                                                    nil)
3008                                              (nth 1 (car ps))
3009                                              t)
3010                                             t)
3011                                            outp))
3012                                     (setq ps (cdr ps)))
3013                                   (list (nreverse outp))))
3014                                outt))
3015                         (setq ts (cdr ts)))
3016                       (list (nreverse outt))))
3017                    outh))
3018             (setq headers (cdr headers)))
3019           (list (nreverse outh))))))))
3020
3021
3022 (declare-function turn-on-gnus-mailing-list-mode "gnus-ml" ())
3023 (defvar bookmark-make-record-function)
3024 \f
3025
3026 (defun gnus-summary-mode (&optional group)
3027   "Major mode for reading articles.
3028
3029 All normal editing commands are switched off.
3030 \\<gnus-summary-mode-map>
3031 Each line in this buffer represents one article.  To read an
3032 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
3033 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
3034 respectively.
3035
3036 You can also post articles and send mail from this buffer.  To
3037 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
3038 of an article, type `\\[gnus-summary-reply]'.
3039
3040 There are approx. one gazillion commands you can execute in this
3041 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
3042
3043 The following commands are available:
3044
3045 \\{gnus-summary-mode-map}"
3046   (interactive)
3047   (kill-all-local-variables)
3048   (let ((gnus-summary-local-variables gnus-newsgroup-variables))
3049     (gnus-summary-make-local-variables))
3050   (gnus-summary-make-local-variables)
3051   (setq gnus-newsgroup-name group)
3052   (when (gnus-visual-p 'summary-menu 'menu)
3053     (gnus-summary-make-menu-bar)
3054     (gnus-summary-make-tool-bar))
3055   (gnus-make-thread-indent-array)
3056   (gnus-simplify-mode-line)
3057   (setq major-mode 'gnus-summary-mode)
3058   (setq mode-name "Summary")
3059   (use-local-map gnus-summary-mode-map)
3060   (buffer-disable-undo)
3061   (setq buffer-read-only t              ;Disable modification
3062         show-trailing-whitespace nil)
3063   (setq truncate-lines t)
3064   (add-to-invisibility-spec '(gnus-sum . t))
3065   (gnus-summary-set-display-table)
3066   (gnus-set-default-directory)
3067   (make-local-variable 'gnus-summary-line-format)
3068   (make-local-variable 'gnus-summary-line-format-spec)
3069   (make-local-variable 'gnus-summary-dummy-line-format)
3070   (make-local-variable 'gnus-summary-dummy-line-format-spec)
3071   (make-local-variable 'gnus-summary-mark-positions)
3072   (gnus-make-local-hook 'pre-command-hook)
3073   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
3074   (gnus-run-mode-hooks 'gnus-summary-mode-hook)
3075   (turn-on-gnus-mailing-list-mode)
3076   (mm-enable-multibyte)
3077   (set (make-local-variable 'bookmark-make-record-function)
3078        'gnus-summary-bookmark-make-record)
3079   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
3080   (gnus-update-summary-mark-positions))
3081
3082 (defun gnus-summary-make-local-variables ()
3083   "Make all the local summary buffer variables."
3084   (let (global)
3085     (dolist (local gnus-summary-local-variables)
3086       (if (consp local)
3087           (progn
3088             (if (eq (cdr local) 'global)
3089                 ;; Copy the global value of the variable.
3090                 (setq global (symbol-value (car local)))
3091               ;; Use the value from the list.
3092               (setq global (eval (cdr local))))
3093             (set (make-local-variable (car local)) global))
3094         ;; Simple nil-valued local variable.
3095         (set (make-local-variable local) nil)))))
3096
3097 (defun gnus-summary-clear-local-variables ()
3098   (let ((locals gnus-summary-local-variables))
3099     (while locals
3100       (if (consp (car locals))
3101           (and (symbolp (caar locals))
3102                (set (caar locals) nil))
3103         (and (symbolp (car locals))
3104              (set (car locals) nil)))
3105       (setq locals (cdr locals)))))
3106
3107 ;; Summary data functions.
3108
3109 (defmacro gnus-data-number (data)
3110   `(car ,data))
3111
3112 (defmacro gnus-data-set-number (data number)
3113   `(setcar ,data ,number))
3114
3115 (defmacro gnus-data-mark (data)
3116   `(nth 1 ,data))
3117
3118 (defmacro gnus-data-set-mark (data mark)
3119   `(setcar (nthcdr 1 ,data) ,mark))
3120
3121 (defmacro gnus-data-pos (data)
3122   `(nth 2 ,data))
3123
3124 (defmacro gnus-data-set-pos (data pos)
3125   `(setcar (nthcdr 2 ,data) ,pos))
3126
3127 (defmacro gnus-data-header (data)
3128   `(nth 3 ,data))
3129
3130 (defmacro gnus-data-set-header (data header)
3131   `(setf (nth 3 ,data) ,header))
3132
3133 (defmacro gnus-data-level (data)
3134   `(nth 4 ,data))
3135
3136 (defmacro gnus-data-unread-p (data)
3137   `(= (nth 1 ,data) gnus-unread-mark))
3138
3139 (defmacro gnus-data-read-p (data)
3140   `(/= (nth 1 ,data) gnus-unread-mark))
3141
3142 (defmacro gnus-data-pseudo-p (data)
3143   `(consp (nth 3 ,data)))
3144
3145 (defmacro gnus-data-find (number)
3146   `(assq ,number gnus-newsgroup-data))
3147
3148 (defmacro gnus-data-find-list (number &optional data)
3149   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
3150      (memq (assq ,number bdata)
3151            bdata)))
3152
3153 (defmacro gnus-data-make (number mark pos header level)
3154   `(list ,number ,mark ,pos ,header ,level))
3155
3156 (defun gnus-data-enter (after-article number mark pos header level offset)
3157   (let ((data (gnus-data-find-list after-article)))
3158     (unless data
3159       (error "No such article: %d" after-article))
3160     (setcdr data (cons (gnus-data-make number mark pos header level)
3161                        (cdr data)))
3162     (setq gnus-newsgroup-data-reverse nil)
3163     (gnus-data-update-list (cddr data) offset)))
3164
3165 (defun gnus-data-enter-list (after-article list &optional offset)
3166   (when list
3167     (let ((data (and after-article (gnus-data-find-list after-article)))
3168           (ilist list))
3169       (if (not (or data
3170                    after-article))
3171           (let ((odata gnus-newsgroup-data))
3172             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
3173             (when offset
3174               (gnus-data-update-list odata offset)))
3175         ;; Find the last element in the list to be spliced into the main
3176         ;; list.
3177         (setq list (last list))
3178         (if (not data)
3179             (progn
3180               (setcdr list gnus-newsgroup-data)
3181               (setq gnus-newsgroup-data ilist)
3182               (when offset
3183                 (gnus-data-update-list (cdr list) offset)))
3184           (setcdr list (cdr data))
3185           (setcdr data ilist)
3186           (when offset
3187             (gnus-data-update-list (cdr list) offset))))
3188       (setq gnus-newsgroup-data-reverse nil))))
3189
3190 (defun gnus-data-remove (article &optional offset)
3191   (let ((data gnus-newsgroup-data))
3192     (if (= (gnus-data-number (car data)) article)
3193         (progn
3194           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
3195                 gnus-newsgroup-data-reverse nil)
3196           (when offset
3197             (gnus-data-update-list gnus-newsgroup-data offset)))
3198       (while (cdr data)
3199         (when (= (gnus-data-number (cadr data)) article)
3200           (setcdr data (cddr data))
3201           (when offset
3202             (gnus-data-update-list (cdr data) offset))
3203           (setq data nil
3204                 gnus-newsgroup-data-reverse nil))
3205         (setq data (cdr data))))))
3206
3207 (defmacro gnus-data-list (backward)
3208   `(if ,backward
3209        (or gnus-newsgroup-data-reverse
3210            (setq gnus-newsgroup-data-reverse
3211                  (reverse gnus-newsgroup-data)))
3212      gnus-newsgroup-data))
3213
3214 (defun gnus-data-update-list (data offset)
3215   "Add OFFSET to the POS of all data entries in DATA."
3216   (setq gnus-newsgroup-data-reverse nil)
3217   (while data
3218     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
3219     (setq data (cdr data))))
3220
3221 (defun gnus-summary-article-pseudo-p (article)
3222   "Say whether this article is a pseudo article or not."
3223   (not (vectorp (gnus-data-header (gnus-data-find article)))))
3224
3225 (defmacro gnus-summary-article-sparse-p (article)
3226   "Say whether this article is a sparse article or not."
3227   `(memq ,article gnus-newsgroup-sparse))
3228
3229 (defmacro gnus-summary-article-ancient-p (article)
3230   "Say whether this article is a sparse article or not."
3231   `(memq ,article gnus-newsgroup-ancient))
3232
3233 (defun gnus-article-parent-p (number)
3234   "Say whether this article is a parent or not."
3235   (let ((data (gnus-data-find-list number)))
3236     (and (cdr data)              ; There has to be an article after...
3237          (< (gnus-data-level (car data)) ; And it has to have a higher level.
3238             (gnus-data-level (nth 1 data))))))
3239
3240 (defun gnus-article-children (number)
3241   "Return a list of all children to NUMBER."
3242   (let* ((data (gnus-data-find-list number))
3243          (level (gnus-data-level (car data)))
3244          children)
3245     (setq data (cdr data))
3246     (while (and data
3247                 (= (gnus-data-level (car data)) (1+ level)))
3248       (push (gnus-data-number (car data)) children)
3249       (setq data (cdr data)))
3250     children))
3251
3252 (defmacro gnus-summary-skip-intangible ()
3253   "If the current article is intangible, then jump to a different article."
3254   '(let ((to (get-text-property (point) 'gnus-intangible)))
3255      (and to (gnus-summary-goto-subject to))))
3256
3257 (defmacro gnus-summary-article-intangible-p ()
3258   "Say whether this article is intangible or not."
3259   '(get-text-property (point) 'gnus-intangible))
3260
3261 (defun gnus-article-read-p (article)
3262   "Say whether ARTICLE is read or not."
3263   (not (or (memq article gnus-newsgroup-marked)
3264            (memq article gnus-newsgroup-spam-marked)
3265            (memq article gnus-newsgroup-unreads)
3266            (memq article gnus-newsgroup-unselected)
3267            (memq article gnus-newsgroup-dormant))))
3268
3269 ;; Some summary mode macros.
3270
3271 (defmacro gnus-summary-article-number ()
3272   "The article number of the article on the current line.
3273 If there isn't an article number here, then we return the current
3274 article number."
3275   '(progn
3276      (gnus-summary-skip-intangible)
3277      (or (get-text-property (point) 'gnus-number)
3278          (gnus-summary-last-subject))))
3279
3280 (defmacro gnus-summary-article-header (&optional number)
3281   "Return the header of article NUMBER."
3282   `(gnus-data-header (gnus-data-find
3283                       ,(or number '(gnus-summary-article-number)))))
3284
3285 (defmacro gnus-summary-thread-level (&optional number)
3286   "Return the level of thread that starts with article NUMBER."
3287   `(if (and (eq gnus-summary-make-false-root 'dummy)
3288             (get-text-property (point) 'gnus-intangible))
3289        0
3290      (gnus-data-level (gnus-data-find
3291                        ,(or number '(gnus-summary-article-number))))))
3292
3293 (defmacro gnus-summary-article-mark (&optional number)
3294   "Return the mark of article NUMBER."
3295   `(gnus-data-mark (gnus-data-find
3296                     ,(or number '(gnus-summary-article-number)))))
3297
3298 (defmacro gnus-summary-article-pos (&optional number)
3299   "Return the position of the line of article NUMBER."
3300   `(gnus-data-pos (gnus-data-find
3301                    ,(or number '(gnus-summary-article-number)))))
3302
3303 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
3304 (defmacro gnus-summary-article-subject (&optional number)
3305   "Return current subject string or nil if nothing."
3306   `(let ((headers
3307           ,(if number
3308                `(gnus-data-header (assq ,number gnus-newsgroup-data))
3309              '(gnus-data-header (assq (gnus-summary-article-number)
3310                                       gnus-newsgroup-data)))))
3311      (and headers
3312           (vectorp headers)
3313           (mail-header-subject headers))))
3314
3315 (defmacro gnus-summary-article-score (&optional number)
3316   "Return current article score."
3317   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
3318                   gnus-newsgroup-scored))
3319        gnus-summary-default-score 0))
3320
3321 (defun gnus-summary-article-children (&optional number)
3322   "Return a list of article numbers that are children of article NUMBER."
3323   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
3324          (level (gnus-data-level (car data)))
3325          l children)
3326     (while (and (setq data (cdr data))
3327                 (> (setq l (gnus-data-level (car data))) level))
3328       (and (= (1+ level) l)
3329            (push (gnus-data-number (car data))
3330                  children)))
3331     (nreverse children)))
3332
3333 (defun gnus-summary-article-parent (&optional number)
3334   "Return the article number of the parent of article NUMBER."
3335   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
3336                                     (gnus-data-list t)))
3337          (level (gnus-data-level (car data))))
3338     (if (zerop level)
3339         ()                              ; This is a root.
3340       ;; We search until we find an article with a level less than
3341       ;; this one.  That function has to be the parent.
3342       (while (and (setq data (cdr data))
3343                   (not (< (gnus-data-level (car data)) level))))
3344       (and data (gnus-data-number (car data))))))
3345
3346 (defun gnus-unread-mark-p (mark)
3347   "Say whether MARK is the unread mark."
3348   (= mark gnus-unread-mark))
3349
3350 (defun gnus-read-mark-p (mark)
3351   "Say whether MARK is one of the marks that mark as read.
3352 This is all marks except unread, ticked, dormant, and expirable."
3353   (not (or (= mark gnus-unread-mark)
3354            (= mark gnus-ticked-mark)
3355            (= mark gnus-spam-mark)
3356            (= mark gnus-dormant-mark)
3357            (= mark gnus-expirable-mark))))
3358
3359 (defmacro gnus-article-mark (number)
3360   "Return the MARK of article NUMBER.
3361 This macro should only be used when computing the mark the \"first\"
3362 time; i.e., when generating the summary lines.  After that,
3363 `gnus-summary-article-mark' should be used to examine the
3364 marks of articles."
3365   `(cond
3366     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
3367     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
3368     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
3369     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
3370     ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
3371     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
3372     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
3373     (t (or (cdr (assq ,number gnus-newsgroup-reads))
3374            gnus-ancient-mark))))
3375
3376 ;; Saving hidden threads.
3377
3378 (defmacro gnus-save-hidden-threads (&rest forms)
3379   "Save hidden threads, eval FORMS, and restore the hidden threads."
3380   (let ((config (make-symbol "config")))
3381     `(let ((,config (gnus-hidden-threads-configuration)))
3382        (unwind-protect
3383            (save-excursion
3384              ,@forms)
3385          (gnus-restore-hidden-threads-configuration ,config)))))
3386 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3387 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3388
3389 (defun gnus-data-compute-positions ()
3390   "Compute the positions of all articles."
3391   (setq gnus-newsgroup-data-reverse nil)
3392   (let ((data gnus-newsgroup-data))
3393     (save-excursion
3394       (gnus-save-hidden-threads
3395         (gnus-summary-show-all-threads)
3396         (goto-char (point-min))
3397         (while data
3398           (while (get-text-property (point) 'gnus-intangible)
3399             (forward-line 1))
3400           (gnus-data-set-pos (car data) (+ (point) 3))
3401           (setq data (cdr data))
3402           (forward-line 1))))))
3403
3404 (defun gnus-hidden-threads-configuration ()
3405   "Return the current hidden threads configuration."
3406   (save-excursion
3407     (let (config)
3408       (goto-char (point-min))
3409       (while (not (eobp))
3410         (when (eq (get-char-property (point-at-eol) 'invisible) 'gnus-sum)
3411           (push (save-excursion (forward-line 0) (point)) config))
3412         (forward-line 1))
3413       config)))
3414
3415 (defun gnus-restore-hidden-threads-configuration (config)
3416   "Restore hidden threads configuration from CONFIG."
3417   (save-excursion
3418     (let (point (inhibit-read-only t))
3419       (while (setq point (pop config))
3420         (goto-char point)
3421         (gnus-summary-hide-thread)))))
3422
3423 ;; Various summary mode internalish functions.
3424
3425 (defun gnus-mouse-pick-article (e)
3426   (interactive "e")
3427   (mouse-set-point e)
3428   (gnus-summary-next-page nil t))
3429
3430 (defun gnus-summary-set-display-table ()
3431   "Change the display table.
3432 Odd characters have a tendency to mess
3433 up nicely formatted displays - we make all possible glyphs
3434 display only a single character."
3435
3436   ;; We start from the standard display table, if any.
3437   (let ((table (or (copy-sequence standard-display-table)
3438                    (make-display-table)))
3439         (i 32))
3440     ;; Nix out all the control chars...
3441     (while (>= (setq i (1- i)) 0)
3442       (gnus-put-display-table i [??] table))
3443    ;; ... but not newline and cr, of course.  (cr is necessary for the
3444     ;; selective display).
3445     (gnus-put-display-table ?\n nil table)
3446     (gnus-put-display-table ?\r nil table)
3447     ;; We keep TAB as well.
3448     (gnus-put-display-table ?\t nil table)
3449     ;; We nix out any glyphs 127 through 255, or 127 through 159 in
3450     ;; Emacs 23 (unicode), that are not set already.
3451     (let ((i (if (ignore-errors (= (make-char 'latin-iso8859-1 160) 160))
3452                  160
3453                256)))
3454       (while (>= (setq i (1- i)) 127)
3455         ;; Only modify if the entry is nil.
3456         (unless (gnus-get-display-table i table)
3457           (gnus-put-display-table i [??] table))))
3458     (setq buffer-display-table table)))
3459
3460 (defun gnus-summary-set-article-display-arrow (pos)
3461   "Update the overlay arrow to point to line at position POS."
3462   (when gnus-summary-display-arrow
3463     (make-local-variable 'overlay-arrow-position)
3464     (make-local-variable 'overlay-arrow-string)
3465     (save-excursion
3466       (goto-char pos)
3467       (beginning-of-line)
3468       (unless overlay-arrow-position
3469         (setq overlay-arrow-position (make-marker)))
3470       (setq overlay-arrow-string "=>"
3471             overlay-arrow-position (set-marker overlay-arrow-position
3472                                                (point)
3473                                                (current-buffer))))))
3474
3475 (defun gnus-summary-setup-buffer (group)
3476   "Initialize summary buffer."
3477   (let ((buffer (gnus-summary-buffer-name group))
3478         (dead-name (concat "*Dead Summary "
3479                            (gnus-group-decoded-name group) "*")))
3480     ;; If a dead summary buffer exists, we kill it.
3481     (when (gnus-buffer-live-p dead-name)
3482       (gnus-kill-buffer dead-name))
3483     (if (get-buffer buffer)
3484         (progn
3485           (set-buffer buffer)
3486           (setq gnus-summary-buffer (current-buffer))
3487           (not gnus-newsgroup-prepared))
3488       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3489       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3490       (gnus-summary-mode group)
3491       (when gnus-carpal
3492         (gnus-carpal-setup-buffer 'summary))
3493       (when (gnus-group-quit-config group)
3494         (set (make-local-variable 'gnus-single-article-buffer) nil))
3495       (make-local-variable 'gnus-article-buffer)
3496       (make-local-variable 'gnus-article-current)
3497       (make-local-variable 'gnus-original-article-buffer)
3498       (setq gnus-newsgroup-name group)
3499       ;; Set any local variables in the group parameters.
3500       (gnus-summary-set-local-parameters gnus-newsgroup-name)
3501       t)))
3502
3503 (defun gnus-set-global-variables ()
3504   "Set the global equivalents of the buffer-local variables.
3505 They are set to the latest values they had.  These reflect the summary
3506 buffer that was in action when the last article was fetched."
3507   (when (eq major-mode 'gnus-summary-mode)
3508     (setq gnus-summary-buffer (current-buffer))
3509     (let ((name gnus-newsgroup-name)
3510           (marked gnus-newsgroup-marked)
3511           (spam gnus-newsgroup-spam-marked)
3512           (unread gnus-newsgroup-unreads)
3513           (headers gnus-current-headers)
3514           (data gnus-newsgroup-data)
3515           (summary gnus-summary-buffer)
3516           (article-buffer gnus-article-buffer)
3517           (original gnus-original-article-buffer)
3518           (gac gnus-article-current)
3519           (reffed gnus-reffed-article-number)
3520           (score-file gnus-current-score-file)
3521           (default-charset gnus-newsgroup-charset)
3522           vlist)
3523       (let ((locals gnus-newsgroup-variables))
3524         (while locals
3525           (if (consp (car locals))
3526               (push (eval (caar locals)) vlist)
3527             (push (eval (car locals)) vlist))
3528           (setq locals (cdr locals)))
3529         (setq vlist (nreverse vlist)))
3530       (with-current-buffer gnus-group-buffer
3531         (setq gnus-newsgroup-name name
3532               gnus-newsgroup-marked marked
3533               gnus-newsgroup-spam-marked spam
3534               gnus-newsgroup-unreads unread
3535               gnus-current-headers headers
3536               gnus-newsgroup-data data
3537               gnus-article-current gac
3538               gnus-summary-buffer summary
3539               gnus-article-buffer article-buffer
3540               gnus-original-article-buffer original
3541               gnus-reffed-article-number reffed
3542               gnus-current-score-file score-file
3543               gnus-newsgroup-charset default-charset)
3544         (let ((locals gnus-newsgroup-variables))
3545           (while locals
3546             (if (consp (car locals))
3547                 (set (caar locals) (pop vlist))
3548               (set (car locals) (pop vlist)))
3549             (setq locals (cdr locals))))
3550         ;; The article buffer also has local variables.
3551         (when (gnus-buffer-live-p gnus-article-buffer)
3552           (set-buffer gnus-article-buffer)
3553           (setq gnus-summary-buffer summary))))))
3554
3555 (defun gnus-summary-article-unread-p (article)
3556   "Say whether ARTICLE is unread or not."
3557   (memq article gnus-newsgroup-unreads))
3558
3559 (defun gnus-summary-first-article-p (&optional article)
3560   "Return whether ARTICLE is the first article in the buffer."
3561   (if (not (setq article (or article (gnus-summary-article-number))))
3562       nil
3563     (eq article (caar gnus-newsgroup-data))))
3564
3565 (defun gnus-summary-last-article-p (&optional article)
3566   "Return whether ARTICLE is the last article in the buffer."
3567   (if (not (setq article (or article (gnus-summary-article-number))))
3568       ;; All non-existent numbers are the last article.  :-)
3569       t
3570     (not (cdr (gnus-data-find-list article)))))
3571
3572 (defun gnus-make-thread-indent-array (&optional n)
3573   (when (or n
3574             (progn (setq n 200) nil)
3575             (null gnus-thread-indent-array)
3576             (/= gnus-thread-indent-level gnus-thread-indent-array-level))
3577     (setq gnus-thread-indent-array (make-vector (1+ n) "")
3578           gnus-thread-indent-array-level gnus-thread-indent-level)
3579     (while (>= n 0)
3580       (aset gnus-thread-indent-array n
3581             (make-string (* n gnus-thread-indent-level) ? ))
3582       (setq n (1- n)))))
3583
3584 (defun gnus-update-summary-mark-positions ()
3585   "Compute where the summary marks are to go."
3586   (save-excursion
3587     (when (gnus-buffer-exists-p gnus-summary-buffer)
3588       (set-buffer gnus-summary-buffer))
3589     (let ((spec gnus-summary-line-format-spec)
3590           pos)
3591       (save-excursion
3592         (gnus-set-work-buffer)
3593         (let ((gnus-tmp-unread ?Z)
3594               (gnus-replied-mark ?Z)
3595               (gnus-score-below-mark ?Z)
3596               (gnus-score-over-mark ?Z)
3597               (gnus-undownloaded-mark ?Z)
3598               (gnus-summary-line-format-spec spec)
3599               (gnus-newsgroup-downloadable '(0))
3600               (header [0 "" "" "05 Apr 2001 23:33:09 +0400" "" "" 0 0 "" nil])
3601               case-fold-search ignores)
3602           ;; Here, all marks are bound to Z.
3603           (gnus-summary-insert-line header
3604                                     0 nil t gnus-tmp-unread t nil "" nil 1)
3605           (goto-char (point-min))
3606           ;; Memorize the positions of the same characters as dummy marks.
3607           (while (re-search-forward "[A-D]" nil t)
3608             (push (point) ignores))
3609           (erase-buffer)
3610           ;; We use A-D as dummy marks in order to know column positions
3611           ;; where marks should be inserted.
3612           (setq gnus-tmp-unread ?A
3613                 gnus-replied-mark ?B
3614                 gnus-score-below-mark ?C
3615                 gnus-score-over-mark ?C
3616                 gnus-undownloaded-mark ?D)
3617           (gnus-summary-insert-line header
3618                                     0 nil t gnus-tmp-unread t nil "" nil 1)
3619           ;; Ignore characters which aren't dummy marks.
3620           (dolist (p ignores)
3621             (delete-region (goto-char (1- p)) p)
3622             (insert ?Z))
3623           (goto-char (point-min))
3624           (setq pos (list (cons 'unread
3625                                 (and (search-forward "A" nil t)
3626                                      (- (point) (point-min) 1)))))
3627           (goto-char (point-min))
3628           (push (cons 'replied (and (search-forward "B" nil t)
3629                                     (- (point) (point-min) 1)))
3630                 pos)
3631           (goto-char (point-min))
3632           (push (cons 'score (and (search-forward "C" nil t)
3633                                   (- (point) (point-min) 1)))
3634                 pos)
3635           (goto-char (point-min))
3636           (push (cons 'download (and (search-forward "D" nil t)
3637                                      (- (point) (point-min) 1)))
3638                 pos)))
3639       (setq gnus-summary-mark-positions pos))))
3640
3641 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3642   "Insert a dummy root in the summary buffer."
3643   (beginning-of-line)
3644   (gnus-add-text-properties
3645    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3646    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3647
3648 (defun gnus-summary-extract-address-component (from)
3649   (or (car (funcall gnus-extract-address-components from))
3650       from))
3651
3652 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3653   (let ((mail-parse-charset gnus-newsgroup-charset)
3654         (ignored-from-addresses (gnus-ignored-from-addresses))
3655         ; Is it really necessary to do this next part for each summary line?
3656         ; Luckily, doesn't seem to slow things down much.
3657         (mail-parse-ignored-charsets
3658          (with-current-buffer gnus-summary-buffer
3659            gnus-newsgroup-ignored-charsets)))
3660     (or
3661      (and ignored-from-addresses
3662           (string-match ignored-from-addresses gnus-tmp-from)
3663           (let ((extra-headers (mail-header-extra header))
3664                 to
3665                 newsgroups)
3666             (cond
3667              ((setq to (cdr (assq 'To extra-headers)))
3668               (concat gnus-summary-to-prefix
3669                       (inline
3670                         (gnus-summary-extract-address-component
3671                          (funcall gnus-decode-encoded-address-function to)))))
3672              ((setq newsgroups
3673                     (or
3674                      (cdr (assq 'Newsgroups extra-headers))
3675                      (and
3676                       (memq 'Newsgroups gnus-extra-headers)
3677                       (eq (car (gnus-find-method-for-group
3678                                 gnus-newsgroup-name)) 'nntp)
3679                       (gnus-group-real-name gnus-newsgroup-name))))
3680               (concat gnus-summary-newsgroup-prefix newsgroups)))))
3681      (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3682
3683 (defun gnus-summary-insert-line (gnus-tmp-header
3684                                  gnus-tmp-level gnus-tmp-current
3685                                  undownloaded gnus-tmp-unread gnus-tmp-replied
3686                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
3687                                  &optional gnus-tmp-dummy gnus-tmp-score
3688                                  gnus-tmp-process)
3689   (if (>= gnus-tmp-level (length gnus-thread-indent-array))
3690       (gnus-make-thread-indent-array (max (* 2 (length gnus-thread-indent-array))
3691                                           gnus-tmp-level)))
3692   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3693          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3694          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3695          (gnus-tmp-score-char
3696           (if (or (null gnus-summary-default-score)
3697                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3698                       gnus-summary-zcore-fuzz))
3699               ?                         ;Whitespace
3700             (if (< gnus-tmp-score gnus-summary-default-score)
3701                 gnus-score-below-mark gnus-score-over-mark)))
3702          (gnus-tmp-number (mail-header-number gnus-tmp-header))
3703          (gnus-tmp-replied
3704           (cond (gnus-tmp-process gnus-process-mark)
3705                 ((memq gnus-tmp-current gnus-newsgroup-cached)
3706                  gnus-cached-mark)
3707                 (gnus-tmp-replied gnus-replied-mark)
3708                 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3709                  gnus-forwarded-mark)
3710                 ((memq gnus-tmp-current gnus-newsgroup-saved)
3711                  gnus-saved-mark)
3712                 ((memq gnus-tmp-number gnus-newsgroup-recent)
3713                  gnus-recent-mark)
3714                 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3715                  gnus-unseen-mark)
3716                 (t gnus-no-mark)))
3717          (gnus-tmp-downloaded
3718           (cond (undownloaded
3719                  gnus-undownloaded-mark)
3720                 (gnus-newsgroup-agentized
3721                  gnus-downloaded-mark)
3722                 (t
3723                  gnus-no-mark)))
3724          (gnus-tmp-from (mail-header-from gnus-tmp-header))
3725          (gnus-tmp-name
3726           (cond
3727            ((string-match "<[^>]+> *$" gnus-tmp-from)
3728             (let ((beg (match-beginning 0)))
3729               (or (and (string-match "^\".+\"" gnus-tmp-from)
3730                        (substring gnus-tmp-from 1 (1- (match-end 0))))
3731                   (substring gnus-tmp-from 0 beg))))
3732            ((string-match "(.+)" gnus-tmp-from)
3733             (substring gnus-tmp-from
3734                        (1+ (match-beginning 0)) (1- (match-end 0))))
3735            (t gnus-tmp-from)))
3736          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3737          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3738          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3739          (inhibit-read-only t))
3740     (when (string= gnus-tmp-name "")
3741       (setq gnus-tmp-name gnus-tmp-from))
3742     (unless (numberp gnus-tmp-lines)
3743       (setq gnus-tmp-lines -1))
3744     (if (= gnus-tmp-lines -1)
3745         (setq gnus-tmp-lines "?")
3746       (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3747     (condition-case ()
3748         (gnus-put-text-property
3749          (point)
3750          (progn (eval gnus-summary-line-format-spec) (point))
3751          'gnus-number gnus-tmp-number)
3752       (error (gnus-message 5 "Error updating the summary line")))
3753     (when (gnus-visual-p 'summary-highlight 'highlight)
3754       (forward-line -1)
3755       (gnus-summary-highlight-line)
3756       (gnus-run-hooks 'gnus-summary-update-hook)
3757       (forward-line 1))))
3758
3759 (defun gnus-summary-update-line (&optional dont-update)
3760   "Update summary line after change."
3761   (when (and gnus-summary-default-score
3762              (not gnus-summary-inhibit-highlight))
3763     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3764            (article (gnus-summary-article-number))
3765            (score (gnus-summary-article-score article)))
3766       (unless dont-update
3767         (if (and gnus-summary-mark-below
3768                  (< (gnus-summary-article-score)
3769                     gnus-summary-mark-below))
3770             ;; This article has a low score, so we mark it as read.
3771             (when (memq article gnus-newsgroup-unreads)
3772               (gnus-summary-mark-article-as-read gnus-low-score-mark))
3773           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3774             ;; This article was previously marked as read on account
3775             ;; of a low score, but now it has risen, so we mark it as
3776             ;; unread.
3777             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3778         (gnus-summary-update-mark
3779          (if (or (null gnus-summary-default-score)
3780                  (<= (abs (- score gnus-summary-default-score))
3781                      gnus-summary-zcore-fuzz))
3782              ?                          ;Whitespace
3783            (if (< score gnus-summary-default-score)
3784                gnus-score-below-mark gnus-score-over-mark))
3785          'score))
3786       ;; Do visual highlighting.
3787       (when (gnus-visual-p 'summary-highlight 'highlight)
3788         (gnus-summary-highlight-line)
3789         (gnus-run-hooks 'gnus-summary-update-hook)))))
3790
3791 (defvar gnus-tmp-new-adopts nil)
3792
3793 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3794   "Return the number of articles in THREAD.
3795 This may be 0 in some cases -- if none of the articles in
3796 the thread are to be displayed."
3797   (let* ((number
3798          ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3799           (cond
3800            ((not (listp thread))
3801             1)
3802            ((and (consp thread) (cdr thread))
3803             (apply
3804              '+ 1 (mapcar
3805                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
3806            ((null thread)
3807             1)
3808            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3809             1)
3810            (t 0))))
3811     (when (and level (zerop level) gnus-tmp-new-adopts)
3812       (incf number
3813             (apply '+ (mapcar
3814                        'gnus-summary-number-of-articles-in-thread
3815                        gnus-tmp-new-adopts))))
3816     (if char
3817         (if (> number 1) gnus-not-empty-thread-mark
3818           gnus-empty-thread-mark)
3819       number)))
3820
3821 (defsubst gnus-summary-line-message-size (head)
3822   "Return pretty-printed version of message size.
3823 This function is intended to be used in
3824 `gnus-summary-line-format-alist'."
3825   (let ((c (or (mail-header-chars head) -1)))
3826     (cond ((< c 0) "n/a")               ; chars not available
3827           ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3828           ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3829           ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3830           (t (format "%dM" (/ c (* 1024.0 1024)))))))
3831
3832
3833 (defun gnus-summary-set-local-parameters (group)
3834   "Go through the local params of GROUP and set all variable specs in that list."
3835   (let ((vars '(quit-config)))          ; Ignore quit-config.
3836     (dolist (elem (gnus-group-find-parameter group))
3837       (and (consp elem)                 ; Has to be a cons.
3838            (consp (cdr elem))           ; The cdr has to be a list.
3839            (symbolp (car elem))         ; Has to be a symbol in there.
3840            (not (memq (car elem) vars))
3841            (ignore-errors
3842              (push (car elem) vars)
3843              ;; Variables like `gnus-show-threads' that are globally
3844              ;; bound, if used as group parameters, need to get to be
3845              ;; buffer-local, whereas just parameters like `gcc-self',
3846              ;; `timestamp', etc. should not be bound as variables.
3847              (if (boundp (car elem))
3848                  (set (make-local-variable (car elem)) (eval (nth 1 elem)))
3849                (eval (nth 1 elem))))))))
3850
3851 (defun gnus-summary-read-group (group &optional show-all no-article
3852                                       kill-buffer no-display backward
3853                                       select-articles)
3854   "Start reading news in newsgroup GROUP.
3855 If SHOW-ALL is non-nil, already read articles are also listed.
3856 If NO-ARTICLE is non-nil, no article is selected initially.
3857 If NO-DISPLAY, don't generate a summary buffer."
3858   (let (result)
3859     (while (and group
3860                 (null (setq result
3861                             (let ((gnus-auto-select-next nil))
3862                               (or (gnus-summary-read-group-1
3863                                    group show-all no-article
3864                                    kill-buffer no-display
3865                                    select-articles)
3866                                   (setq show-all nil
3867                                         select-articles nil)))))
3868                 (eq gnus-auto-select-next 'quietly))
3869       (set-buffer gnus-group-buffer)
3870       ;; The entry function called above goes to the next
3871       ;; group automatically, so we go two groups back
3872       ;; if we are searching for the previous group.
3873       (when backward
3874         (gnus-group-prev-unread-group 2))
3875       (if (not (equal group (gnus-group-group-name)))
3876           (setq group (gnus-group-group-name))
3877         (setq group nil)))
3878     result))
3879
3880 (defun gnus-summary-read-group-1 (group show-all no-article
3881                                         kill-buffer no-display
3882                                         &optional select-articles)
3883   ;; Killed foreign groups can't be entered.
3884   ;;  (when (and (not (gnus-group-native-p group))
3885   ;;         (not (gnus-gethash group gnus-newsrc-hashtb)))
3886   ;;    (error "Dead non-native groups can't be entered"))
3887   (gnus-message 5 "Retrieving newsgroup: %s..."
3888                 (gnus-group-decoded-name group))
3889   (let* ((new-group (gnus-summary-setup-buffer group))
3890          (quit-config (gnus-group-quit-config group))
3891          (did-select (and new-group (gnus-select-newsgroup
3892                                      group show-all select-articles))))
3893     (cond
3894      ;; This summary buffer exists already, so we just select it.
3895      ((not new-group)
3896       (gnus-set-global-variables)
3897       (when kill-buffer
3898         (gnus-kill-or-deaden-summary kill-buffer))
3899       (gnus-configure-windows 'summary 'force)
3900       (gnus-set-mode-line 'summary)
3901       (gnus-summary-position-point)
3902       (message "")
3903       t)
3904      ;; We couldn't select this group.
3905      ((null did-select)
3906       (when (and (eq major-mode 'gnus-summary-mode)
3907                  (not (equal (current-buffer) kill-buffer)))
3908         (kill-buffer (current-buffer))
3909         (if (not quit-config)
3910             (progn
3911               ;; Update the info -- marks might need to be removed,
3912               ;; for instance.
3913               (gnus-summary-update-info)
3914               (set-buffer gnus-group-buffer)
3915               (gnus-group-jump-to-group group)
3916               (gnus-group-next-unread-group 1))
3917           (gnus-handle-ephemeral-exit quit-config)))
3918       (let ((grpinfo (gnus-get-info group)))
3919         (if (null (gnus-info-read grpinfo))
3920             (gnus-message 3 "Group %s contains no messages"
3921                           (gnus-group-decoded-name group))
3922           (gnus-message 3 "Can't select group")))
3923       nil)
3924      ;; The user did a `C-g' while prompting for number of articles,
3925      ;; so we exit this group.
3926      ((eq did-select 'quit)
3927       (and (eq major-mode 'gnus-summary-mode)
3928            (not (equal (current-buffer) kill-buffer))
3929            (kill-buffer (current-buffer)))
3930       (when kill-buffer
3931         (gnus-kill-or-deaden-summary kill-buffer))
3932       (if (not quit-config)
3933           (progn
3934             (set-buffer gnus-group-buffer)
3935             (gnus-group-jump-to-group group)
3936             (gnus-configure-windows 'group 'force))
3937         (gnus-handle-ephemeral-exit quit-config))
3938       ;; Finally signal the quit.
3939       (signal 'quit nil))
3940      ;; The group was successfully selected.
3941      (t
3942       (gnus-set-global-variables)
3943       ;; Save the active value in effect when the group was entered.
3944       (setq gnus-newsgroup-active
3945             (gnus-copy-sequence
3946              (gnus-active gnus-newsgroup-name)))
3947       ;; You can change the summary buffer in some way with this hook.
3948       (gnus-run-hooks 'gnus-select-group-hook)
3949       (when (memq 'summary (gnus-update-format-specifications
3950                             nil 'summary 'summary-mode 'summary-dummy))
3951         ;; The format specification for the summary line was updated,
3952         ;; so we need to update the mark positions as well.
3953         (gnus-update-summary-mark-positions))
3954       ;; Do score processing.
3955       (when gnus-use-scoring
3956         (gnus-possibly-score-headers))
3957       ;; Check whether to fill in the gaps in the threads.
3958       (when gnus-build-sparse-threads
3959         (gnus-build-sparse-threads))
3960       ;; Find the initial limit.
3961       (if show-all
3962           (let ((gnus-newsgroup-dormant nil))
3963             (gnus-summary-initial-limit show-all))
3964         (gnus-summary-initial-limit show-all))
3965       ;; Generate the summary buffer.
3966       (unless no-display
3967         (gnus-summary-prepare))
3968       (when gnus-use-trees
3969         (gnus-tree-open group)
3970         (setq gnus-summary-highlight-line-function
3971               'gnus-tree-highlight-article))
3972       ;; If the summary buffer is empty, but there are some low-scored
3973       ;; articles or some excluded dormants, we include these in the
3974       ;; buffer.
3975       (when (and (zerop (buffer-size))
3976                  (not no-display))
3977         (cond (gnus-newsgroup-dormant
3978                (gnus-summary-limit-include-dormant))
3979               ((and gnus-newsgroup-scored show-all)
3980                (gnus-summary-limit-include-expunged t))))
3981       ;; Function `gnus-apply-kill-file' must be called in this hook.
3982       (gnus-run-hooks 'gnus-apply-kill-hook)
3983       (if (and (zerop (buffer-size))
3984                (not no-display))
3985           (progn
3986             ;; This newsgroup is empty.
3987             (gnus-summary-catchup-and-exit nil t)
3988             (gnus-message 6 "No unread news")
3989             (when kill-buffer
3990               (gnus-kill-or-deaden-summary kill-buffer))
3991             ;; Return nil from this function.
3992             nil)
3993         ;; Hide conversation thread subtrees.  We cannot do this in
3994         ;; gnus-summary-prepare-hook since kill processing may not
3995         ;; work with hidden articles.
3996         (gnus-summary-maybe-hide-threads)
3997         (when kill-buffer
3998           (gnus-kill-or-deaden-summary kill-buffer))
3999         (gnus-summary-auto-select-subject)
4000         ;; Show first unread article if requested.
4001         (if (and (not no-article)
4002                  (not no-display)
4003                  gnus-newsgroup-unreads
4004                  gnus-auto-select-first)
4005             (progn
4006               (gnus-configure-windows 'summary)
4007               (let ((art (gnus-summary-article-number)))
4008                 (unless (and (not gnus-plugged)
4009                              (or (memq art gnus-newsgroup-undownloaded)
4010                                  (memq art gnus-newsgroup-downloadable)))
4011                   (gnus-summary-goto-article art))))
4012           ;; Don't select any articles.
4013           (gnus-summary-position-point)
4014           (gnus-configure-windows 'summary 'force)
4015           (gnus-set-mode-line 'summary))
4016         (when (and gnus-auto-center-group
4017                    (get-buffer-window gnus-group-buffer t))
4018           ;; Gotta use windows, because recenter does weird stuff if
4019           ;; the current buffer ain't the displayed window.
4020           (let ((owin (selected-window)))
4021             (select-window (get-buffer-window gnus-group-buffer t))
4022             (when (gnus-group-goto-group group)
4023               (recenter))
4024             (select-window owin)))
4025         ;; Mark this buffer as "prepared".
4026         (setq gnus-newsgroup-prepared t)
4027         (gnus-run-hooks 'gnus-summary-prepared-hook)
4028         (unless (gnus-ephemeral-group-p group)
4029           (gnus-group-update-group group))
4030         t)))))
4031
4032 (defun gnus-summary-auto-select-subject ()
4033   "Select the subject line on initial group entry."
4034   (goto-char (point-min))
4035   (cond
4036    ((eq gnus-auto-select-subject 'best)
4037     (gnus-summary-best-unread-subject))
4038    ((eq gnus-auto-select-subject 'unread)
4039     (gnus-summary-first-unread-subject))
4040    ((eq gnus-auto-select-subject 'unseen)
4041     (gnus-summary-first-unseen-subject))
4042    ((eq gnus-auto-select-subject 'unseen-or-unread)
4043     (gnus-summary-first-unseen-or-unread-subject))
4044    ((eq gnus-auto-select-subject 'first)
4045     ;; Do nothing.
4046     )
4047    ((functionp gnus-auto-select-subject)
4048     (funcall gnus-auto-select-subject))))
4049
4050 (defun gnus-summary-prepare ()
4051   "Generate the summary buffer."
4052   (interactive)
4053   (let ((inhibit-read-only t))
4054     (erase-buffer)
4055     (setq gnus-newsgroup-data nil
4056           gnus-newsgroup-data-reverse nil)
4057     (gnus-run-hooks 'gnus-summary-generate-hook)
4058     ;; Generate the buffer, either with threads or without.
4059     (when gnus-newsgroup-headers
4060       (gnus-summary-prepare-threads
4061        (if gnus-show-threads
4062            (gnus-sort-gathered-threads
4063             (funcall gnus-summary-thread-gathering-function
4064                      (gnus-sort-threads
4065                       (gnus-cut-threads (gnus-make-threads)))))
4066          ;; Unthreaded display.
4067          (gnus-sort-articles gnus-newsgroup-headers))))
4068     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
4069     ;; Call hooks for modifying summary buffer.
4070     (goto-char (point-min))
4071     (gnus-run-hooks 'gnus-summary-prepare-hook)))
4072
4073 (defsubst gnus-general-simplify-subject (subject)
4074   "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
4075   (setq subject
4076         (cond
4077          ;; Truncate the subject.
4078          (gnus-simplify-subject-functions
4079           (gnus-map-function gnus-simplify-subject-functions subject))
4080          ((numberp gnus-summary-gather-subject-limit)
4081           (setq subject (gnus-simplify-subject-re subject))
4082           (if (> (length subject) gnus-summary-gather-subject-limit)
4083               (substring subject 0 gnus-summary-gather-subject-limit)
4084             subject))
4085          ;; Fuzzily simplify it.
4086          ((eq 'fuzzy gnus-summary-gather-subject-limit)
4087           (gnus-simplify-subject-fuzzy subject))
4088          ;; Just remove the leading "Re:".
4089          (t
4090           (gnus-simplify-subject-re subject))))
4091
4092   (if (and gnus-summary-gather-exclude-subject
4093            (string-match gnus-summary-gather-exclude-subject subject))
4094       nil                         ; This article shouldn't be gathered
4095     subject))
4096
4097 (defun gnus-summary-simplify-subject-query ()
4098   "Query where the respool algorithm would put this article."
4099   (interactive)
4100   (gnus-summary-select-article)
4101   (message "%s" (gnus-general-simplify-subject (gnus-summary-article-subject))))
4102
4103 (defun gnus-gather-threads-by-subject (threads)
4104   "Gather threads by looking at Subject headers."
4105   (if (not gnus-summary-make-false-root)
4106       threads
4107     (let ((hashtb (gnus-make-hashtable 1024))
4108           (prev threads)
4109           (result threads)
4110           subject hthread whole-subject)
4111       (while threads
4112         (setq subject (gnus-general-simplify-subject
4113                        (setq whole-subject (mail-header-subject
4114                                             (caar threads)))))
4115         (when subject
4116           (if (setq hthread (gnus-gethash subject hashtb))
4117               (progn
4118                 ;; We enter a dummy root into the thread, if we
4119                 ;; haven't done that already.
4120                 (unless (stringp (caar hthread))
4121                   (setcar hthread (list whole-subject (car hthread))))
4122                 ;; We add this new gathered thread to this gathered
4123                 ;; thread.
4124                 (setcdr (car hthread)
4125                         (nconc (cdar hthread) (list (car threads))))
4126                 ;; Remove it from the list of threads.
4127                 (setcdr prev (cdr threads))
4128                 (setq threads prev))
4129             ;; Enter this thread into the hash table.
4130             (gnus-sethash subject
4131                           (if gnus-summary-make-false-root-always
4132                               (progn
4133                                 ;; If you want a dummy root above all
4134                                 ;; threads...
4135                                 (setcar threads (list whole-subject
4136                                                       (car threads)))
4137                                 threads)
4138                             threads)
4139                           hashtb)))
4140         (setq prev threads)
4141         (setq threads (cdr threads)))
4142       result)))
4143
4144 (defun gnus-gather-threads-by-references (threads)
4145   "Gather threads by looking at References headers."
4146   (let ((idhashtb (gnus-make-hashtable 1024))
4147         (thhashtb (gnus-make-hashtable 1024))
4148         (prev threads)
4149         (result threads)
4150         ids references id gthread gid entered ref)
4151     (while threads
4152       (when (setq references (mail-header-references (caar threads)))
4153         (setq id (mail-header-id (caar threads))
4154               ids (inline (gnus-split-references references))
4155               entered nil)
4156         (while (setq ref (pop ids))
4157           (setq ids (delete ref ids))
4158           (if (not (setq gid (gnus-gethash ref idhashtb)))
4159               (progn
4160                 (gnus-sethash ref id idhashtb)
4161                 (gnus-sethash id threads thhashtb))
4162             (setq gthread (gnus-gethash gid thhashtb))
4163             (unless entered
4164               ;; We enter a dummy root into the thread, if we
4165               ;; haven't done that already.
4166               (unless (stringp (caar gthread))
4167                 (setcar gthread (list (mail-header-subject (caar gthread))
4168                                       (car gthread))))
4169               ;; We add this new gathered thread to this gathered
4170               ;; thread.
4171               (setcdr (car gthread)
4172                       (nconc (cdar gthread) (list (car threads)))))
4173             ;; Add it into the thread hash table.
4174             (gnus-sethash id gthread thhashtb)
4175             (setq entered t)
4176             ;; Remove it from the list of threads.
4177             (setcdr prev (cdr threads))
4178             (setq threads prev))))
4179       (setq prev threads)
4180       (setq threads (cdr threads)))
4181     result))
4182
4183 (defun gnus-sort-gathered-threads (threads)
4184   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
4185   (let ((result threads))
4186     (while threads
4187       (when (stringp (caar threads))
4188         (setcdr (car threads)
4189                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
4190       (setq threads (cdr threads)))
4191     result))
4192
4193 (defun gnus-thread-loop-p (root thread)
4194   "Say whether ROOT is in THREAD."
4195   (let ((stack (list thread))
4196         (infloop 0)
4197         th)
4198     (while (setq thread (pop stack))
4199       (setq th (cdr thread))
4200       (while (and th
4201                   (not (eq (caar th) root)))
4202         (pop th))
4203       (if th
4204           ;; We have found a loop.
4205           (let (ref-dep)
4206             (setcdr thread (delq (car th) (cdr thread)))
4207             (if (boundp (setq ref-dep (intern "none"
4208                                               gnus-newsgroup-dependencies)))
4209                 (setcdr (symbol-value ref-dep)
4210                         (nconc (cdr (symbol-value ref-dep))
4211                                (list (car th))))
4212               (set ref-dep (list nil (car th))))
4213             (setq infloop 1
4214                   stack nil))
4215         ;; Push all the subthreads onto the stack.
4216         (push (cdr thread) stack)))
4217     infloop))
4218
4219 (defun gnus-make-threads ()
4220   "Go through the dependency hashtb and find the roots.  Return all threads."
4221   (let (threads)
4222     (while (catch 'infloop
4223              (mapatoms
4224               (lambda (refs)
4225                 ;; Deal with self-referencing References loops.
4226                 (when (and (car (symbol-value refs))
4227                            (not (zerop
4228                                  (apply
4229                                   '+
4230                                   (mapcar
4231                                    (lambda (thread)
4232                                      (gnus-thread-loop-p
4233                                       (car (symbol-value refs)) thread))
4234                                    (cdr (symbol-value refs)))))))
4235                   (setq threads nil)
4236                   (throw 'infloop t))
4237                 (unless (car (symbol-value refs))
4238                   ;; These threads do not refer back to any other
4239                   ;; articles, so they're roots.
4240                   (setq threads (append (cdr (symbol-value refs)) threads))))
4241               gnus-newsgroup-dependencies)))
4242     threads))
4243
4244 ;; Build the thread tree.
4245 (defsubst gnus-dependencies-add-header (header dependencies force-new)
4246   "Enter HEADER into the DEPENDENCIES table if it is not already there.
4247
4248 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
4249 if it was already present.
4250
4251 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
4252 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
4253 Message-IDs will be renamed to a unique Message-ID before being
4254 entered.
4255
4256 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
4257   (let* ((id (mail-header-id header))
4258          (id-dep (and id (intern id dependencies)))
4259          parent-id ref ref-dep ref-header replaced)
4260     ;; Enter this `header' in the `dependencies' table.
4261     (cond
4262      ((not id-dep)
4263       (setq header nil))
4264      ;; The first two cases do the normal part: enter a new `header'
4265      ;; in the `dependencies' table.
4266      ((not (boundp id-dep))
4267       (set id-dep (list header)))
4268      ((null (car (symbol-value id-dep)))
4269       (setcar (symbol-value id-dep) header))
4270
4271      ;; From here the `header' was already present in the
4272      ;; `dependencies' table.
4273      (force-new
4274       ;; Overrides an existing entry;
4275       ;; just set the header part of the entry.
4276       (setcar (symbol-value id-dep) header)
4277       (setq replaced t))
4278
4279      ;; Renames the existing `header' to a unique Message-ID.
4280      ((not gnus-summary-ignore-duplicates)
4281       ;; An article with this Message-ID has already been seen.
4282       ;; We rename the Message-ID.
4283       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
4284            (list header))
4285       (mail-header-set-id header id))
4286
4287      ;; The last case ignores an existing entry, except it adds any
4288      ;; additional Xrefs (in case the two articles came from different
4289      ;; servers.
4290      ;; Also sets `header' to `nil' meaning that the `dependencies'
4291      ;; table was *not* modified.
4292      (t
4293       (mail-header-set-xref
4294        (car (symbol-value id-dep))
4295        (concat (or (mail-header-xref (car (symbol-value id-dep)))
4296                    "")
4297                (or (mail-header-xref header) "")))
4298       (setq header nil)))
4299
4300     (when (and header (not replaced))
4301       ;; First check that we are not creating a References loop.
4302       (setq parent-id (gnus-parent-id (mail-header-references header)))
4303       (setq ref parent-id)
4304       (while (and ref
4305                   (setq ref-dep (intern-soft ref dependencies))
4306                   (boundp ref-dep)
4307                   (setq ref-header (car (symbol-value ref-dep))))
4308         (if (string= id ref)
4309             ;; Yuk!  This is a reference loop.  Make the article be a
4310             ;; root article.
4311             (progn
4312               (mail-header-set-references (car (symbol-value id-dep)) "none")
4313               (setq ref nil)
4314               (setq parent-id nil))
4315           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
4316       (setq ref-dep (intern (or parent-id "none") dependencies))
4317       (if (boundp ref-dep)
4318           (setcdr (symbol-value ref-dep)
4319                   (nconc (cdr (symbol-value ref-dep))
4320                          (list (symbol-value id-dep))))
4321         (set ref-dep (list nil (symbol-value id-dep)))))
4322     header))
4323
4324 (defun gnus-extract-message-id-from-in-reply-to (string)
4325   (if (string-match "<[^>]+>" string)
4326       (substring string (match-beginning 0) (match-end 0))
4327     nil))
4328
4329 (defun gnus-build-sparse-threads ()
4330   (let ((headers gnus-newsgroup-headers)
4331         (mail-parse-charset gnus-newsgroup-charset)
4332         (gnus-summary-ignore-duplicates t)
4333         header references generation relations
4334         subject child end new-child date)
4335     ;; First we create an alist of generations/relations, where
4336     ;; generations is how much we trust the relation, and the relation
4337     ;; is parent/child.
4338     (gnus-message 7 "Making sparse threads...")
4339     (save-excursion
4340       (nnheader-set-temp-buffer " *gnus sparse threads*")
4341       (while (setq header (pop headers))
4342         (when (and (setq references (mail-header-references header))
4343                    (not (string= references "")))
4344           (insert references)
4345           (setq child (mail-header-id header)
4346                 subject (mail-header-subject header)
4347                 date (mail-header-date header)
4348                 generation 0)
4349           (while (search-backward ">" nil t)
4350             (setq end (1+ (point)))
4351             (when (search-backward "<" nil t)
4352               (setq new-child (buffer-substring (point) end))
4353               (push (list (incf generation)
4354                           child (setq child new-child)
4355                           subject date)
4356                     relations)))
4357           (when child
4358             (push (list (1+ generation) child nil subject) relations))
4359           (erase-buffer)))
4360       (kill-buffer (current-buffer)))
4361     ;; Sort over trustworthiness.
4362     (dolist (relation (sort relations 'car-less-than-car))
4363       (when (gnus-dependencies-add-header
4364              (make-full-mail-header
4365               gnus-reffed-article-number
4366               (nth 3 relation) "" (or (nth 4 relation) "")
4367               (nth 1 relation)
4368               (or (nth 2 relation) "") 0 0 "")
4369              gnus-newsgroup-dependencies nil)
4370         (push gnus-reffed-article-number gnus-newsgroup-limit)
4371         (push gnus-reffed-article-number gnus-newsgroup-sparse)
4372         (push (cons gnus-reffed-article-number gnus-sparse-mark)
4373               gnus-newsgroup-reads)
4374         (decf gnus-reffed-article-number)))
4375     (gnus-message 7 "Making sparse threads...done")))
4376
4377 (defun gnus-build-old-threads ()
4378   ;; Look at all the articles that refer back to old articles, and
4379   ;; fetch the headers for the articles that aren't there.  This will
4380   ;; build complete threads - if the roots haven't been expired by the
4381   ;; server, that is.
4382   (let ((mail-parse-charset gnus-newsgroup-charset)
4383         id heads)
4384     (mapatoms
4385      (lambda (refs)
4386        (when (not (car (symbol-value refs)))
4387          (setq heads (cdr (symbol-value refs)))
4388          (while heads
4389            (if (memq (mail-header-number (caar heads))
4390                      gnus-newsgroup-dormant)
4391                (setq heads (cdr heads))
4392              (setq id (symbol-name refs))
4393              (while (and (setq id (gnus-build-get-header id))
4394                          (not (car (gnus-id-to-thread id)))))
4395              (setq heads nil)))))
4396      gnus-newsgroup-dependencies)))
4397
4398 (defsubst gnus-remove-odd-characters (string)
4399   "Translate STRING into something that doesn't contain weird characters."
4400   (mm-subst-char-in-string
4401    ?\r ?\-
4402    (mm-subst-char-in-string ?\n ?\- string t) t))
4403
4404 ;; This function has to be called with point after the article number
4405 ;; on the beginning of the line.
4406 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
4407   (let ((eol (point-at-eol))
4408         (buffer (current-buffer))
4409         header references in-reply-to)
4410
4411     ;; overview: [num subject from date id refs chars lines misc]
4412     (unwind-protect
4413         (let (x)
4414           (narrow-to-region (point) eol)
4415           (unless (eobp)
4416             (forward-char))
4417
4418           (setq header
4419                 (make-full-mail-header
4420                  number                 ; number
4421                  (condition-case ()     ; subject
4422                      (gnus-remove-odd-characters
4423                       (funcall gnus-decode-encoded-word-function
4424                                (setq x (nnheader-nov-field))))
4425                    (error x))
4426                  (condition-case ()     ; from
4427                      (gnus-remove-odd-characters
4428                       (funcall gnus-decode-encoded-address-function
4429                                (setq x (nnheader-nov-field))))
4430                    (error x))
4431                  (nnheader-nov-field)   ; date
4432                  (nnheader-nov-read-message-id number)  ; id
4433                  (setq references (nnheader-nov-field)) ; refs
4434                  (nnheader-nov-read-integer) ; chars
4435                  (nnheader-nov-read-integer) ; lines
4436                  (unless (eobp)
4437                    (if (looking-at "Xref: ")
4438                        (goto-char (match-end 0)))
4439                    (nnheader-nov-field)) ; Xref
4440                  (nnheader-nov-parse-extra)))) ; extra
4441
4442       (widen))
4443
4444     (when (and (string= references "")
4445                (setq in-reply-to (mail-header-extra header))
4446                (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4447       (mail-header-set-references
4448        header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4449
4450     (when gnus-alter-header-function
4451       (funcall gnus-alter-header-function header))
4452     (gnus-dependencies-add-header header dependencies force-new)))
4453
4454 (defun gnus-build-get-header (id)
4455   "Look through the buffer of NOV lines and find the header to ID.
4456 Enter this line into the dependencies hash table, and return
4457 the id of the parent article (if any)."
4458   (let ((deps gnus-newsgroup-dependencies)
4459         found header)
4460     (prog1
4461         (with-current-buffer nntp-server-buffer
4462           (let ((case-fold-search nil))
4463             (goto-char (point-min))
4464             (while (and (not found)
4465                         (search-forward id nil t))
4466               (beginning-of-line)
4467               (setq found (looking-at
4468                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4469                                    (regexp-quote id))))
4470               (or found (beginning-of-line 2)))
4471             (when found
4472               (beginning-of-line)
4473               (and
4474                (setq header (gnus-nov-parse-line
4475                              (read (current-buffer)) deps))
4476                (gnus-parent-id (mail-header-references header))))))
4477       (when header
4478         (let ((number (mail-header-number header)))
4479           (push number gnus-newsgroup-limit)
4480           (push header gnus-newsgroup-headers)
4481           (if (memq number gnus-newsgroup-unselected)
4482               (progn
4483                 (setq gnus-newsgroup-unreads
4484                       (gnus-add-to-sorted-list gnus-newsgroup-unreads
4485                                                number))
4486                 (setq gnus-newsgroup-unselected
4487                       (delq number gnus-newsgroup-unselected)))
4488             (push number gnus-newsgroup-ancient)))))))
4489
4490 (defun gnus-build-all-threads ()
4491   "Read all the headers."
4492   (let ((gnus-summary-ignore-duplicates t)
4493         (mail-parse-charset gnus-newsgroup-charset)
4494         (dependencies gnus-newsgroup-dependencies)
4495         header article)
4496     (with-current-buffer nntp-server-buffer
4497       (let ((case-fold-search nil))
4498         (goto-char (point-min))
4499         (while (not (eobp))
4500           (ignore-errors
4501             (setq article (read (current-buffer))
4502                   header (gnus-nov-parse-line article dependencies)))
4503           (when header
4504             (with-current-buffer gnus-summary-buffer
4505               (push header gnus-newsgroup-headers)
4506               (if (memq (setq article (mail-header-number header))
4507                         gnus-newsgroup-unselected)
4508                   (progn
4509                     (setq gnus-newsgroup-unreads
4510                           (gnus-add-to-sorted-list
4511                            gnus-newsgroup-unreads article))
4512                     (setq gnus-newsgroup-unselected
4513                           (delq article gnus-newsgroup-unselected)))
4514                 (push article gnus-newsgroup-ancient)))
4515             (forward-line 1)))))))
4516
4517 (defun gnus-summary-update-article-line (article header)
4518   "Update the line for ARTICLE using HEADER."
4519   (let* ((id (mail-header-id header))
4520          (thread (gnus-id-to-thread id)))
4521     (unless thread
4522       (error "Article in no thread"))
4523     ;; Update the thread.
4524     (setcar thread header)
4525     (gnus-summary-goto-subject article)
4526     (let* ((datal (gnus-data-find-list article))
4527            (data (car datal))
4528            (inhibit-read-only t)
4529            (level (gnus-summary-thread-level)))
4530       (gnus-delete-line)
4531       (let ((inserted (- (point)
4532                          (progn
4533                            (gnus-summary-insert-line
4534                             header level nil
4535                             (memq article gnus-newsgroup-undownloaded)
4536                             (gnus-article-mark article)
4537                             (memq article gnus-newsgroup-replied)
4538                             (memq article gnus-newsgroup-expirable)
4539                             ;; Only insert the Subject string when it's different
4540                             ;; from the previous Subject string.
4541                             (if (and
4542                                  gnus-show-threads
4543                                  (gnus-subject-equal
4544                                   (condition-case ()
4545                                       (mail-header-subject
4546                                        (gnus-data-header
4547                                         (cadr
4548                                          (gnus-data-find-list
4549                                           article
4550                                           (gnus-data-list t)))))
4551                                     ;; Error on the side of excessive subjects.
4552                                     (error ""))
4553                                   (mail-header-subject header)))
4554                                 ""
4555                               (mail-header-subject header))
4556                             nil (cdr (assq article gnus-newsgroup-scored))
4557                             (memq article gnus-newsgroup-processable))
4558                            (point)))))
4559         (when (cdr datal)
4560           (gnus-data-update-list
4561            (cdr datal)
4562            (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4563
4564 (defun gnus-summary-update-article (article &optional iheader)
4565   "Update ARTICLE in the summary buffer."
4566   (set-buffer gnus-summary-buffer)
4567   (let* ((header (gnus-summary-article-header article))
4568          (id (mail-header-id header))
4569          (data (gnus-data-find article))
4570          (thread (gnus-id-to-thread id))
4571          (references (mail-header-references header))
4572          (parent
4573           (gnus-id-to-thread
4574            (or (gnus-parent-id
4575                 (when (and references
4576                            (not (equal "" references)))
4577                   references))
4578                "none")))
4579          (inhibit-read-only t)
4580          (old (car thread)))
4581     (when thread
4582       (unless iheader
4583         (setcar thread nil)
4584         (when parent
4585           (delq thread parent)))
4586       (if (gnus-summary-insert-subject id header)
4587           ;; Set the (possibly) new article number in the data structure.
4588           (gnus-data-set-number data (gnus-id-to-article id))
4589         (setcar thread old)
4590         nil))))
4591
4592 (defun gnus-rebuild-thread (id &optional line)
4593   "Rebuild the thread containing ID.
4594 If LINE, insert the rebuilt thread starting on line LINE."
4595   (let ((inhibit-read-only t)
4596         old-pos current thread data)
4597     (if (not gnus-show-threads)
4598         (setq thread (list (car (gnus-id-to-thread id))))
4599       ;; Get the thread this article is part of.
4600       (setq thread (gnus-remove-thread id)))
4601     (setq old-pos (point-at-bol))
4602     (setq current (save-excursion
4603                     (and (re-search-backward "[\r\n]" nil t)
4604                          (gnus-summary-article-number))))
4605     ;; If this is a gathered thread, we have to go some re-gathering.
4606     (when (stringp (car thread))
4607       (let ((subject (car thread))
4608             roots thr)
4609         (setq thread (cdr thread))
4610         (while thread
4611           (unless (memq (setq thr (gnus-id-to-thread
4612                                    (gnus-root-id
4613                                     (mail-header-id (caar thread)))))
4614                         roots)
4615             (push thr roots))
4616           (setq thread (cdr thread)))
4617         ;; We now have all (unique) roots.
4618         (if (= (length roots) 1)
4619             ;; All the loose roots are now one solid root.
4620             (setq thread (car roots))
4621           (setq thread (cons subject (gnus-sort-threads roots))))))
4622     (let (threads)
4623       ;; We then insert this thread into the summary buffer.
4624       (when line
4625         (goto-char (point-min))
4626         (forward-line (1- line)))
4627       (let (gnus-newsgroup-data gnus-newsgroup-threads)
4628         (if gnus-show-threads
4629             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4630           (gnus-summary-prepare-unthreaded thread))
4631         (setq data (nreverse gnus-newsgroup-data))
4632         (setq threads gnus-newsgroup-threads))
4633       ;; We splice the new data into the data structure.
4634       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
4635       ;;!!! then we want to insert at the beginning of the buffer.
4636       ;;!!! That happens to be true with Gnus now, but that may
4637       ;;!!! change in the future.  Perhaps.
4638       (gnus-data-enter-list
4639        (if line nil current) data (- (point) old-pos))
4640       (setq gnus-newsgroup-threads
4641             (nconc threads gnus-newsgroup-threads))
4642       (gnus-data-compute-positions))))
4643
4644 (defun gnus-number-to-header (number)
4645   "Return the header for article NUMBER."
4646   (let ((headers gnus-newsgroup-headers))
4647     (while (and headers
4648                 (not (= number (mail-header-number (car headers)))))
4649       (pop headers))
4650     (when headers
4651       (car headers))))
4652
4653 (defun gnus-parent-headers (in-headers &optional generation)
4654   "Return the headers of the GENERATIONeth parent of HEADERS."
4655   (unless generation
4656     (setq generation 1))
4657   (let ((parent t)
4658         (headers in-headers)
4659         references)
4660     (while (and parent
4661                 (not (zerop generation))
4662                 (setq references (mail-header-references headers)))
4663       (setq headers (if (and references
4664                              (setq parent (gnus-parent-id references)))
4665                         (car (gnus-id-to-thread parent))
4666                       nil))
4667       (decf generation))
4668     (and (not (eq headers in-headers))
4669          headers)))
4670
4671 (defun gnus-id-to-thread (id)
4672   "Return the (sub-)thread where ID appears."
4673   (gnus-gethash id gnus-newsgroup-dependencies))
4674
4675 (defun gnus-id-to-article (id)
4676   "Return the article number of ID."
4677   (let ((thread (gnus-id-to-thread id)))
4678     (when (and thread
4679                (car thread))
4680       (mail-header-number (car thread)))))
4681
4682 (defun gnus-id-to-header (id)
4683   "Return the article headers of ID."
4684   (car (gnus-id-to-thread id)))
4685
4686 (defun gnus-article-displayed-root-p (article)
4687   "Say whether ARTICLE is a root(ish) article."
4688   (let ((level (gnus-summary-thread-level article))
4689         (refs (mail-header-references  (gnus-summary-article-header article)))
4690         particle)
4691     (cond
4692      ((null level) nil)
4693      ((zerop level) t)
4694      ((null refs) t)
4695      ((null (gnus-parent-id refs)) t)
4696      ((and (= 1 level)
4697            (null (setq particle (gnus-id-to-article
4698                                  (gnus-parent-id refs))))
4699            (null (gnus-summary-thread-level particle)))))))
4700
4701 (defun gnus-root-id (id)
4702   "Return the id of the root of the thread where ID appears."
4703   (let (last-id prev)
4704     (while (and id (setq prev (car (gnus-id-to-thread id))))
4705       (setq last-id id
4706             id (gnus-parent-id (mail-header-references prev))))
4707     last-id))
4708
4709 (defun gnus-articles-in-thread (thread)
4710   "Return the list of articles in THREAD."
4711   (cons (mail-header-number (car thread))
4712         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4713
4714 (defun gnus-remove-thread (id &optional dont-remove)
4715   "Remove the thread that has ID in it."
4716   (let (headers thread last-id)
4717     ;; First go up in this thread until we find the root.
4718     (setq last-id (gnus-root-id id)
4719           headers (message-flatten-list (gnus-id-to-thread last-id)))
4720     ;; We have now found the real root of this thread.  It might have
4721     ;; been gathered into some loose thread, so we have to search
4722     ;; through the threads to find the thread we wanted.
4723     (let ((threads gnus-newsgroup-threads)
4724           sub)
4725       (while threads
4726         (setq sub (car threads))
4727         (if (stringp (car sub))
4728             ;; This is a gathered thread, so we look at the roots
4729             ;; below it to find whether this article is in this
4730             ;; gathered root.
4731             (progn
4732               (setq sub (cdr sub))
4733               (while sub
4734                 (when (member (caar sub) headers)
4735                   (setq thread (car threads)
4736                         threads nil
4737                         sub nil))
4738                 (setq sub (cdr sub))))
4739           ;; It's an ordinary thread, so we check it.
4740           (when (eq (car sub) (car headers))
4741             (setq thread sub
4742                   threads nil)))
4743         (setq threads (cdr threads)))
4744       ;; If this article is in no thread, then it's a root.
4745       (if thread
4746           (unless dont-remove
4747             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4748         (setq thread (gnus-id-to-thread last-id)))
4749       (when thread
4750         (prog1
4751             thread                      ; We return this thread.
4752           (unless dont-remove
4753             (if (stringp (car thread))
4754                 (progn
4755                   ;; If we use dummy roots, then we have to remove the
4756                   ;; dummy root as well.
4757                   (when (eq gnus-summary-make-false-root 'dummy)
4758                     ;; We go to the dummy root by going to
4759                     ;; the first sub-"thread", and then one line up.
4760                     (gnus-summary-goto-article
4761                      (mail-header-number (caadr thread)))
4762                     (forward-line -1)
4763                     (gnus-delete-line)
4764                     (gnus-data-compute-positions))
4765                   (setq thread (cdr thread))
4766                   (while thread
4767                     (gnus-remove-thread-1 (car thread))
4768                     (setq thread (cdr thread))))
4769               (gnus-remove-thread-1 thread))))))))
4770
4771 (defun gnus-remove-thread-1 (thread)
4772   "Remove the thread THREAD recursively."
4773   (let ((number (mail-header-number (pop thread)))
4774         d)
4775     (setq thread (reverse thread))
4776     (while thread
4777       (gnus-remove-thread-1 (pop thread)))
4778     (when (setq d (gnus-data-find number))
4779       (goto-char (gnus-data-pos d))
4780       (gnus-summary-show-thread)
4781       (gnus-data-remove
4782        number
4783        (- (point-at-bol)
4784           (prog1
4785               (1+ (point-at-eol))
4786             (gnus-delete-line)))))))
4787
4788 (defun gnus-sort-threads-recursive (threads func)
4789   (sort (mapcar (lambda (thread)
4790                   (cons (car thread)
4791                         (and (cdr thread)
4792                              (gnus-sort-threads-recursive (cdr thread) func))))
4793                 threads) func))
4794
4795 (defun gnus-sort-threads-loop (threads func)
4796   (let* ((superthread (cons nil threads))
4797          (stack (list (cons superthread threads)))
4798          remaining-threads thread)
4799     (while stack
4800       (setq remaining-threads (cdr (car stack)))
4801       (if remaining-threads
4802           (progn (setq thread (car remaining-threads))
4803                  (setcdr (car stack) (cdr remaining-threads))
4804                  (if (cdr thread)
4805                      (push (cons thread (cdr thread)) stack)))
4806         (setq thread (caar stack))
4807         (setcdr thread (sort (cdr thread) func))
4808         (pop stack)))
4809     (cdr superthread)))
4810
4811 (defun gnus-sort-threads (threads)
4812   "Sort THREADS."
4813   (if (not gnus-thread-sort-functions)
4814       threads
4815     (gnus-message 8 "Sorting threads...")
4816     (prog1
4817         (condition-case nil
4818             (let ((max-lisp-eval-depth (max max-lisp-eval-depth 5000)))
4819               (gnus-sort-threads-recursive
4820                threads (gnus-make-sort-function gnus-thread-sort-functions)))
4821           ;; Even after binding max-lisp-eval-depth, the recursive
4822           ;; sorter might fail for very long threads.  In that case,
4823           ;; try using a (less well-tested) non-recursive sorter.
4824           (error (gnus-message 9 "Sorting threads with loop...")
4825                  (gnus-sort-threads-loop
4826                   threads (gnus-make-sort-function
4827                            gnus-thread-sort-functions))))
4828       (gnus-message 8 "Sorting threads...done"))))
4829
4830 (defun gnus-sort-articles (articles)
4831   "Sort ARTICLES."
4832   (when gnus-article-sort-functions
4833     (gnus-message 7 "Sorting articles...")
4834     (prog1
4835         (setq gnus-newsgroup-headers
4836               (sort articles (gnus-make-sort-function
4837                               gnus-article-sort-functions)))
4838       (gnus-message 7 "Sorting articles...done"))))
4839
4840 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4841 (defmacro gnus-thread-header (thread)
4842   "Return header of first article in THREAD.
4843 Note that THREAD must never, ever be anything else than a variable -
4844 using some other form will lead to serious barfage."
4845   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4846   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4847   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4848         (vector thread) 2))
4849
4850 (defsubst gnus-article-sort-by-number (h1 h2)
4851   "Sort articles by article number."
4852   (< (mail-header-number h1)
4853      (mail-header-number h2)))
4854
4855 (defun gnus-thread-sort-by-number (h1 h2)
4856   "Sort threads by root article number."
4857   (gnus-article-sort-by-number
4858    (gnus-thread-header h1) (gnus-thread-header h2)))
4859
4860 (defsubst gnus-article-sort-by-random (h1 h2)
4861   "Sort articles randomly."
4862   (zerop (random 2)))
4863
4864 (defun gnus-thread-sort-by-random (h1 h2)
4865   "Sort threads randomly."
4866   (gnus-article-sort-by-random
4867    (gnus-thread-header h1) (gnus-thread-header h2)))
4868
4869 (defsubst gnus-article-sort-by-lines (h1 h2)
4870   "Sort articles by article Lines header."
4871   (< (mail-header-lines h1)
4872      (mail-header-lines h2)))
4873
4874 (defun gnus-thread-sort-by-lines (h1 h2)
4875   "Sort threads by root article Lines header."
4876   (gnus-article-sort-by-lines
4877    (gnus-thread-header h1) (gnus-thread-header h2)))
4878
4879 (defsubst gnus-article-sort-by-chars (h1 h2)
4880   "Sort articles by octet length."
4881   (< (mail-header-chars h1)
4882      (mail-header-chars h2)))
4883
4884 (defun gnus-thread-sort-by-chars (h1 h2)
4885   "Sort threads by root article octet length."
4886   (gnus-article-sort-by-chars
4887    (gnus-thread-header h1) (gnus-thread-header h2)))
4888
4889 (defsubst gnus-article-sort-by-author (h1 h2)
4890   "Sort articles by root author."
4891   (gnus-string<
4892    (let ((extract (funcall
4893                    gnus-extract-address-components
4894                    (mail-header-from h1))))
4895      (or (car extract) (cadr extract) ""))
4896    (let ((extract (funcall
4897                    gnus-extract-address-components
4898                    (mail-header-from h2))))
4899      (or (car extract) (cadr extract) ""))))
4900
4901 (defun gnus-thread-sort-by-author (h1 h2)
4902   "Sort threads by root author."
4903   (gnus-article-sort-by-author
4904    (gnus-thread-header h1)  (gnus-thread-header h2)))
4905
4906 (defsubst gnus-article-sort-by-recipient (h1 h2)
4907   "Sort articles by recipient."
4908   (gnus-string<
4909    (let ((extract (funcall
4910                    gnus-extract-address-components
4911                    (or (cdr (assq 'To (mail-header-extra h1))) ""))))
4912      (or (car extract) (cadr extract)))
4913    (let ((extract (funcall
4914                    gnus-extract-address-components
4915                    (or (cdr (assq 'To (mail-header-extra h2))) ""))))
4916      (or (car extract) (cadr extract)))))
4917
4918 (defun gnus-thread-sort-by-recipient (h1 h2)
4919   "Sort threads by root recipient."
4920   (gnus-article-sort-by-recipient
4921    (gnus-thread-header h1) (gnus-thread-header h2)))
4922
4923 (defsubst gnus-article-sort-by-subject (h1 h2)
4924   "Sort articles by root subject."
4925   (gnus-string<
4926    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4927    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4928
4929 (defun gnus-thread-sort-by-subject (h1 h2)
4930   "Sort threads by root subject."
4931   (gnus-article-sort-by-subject
4932    (gnus-thread-header h1) (gnus-thread-header h2)))
4933
4934 (defsubst gnus-article-sort-by-date (h1 h2)
4935   "Sort articles by root article date."
4936   (time-less-p
4937    (gnus-date-get-time (mail-header-date h1))
4938    (gnus-date-get-time (mail-header-date h2))))
4939
4940 (defun gnus-thread-sort-by-date (h1 h2)
4941   "Sort threads by root article date."
4942   (gnus-article-sort-by-date
4943    (gnus-thread-header h1) (gnus-thread-header h2)))
4944
4945 (defsubst gnus-article-sort-by-score (h1 h2)
4946   "Sort articles by root article score.
4947 Unscored articles will be counted as having a score of zero."
4948   (> (or (cdr (assq (mail-header-number h1)
4949                     gnus-newsgroup-scored))
4950          gnus-summary-default-score 0)
4951      (or (cdr (assq (mail-header-number h2)
4952                     gnus-newsgroup-scored))
4953          gnus-summary-default-score 0)))
4954
4955 (defun gnus-thread-sort-by-score (h1 h2)
4956   "Sort threads by root article score."
4957   (gnus-article-sort-by-score
4958    (gnus-thread-header h1) (gnus-thread-header h2)))
4959
4960 (defun gnus-thread-sort-by-total-score (h1 h2)
4961   "Sort threads by the sum of all scores in the thread.
4962 Unscored articles will be counted as having a score of zero."
4963   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4964
4965 (defun gnus-thread-total-score (thread)
4966   ;; This function find the total score of THREAD.
4967   (cond
4968    ((null thread)
4969     0)
4970    ((consp thread)
4971     (if (stringp (car thread))
4972         (apply gnus-thread-score-function 0
4973                (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4974       (gnus-thread-total-score-1 thread)))
4975    (t
4976     (gnus-thread-total-score-1 (list thread)))))
4977
4978 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4979   "Sort threads such that the thread with the most recently arrived article comes first."
4980   (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4981
4982 (defun gnus-thread-highest-number (thread)
4983   "Return the highest article number in THREAD."
4984   (apply 'max (mapcar (lambda (header)
4985                         (mail-header-number header))
4986                       (message-flatten-list thread))))
4987
4988 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4989   "Sort threads such that the thread with the most recently dated article comes first."
4990   (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4991
4992 ; Since this is called not only to sort the top-level threads, but
4993 ; also in recursive sorts to order the articles within a thread, each
4994 ; article will be processed many times.  Thus it speeds things up
4995 ; quite a bit to use gnus-date-get-time, which caches the time value.
4996 (defun gnus-thread-latest-date (thread)
4997   "Return the highest article date in THREAD."
4998   (apply 'max
4999          (mapcar (lambda (header) (gnus-float-time
5000                                    (gnus-date-get-time
5001                                     (mail-header-date header))))
5002                  (message-flatten-list thread))))
5003
5004 (defun gnus-thread-total-score-1 (root)
5005   ;; This function find the total score of the thread below ROOT.
5006   (setq root (car root))
5007   (apply gnus-thread-score-function
5008          (or (append
5009               (mapcar 'gnus-thread-total-score
5010                       (cdr (gnus-id-to-thread (mail-header-id root))))
5011               (when (> (mail-header-number root) 0)
5012                 (list (or (cdr (assq (mail-header-number root)
5013                                      gnus-newsgroup-scored))
5014                           gnus-summary-default-score 0))))
5015              (list gnus-summary-default-score)
5016              '(0))))
5017
5018 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
5019 (defvar gnus-tmp-prev-subject nil)
5020 (defvar gnus-tmp-false-parent nil)
5021 (defvar gnus-tmp-root-expunged nil)
5022 (defvar gnus-tmp-dummy-line nil)
5023
5024 (defun gnus-extra-header (type &optional header)
5025   "Return the extra header of TYPE."
5026   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
5027       ""))
5028
5029 (defvar gnus-tmp-thread-tree-header-string "")
5030
5031 (defcustom gnus-sum-thread-tree-root "> "
5032   "With %B spec, used for the root of a thread.
5033 If nil, use subject instead."
5034   :version "22.1"
5035   :type '(radio (const :format "%v  " nil) string)
5036   :group 'gnus-thread)
5037
5038 (defcustom gnus-sum-thread-tree-false-root "> "
5039   "With %B spec, used for a false root of a thread.
5040 If nil, use subject instead."
5041   :version "22.1"
5042   :type '(radio (const :format "%v  " nil) string)
5043   :group 'gnus-thread)
5044
5045 (defcustom gnus-sum-thread-tree-single-indent ""
5046   "With %B spec, used for a thread with just one message.
5047 If nil, use subject instead."
5048   :version "22.1"
5049   :type '(radio (const :format "%v  " nil) string)
5050   :group 'gnus-thread)
5051
5052 (defcustom gnus-sum-thread-tree-vertical "| "
5053   "With %B spec, used for drawing a vertical line."
5054   :version "22.1"
5055   :type 'string
5056   :group 'gnus-thread)
5057
5058 (defcustom gnus-sum-thread-tree-indent "  "
5059   "With %B spec, used for indenting."
5060   :version "22.1"
5061   :type 'string
5062   :group 'gnus-thread)
5063
5064 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
5065   "With %B spec, used for a leaf with brothers."
5066   :version "22.1"
5067   :type 'string
5068   :group 'gnus-thread)
5069
5070 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
5071   "With %B spec, used for a leaf without brothers."
5072   :version "22.1"
5073   :type 'string
5074   :group 'gnus-thread)
5075
5076 (defcustom gnus-summary-display-while-building nil
5077   "If non-nil, show and update the summary buffer as it's being built.
5078 If the value is t, update the buffer after every line is inserted.  If
5079 the value is an integer (N), update the display every N lines."
5080   :version "22.1"
5081   :group 'gnus-thread
5082   :type '(choice (const :tag "off" nil)
5083                  number
5084                  (const :tag "frequently" t)))
5085
5086 (defun gnus-summary-prepare-threads (threads)
5087   "Prepare summary buffer from THREADS and indentation LEVEL.
5088 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
5089 or a straight list of headers."
5090   (gnus-message 7 "Generating summary...")
5091
5092   (setq gnus-newsgroup-threads threads)
5093   (beginning-of-line)
5094
5095   (let ((gnus-tmp-level 0)
5096         (default-score (or gnus-summary-default-score 0))
5097         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
5098         (building-line-count gnus-summary-display-while-building)
5099         (building-count (integerp gnus-summary-display-while-building))
5100         thread number subject stack state gnus-tmp-gathered beg-match
5101         new-roots gnus-tmp-new-adopts thread-end simp-subject
5102         gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
5103         gnus-tmp-replied gnus-tmp-subject-or-nil
5104         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
5105         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
5106         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
5107         tree-stack)
5108
5109     (setq gnus-tmp-prev-subject nil
5110           gnus-tmp-thread-tree-header-string "")
5111
5112     (if (vectorp (car threads))
5113         ;; If this is a straight (sic) list of headers, then a
5114         ;; threaded summary display isn't required, so we just create
5115         ;; an unthreaded one.
5116         (gnus-summary-prepare-unthreaded threads)
5117
5118       ;; Do the threaded display.
5119
5120       (if gnus-summary-display-while-building
5121           (switch-to-buffer (buffer-name)))
5122       (while (or threads stack gnus-tmp-new-adopts new-roots)
5123
5124         (if (and (= gnus-tmp-level 0)
5125                  (or (not stack)
5126                      (= (caar stack) 0))
5127                  (not gnus-tmp-false-parent)
5128                  (or gnus-tmp-new-adopts new-roots))
5129             (if gnus-tmp-new-adopts
5130                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
5131                       thread (list (car gnus-tmp-new-adopts))
5132                       gnus-tmp-header (caar thread)
5133                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
5134               (when new-roots
5135                 (setq thread (list (car new-roots))
5136                       gnus-tmp-header (caar thread)
5137                       new-roots (cdr new-roots))))
5138
5139           (if threads
5140               ;; If there are some threads, we do them before the
5141               ;; threads on the stack.
5142               (setq thread threads
5143                     gnus-tmp-header (caar thread))
5144             ;; There were no current threads, so we pop something off
5145             ;; the stack.
5146             (setq state (car stack)
5147                   gnus-tmp-level (car state)
5148                   tree-stack (cadr state)
5149                   thread (caddr state)
5150                   stack (cdr stack)
5151                   gnus-tmp-header (caar thread))))
5152
5153         (setq gnus-tmp-false-parent nil)
5154         (setq gnus-tmp-root-expunged nil)
5155         (setq thread-end nil)
5156
5157         (if (stringp gnus-tmp-header)
5158             ;; The header is a dummy root.
5159             (cond
5160              ((eq gnus-summary-make-false-root 'adopt)
5161               ;; We let the first article adopt the rest.
5162               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
5163                                                (cddar thread)))
5164               (setq gnus-tmp-gathered
5165                     (nconc (mapcar
5166                             (lambda (h) (mail-header-number (car h)))
5167                             (cddar thread))
5168                            gnus-tmp-gathered))
5169               (setq thread (cons (list (caar thread)
5170                                        (cadar thread))
5171                                  (cdr thread)))
5172               (setq gnus-tmp-level -1
5173                     gnus-tmp-false-parent t))
5174              ((eq gnus-summary-make-false-root 'empty)
5175               ;; We print adopted articles with empty subject fields.
5176               (setq gnus-tmp-gathered
5177                     (nconc (mapcar
5178                             (lambda (h) (mail-header-number (car h)))
5179                             (cddar thread))
5180                            gnus-tmp-gathered))
5181               (setq gnus-tmp-level -1))
5182              ((eq gnus-summary-make-false-root 'dummy)
5183               ;; We remember that we probably want to output a dummy
5184               ;; root.
5185               (setq gnus-tmp-dummy-line gnus-tmp-header)
5186               (setq gnus-tmp-prev-subject gnus-tmp-header))
5187              (t
5188               ;; We do not make a root for the gathered
5189               ;; sub-threads at all.
5190               (setq gnus-tmp-level -1)))
5191
5192           (setq number (mail-header-number gnus-tmp-header)
5193                 subject (mail-header-subject gnus-tmp-header)
5194                 simp-subject (gnus-simplify-subject-fully subject))
5195
5196           (cond
5197            ;; If the thread has changed subject, we might want to make
5198            ;; this subthread into a root.
5199            ((and (null gnus-thread-ignore-subject)
5200                  (not (zerop gnus-tmp-level))
5201                  gnus-tmp-prev-subject
5202                  (not (string= gnus-tmp-prev-subject simp-subject)))
5203             (setq new-roots (nconc new-roots (list (car thread)))
5204                   thread-end t
5205                   gnus-tmp-header nil))
5206            ;; If the article lies outside the current limit,
5207            ;; then we do not display it.
5208            ((not (memq number gnus-newsgroup-limit))
5209             (setq gnus-tmp-gathered
5210                   (nconc (mapcar
5211                           (lambda (h) (mail-header-number (car h)))
5212                           (cdar thread))
5213                          gnus-tmp-gathered))
5214             (setq gnus-tmp-new-adopts (if (cdar thread)
5215                                           (append gnus-tmp-new-adopts
5216                                                   (cdar thread))
5217                                         gnus-tmp-new-adopts)
5218                   thread-end t
5219                   gnus-tmp-header nil)
5220             (when (zerop gnus-tmp-level)
5221               (setq gnus-tmp-root-expunged t)))
5222            ;; Perhaps this article is to be marked as read?
5223            ((and gnus-summary-mark-below
5224                  (< (or (cdr (assq number gnus-newsgroup-scored))
5225                         default-score)
5226                     gnus-summary-mark-below)
5227                  ;; Don't touch sparse articles.
5228                  (not (gnus-summary-article-sparse-p number))
5229                  (not (gnus-summary-article-ancient-p number)))
5230             (setq gnus-newsgroup-unreads
5231                   (delq number gnus-newsgroup-unreads))
5232             (if gnus-newsgroup-auto-expire
5233                 (setq gnus-newsgroup-expirable
5234                       (gnus-add-to-sorted-list
5235                        gnus-newsgroup-expirable number))
5236               (push (cons number gnus-low-score-mark)
5237                     gnus-newsgroup-reads))))
5238
5239           (when gnus-tmp-header
5240             ;; We may have an old dummy line to output before this
5241             ;; article.
5242             (when (and gnus-tmp-dummy-line
5243                        (gnus-subject-equal
5244                         gnus-tmp-dummy-line
5245                         (mail-header-subject gnus-tmp-header)))
5246               (gnus-summary-insert-dummy-line
5247                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
5248               (setq gnus-tmp-dummy-line nil))
5249
5250             ;; Compute the mark.
5251             (setq gnus-tmp-unread (gnus-article-mark number))
5252
5253             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
5254                                   gnus-tmp-header gnus-tmp-level)
5255                   gnus-newsgroup-data)
5256
5257             ;; Actually insert the line.
5258             (setq
5259              gnus-tmp-subject-or-nil
5260              (cond
5261               ((and gnus-thread-ignore-subject
5262                     gnus-tmp-prev-subject
5263                     (not (string= gnus-tmp-prev-subject simp-subject)))
5264                subject)
5265               ((zerop gnus-tmp-level)
5266                (if (and (eq gnus-summary-make-false-root 'empty)
5267                         (memq number gnus-tmp-gathered)
5268                         gnus-tmp-prev-subject
5269                         (string= gnus-tmp-prev-subject simp-subject))
5270                    gnus-summary-same-subject
5271                  subject))
5272               (t gnus-summary-same-subject)))
5273             (if (and (eq gnus-summary-make-false-root 'adopt)
5274                      (= gnus-tmp-level 1)
5275                      (memq number gnus-tmp-gathered))
5276                 (setq gnus-tmp-opening-bracket ?\<
5277                       gnus-tmp-closing-bracket ?\>)
5278               (setq gnus-tmp-opening-bracket ?\[
5279                     gnus-tmp-closing-bracket ?\]))
5280             (if (>= gnus-tmp-level (length gnus-thread-indent-array))
5281                 (gnus-make-thread-indent-array
5282                  (max (* 2 (length gnus-thread-indent-array))
5283                       gnus-tmp-level)))
5284             (setq
5285              gnus-tmp-indentation
5286              (aref gnus-thread-indent-array gnus-tmp-level)
5287              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
5288              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
5289                                 gnus-summary-default-score 0)
5290              gnus-tmp-score-char
5291              (if (or (null gnus-summary-default-score)
5292                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
5293                          gnus-summary-zcore-fuzz))
5294                  ?                      ;Whitespace
5295                (if (< gnus-tmp-score gnus-summary-default-score)
5296                    gnus-score-below-mark gnus-score-over-mark))
5297              gnus-tmp-replied
5298              (cond ((memq number gnus-newsgroup-processable)
5299                     gnus-process-mark)
5300                    ((memq number gnus-newsgroup-cached)
5301                     gnus-cached-mark)
5302                    ((memq number gnus-newsgroup-replied)
5303                     gnus-replied-mark)
5304                    ((memq number gnus-newsgroup-forwarded)
5305                     gnus-forwarded-mark)
5306                    ((memq number gnus-newsgroup-saved)
5307                     gnus-saved-mark)
5308                    ((memq number gnus-newsgroup-recent)
5309                     gnus-recent-mark)
5310                    ((memq number gnus-newsgroup-unseen)
5311                     gnus-unseen-mark)
5312                    (t gnus-no-mark))
5313              gnus-tmp-downloaded
5314              (cond ((memq number gnus-newsgroup-undownloaded)
5315                     gnus-undownloaded-mark)
5316                    (gnus-newsgroup-agentized
5317                     gnus-downloaded-mark)
5318                    (t
5319                     gnus-no-mark))
5320              gnus-tmp-from (mail-header-from gnus-tmp-header)
5321              gnus-tmp-name
5322              (cond
5323               ((string-match "<[^>]+> *$" gnus-tmp-from)
5324                (setq beg-match (match-beginning 0))
5325                (or (and (string-match "^\".+\"" gnus-tmp-from)
5326                         (substring gnus-tmp-from 1 (1- (match-end 0))))
5327                    (substring gnus-tmp-from 0 beg-match)))
5328               ((string-match "(.+)" gnus-tmp-from)
5329                (substring gnus-tmp-from
5330                           (1+ (match-beginning 0)) (1- (match-end 0))))
5331               (t gnus-tmp-from))
5332
5333              ;; Do the %B string
5334              gnus-tmp-thread-tree-header-string
5335              (cond
5336               ((not gnus-show-threads) "")
5337               ((zerop gnus-tmp-level)
5338                (cond ((cdar thread)
5339                       (or gnus-sum-thread-tree-root subject))
5340                      (gnus-tmp-new-adopts
5341                       (or gnus-sum-thread-tree-false-root subject))
5342                      (t
5343                       (or gnus-sum-thread-tree-single-indent subject))))
5344               (t
5345                (concat (apply 'concat
5346                               (mapcar (lambda (item)
5347                                         (if (= item 1)
5348                                             gnus-sum-thread-tree-vertical
5349                                           gnus-sum-thread-tree-indent))
5350                                       (cdr (reverse tree-stack))))
5351                        (if (nth 1 thread)
5352                            gnus-sum-thread-tree-leaf-with-other
5353                          gnus-sum-thread-tree-single-leaf)))))
5354             (when (string= gnus-tmp-name "")
5355               (setq gnus-tmp-name gnus-tmp-from))
5356             (unless (numberp gnus-tmp-lines)
5357               (setq gnus-tmp-lines -1))
5358             (if (= gnus-tmp-lines -1)
5359                 (setq gnus-tmp-lines "?")
5360               (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
5361               (gnus-put-text-property
5362                (point)
5363                (progn (eval gnus-summary-line-format-spec) (point))
5364                'gnus-number number)
5365               (when gnus-visual-p
5366                 (forward-line -1)
5367                 (gnus-summary-highlight-line)
5368                 (when gnus-summary-update-hook
5369                   (gnus-run-hooks 'gnus-summary-update-hook))
5370                 (forward-line 1))
5371
5372               (setq gnus-tmp-prev-subject simp-subject)))
5373
5374         (when (nth 1 thread)
5375           (push (list (max 0 gnus-tmp-level)
5376                       (copy-sequence tree-stack)
5377                       (nthcdr 1 thread))
5378                 stack))
5379         (push (if (nth 1 thread) 1 0) tree-stack)
5380         (incf gnus-tmp-level)
5381         (setq threads (if thread-end nil (cdar thread)))
5382         (if gnus-summary-display-while-building
5383             (if building-count
5384                 (progn
5385                   ;; use a set frequency
5386                   (setq building-line-count (1- building-line-count))
5387                   (when (= building-line-count 0)
5388                     (sit-for 0)
5389                     (setq building-line-count
5390                           gnus-summary-display-while-building)))
5391               ;; always
5392               (sit-for 0)))
5393         (unless threads
5394           (setq gnus-tmp-level 0)))))
5395   (gnus-message 7 "Generating summary...done"))
5396
5397 (defun gnus-summary-prepare-unthreaded (headers)
5398   "Generate an unthreaded summary buffer based on HEADERS."
5399   (let (header number mark)
5400
5401     (beginning-of-line)
5402
5403     (while headers
5404       ;; We may have to root out some bad articles...
5405       (when (memq (setq number (mail-header-number
5406                                 (setq header (pop headers))))
5407                   gnus-newsgroup-limit)
5408         ;; Mark article as read when it has a low score.
5409         (when (and gnus-summary-mark-below
5410                    (< (or (cdr (assq number gnus-newsgroup-scored))
5411                           gnus-summary-default-score 0)
5412                       gnus-summary-mark-below)
5413                    (not (gnus-summary-article-ancient-p number)))
5414           (setq gnus-newsgroup-unreads
5415                 (delq number gnus-newsgroup-unreads))
5416           (if gnus-newsgroup-auto-expire
5417               (push number gnus-newsgroup-expirable)
5418             (push (cons number gnus-low-score-mark)
5419                   gnus-newsgroup-reads)))
5420
5421         (setq mark (gnus-article-mark number))
5422         (push (gnus-data-make number mark (1+ (point)) header 0)
5423               gnus-newsgroup-data)
5424         (gnus-summary-insert-line
5425          header 0 number
5426          (memq number gnus-newsgroup-undownloaded)
5427          mark (memq number gnus-newsgroup-replied)
5428          (memq number gnus-newsgroup-expirable)
5429          (mail-header-subject header) nil
5430          (cdr (assq number gnus-newsgroup-scored))
5431          (memq number gnus-newsgroup-processable))))))
5432
5433 (defun gnus-summary-remove-list-identifiers ()
5434   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
5435   (let ((regexp (if (consp gnus-list-identifiers)
5436                     (mapconcat 'identity gnus-list-identifiers " *\\|")
5437                   gnus-list-identifiers))
5438         changed subject)
5439     (when regexp
5440       (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
5441       (dolist (header gnus-newsgroup-headers)
5442         (setq subject (mail-header-subject header)
5443               changed nil)
5444         (while (string-match regexp subject)
5445           (setq subject
5446                 (concat (substring subject 0 (match-beginning 1))
5447                         (substring subject (match-end 0)))
5448                 changed t))
5449         (when changed
5450           (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
5451             (setq subject
5452                   (concat (substring subject 0 (match-beginning 1))
5453                           (substring subject (match-end 1)))))
5454           (mail-header-set-subject header subject))))))
5455
5456 (defun gnus-fetch-headers (articles)
5457   "Fetch headers of ARTICLES."
5458   (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
5459     (gnus-message 5 "Fetching headers for %s..." name)
5460     (prog1
5461         (if (eq 'nov
5462                 (setq gnus-headers-retrieved-by
5463                       (gnus-retrieve-headers
5464                        articles gnus-newsgroup-name
5465                        ;; We might want to fetch old headers, but
5466                        ;; not if there is only 1 article.
5467                        (and (or (and
5468                                  (not (eq gnus-fetch-old-headers 'some))
5469                                  (not (numberp gnus-fetch-old-headers)))
5470                                 (> (length articles) 1))
5471                             gnus-fetch-old-headers))))
5472             (gnus-get-newsgroup-headers-xover
5473              articles nil nil gnus-newsgroup-name t)
5474           (gnus-get-newsgroup-headers))
5475       (gnus-message 5 "Fetching headers for %s...done" name))))
5476
5477 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5478   "Select newsgroup GROUP.
5479 If READ-ALL is non-nil, all articles in the group are selected.
5480 If SELECT-ARTICLES, only select those articles from GROUP."
5481   (let* ((entry (gnus-group-entry group))
5482          ;;!!! Dirty hack; should be removed.
5483          (gnus-summary-ignore-duplicates
5484           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5485               t
5486             gnus-summary-ignore-duplicates))
5487          (info (nth 2 entry))
5488          charset articles fetched-articles cached)
5489
5490     (unless (gnus-check-server
5491              (set (make-local-variable 'gnus-current-select-method)
5492                   (gnus-find-method-for-group group)))
5493       (error "Couldn't open server"))
5494     (setq charset (gnus-group-name-charset gnus-current-select-method group))
5495
5496     (or (and entry (not (eq (car entry) t))) ; Either it's active...
5497         (gnus-activate-group group)     ; Or we can activate it...
5498         (progn                          ; Or we bug out.
5499           (when (equal major-mode 'gnus-summary-mode)
5500             (gnus-kill-buffer (current-buffer)))
5501           (error
5502            "Couldn't activate group %s: %s"
5503            (mm-decode-coding-string group charset)
5504            (mm-decode-coding-string (gnus-status-message group) charset))))
5505
5506     (unless (gnus-request-group group t)
5507       (when (equal major-mode 'gnus-summary-mode)
5508         (gnus-kill-buffer (current-buffer)))
5509       (error "Couldn't request group %s: %s"
5510              (mm-decode-coding-string group charset)
5511              (mm-decode-coding-string (gnus-status-message group) charset)))
5512
5513     (when gnus-agent
5514       (gnus-agent-possibly-alter-active group (gnus-active group) info)
5515
5516       (setq gnus-summary-use-undownloaded-faces
5517             (gnus-agent-find-parameter
5518              group
5519              'agent-enable-undownloaded-faces)))
5520
5521     (setq gnus-newsgroup-name group
5522           gnus-newsgroup-unselected nil
5523           gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5524
5525     (let ((display (gnus-group-find-parameter group 'display)))
5526       (setq gnus-newsgroup-display
5527             (cond
5528              ((not (zerop (or (car-safe read-all) 0)))
5529               ;; The user entered the group with C-u SPC/RET, let's show
5530               ;; all articles.
5531               'gnus-not-ignore)
5532              ((eq display 'all)
5533               'gnus-not-ignore)
5534              ((arrayp display)
5535               (gnus-summary-display-make-predicate (mapcar 'identity display)))
5536              ((numberp display)
5537               ;; The following is probably the "correct" solution, but
5538               ;; it makes Gnus fetch all headers and then limit the
5539               ;; articles (which is slow), so instead we hack the
5540               ;; select-articles parameter instead. -- Simon Josefsson
5541               ;; <jas@kth.se>
5542               ;;
5543               ;; (gnus-byte-compile
5544               ;;  `(lambda () (> number ,(- (cdr (gnus-active group))
5545               ;;                         display)))))
5546               (setq select-articles
5547                     (gnus-uncompress-range
5548                      (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5549                              (if (> tmp 0)
5550                                  tmp
5551                                1))
5552                            (cdr (gnus-active group)))))
5553               nil)
5554              (t
5555               nil))))
5556
5557     (gnus-summary-setup-default-charset)
5558
5559     ;; Kludge to avoid having cached articles nixed out in virtual groups.
5560     (when (gnus-virtual-group-p group)
5561       (setq cached gnus-newsgroup-cached))
5562
5563     (setq gnus-newsgroup-unreads
5564           (gnus-sorted-ndifference
5565            (gnus-sorted-ndifference gnus-newsgroup-unreads
5566                                     gnus-newsgroup-marked)
5567            gnus-newsgroup-dormant))
5568
5569     (setq gnus-newsgroup-processable nil)
5570
5571     (gnus-update-read-articles group gnus-newsgroup-unreads)
5572
5573     ;; Adjust and set lists of article marks.
5574     (when info
5575       (gnus-adjust-marked-articles info))
5576     (if (setq articles select-articles)
5577         (setq gnus-newsgroup-unselected
5578               (gnus-sorted-difference gnus-newsgroup-unreads articles))
5579       (setq articles (gnus-articles-to-read group read-all)))
5580
5581     (cond
5582      ((null articles)
5583       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5584       'quit)
5585      ((eq articles 0) nil)
5586      (t
5587       ;; Init the dependencies hash table.
5588       (setq gnus-newsgroup-dependencies
5589             (gnus-make-hashtable (length articles)))
5590       (gnus-set-global-variables)
5591       ;; Retrieve the headers and read them in.
5592
5593       (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5594
5595       ;; Kludge to avoid having cached articles nixed out in virtual groups.
5596       (when cached
5597         (setq gnus-newsgroup-cached cached))
5598
5599       ;; Suppress duplicates?
5600       (when gnus-suppress-duplicates
5601         (gnus-dup-suppress-articles))
5602
5603       ;; Set the initial limit.
5604       (setq gnus-newsgroup-limit (copy-sequence articles))
5605       ;; Remove canceled articles from the list of unread articles.
5606       (setq fetched-articles
5607             (mapcar (lambda (headers) (mail-header-number headers))
5608                     gnus-newsgroup-headers))
5609       (setq gnus-newsgroup-articles fetched-articles)
5610       (setq gnus-newsgroup-unreads
5611             (gnus-sorted-nintersection
5612              gnus-newsgroup-unreads fetched-articles))
5613       (gnus-compute-unseen-list)
5614
5615       ;; Removed marked articles that do not exist.
5616       (gnus-update-missing-marks
5617        (gnus-sorted-difference articles fetched-articles))
5618       ;; We might want to build some more threads first.
5619       (when (and gnus-fetch-old-headers
5620                  (eq gnus-headers-retrieved-by 'nov))
5621         (if (eq gnus-fetch-old-headers 'invisible)
5622             (gnus-build-all-threads)
5623           (gnus-build-old-threads)))
5624       ;; Let the Gnus agent mark articles as read.
5625       (when gnus-agent
5626         (gnus-agent-get-undownloaded-list))
5627       ;; Remove list identifiers from subject
5628       (when gnus-list-identifiers
5629         (gnus-summary-remove-list-identifiers))
5630       ;; Check whether auto-expire is to be done in this group.
5631       (setq gnus-newsgroup-auto-expire
5632             (gnus-group-auto-expirable-p group))
5633       ;; Set up the article buffer now, if necessary.
5634       (unless (and gnus-single-article-buffer
5635                    (equal gnus-article-buffer "*Article*"))
5636         (gnus-article-setup-buffer))
5637       ;; First and last article in this newsgroup.
5638       (when gnus-newsgroup-headers
5639         (setq gnus-newsgroup-begin
5640               (mail-header-number (car gnus-newsgroup-headers))
5641               gnus-newsgroup-end
5642               (mail-header-number
5643                (gnus-last-element gnus-newsgroup-headers))))
5644       ;; GROUP is successfully selected.
5645       (or gnus-newsgroup-headers t)))))
5646
5647 (defun gnus-compute-unseen-list ()
5648   ;; The `seen' marks are treated specially.
5649   (if (not gnus-newsgroup-seen)
5650       (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5651     (setq gnus-newsgroup-unseen
5652           (gnus-inverse-list-range-intersection
5653            gnus-newsgroup-articles gnus-newsgroup-seen))))
5654
5655 (declare-function gnus-get-predicate "gnus-agent" (predicate))
5656
5657 (defun gnus-summary-display-make-predicate (display)
5658   (require 'gnus-agent)
5659   (when (= (length display) 1)
5660     (setq display (car display)))
5661   (unless gnus-summary-display-cache
5662     (dolist (elem (append '((unread . unread)
5663                             (read . read)
5664                             (unseen . unseen))
5665                           gnus-article-mark-lists))
5666       (push (cons (cdr elem)
5667                   (gnus-byte-compile
5668                    `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5669             gnus-summary-display-cache)))
5670   (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5671         (gnus-category-predicate-cache gnus-summary-display-cache))
5672     (gnus-get-predicate display)))
5673
5674 ;; Uses the dynamically bound `number' variable.
5675 (defvar number)
5676 (defun gnus-article-marked-p (type &optional article)
5677   (let ((article (or article number)))
5678     (cond
5679      ((eq type 'tick)
5680       (memq article gnus-newsgroup-marked))
5681      ((eq type 'spam)
5682       (memq article gnus-newsgroup-spam-marked))
5683      ((eq type 'unsend)
5684       (memq article gnus-newsgroup-unsendable))
5685      ((eq type 'undownload)
5686       (memq article gnus-newsgroup-undownloaded))
5687      ((eq type 'download)
5688       (memq article gnus-newsgroup-downloadable))
5689      ((eq type 'unread)
5690       (memq article gnus-newsgroup-unreads))
5691      ((eq type 'read)
5692       (memq article gnus-newsgroup-reads))
5693      ((eq type 'dormant)
5694       (memq article gnus-newsgroup-dormant) )
5695      ((eq type 'expire)
5696       (memq article gnus-newsgroup-expirable))
5697      ((eq type 'reply)
5698       (memq article gnus-newsgroup-replied))
5699      ((eq type 'killed)
5700       (memq article gnus-newsgroup-killed))
5701      ((eq type 'bookmark)
5702       (assq article gnus-newsgroup-bookmarks))
5703      ((eq type 'score)
5704       (assq article gnus-newsgroup-scored))
5705      ((eq type 'save)
5706       (memq article gnus-newsgroup-saved))
5707      ((eq type 'cache)
5708       (memq article gnus-newsgroup-cached))
5709      ((eq type 'forward)
5710       (memq article gnus-newsgroup-forwarded))
5711      ((eq type 'seen)
5712       (not (memq article gnus-newsgroup-unseen)))
5713      ((eq type 'recent)
5714       (memq article gnus-newsgroup-recent))
5715      (t t))))
5716
5717 (defun gnus-articles-to-read (group &optional read-all)
5718   "Find out what articles the user wants to read."
5719   (let* ((articles
5720           ;; Select all articles if `read-all' is non-nil, or if there
5721           ;; are no unread articles.
5722           (if (or read-all
5723                   (and (zerop (length gnus-newsgroup-marked))
5724                        (zerop (length gnus-newsgroup-unreads)))
5725                   ;; Fetch all if the predicate is non-nil.
5726                   gnus-newsgroup-display)
5727               ;; We want to select the headers for all the articles in
5728               ;; the group, so we select either all the active
5729               ;; articles in the group, or (if that's nil), the
5730               ;; articles in the cache.
5731               (or
5732                (if gnus-newsgroup-maximum-articles
5733                    (let ((active (gnus-active group)))
5734                      (gnus-uncompress-range
5735                       (cons (max (car active)
5736                                  (- (cdr active)
5737                                     gnus-newsgroup-maximum-articles
5738                                     -1))
5739                             (cdr active))))
5740                  (gnus-uncompress-range (gnus-active group)))
5741                (gnus-cache-articles-in-group group))
5742             ;; Select only the "normal" subset of articles.
5743             (gnus-sorted-nunion
5744              (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5745              gnus-newsgroup-unreads)))
5746          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5747          (scored (length scored-list))
5748          (number (length articles))
5749          (marked (+ (length gnus-newsgroup-marked)
5750                     (length gnus-newsgroup-dormant)))
5751          (select
5752           (cond
5753            ((numberp read-all)
5754             read-all)
5755            ((numberp gnus-newsgroup-display)
5756             gnus-newsgroup-display)
5757            (t
5758             (condition-case ()
5759                 (cond
5760                  ((and (or (<= scored marked) (= scored number))
5761                        (numberp gnus-large-newsgroup)
5762                        (> number gnus-large-newsgroup))
5763                   (let* ((cursor-in-echo-area nil)
5764                          (initial (gnus-parameter-large-newsgroup-initial
5765                                    gnus-newsgroup-name))
5766                          (input
5767                           (read-string
5768                            (format
5769                             "How many articles from %s (%s %d): "
5770                             (gnus-group-decoded-name gnus-newsgroup-name)
5771                             (if initial "max" "default")
5772                             number)
5773                            (if initial
5774                                (cons (number-to-string initial)
5775                                      0)))))
5776                     (if (string-match "^[ \t]*$" input) number input)))
5777                  ((and (> scored marked) (< scored number)
5778                        (> (- scored number) 20))
5779                   (let ((input
5780                          (read-string
5781                           (format "%s %s (%d scored, %d total): "
5782                                   "How many articles from"
5783                                   (gnus-group-decoded-name group)
5784                                   scored number))))
5785                     (if (string-match "^[ \t]*$" input)
5786                         number input)))
5787                  (t number))
5788               (quit
5789                (message "Quit getting the articles to read")
5790                nil))))))
5791     (setq select (if (stringp select) (string-to-number select) select))
5792     (if (or (null select) (zerop select))
5793         select
5794       (if (and (not (zerop scored)) (<= (abs select) scored))
5795           (progn
5796             (setq articles (sort scored-list '<))
5797             (setq number (length articles)))
5798         (setq articles (copy-sequence articles)))
5799
5800       (when (< (abs select) number)
5801         (if (< select 0)
5802             ;; Select the N oldest articles.
5803             (setcdr (nthcdr (1- (abs select)) articles) nil)
5804           ;; Select the N most recent articles.
5805           (setq articles (nthcdr (- number select) articles))))
5806       (setq gnus-newsgroup-unselected
5807             (gnus-sorted-difference gnus-newsgroup-unreads articles))
5808       (when gnus-alter-articles-to-read-function
5809         (setq articles
5810               (sort
5811                (funcall gnus-alter-articles-to-read-function
5812                         gnus-newsgroup-name articles)
5813                '<)))
5814       articles)))
5815
5816 (defun gnus-killed-articles (killed articles)
5817   (let (out)
5818     (while articles
5819       (when (inline (gnus-member-of-range (car articles) killed))
5820         (push (car articles) out))
5821       (setq articles (cdr articles)))
5822     out))
5823
5824 (defun gnus-uncompress-marks (marks)
5825   "Uncompress the mark ranges in MARKS."
5826   (let ((uncompressed '(score bookmark))
5827         out)
5828     (while marks
5829       (if (memq (caar marks) uncompressed)
5830           (push (car marks) out)
5831         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5832       (setq marks (cdr marks)))
5833     out))
5834
5835 (defun gnus-article-mark-to-type (mark)
5836   "Return the type of MARK."
5837   (or (cadr (assq mark gnus-article-special-mark-lists))
5838       'list))
5839
5840 (defun gnus-article-unpropagatable-p (mark)
5841   "Return whether MARK should be propagated to back end."
5842   (memq mark gnus-article-unpropagated-mark-lists))
5843
5844 (defun gnus-adjust-marked-articles (info)
5845   "Set all article lists and remove all marks that are no longer valid."
5846   (let* ((marked-lists (gnus-info-marks info))
5847          (active (gnus-active (gnus-info-group info)))
5848          (min (car active))
5849          (max (cdr active))
5850          (types gnus-article-mark-lists)
5851          marks var articles article mark mark-type
5852          bgn end)
5853     ;; Hack to avoid adjusting marks for imap.
5854     (when (eq (car (gnus-find-method-for-group group)) 'nnimap)
5855       (setq min 1))
5856
5857     (dolist (marks marked-lists)
5858       (setq mark (car marks)
5859             mark-type (gnus-article-mark-to-type mark)
5860             var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5861
5862       ;; We set the variable according to the type of the marks list,
5863       ;; and then adjust the marks to a subset of the active articles.
5864       (cond
5865        ;; Adjust "simple" lists - compressed yet unsorted
5866        ((eq mark-type 'list)
5867         ;; Simultaneously uncompress and clip to active range
5868         ;; See gnus-uncompress-range for a description of possible marks
5869         (let (l lh)
5870           (if (not (cadr marks))
5871               (set var nil)
5872             (setq articles (if (numberp (cddr marks))
5873                                (list (cdr marks))
5874                              (cdr marks))
5875                   lh (cons nil nil)
5876                   l lh)
5877
5878             (while (setq article (pop articles))
5879               (cond ((consp article)
5880                      (setq bgn (max (car article) min)
5881                            end (min (cdr article) max))
5882                      (while (<= bgn end)
5883                        (setq l (setcdr l (cons bgn nil))
5884                              bgn (1+ bgn))))
5885                     ((and (<= min article)
5886                           (>= max article))
5887                      (setq l (setcdr l (cons article nil))))))
5888             (set var (cdr lh)))))
5889        ;; Adjust assocs.
5890        ((eq mark-type 'tuple)
5891         (set var (setq articles (cdr marks)))
5892         (when (not (listp (cdr (symbol-value var))))
5893           (set var (list (symbol-value var))))
5894         (when (not (listp (cdr articles)))
5895           (setq articles (list articles)))
5896         (while articles
5897           (when (or (not (consp (setq article (pop articles))))
5898                     (< (car article) min)
5899                     (> (car article) max))
5900             (set var (delq article (symbol-value var))))))
5901        ;; Adjust ranges (sloppily).
5902        ((eq mark-type 'range)
5903         (cond
5904          ((eq mark 'seen)
5905           ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5906           ;; It should be (seen (NUM1 . NUM2)).
5907           (when (numberp (cddr marks))
5908             (setcdr marks (list (cdr marks))))
5909           (setq articles (cdr marks))
5910           (while (and articles
5911                       (or (and (consp (car articles))
5912                                (> min (cdar articles)))
5913                           (and (numberp (car articles))
5914                                (> min (car articles)))))
5915             (pop articles))
5916           (set var articles))))))))
5917
5918 (defun gnus-update-missing-marks (missing)
5919   "Go through the list of MISSING articles and remove them from the mark lists."
5920   (when missing
5921     (let (var m)
5922       ;; Go through all types.
5923       (dolist (elem gnus-article-mark-lists)
5924         (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5925           (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5926           (when (symbol-value var)
5927             ;; This list has articles.  So we delete all missing
5928             ;; articles from it.
5929             (setq m missing)
5930             (while m
5931               (set var (delq (pop m) (symbol-value var))))))))))
5932
5933 (defun gnus-update-marks ()
5934   "Enter the various lists of marked articles into the newsgroup info list."
5935   (let ((types gnus-article-mark-lists)
5936         (info (gnus-get-info gnus-newsgroup-name))
5937         type list newmarked symbol delta-marks)
5938     (when info
5939       ;; Add all marks lists to the list of marks lists.
5940       (while (setq type (pop types))
5941         (setq list (symbol-value
5942                     (setq symbol
5943                           (intern (format "gnus-newsgroup-%s" (car type))))))
5944
5945         (when list
5946           ;; Get rid of the entries of the articles that have the
5947           ;; default score.
5948           (when (and (eq (cdr type) 'score)
5949                      gnus-save-score
5950                      list)
5951             (let* ((arts list)
5952                    (prev (cons nil list))
5953                    (all prev))
5954               (while arts
5955                 (if (or (not (consp (car arts)))
5956                         (= (cdar arts) gnus-summary-default-score))
5957                     (setcdr prev (cdr arts))
5958                   (setq prev arts))
5959                 (setq arts (cdr arts)))
5960               (setq list (cdr all)))))
5961
5962         (when (eq (cdr type) 'seen)
5963           (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5964
5965         (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5966           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5967
5968         (when (and (gnus-check-backend-function
5969                     'request-set-mark gnus-newsgroup-name)
5970                    (not (gnus-article-unpropagatable-p (cdr type))))
5971           (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5972                  (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5973                  (add (gnus-remove-from-range
5974                        (gnus-copy-sequence list) old)))
5975             (when add
5976               (push (list add 'add (list (cdr type))) delta-marks))
5977             (when del
5978               (push (list del 'del (list (cdr type))) delta-marks))))
5979
5980         (when list
5981           (push (cons (cdr type) list) newmarked)))
5982
5983       (when delta-marks
5984         (unless (gnus-check-group gnus-newsgroup-name)
5985           (error "Can't open server for %s" gnus-newsgroup-name))
5986         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5987
5988       ;; Enter these new marks into the info of the group.
5989       (if (nthcdr 3 info)
5990           (setcar (nthcdr 3 info) newmarked)
5991         ;; Add the marks lists to the end of the info.
5992         (when newmarked
5993           (setcdr (nthcdr 2 info) (list newmarked))))
5994
5995       ;; Cut off the end of the info if there's nothing else there.
5996       (let ((i 5))
5997         (while (and (> i 2)
5998                     (not (nth i info)))
5999           (when (nthcdr (decf i) info)
6000             (setcdr (nthcdr i info) nil)))))))
6001
6002 (defun gnus-set-mode-line (where)
6003   "Set the mode line of the article or summary buffers.
6004 If WHERE is `summary', the summary mode line format will be used."
6005   ;; Is this mode line one we keep updated?
6006   (when (and (memq where gnus-updated-mode-lines)
6007              (symbol-value
6008               (intern (format "gnus-%s-mode-line-format-spec" where))))
6009     (let (mode-string)
6010       ;; We evaluate this in the summary buffer since these
6011       ;; variables are buffer-local to that buffer.
6012       (with-current-buffer gnus-summary-buffer
6013         ;; We bind all these variables that are used in the `eval' form
6014         ;; below.
6015         (let* ((mformat (symbol-value
6016                          (intern
6017                           (format "gnus-%s-mode-line-format-spec" where))))
6018                (gnus-tmp-group-name (gnus-mode-string-quote
6019                                      (gnus-group-decoded-name
6020                                       gnus-newsgroup-name)))
6021                (gnus-tmp-article-number (or gnus-current-article 0))
6022                (gnus-tmp-unread gnus-newsgroup-unreads)
6023                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
6024                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
6025                (gnus-tmp-unread-and-unselected
6026                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
6027                             (zerop gnus-tmp-unselected))
6028                        "")
6029                       ((zerop gnus-tmp-unselected)
6030                        (format "{%d more}" gnus-tmp-unread-and-unticked))
6031                       (t (format "{%d(+%d) more}"
6032                                  gnus-tmp-unread-and-unticked
6033                                  gnus-tmp-unselected))))
6034                (gnus-tmp-subject
6035                 (if (and gnus-current-headers
6036                          (vectorp gnus-current-headers))
6037                     (gnus-mode-string-quote
6038                      (mail-header-subject gnus-current-headers))
6039                   ""))
6040                bufname-length max-len
6041                gnus-tmp-header) ;; passed as argument to any user-format-funcs
6042           (setq mode-string (eval mformat))
6043           (setq bufname-length (if (string-match "%b" mode-string)
6044                                    (- (length
6045                                        (buffer-name
6046                                         (if (eq where 'summary)
6047                                             nil
6048                                           (get-buffer gnus-article-buffer))))
6049                                       2)
6050                                  0))
6051           (setq max-len (max 4 (if gnus-mode-non-string-length
6052                                    (- (window-width)
6053                                       gnus-mode-non-string-length
6054                                       bufname-length)
6055                                  (length mode-string))))
6056           ;; We might have to chop a bit of the string off...
6057           (when (> (length mode-string) max-len)
6058             (setq mode-string
6059                   (concat (truncate-string-to-width mode-string (- max-len 3))
6060                           "...")))))
6061       ;; Update the mode line.
6062       (setq mode-line-buffer-identification
6063             (gnus-mode-line-buffer-identification (list mode-string)))
6064       (set-buffer-modified-p t))))
6065
6066 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
6067   "Go through the HEADERS list and add all Xrefs to a hash table.
6068 The resulting hash table is returned, or nil if no Xrefs were found."
6069   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
6070          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
6071          (xref-hashtb (gnus-make-hashtable))
6072          start group entry number xrefs header)
6073     (while headers
6074       (setq header (pop headers))
6075       (when (and (setq xrefs (mail-header-xref header))
6076                  (not (memq (setq number (mail-header-number header))
6077                             unreads)))
6078         (setq start 0)
6079         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
6080           (setq start (match-end 0))
6081           (setq group (if prefix
6082                           (concat prefix (substring xrefs (match-beginning 1)
6083                                                     (match-end 1)))
6084                         (substring xrefs (match-beginning 1) (match-end 1))))
6085           (setq number
6086                 (string-to-number (substring xrefs (match-beginning 2)
6087                                           (match-end 2))))
6088           (if (setq entry (gnus-gethash group xref-hashtb))
6089               (setcdr entry (cons number (cdr entry)))
6090             (gnus-sethash group (cons number nil) xref-hashtb)))))
6091     (and start xref-hashtb)))
6092
6093 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
6094   "Look through all the headers and mark the Xrefs as read."
6095   (let ((virtual (gnus-virtual-group-p from-newsgroup))
6096         name info xref-hashtb idlist method nth4)
6097     (with-current-buffer gnus-group-buffer
6098       (when (setq xref-hashtb
6099                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
6100         (mapatoms
6101          (lambda (group)
6102            (unless (string= from-newsgroup (setq name (symbol-name group)))
6103              (setq idlist (symbol-value group))
6104              ;; Dead groups are not updated.
6105              (and (prog1
6106                       (setq info (gnus-get-info name))
6107                     (when (stringp (setq nth4 (gnus-info-method info)))
6108                       (setq nth4 (gnus-server-to-method nth4))))
6109                   ;; Only do the xrefs if the group has the same
6110                   ;; select method as the group we have just read.
6111                   (or (gnus-methods-equal-p
6112                        nth4 (gnus-find-method-for-group from-newsgroup))
6113                       virtual
6114                       (equal nth4 (setq method (gnus-find-method-for-group
6115                                                 from-newsgroup)))
6116                       (and (equal (car nth4) (car method))
6117                            (equal (nth 1 nth4) (nth 1 method))))
6118                   gnus-use-cross-reference
6119                   (or (not (eq gnus-use-cross-reference t))
6120                       virtual
6121                       ;; Only do cross-references on subscribed
6122                       ;; groups, if that is what is wanted.
6123                       (<= (gnus-info-level info) gnus-level-subscribed))
6124                   (gnus-group-make-articles-read name idlist))))
6125          xref-hashtb)))))
6126
6127 (defun gnus-compute-read-articles (group articles)
6128   (let* ((entry (gnus-group-entry group))
6129          (info (nth 2 entry))
6130          (active (gnus-active group))
6131          ninfo)
6132     (when entry
6133       ;; First peel off all invalid article numbers.
6134       (when active
6135         (let ((ids articles)
6136               id first)
6137           (while (setq id (pop ids))
6138             (when (and first (> id (cdr active)))
6139               ;; We'll end up in this situation in one particular
6140               ;; obscure situation.  If you re-scan a group and get
6141               ;; a new article that is cross-posted to a different
6142               ;; group that has not been re-scanned, you might get
6143               ;; crossposted article that has a higher number than
6144               ;; Gnus believes possible.  So we re-activate this
6145               ;; group as well.  This might mean doing the
6146               ;; crossposting thingy will *increase* the number
6147               ;; of articles in some groups.  Tsk, tsk.
6148               (setq active (or (gnus-activate-group group) active)))
6149             (when (or (> id (cdr active))
6150                       (< id (car active)))
6151               (setq articles (delq id articles))))))
6152       ;; If the read list is nil, we init it.
6153       (if (and active
6154                (null (gnus-info-read info))
6155                (> (car active) 1))
6156           (setq ninfo (cons 1 (1- (car active))))
6157         (setq ninfo (gnus-info-read info)))
6158       ;; Then we add the read articles to the range.
6159       (gnus-add-to-range
6160        ninfo (setq articles (sort articles '<))))))
6161
6162 (defun gnus-group-make-articles-read (group articles)
6163   "Update the info of GROUP to say that ARTICLES are read."
6164   (let* ((num 0)
6165          (entry (gnus-group-entry group))
6166          (info (nth 2 entry))
6167          (active (gnus-active group))
6168          range)
6169     (when entry
6170       (setq range (gnus-compute-read-articles group articles))
6171       (with-current-buffer gnus-group-buffer
6172         (gnus-undo-register
6173           `(progn
6174              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
6175              (gnus-info-set-read ',info ',(gnus-info-read info))
6176              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
6177              (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
6178              (gnus-group-update-group ,group t))))
6179       ;; Add the read articles to the range.
6180       (gnus-info-set-read info range)
6181       (gnus-request-set-mark group (list (list range 'add '(read))))
6182       ;; Then we have to re-compute how many unread
6183       ;; articles there are in this group.
6184       (when active
6185         (cond
6186          ((not range)
6187           (setq num (- (1+ (cdr active)) (car active))))
6188          ((not (listp (cdr range)))
6189           (setq num (- (cdr active) (- (1+ (cdr range))
6190                                        (car range)))))
6191          (t
6192           (while range
6193             (if (numberp (car range))
6194                 (setq num (1+ num))
6195               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
6196             (setq range (cdr range)))
6197           (setq num (- (cdr active) num))))
6198         ;; Update the number of unread articles.
6199         (setcar entry num)
6200         ;; Update the group buffer.
6201         (unless (gnus-ephemeral-group-p group)
6202           (gnus-group-update-group group t))))))
6203
6204 (defvar gnus-newsgroup-none-id 0)
6205
6206 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
6207   (let ((cur nntp-server-buffer)
6208         (dependencies
6209          (or dependencies
6210              (with-current-buffer gnus-summary-buffer
6211                gnus-newsgroup-dependencies)))
6212         headers id end ref number
6213         (mail-parse-charset gnus-newsgroup-charset)
6214         (mail-parse-ignored-charsets
6215          (save-current-buffer (condition-case nil
6216                                   (set-buffer gnus-summary-buffer)
6217                                 (error))
6218                               gnus-newsgroup-ignored-charsets)))
6219     (with-current-buffer nntp-server-buffer
6220       ;; Translate all TAB characters into SPACE characters.
6221       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
6222       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
6223       (ietf-drums-unfold-fws)
6224       (gnus-run-hooks 'gnus-parse-headers-hook)
6225       (let ((case-fold-search t)
6226             in-reply-to header p lines chars)
6227         (goto-char (point-min))
6228         ;; Search to the beginning of the next header.  Error messages
6229         ;; do not begin with 2 or 3.
6230         (while (re-search-forward "^[23][0-9]+ " nil t)
6231           (setq id nil
6232                 ref nil)
6233           ;; This implementation of this function, with nine
6234           ;; search-forwards instead of the one re-search-forward and
6235           ;; a case (which basically was the old function) is actually
6236           ;; about twice as fast, even though it looks messier.  You
6237           ;; can't have everything, I guess.  Speed and elegance
6238           ;; doesn't always go hand in hand.
6239           (setq
6240            header
6241            (vector
6242             ;; Number.
6243             (prog1
6244                 (setq number (read cur))
6245               (end-of-line)
6246               (setq p (point))
6247               (narrow-to-region (point)
6248                                 (or (and (search-forward "\n.\n" nil t)
6249                                          (- (point) 2))
6250                                     (point))))
6251             ;; Subject.
6252             (progn
6253               (goto-char p)
6254               (if (search-forward "\nsubject:" nil t)
6255                   (funcall gnus-decode-encoded-word-function
6256                            (nnheader-header-value))
6257                 "(none)"))
6258             ;; From.
6259             (progn
6260               (goto-char p)
6261               (if (search-forward "\nfrom:" nil t)
6262                   (funcall gnus-decode-encoded-address-function
6263                            (nnheader-header-value))
6264                 "(nobody)"))
6265             ;; Date.
6266             (progn
6267               (goto-char p)
6268               (if (search-forward "\ndate:" nil t)
6269                   (nnheader-header-value) ""))
6270             ;; Message-ID.
6271             (progn
6272               (goto-char p)
6273               (setq id (if (re-search-forward
6274                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
6275                            ;; We do it this way to make sure the Message-ID
6276                            ;; is (somewhat) syntactically valid.
6277                            (buffer-substring (match-beginning 1)
6278                                              (match-end 1))
6279                          ;; If there was no message-id, we just fake one
6280                          ;; to make subsequent routines simpler.
6281                          (nnheader-generate-fake-message-id number))))
6282             ;; References.
6283             (progn
6284               (goto-char p)
6285               (if (search-forward "\nreferences:" nil t)
6286                   (progn
6287                     (setq end (point))
6288                     (prog1
6289                         (nnheader-header-value)
6290                       (setq ref
6291                             (buffer-substring
6292                              (progn
6293                                (end-of-line)
6294                                (search-backward ">" end t)
6295                                (1+ (point)))
6296                              (progn
6297                                (search-backward "<" end t)
6298                                (point))))))
6299                 ;; Get the references from the in-reply-to header if there
6300                 ;; were no references and the in-reply-to header looks
6301                 ;; promising.
6302                 (if (and (search-forward "\nin-reply-to:" nil t)
6303                          (setq in-reply-to (nnheader-header-value))
6304                          (string-match "<[^>]+>" in-reply-to))
6305                     (let (ref2)
6306                       (setq ref (substring in-reply-to (match-beginning 0)
6307                                            (match-end 0)))
6308                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
6309                         (setq ref2 (substring in-reply-to (match-beginning 0)
6310                                               (match-end 0)))
6311                         (when (> (length ref2) (length ref))
6312                           (setq ref ref2)))
6313                       ref)
6314                   (setq ref nil))))
6315             ;; Chars.
6316             (progn
6317               (goto-char p)
6318               (if (search-forward "\nchars: " nil t)
6319                   (if (numberp (setq chars (ignore-errors (read cur))))
6320                       chars -1)
6321                 -1))
6322             ;; Lines.
6323             (progn
6324               (goto-char p)
6325               (if (search-forward "\nlines: " nil t)
6326                   (if (numberp (setq lines (ignore-errors (read cur))))
6327                       lines -1)
6328                 -1))
6329             ;; Xref.
6330             (progn
6331               (goto-char p)
6332               (and (search-forward "\nxref:" nil t)
6333                    (nnheader-header-value)))
6334             ;; Extra.
6335             (when gnus-extra-headers
6336               (let ((extra gnus-extra-headers)
6337                     out)
6338                 (while extra
6339                   (goto-char p)
6340                   (when (search-forward
6341                          (concat "\n" (symbol-name (car extra)) ":") nil t)
6342                     (push (cons (car extra) (nnheader-header-value))
6343                           out))
6344                   (pop extra))
6345                 out))))
6346           (when (equal id ref)
6347             (setq ref nil))
6348
6349           (when gnus-alter-header-function
6350             (funcall gnus-alter-header-function header)
6351             (setq id (mail-header-id header)
6352                   ref (gnus-parent-id (mail-header-references header))))
6353
6354           (when (setq header
6355                       (gnus-dependencies-add-header
6356                        header dependencies force-new))
6357             (push header headers))
6358           (goto-char (point-max))
6359           (widen))
6360         (nreverse headers)))))
6361
6362 ;; Goes through the xover lines and returns a list of vectors
6363 (defun gnus-get-newsgroup-headers-xover (sequence &optional
6364                                                   force-new dependencies
6365                                                   group also-fetch-heads)
6366   "Parse the news overview data in the server buffer.
6367 Return a list of headers that match SEQUENCE (see
6368 `nntp-retrieve-headers')."
6369   ;; Get the Xref when the users reads the articles since most/some
6370   ;; NNTP servers do not include Xrefs when using XOVER.
6371   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
6372   (let ((mail-parse-charset gnus-newsgroup-charset)
6373         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
6374         (cur nntp-server-buffer)
6375         (dependencies (or dependencies gnus-newsgroup-dependencies))
6376         (allp (cond
6377                ((eq gnus-read-all-available-headers t)
6378                 t)
6379                ((and (stringp gnus-read-all-available-headers)
6380                      group)
6381                 (string-match gnus-read-all-available-headers group))
6382                (t
6383                 nil)))
6384         number headers header)
6385     (with-current-buffer nntp-server-buffer
6386       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
6387       ;; Allow the user to mangle the headers before parsing them.
6388       (gnus-run-hooks 'gnus-parse-headers-hook)
6389       (goto-char (point-min))
6390       (gnus-parse-without-error
6391         (while (and (or sequence allp)
6392                     (not (eobp)))
6393           (setq number (read cur))
6394           (when (not allp)
6395             (while (and sequence
6396                         (< (car sequence) number))
6397               (setq sequence (cdr sequence))))
6398           (when (and (or allp
6399                          (and sequence
6400                               (eq number (car sequence))))
6401                      (progn
6402                        (setq sequence (cdr sequence))
6403                        (setq header (inline
6404                                       (gnus-nov-parse-line
6405                                        number dependencies force-new)))))
6406             (push header headers))
6407           (forward-line 1)))
6408       ;; A common bug in inn is that if you have posted an article and
6409       ;; then retrieves the active file, it will answer correctly --
6410       ;; the new article is included.  However, a NOV entry for the
6411       ;; article may not have been generated yet, so this may fail.
6412       ;; We work around this problem by retrieving the last few
6413       ;; headers using HEAD.
6414       (if (or (not also-fetch-heads)
6415               (not sequence))
6416           ;; We (probably) got all the headers.
6417           (nreverse headers)
6418         (let ((gnus-nov-is-evil t))
6419           (nconc
6420            (nreverse headers)
6421            (when (eq (gnus-retrieve-headers sequence group) 'headers)
6422              (gnus-get-newsgroup-headers))))))))
6423
6424 (defun gnus-article-get-xrefs ()
6425   "Fill in the Xref value in `gnus-current-headers', if necessary.
6426 This is meant to be called in `gnus-article-internal-prepare-hook'."
6427   (let ((headers (with-current-buffer gnus-summary-buffer
6428                    gnus-current-headers)))
6429     (or (not gnus-use-cross-reference)
6430         (not headers)
6431         (and (mail-header-xref headers)
6432              (not (string= (mail-header-xref headers) "")))
6433         (let ((case-fold-search t)
6434               xref)
6435           (save-restriction
6436             (nnheader-narrow-to-headers)
6437             (goto-char (point-min))
6438             (when (or (and (not (eobp))
6439                            (eq (downcase (char-after)) ?x)
6440                            (looking-at "Xref:"))
6441                       (search-forward "\nXref:" nil t))
6442               (goto-char (1+ (match-end 0)))
6443               (setq xref (buffer-substring (point) (point-at-eol)))
6444               (mail-header-set-xref headers xref)))))))
6445
6446 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
6447   "Find article ID and insert the summary line for that article.
6448 OLD-HEADER can either be a header or a line number to insert
6449 the subject line on."
6450   (let* ((line (and (numberp old-header) old-header))
6451          (old-header (and (vectorp old-header) old-header))
6452          (header (cond ((and old-header use-old-header)
6453                         old-header)
6454                        ((and (numberp id)
6455                              (gnus-number-to-header id))
6456                         (gnus-number-to-header id))
6457                        (t
6458                         (gnus-read-header id))))
6459          (number (and (numberp id) id))
6460          d)
6461     (when header
6462       ;; Rebuild the thread that this article is part of and go to the
6463       ;; article we have fetched.
6464       (when (and (not gnus-show-threads)
6465                  old-header)
6466         (when (and number
6467                    (setq d (gnus-data-find (mail-header-number old-header))))
6468           (goto-char (gnus-data-pos d))
6469           (gnus-data-remove
6470            number
6471            (- (point-at-bol)
6472               (prog1
6473                   (1+ (point-at-eol))
6474                 (gnus-delete-line))))))
6475       ;; Remove list identifiers from subject.
6476       (when gnus-list-identifiers
6477         (let ((gnus-newsgroup-headers (list header)))
6478           (gnus-summary-remove-list-identifiers)))
6479       (when old-header
6480         (mail-header-set-number header (mail-header-number old-header)))
6481       (setq gnus-newsgroup-sparse
6482             (delq (setq number (mail-header-number header))
6483                   gnus-newsgroup-sparse))
6484       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
6485       (push number gnus-newsgroup-limit)
6486       (gnus-rebuild-thread (mail-header-id header) line)
6487       (gnus-summary-goto-subject number nil t))
6488     (when (and (numberp number)
6489                (> number 0))
6490       ;; We have to update the boundaries even if we can't fetch the
6491       ;; article if ID is a number -- so that the next `P' or `N'
6492       ;; command will fetch the previous (or next) article even
6493       ;; if the one we tried to fetch this time has been canceled.
6494       (when (> number gnus-newsgroup-end)
6495         (setq gnus-newsgroup-end number))
6496       (when (< number gnus-newsgroup-begin)
6497         (setq gnus-newsgroup-begin number))
6498       (setq gnus-newsgroup-unselected
6499             (delq number gnus-newsgroup-unselected)))
6500     ;; Report back a success?
6501     (and header (mail-header-number header))))
6502
6503 ;;; Process/prefix in the summary buffer
6504
6505 (defun gnus-summary-work-articles (n)
6506   "Return a list of articles to be worked upon.
6507 The prefix argument, the list of process marked articles, and the
6508 current article will be taken into consideration."
6509   (with-current-buffer gnus-summary-buffer
6510     (cond
6511      (n
6512       ;; A numerical prefix has been given.
6513       (setq n (prefix-numeric-value n))
6514       (let ((backward (< n 0))
6515             (n (abs (prefix-numeric-value n)))
6516             articles article)
6517         (save-excursion
6518           (while
6519               (and (> n 0)
6520                    (push (setq article (gnus-summary-article-number))
6521                          articles)
6522                    (if backward
6523                        (gnus-summary-find-prev nil article)
6524                      (gnus-summary-find-next nil article)))
6525             (decf n)))
6526         (nreverse articles)))
6527      ((and (gnus-region-active-p) (mark))
6528       (message "region active")
6529       ;; Work on the region between point and mark.
6530       (let ((max (max (point) (mark)))
6531             articles article)
6532         (save-excursion
6533           (goto-char (min (point) (mark)))
6534           (while
6535               (and
6536                (push (setq article (gnus-summary-article-number)) articles)
6537                (gnus-summary-find-next nil article)
6538                (< (point) max)))
6539           (nreverse articles))))
6540      (gnus-newsgroup-processable
6541       ;; There are process-marked articles present.
6542       ;; Save current state.
6543       (gnus-summary-save-process-mark)
6544       ;; Return the list.
6545       (reverse gnus-newsgroup-processable))
6546      (t
6547       ;; Just return the current article.
6548       (list (gnus-summary-article-number))))))
6549
6550 (defmacro gnus-summary-iterate (arg &rest forms)
6551   "Iterate over the process/prefixed articles and do FORMS.
6552 ARG is the interactive prefix given to the command.  FORMS will be
6553 executed with point over the summary line of the articles."
6554   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6555     `(let ((,articles (gnus-summary-work-articles ,arg)))
6556        (while ,articles
6557          (gnus-summary-goto-subject (car ,articles))
6558          ,@forms
6559          (pop ,articles)))))
6560
6561 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6562 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6563
6564 (defun gnus-summary-save-process-mark ()
6565   "Push the current set of process marked articles on the stack."
6566   (interactive)
6567   (push (copy-sequence gnus-newsgroup-processable)
6568         gnus-newsgroup-process-stack))
6569
6570 (defun gnus-summary-kill-process-mark ()
6571   "Push the current set of process marked articles on the stack and unmark."
6572   (interactive)
6573   (gnus-summary-save-process-mark)
6574   (gnus-summary-unmark-all-processable))
6575
6576 (defun gnus-summary-yank-process-mark ()
6577   "Pop the last process mark state off the stack and restore it."
6578   (interactive)
6579   (unless gnus-newsgroup-process-stack
6580     (error "Empty mark stack"))
6581   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6582
6583 (defun gnus-summary-process-mark-set (set)
6584   "Make SET into the current process marked articles."
6585   (gnus-summary-unmark-all-processable)
6586   (mapc 'gnus-summary-set-process-mark set))
6587
6588 ;;; Searching and stuff
6589
6590 (defun gnus-summary-search-group (&optional backward use-level)
6591   "Search for next unread newsgroup.
6592 If optional argument BACKWARD is non-nil, search backward instead."
6593   (with-current-buffer gnus-group-buffer
6594     (when (gnus-group-search-forward
6595            backward nil (if use-level (gnus-group-group-level) nil))
6596       (gnus-group-group-name))))
6597
6598 (defun gnus-summary-best-group (&optional exclude-group)
6599   "Find the name of the best unread group.
6600 If EXCLUDE-GROUP, do not go to this group."
6601   (with-current-buffer gnus-group-buffer
6602     (save-excursion
6603       (gnus-group-best-unread-group exclude-group))))
6604
6605 (defun gnus-summary-find-next (&optional unread article backward)
6606   (if backward
6607       (gnus-summary-find-prev unread article)
6608     (let* ((dummy (gnus-summary-article-intangible-p))
6609            (article (or article (gnus-summary-article-number)))
6610            (data (gnus-data-find-list article))
6611            result)
6612       (when (and (not dummy)
6613                  (or (not gnus-summary-check-current)
6614                      (not unread)
6615                      (not (gnus-data-unread-p (car data)))))
6616         (setq data (cdr data)))
6617       (when (setq result
6618                   (if unread
6619                       (progn
6620                         (while data
6621                           (unless (memq (gnus-data-number (car data))
6622                                         (cond
6623                                          ((eq gnus-auto-goto-ignores
6624                                               'always-undownloaded)
6625                                           gnus-newsgroup-undownloaded)
6626                                          (gnus-plugged
6627                                           nil)
6628                                          ((eq gnus-auto-goto-ignores
6629                                               'unfetched)
6630                                           gnus-newsgroup-unfetched)
6631                                          ((eq gnus-auto-goto-ignores
6632                                               'undownloaded)
6633                                           gnus-newsgroup-undownloaded)))
6634                             (when (gnus-data-unread-p (car data))
6635                               (setq result (car data)
6636                                     data nil)))
6637                           (setq data (cdr data)))
6638                         result)
6639                     (car data)))
6640         (goto-char (gnus-data-pos result))
6641         (gnus-data-number result)))))
6642
6643 (defun gnus-summary-find-prev (&optional unread article)
6644   (let* ((eobp (eobp))
6645          (article (or article (gnus-summary-article-number)))
6646          (data (gnus-data-find-list article (gnus-data-list 'rev)))
6647          result)
6648     (when (and (not eobp)
6649                (or (not gnus-summary-check-current)
6650                    (not unread)
6651                    (not (gnus-data-unread-p (car data)))))
6652       (setq data (cdr data)))
6653     (when (setq result
6654                 (if unread
6655                     (progn
6656                       (while data
6657                         (unless (memq (gnus-data-number (car data))
6658                                       (cond
6659                                        ((eq gnus-auto-goto-ignores
6660                                             'always-undownloaded)
6661                                         gnus-newsgroup-undownloaded)
6662                                        (gnus-plugged
6663                                         nil)
6664                                        ((eq gnus-auto-goto-ignores
6665                                             'unfetched)
6666                                         gnus-newsgroup-unfetched)
6667                                        ((eq gnus-auto-goto-ignores
6668                                             'undownloaded)
6669                                         gnus-newsgroup-undownloaded)))
6670                           (when (gnus-data-unread-p (car data))
6671                             (setq result (car data)
6672                                   data nil)))
6673                         (setq data (cdr data)))
6674                       result)
6675                   (car data)))
6676       (goto-char (gnus-data-pos result))
6677       (gnus-data-number result))))
6678
6679 (defun gnus-summary-find-subject (subject &optional unread backward article)
6680   (let* ((simp-subject (gnus-simplify-subject-fully subject))
6681          (article (or article (gnus-summary-article-number)))
6682          (articles (gnus-data-list backward))
6683          (arts (gnus-data-find-list article articles))
6684          result)
6685     (when (or (not gnus-summary-check-current)
6686               (not unread)
6687               (not (gnus-data-unread-p (car arts))))
6688       (setq arts (cdr arts)))
6689     (while arts
6690       (and (or (not unread)
6691                (gnus-data-unread-p (car arts)))
6692            (vectorp (gnus-data-header (car arts)))
6693            (gnus-subject-equal
6694             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6695            (setq result (car arts)
6696                  arts nil))
6697       (setq arts (cdr arts)))
6698     (and result
6699          (goto-char (gnus-data-pos result))
6700          (gnus-data-number result))))
6701
6702 (defun gnus-summary-search-forward (&optional unread subject backward)
6703   "Search forward for an article.
6704 If UNREAD, look for unread articles.  If SUBJECT, look for
6705 articles with that subject.  If BACKWARD, search backward instead."
6706   (cond (subject (gnus-summary-find-subject subject unread backward))
6707         (backward (gnus-summary-find-prev unread))
6708         (t (gnus-summary-find-next unread))))
6709
6710 (defun gnus-recenter (&optional n)
6711   "Center point in window and redisplay frame.
6712 Also do horizontal recentering."
6713   (interactive "P")
6714   (when (and gnus-auto-center-summary
6715              (not (eq gnus-auto-center-summary 'vertical)))
6716     (gnus-horizontal-recenter))
6717   (if (fboundp 'recenter-top-bottom)
6718       (recenter-top-bottom n)
6719     (recenter n)))
6720
6721 (put 'gnus-recenter 'isearch-scroll t)
6722
6723 (defun gnus-forward-line-ignore-invisible (n)
6724   "Move N lines forward (backward if N is negative).
6725 Like forward-line, but skip over (and don't count) invisible lines."
6726   (let (done)
6727     (while (and (> n 0) (not done))
6728       ;; If the following character is currently invisible,
6729       ;; skip all characters with that same `invisible' property value.
6730       (while (gnus-invisible-p (point))
6731         (goto-char (gnus-next-char-property-change (point))))
6732       (forward-line 1)
6733       (if (eobp)
6734           (setq done t)
6735         (setq n (1- n))))
6736     (while (and (< n 0) (not done))
6737       (forward-line -1)
6738       (if (bobp) (setq done t)
6739         (setq n (1+ n))
6740         (while (and (not (bobp)) (gnus-invisible-p (1- (point))))
6741           (goto-char (gnus-previous-char-property-change (point))))))))
6742
6743 (defun gnus-summary-recenter ()
6744   "Center point in the summary window.
6745 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6746 displayed, no centering will be performed."
6747   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6748   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
6749   (interactive)
6750   ;; The user has to want it.
6751   (when gnus-auto-center-summary
6752     (let* ((top (cond ((< (window-height) 4) 0)
6753                       ((< (window-height) 7) 1)
6754                       (t (if (numberp gnus-auto-center-summary)
6755                              gnus-auto-center-summary
6756                            (/ (1- (window-height)) 2)))))
6757            (height (1- (window-height)))
6758            (bottom (save-excursion
6759                      (goto-char (point-max))
6760                      (gnus-forward-line-ignore-invisible (- height))
6761                      (point)))
6762            (window (get-buffer-window (current-buffer))))
6763       (when (get-buffer-window gnus-article-buffer)
6764         ;; Only do recentering when the article buffer is displayed,
6765         ;; Set the window start to either `bottom', which is the biggest
6766         ;; possible valid number, or the second line from the top,
6767         ;; whichever is the least.
6768         (let ((top-pos (save-excursion
6769                          (gnus-forward-line-ignore-invisible (- top))
6770                          (point))))
6771           (if (> bottom top-pos)
6772               ;; Keep the second line from the top visible
6773               (set-window-start window top-pos)
6774             ;; Try to keep the bottom line visible; if it's partially
6775             ;; obscured, either scroll one more line to make it fully
6776             ;; visible, or revert to using TOP-POS.
6777             (save-excursion
6778               (goto-char (point-max))
6779               (gnus-forward-line-ignore-invisible -1)
6780               (let ((last-line-start (point)))
6781                 (goto-char bottom)
6782                 (set-window-start window (point) t)
6783                 (when (not (pos-visible-in-window-p last-line-start window))
6784                   (gnus-forward-line-ignore-invisible 1)
6785                   (set-window-start window (min (point) top-pos) t)))))))
6786       ;; Do horizontal recentering while we're at it.
6787       (when (and (get-buffer-window (current-buffer) t)
6788                  (not (eq gnus-auto-center-summary 'vertical)))
6789         (let ((selected (selected-window)))
6790           (select-window (get-buffer-window (current-buffer) t))
6791           (gnus-summary-position-point)
6792           (gnus-horizontal-recenter)
6793           (select-window selected))))))
6794
6795 (defun gnus-summary-jump-to-group (newsgroup)
6796   "Move point to NEWSGROUP in group mode buffer."
6797   ;; Keep update point of group mode buffer if visible.
6798   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6799       (save-window-excursion
6800         ;; Take care of tree window mode.
6801         (when (get-buffer-window gnus-group-buffer)
6802           (pop-to-buffer gnus-group-buffer))
6803         (gnus-group-jump-to-group newsgroup))
6804     (save-excursion
6805       ;; Take care of tree window mode.
6806       (if (get-buffer-window gnus-group-buffer 0)
6807           (pop-to-buffer gnus-group-buffer)
6808         (set-buffer gnus-group-buffer))
6809       (gnus-group-jump-to-group newsgroup))))
6810
6811 ;; This function returns a list of article numbers based on the
6812 ;; difference between the ranges of read articles in this group and
6813 ;; the range of active articles.
6814 (defun gnus-list-of-unread-articles (group)
6815   (let* ((read (gnus-info-read (gnus-get-info group)))
6816          (active (or (gnus-active group) (gnus-activate-group group)))
6817          (last (or (cdr active)
6818                    (error "Group %s couldn't be activated " group)))
6819          (bottom (if gnus-newsgroup-maximum-articles
6820                      (max (car active)
6821                           (- last gnus-newsgroup-maximum-articles -1))
6822                    (car active)))
6823          first nlast unread)
6824     ;; If none are read, then all are unread.
6825     (if (not read)
6826         (setq first bottom)
6827       ;; If the range of read articles is a single range, then the
6828       ;; first unread article is the article after the last read
6829       ;; article.  Sounds logical, doesn't it?
6830       (if (and (not (listp (cdr read)))
6831                (or (< (car read) bottom)
6832                    (progn (setq read (list read))
6833                           nil)))
6834           (setq first (max bottom (1+ (cdr read))))
6835         ;; `read' is a list of ranges.
6836         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6837                                   (caar read)))
6838                   1)
6839           (setq first bottom))
6840         (while read
6841           (when first
6842             (while (< first nlast)
6843               (setq unread (cons first unread)
6844                     first (1+ first))))
6845           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6846           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6847           (setq read (cdr read)))))
6848     ;; And add the last unread articles.
6849     (while (<= first last)
6850       (setq unread (cons first unread)
6851             first (1+ first)))
6852     ;; Return the list of unread articles.
6853     (delq 0 (nreverse unread))))
6854
6855 (defun gnus-list-of-read-articles (group)
6856   "Return a list of unread, unticked and non-dormant articles."
6857   (let* ((info (gnus-get-info group))
6858          (marked (gnus-info-marks info))
6859          (active (gnus-active group)))
6860     (and info active
6861          (gnus-list-range-difference
6862           (gnus-list-range-difference
6863            (gnus-sorted-complement
6864             (gnus-uncompress-range
6865              (if gnus-newsgroup-maximum-articles
6866                  (cons (max (car active)
6867                             (- (cdr active)
6868                                gnus-newsgroup-maximum-articles
6869                                -1))
6870                        (cdr active))
6871                active))
6872             (gnus-list-of-unread-articles group))
6873            (cdr (assq 'dormant marked)))
6874           (cdr (assq 'tick marked))))))
6875
6876 ;; This function returns a sequence of article numbers based on the
6877 ;; difference between the ranges of read articles in this group and
6878 ;; the range of active articles.
6879 (defun gnus-sequence-of-unread-articles (group)
6880   (let* ((read (gnus-info-read (gnus-get-info group)))
6881          (active (or (gnus-active group) (gnus-activate-group group)))
6882          (last (cdr active))
6883          (bottom (if gnus-newsgroup-maximum-articles
6884                      (max (car active)
6885                           (- last gnus-newsgroup-maximum-articles -1))
6886                    (car active)))
6887          first nlast unread)
6888     ;; If none are read, then all are unread.
6889     (if (not read)
6890         (setq first bottom)
6891       ;; If the range of read articles is a single range, then the
6892       ;; first unread article is the article after the last read
6893       ;; article.  Sounds logical, doesn't it?
6894       (if (and (not (listp (cdr read)))
6895                (or (< (car read) bottom)
6896                    (progn (setq read (list read))
6897                           nil)))
6898           (setq first (max bottom (1+ (cdr read))))
6899         ;; `read' is a list of ranges.
6900         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6901                                   (caar read)))
6902                   1)
6903           (setq first bottom))
6904         (while read
6905           (when first
6906             (push (cons first nlast) unread))
6907           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6908           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6909           (setq read (cdr read)))))
6910     ;; And add the last unread articles.
6911     (cond ((not (and first last))
6912            nil)
6913           ((< first last)
6914            (push (cons first last) unread))
6915           ((= first last)
6916            (push first unread)))
6917     ;; Return the sequence of unread articles.
6918     (delq 0 (nreverse unread))))
6919
6920 ;; Various summary commands
6921
6922 (defun gnus-summary-select-article-buffer ()
6923   "Reconfigure windows to show article buffer."
6924   (interactive)
6925   (if (not (gnus-buffer-live-p gnus-article-buffer))
6926       (error "There is no article buffer for this summary buffer")
6927     (gnus-configure-windows 'article)
6928     (select-window (get-buffer-window gnus-article-buffer))))
6929
6930 (defun gnus-summary-universal-argument (arg)
6931   "Perform any operation on all articles that are process/prefixed."
6932   (interactive "P")
6933   (let ((articles (gnus-summary-work-articles arg))
6934         func article)
6935     (if (eq
6936          (setq
6937           func
6938           (key-binding
6939            (read-key-sequence
6940             (substitute-command-keys
6941              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6942          'undefined)
6943         (gnus-error 1 "Undefined key")
6944       (save-excursion
6945         (while articles
6946           (gnus-summary-goto-subject (setq article (pop articles)))
6947           (let (gnus-newsgroup-processable)
6948             (command-execute func))
6949           (gnus-summary-remove-process-mark article)))))
6950   (gnus-summary-position-point))
6951
6952 (defun gnus-summary-toggle-truncation (&optional arg)
6953   "Toggle truncation of summary lines.
6954 With ARG, turn line truncation on if ARG is positive."
6955   (interactive "P")
6956   (setq truncate-lines
6957         (if (null arg) (not truncate-lines)
6958           (> (prefix-numeric-value arg) 0)))
6959   (redraw-display))
6960
6961 (defun gnus-summary-find-for-reselect ()
6962   "Return the number of an article to stay on across a reselect.
6963 The current article is considered, then following articles, then previous
6964 articles.  An article is sought which is not cancelled and isn't a temporary
6965 insertion from another group.  If there's no such then return a dummy 0."
6966   (let (found)
6967     (dolist (rev '(nil t))
6968       (unless found      ; don't demand the reverse list if we don't need it
6969         (let ((data (gnus-data-find-list
6970                      (gnus-summary-article-number) (gnus-data-list rev))))
6971           (while (and data (not found))
6972             (if (and (< 0 (gnus-data-number (car data)))
6973                      (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6974                 (setq found (gnus-data-number (car data))))
6975             (setq data (cdr data))))))
6976     (or found 0)))
6977
6978 (defun gnus-summary-reselect-current-group (&optional all rescan)
6979   "Exit and then reselect the current newsgroup.
6980 The prefix argument ALL means to select all articles."
6981   (interactive "P")
6982   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6983     (error "Ephemeral groups can't be reselected"))
6984   (let ((current-subject (gnus-summary-find-for-reselect))
6985         (group gnus-newsgroup-name))
6986     (setq gnus-newsgroup-begin nil)
6987     (gnus-summary-exit nil 'leave-hidden)
6988     ;; We have to adjust the point of group mode buffer because
6989     ;; point was moved to the next unread newsgroup by exiting.
6990     (gnus-summary-jump-to-group group)
6991     (when rescan
6992       (save-excursion
6993         (gnus-group-get-new-news-this-group 1)))
6994     (gnus-group-read-group all t)
6995     (gnus-summary-goto-subject current-subject nil t)))
6996
6997 (defun gnus-summary-rescan-group (&optional all)
6998   "Exit the newsgroup, ask for new articles, and select the newsgroup."
6999   (interactive "P")
7000   (gnus-summary-reselect-current-group all t))
7001
7002 (defun gnus-summary-update-info (&optional non-destructive)
7003   (save-excursion
7004     (let ((group gnus-newsgroup-name))
7005       (when group
7006         (when gnus-newsgroup-kill-headers
7007           (setq gnus-newsgroup-killed
7008                 (gnus-compress-sequence
7009                  (gnus-sorted-union
7010                   (gnus-list-range-intersection
7011                    gnus-newsgroup-unselected gnus-newsgroup-killed)
7012                   gnus-newsgroup-unreads)
7013                  t)))
7014         (unless (listp (cdr gnus-newsgroup-killed))
7015           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
7016         (let ((headers gnus-newsgroup-headers))
7017           ;; Set the new ranges of read articles.
7018           (with-current-buffer gnus-group-buffer
7019             (gnus-undo-force-boundary))
7020           (gnus-update-read-articles
7021            group (gnus-sorted-union
7022                   gnus-newsgroup-unreads gnus-newsgroup-unselected))
7023           ;; Set the current article marks.
7024           (let ((gnus-newsgroup-scored
7025                  (if (and (not gnus-save-score)
7026                           (not non-destructive))
7027                      nil
7028                    gnus-newsgroup-scored)))
7029             (save-excursion
7030               (gnus-update-marks)))
7031           ;; Do the cross-ref thing.
7032           (when gnus-use-cross-reference
7033             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
7034           ;; Do not switch windows but change the buffer to work.
7035           (set-buffer gnus-group-buffer)
7036           (unless (gnus-ephemeral-group-p group)
7037             (gnus-group-update-group group)))))))
7038
7039 (defun gnus-summary-save-newsrc (&optional force)
7040   "Save the current number of read/marked articles in the dribble buffer.
7041 The dribble buffer will then be saved.
7042 If FORCE (the prefix), also save the .newsrc file(s)."
7043   (interactive "P")
7044   (gnus-summary-update-info t)
7045   (if force
7046       (gnus-save-newsrc-file)
7047     (gnus-dribble-save)))
7048
7049 (declare-function gnus-cache-write-active "gnus-cache" (&optional force))
7050
7051 (defun gnus-summary-exit (&optional temporary leave-hidden)
7052   "Exit reading current newsgroup, and then return to group selection mode.
7053 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
7054   (interactive)
7055   (gnus-set-global-variables)
7056   (when (gnus-buffer-live-p gnus-article-buffer)
7057     (with-current-buffer gnus-article-buffer
7058       (mm-destroy-parts gnus-article-mime-handles)
7059       ;; Set it to nil for safety reason.
7060       (setq gnus-article-mime-handle-alist nil)
7061       (setq gnus-article-mime-handles nil)))
7062   (gnus-kill-save-kill-buffer)
7063   (gnus-async-halt-prefetch)
7064   (let* ((group gnus-newsgroup-name)
7065          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
7066          (gnus-group-is-exiting-p t)
7067          (mode major-mode)
7068          (group-point nil)
7069          (buf (current-buffer)))
7070     (unless quit-config
7071       ;; Do adaptive scoring, and possibly save score files.
7072       (when gnus-newsgroup-adaptive
7073         (gnus-score-adaptive))
7074       (when gnus-use-scoring
7075         (gnus-score-save)))
7076     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
7077     ;; If we have several article buffers, we kill them at exit.
7078     (unless gnus-single-article-buffer
7079       (when (gnus-buffer-live-p gnus-article-buffer)
7080         (with-current-buffer gnus-article-buffer
7081           ;; Don't kill sticky article buffers
7082           (unless (eq major-mode 'gnus-sticky-article-mode)
7083             (gnus-kill-buffer gnus-article-buffer)
7084             (setq gnus-article-current nil))))
7085       (gnus-kill-buffer gnus-original-article-buffer))
7086     (when gnus-use-cache
7087       (gnus-cache-possibly-remove-articles)
7088       (gnus-cache-save-buffers))
7089     (gnus-async-prefetch-remove-group group)
7090     (when gnus-suppress-duplicates
7091       (gnus-dup-enter-articles))
7092     (when gnus-use-trees
7093       (gnus-tree-close group))
7094     (when gnus-use-cache
7095       (gnus-cache-write-active))
7096     ;; Remove entries for this group.
7097     (nnmail-purge-split-history (gnus-group-real-name group))
7098     ;; Make all changes in this group permanent.
7099     (unless quit-config
7100       (gnus-run-hooks 'gnus-exit-group-hook)
7101       (gnus-summary-update-info))
7102     (gnus-close-group group)
7103     ;; Make sure where we were, and go to next newsgroup.
7104     (set-buffer gnus-group-buffer)
7105     (unless quit-config
7106       (gnus-group-jump-to-group group))
7107     (gnus-run-hooks 'gnus-summary-exit-hook)
7108     (unless (or quit-config
7109                 (not gnus-summary-next-group-on-exit)
7110                 ;; If this group has disappeared from the summary
7111                 ;; buffer, don't skip forwards.
7112                 (not (string= group (gnus-group-group-name))))
7113       (gnus-group-next-unread-group 1))
7114     (setq group-point (point))
7115     (if temporary
7116         nil                             ;Nothing to do.
7117       (set-buffer buf)
7118       (if (not gnus-kill-summary-on-exit)
7119           (progn
7120             (gnus-deaden-summary)
7121             (setq mode nil))
7122         ;; We set all buffer-local variables to nil.  It is unclear why
7123         ;; this is needed, but if we don't, buffer-local variables are
7124         ;; not garbage-collected, it seems.  This would the lead to en
7125         ;; ever-growing Emacs.
7126         (gnus-summary-clear-local-variables)
7127         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
7128           (gnus-summary-clear-local-variables))
7129         (when (get-buffer gnus-article-buffer)
7130           (bury-buffer gnus-article-buffer))
7131         ;; Return to group mode buffer.
7132         (when (eq mode 'gnus-summary-mode)
7133           (gnus-kill-buffer buf)))
7134       (setq gnus-current-select-method gnus-select-method)
7135       (set-buffer gnus-group-buffer)
7136       (if quit-config
7137           (gnus-handle-ephemeral-exit quit-config)
7138         (goto-char group-point)
7139         ;; If gnus-group-buffer is already displayed, make sure we also move
7140         ;; the cursor in the window that displays it.
7141         (let ((win (get-buffer-window (current-buffer) 0)))
7142           (if win (set-window-point win (point))))
7143         (unless leave-hidden
7144           (gnus-configure-windows 'group 'force)))
7145       ;; Clear the current group name.
7146       (unless quit-config
7147         (setq gnus-newsgroup-name nil)))))
7148
7149 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
7150 (defun gnus-summary-exit-no-update (&optional no-questions)
7151   "Quit reading current newsgroup without updating read article info."
7152   (interactive)
7153   (let* ((group gnus-newsgroup-name)
7154          (gnus-group-is-exiting-p t)
7155          (gnus-group-is-exiting-without-update-p t)
7156          (quit-config (gnus-group-quit-config group)))
7157     (when (or no-questions
7158               gnus-expert-user
7159               (gnus-y-or-n-p "Discard changes to this group and exit? "))
7160       (gnus-async-halt-prefetch)
7161       (run-hooks 'gnus-summary-prepare-exit-hook)
7162       (when (gnus-buffer-live-p gnus-article-buffer)
7163         (with-current-buffer gnus-article-buffer
7164           (mm-destroy-parts gnus-article-mime-handles)
7165           ;; Set it to nil for safety reason.
7166           (setq gnus-article-mime-handle-alist nil)
7167           (setq gnus-article-mime-handles nil)))
7168       ;; If we have several article buffers, we kill them at exit.
7169       (unless gnus-single-article-buffer
7170         (gnus-kill-buffer gnus-article-buffer)
7171         (gnus-kill-buffer gnus-original-article-buffer)
7172         (setq gnus-article-current nil))
7173       (if (not gnus-kill-summary-on-exit)
7174           (gnus-deaden-summary)
7175         (gnus-close-group group)
7176         (gnus-summary-clear-local-variables)
7177         (let ((gnus-summary-local-variables gnus-newsgroup-variables))
7178           (gnus-summary-clear-local-variables))
7179         (gnus-kill-buffer gnus-summary-buffer))
7180       (unless gnus-single-article-buffer
7181         (setq gnus-article-current nil))
7182       (when gnus-use-trees
7183         (gnus-tree-close group))
7184       (gnus-async-prefetch-remove-group group)
7185       (when (get-buffer gnus-article-buffer)
7186         (bury-buffer gnus-article-buffer))
7187       ;; Return to the group buffer.
7188       (gnus-configure-windows 'group 'force)
7189       ;; Clear the current group name.
7190       (setq gnus-newsgroup-name nil)
7191       (unless (gnus-ephemeral-group-p group)
7192         (gnus-group-update-group group))
7193       (when (equal (gnus-group-group-name) group)
7194         (gnus-group-next-unread-group 1))
7195       (when quit-config
7196         (gnus-handle-ephemeral-exit quit-config)))))
7197
7198 (defun gnus-handle-ephemeral-exit (quit-config)
7199   "Handle movement when leaving an ephemeral group.
7200 The state which existed when entering the ephemeral is reset."
7201   (if (not (buffer-name (car quit-config)))
7202       (gnus-configure-windows 'group 'force)
7203     (set-buffer (car quit-config))
7204     (cond ((eq major-mode 'gnus-summary-mode)
7205            (gnus-set-global-variables))
7206           ((eq major-mode 'gnus-article-mode)
7207            (save-current-buffer
7208              ;; The `gnus-summary-buffer' variable may point
7209              ;; to the old summary buffer when using a single
7210              ;; article buffer.
7211              (unless (gnus-buffer-live-p gnus-summary-buffer)
7212                (set-buffer gnus-group-buffer))
7213              (set-buffer gnus-summary-buffer)
7214              (gnus-set-global-variables))))
7215     (if (or (eq (cdr quit-config) 'article)
7216             (eq (cdr quit-config) 'pick))
7217         (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
7218             (gnus-configure-windows 'pick 'force)
7219           (gnus-configure-windows (cdr quit-config) 'force))
7220       (gnus-configure-windows (cdr quit-config) 'force))
7221     (when (eq major-mode 'gnus-summary-mode)
7222       (if (memq gnus-auto-select-on-ephemeral-exit '(next-noselect
7223                                                      next-unread-noselect))
7224           (when (zerop (cond ((eq gnus-auto-select-on-ephemeral-exit
7225                                   'next-noselect)
7226                               (gnus-summary-next-subject 1 nil t))
7227                              ((eq gnus-auto-select-on-ephemeral-exit
7228                                   'next-unread-noselect)
7229                               (gnus-summary-next-subject 1 t t))))
7230             ;; Hide the article buffer which displays the article different
7231             ;; from the one that the cursor points to in the summary buffer.
7232             (gnus-configure-windows 'summary 'force))
7233         (cond ((eq gnus-auto-select-on-ephemeral-exit 'next)
7234                (gnus-summary-next-subject 1))
7235               ((eq gnus-auto-select-on-ephemeral-exit 'next-unread)
7236                (gnus-summary-next-subject 1 t))))
7237       (gnus-summary-recenter)
7238       (gnus-summary-position-point))))
7239
7240 ;;; Dead summaries.
7241
7242 (defvar gnus-dead-summary-mode-map
7243   (let ((map (make-keymap)))
7244     (suppress-keymap map)
7245     (substitute-key-definition 'undefined 'gnus-summary-wake-up-the-dead map)
7246     (dolist (key '("\C-d" "\r" "\177" [delete]))
7247       (define-key map key 'gnus-summary-wake-up-the-dead))
7248     (dolist (key '("q" "Q"))
7249       (define-key map key 'bury-buffer))
7250     map))
7251
7252 (define-minor-mode gnus-dead-summary-mode
7253   "Minor mode for Gnus summary buffers."
7254   :lighter " Dead" :keymap gnus-dead-summary-mode-map
7255   (unless (derived-mode-p 'gnus-summary-mode)
7256     (setq gnus-dead-summary-mode nil)))
7257
7258 (defun gnus-deaden-summary ()
7259   "Make the current summary buffer into a dead summary buffer."
7260   ;; Kill any previous dead summary buffer.
7261   (when (and gnus-dead-summary
7262              (buffer-name gnus-dead-summary))
7263     (with-current-buffer gnus-dead-summary
7264       (when gnus-dead-summary-mode
7265         (kill-buffer (current-buffer)))))
7266   ;; Make this the current dead summary.
7267   (setq gnus-dead-summary (current-buffer))
7268   (gnus-dead-summary-mode 1)
7269   (let ((name (buffer-name)))
7270     (when (string-match "Summary" name)
7271       (rename-buffer
7272        (concat (substring name 0 (match-beginning 0)) "Dead "
7273                (substring name (match-beginning 0)))
7274        t)
7275       (bury-buffer))))
7276
7277 (defun gnus-kill-or-deaden-summary (buffer)
7278   "Kill or deaden the summary BUFFER."
7279   (save-excursion
7280     (when (and (buffer-name buffer)
7281                (not gnus-single-article-buffer))
7282       (with-current-buffer buffer
7283         (gnus-kill-buffer gnus-article-buffer)
7284         (gnus-kill-buffer gnus-original-article-buffer)))
7285     (cond
7286      ;; Kill the buffer.
7287      (gnus-kill-summary-on-exit
7288       (when (and gnus-use-trees
7289                  (gnus-buffer-exists-p buffer))
7290         (with-current-buffer buffer
7291           (gnus-tree-close gnus-newsgroup-name)))
7292       (gnus-kill-buffer buffer))
7293      ;; Deaden the buffer.
7294      ((gnus-buffer-exists-p buffer)
7295       (with-current-buffer buffer
7296         (gnus-deaden-summary))))))
7297
7298 (defun gnus-summary-wake-up-the-dead (&rest args)
7299   "Wake up the dead summary buffer."
7300   (interactive)
7301   (gnus-dead-summary-mode -1)
7302   (let ((name (buffer-name)))
7303     (when (string-match "Dead " name)
7304       (rename-buffer
7305        (concat (substring name 0 (match-beginning 0))
7306                (substring name (match-end 0)))
7307        t)))
7308   (gnus-message 3 "This dead summary is now alive again"))
7309
7310 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
7311 (defun gnus-summary-fetch-faq (&optional faq-dir)
7312   "Fetch the FAQ for the current group.
7313 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
7314 in."
7315   (interactive
7316    (list
7317     (when current-prefix-arg
7318       (completing-read
7319        "FAQ dir: " (and (listp gnus-group-faq-directory)
7320                         (mapcar 'list
7321                                 gnus-group-faq-directory))))))
7322   (let (gnus-faq-buffer)
7323     (when (setq gnus-faq-buffer
7324                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
7325       (gnus-configure-windows 'summary-faq))))
7326
7327 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
7328 (defun gnus-summary-describe-group (&optional force)
7329   "Describe the current newsgroup."
7330   (interactive "P")
7331   (gnus-group-describe-group force gnus-newsgroup-name))
7332
7333 (defun gnus-summary-describe-briefly ()
7334   "Describe summary mode commands briefly."
7335   (interactive)
7336   (gnus-message 6 "%s" (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")))
7337
7338 ;; Walking around group mode buffer from summary mode.
7339
7340 (defun gnus-summary-next-group (&optional no-article target-group backward)
7341   "Exit current newsgroup and then select next unread newsgroup.
7342 If prefix argument NO-ARTICLE is non-nil, no article is selected
7343 initially.  If TARGET-GROUP, go to this group.  If BACKWARD, go to
7344 previous group instead."
7345   (interactive "P")
7346   ;; Stop pre-fetching.
7347   (gnus-async-halt-prefetch)
7348   (let ((current-group gnus-newsgroup-name)
7349         (current-buffer (current-buffer))
7350         entered)
7351     ;; First we semi-exit this group to update Xrefs and all variables.
7352     ;; We can't do a real exit, because the window conf must remain
7353     ;; the same in case the user is prompted for info, and we don't
7354     ;; want the window conf to change before that...
7355     (gnus-summary-exit t)
7356     (while (not entered)
7357       ;; Then we find what group we are supposed to enter.
7358       (set-buffer gnus-group-buffer)
7359       (gnus-group-jump-to-group current-group)
7360       (setq target-group
7361             (or target-group
7362                 (if (eq gnus-keep-same-level 'best)
7363                     (gnus-summary-best-group gnus-newsgroup-name)
7364                   (gnus-summary-search-group backward gnus-keep-same-level))))
7365       (if (not target-group)
7366           ;; There are no further groups, so we return to the group
7367           ;; buffer.
7368           (progn
7369             (gnus-message 5 "Returning to the group buffer")
7370             (setq entered t)
7371             (when (gnus-buffer-live-p current-buffer)
7372               (set-buffer current-buffer)
7373               (gnus-summary-exit))
7374             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
7375         ;; We try to enter the target group.
7376         (gnus-group-jump-to-group target-group)
7377         (let ((unreads (gnus-group-group-unread)))
7378           (if (and (or (eq t unreads)
7379                        (and unreads (not (zerop unreads))))
7380                    (gnus-summary-read-group
7381                     target-group nil no-article
7382                     (and (buffer-name current-buffer) current-buffer)
7383                     nil backward))
7384               (setq entered t)
7385             (setq current-group target-group
7386                   target-group nil)))))))
7387
7388 (defun gnus-summary-prev-group (&optional no-article)
7389   "Exit current newsgroup and then select previous unread newsgroup.
7390 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
7391   (interactive "P")
7392   (gnus-summary-next-group no-article nil t))
7393
7394 ;; Walking around summary lines.
7395
7396 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
7397   "Go to the first subject satisfying any non-nil constraint.
7398 If UNREAD is non-nil, the article should be unread.
7399 If UNDOWNLOADED is non-nil, the article should be undownloaded.
7400 If UNSEEN is non-nil, the article should be unseen as well as unread.
7401 Returns the article selected or nil if there are no matching articles."
7402   (interactive "P")
7403   (cond
7404    ;; Empty summary.
7405    ((null gnus-newsgroup-data)
7406     (gnus-message 3 "No articles in the group")
7407     nil)
7408    ;; Pick the first article.
7409    ((not (or unread undownloaded unseen))
7410     (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
7411     (gnus-data-number (car gnus-newsgroup-data)))
7412    ;; Find the first unread article.
7413    (t
7414     (let ((data gnus-newsgroup-data))
7415       (while (and data
7416                   (let ((num (gnus-data-number (car data))))
7417                     (or (memq num gnus-newsgroup-unfetched)
7418                         (not (or (and unread
7419                                       (memq num gnus-newsgroup-unreads))
7420                                  (and undownloaded
7421                                       (memq num gnus-newsgroup-undownloaded))
7422                                  (and unseen
7423                                       (memq num gnus-newsgroup-unseen)
7424                                       (memq num gnus-newsgroup-unreads)))))))
7425         (setq data (cdr data)))
7426       (prog1
7427           (if data
7428               (progn
7429                 (goto-char (gnus-data-pos (car data)))
7430                 (gnus-data-number (car data)))
7431             (gnus-message 3 "No more%s articles"
7432                           (let* ((r (when unread " unread"))
7433                                  (d (when undownloaded " undownloaded"))
7434                                  (s (when unseen " unseen"))
7435                                  (l (delq nil (list r d s))))
7436                             (cond ((= 3 (length l))
7437                                    (concat r "," d ", or" s))
7438                                   ((= 2 (length l))
7439                                    (concat (car l) ", or" (cadr l)))
7440                                   ((= 1 (length l))
7441                                    (car l))
7442                                   (t
7443                                    ""))))
7444             nil
7445             )
7446         (gnus-summary-position-point))))))
7447
7448 (defun gnus-summary-next-subject (n &optional unread dont-display)
7449   "Go to next N'th summary line.
7450 If N is negative, go to the previous N'th subject line.
7451 If UNREAD is non-nil, only unread articles are selected.
7452 The difference between N and the actual number of steps taken is
7453 returned."
7454   (interactive "p")
7455   (let ((backward (< n 0))
7456         (n (abs n)))
7457     (while (and (> n 0)
7458                 (if backward
7459                     (gnus-summary-find-prev unread)
7460                   (gnus-summary-find-next unread)))
7461       (unless (zerop (setq n (1- n)))
7462         (gnus-summary-show-thread)))
7463     (when (/= 0 n)
7464       (gnus-message 7 "No more%s articles"
7465                     (if unread " unread" "")))
7466     (unless dont-display
7467       (gnus-summary-recenter)
7468       (gnus-summary-position-point))
7469     n))
7470
7471 (defun gnus-summary-next-unread-subject (n)
7472   "Go to next N'th unread summary line."
7473   (interactive "p")
7474   (gnus-summary-next-subject n t))
7475
7476 (defun gnus-summary-prev-subject (n &optional unread)
7477   "Go to previous N'th summary line.
7478 If optional argument UNREAD is non-nil, only unread article is selected."
7479   (interactive "p")
7480   (gnus-summary-next-subject (- n) unread))
7481
7482 (defun gnus-summary-prev-unread-subject (n)
7483   "Go to previous N'th unread summary line."
7484   (interactive "p")
7485   (gnus-summary-next-subject (- n) t))
7486
7487 (defun gnus-summary-goto-subjects (articles)
7488   "Insert the subject header for ARTICLES in the current buffer."
7489   (save-excursion
7490     (dolist (article articles)
7491       (gnus-summary-goto-subject article t)))
7492   (gnus-summary-limit (append articles gnus-newsgroup-limit))
7493   (gnus-summary-position-point))
7494
7495 (defun gnus-summary-goto-subject (article &optional force silent)
7496   "Go to the subject line of ARTICLE.
7497 If FORCE, also allow jumping to articles not currently shown."
7498   (interactive "nArticle number: ")
7499   (unless (numberp article)
7500     (error "Article %s is not a number" article))
7501   (let ((b (point))
7502         (data (gnus-data-find article)))
7503     ;; We read in the article if we have to.
7504     (and (not data)
7505          force
7506          (gnus-summary-insert-subject
7507           article
7508           (if (or (numberp force) (vectorp force)) force)
7509           t)
7510          (setq data (gnus-data-find article)))
7511     (goto-char b)
7512     (if (not data)
7513         (progn
7514           (unless silent
7515             (gnus-message 3 "Can't find article %d" article))
7516           nil)
7517       (let ((pt (gnus-data-pos data)))
7518         (goto-char pt)
7519         (gnus-summary-set-article-display-arrow pt))
7520       (gnus-summary-position-point)
7521       article)))
7522
7523 ;; Walking around summary lines with displaying articles.
7524
7525 (defun gnus-summary-expand-window (&optional arg)
7526   "Make the summary buffer take up the entire Emacs frame.
7527 Given a prefix, will force an `article' buffer configuration."
7528   (interactive "P")
7529   (if arg
7530       (gnus-configure-windows 'article 'force)
7531     (gnus-configure-windows 'summary 'force)))
7532
7533 (defun gnus-summary-display-article (article &optional all-header)
7534   "Display ARTICLE in article buffer."
7535   (unless (and (gnus-buffer-live-p gnus-article-buffer)
7536                (with-current-buffer gnus-article-buffer
7537                  (eq major-mode 'gnus-article-mode)))
7538     (gnus-article-setup-buffer))
7539   (gnus-set-global-variables)
7540   (with-current-buffer gnus-article-buffer
7541     (setq gnus-article-charset gnus-newsgroup-charset)
7542     (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7543     (mm-enable-multibyte))
7544   (if (null article)
7545       nil
7546     (prog1
7547         (if gnus-summary-display-article-function
7548             (funcall gnus-summary-display-article-function article all-header)
7549           (gnus-article-prepare article all-header))
7550       (gnus-run-hooks 'gnus-select-article-hook)
7551       (when (and gnus-current-article
7552                  (not (zerop gnus-current-article)))
7553         (gnus-summary-goto-subject gnus-current-article))
7554       (gnus-summary-recenter)
7555       (when (and gnus-use-trees gnus-show-threads)
7556         (gnus-possibly-generate-tree article)
7557         (gnus-highlight-selected-tree article))
7558       ;; Successfully display article.
7559       (gnus-article-set-window-start
7560        (cdr (assq article gnus-newsgroup-bookmarks))))))
7561
7562 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7563   "Select the current article.
7564 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
7565 non-nil, the article will be re-fetched even if it already present in
7566 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
7567 be displayed."
7568   ;; Make sure we are in the summary buffer to work around bbdb bug.
7569   (unless (eq major-mode 'gnus-summary-mode)
7570     (set-buffer gnus-summary-buffer))
7571   (let ((article (or article (gnus-summary-article-number)))
7572         (all-headers (not (not all-headers))) ;Must be t or nil.
7573         gnus-summary-display-article-function)
7574     (and (not pseudo)
7575          (gnus-summary-article-pseudo-p article)
7576          (error "This is a pseudo-article"))
7577     (with-current-buffer gnus-summary-buffer
7578       (if (or (and gnus-single-article-buffer
7579                    (or (null gnus-current-article)
7580                        (null gnus-article-current)
7581                        (null (get-buffer gnus-article-buffer))
7582                        (not (eq article (cdr gnus-article-current)))
7583                        (not (equal (car gnus-article-current)
7584                                    gnus-newsgroup-name))))
7585               (and (not gnus-single-article-buffer)
7586                    (or (null gnus-current-article)
7587                        (not (eq gnus-current-article article))))
7588               force)
7589           ;; The requested article is different from the current article.
7590           (progn
7591             (gnus-summary-display-article article all-headers)
7592             (when (gnus-buffer-live-p gnus-article-buffer)
7593               (with-current-buffer gnus-article-buffer
7594                 (if (not gnus-article-decoded-p) ;; a local variable
7595                     (mm-disable-multibyte))))
7596             (gnus-article-set-window-start
7597              (cdr (assq article gnus-newsgroup-bookmarks)))
7598             article)
7599         'old))))
7600
7601 (defun gnus-summary-force-verify-and-decrypt ()
7602   "Display buttons for signed/encrypted parts and verify/decrypt them."
7603   (interactive)
7604   (let ((mm-verify-option 'known)
7605         (mm-decrypt-option 'known)
7606         (gnus-article-emulate-mime t)
7607         (gnus-buttonized-mime-types (append (list "multipart/signed"
7608                                                   "multipart/encrypted")
7609                                             gnus-buttonized-mime-types)))
7610     (gnus-summary-select-article nil 'force)))
7611
7612 (defun gnus-summary-set-current-mark (&optional current-mark)
7613   "Obsolete function."
7614   nil)
7615
7616 (defun gnus-summary-next-article (&optional unread subject backward push)
7617   "Select the next article.
7618 If UNREAD, only unread articles are selected.
7619 If SUBJECT, only articles with SUBJECT are selected.
7620 If BACKWARD, the previous article is selected instead of the next."
7621   (interactive "P")
7622   ;; Make sure we are in the summary buffer.
7623   (unless (eq major-mode 'gnus-summary-mode)
7624     (set-buffer gnus-summary-buffer))
7625   (cond
7626    ;; Is there such an article?
7627    ((and (gnus-summary-search-forward unread subject backward)
7628          (or (gnus-summary-display-article (gnus-summary-article-number))
7629              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7630     (gnus-summary-position-point))
7631    ;; If not, we try the first unread, if that is wanted.
7632    ((and subject
7633          gnus-auto-select-same
7634          (gnus-summary-first-unread-article))
7635     (gnus-summary-position-point)
7636     (gnus-message 6 "Wrapped"))
7637    ;; Try to get next/previous article not displayed in this group.
7638    ((and gnus-auto-extend-newsgroup
7639          (not unread) (not subject))
7640     (gnus-summary-goto-article
7641      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7642      nil (count-lines (point-min) (point))))
7643    ;; Go to next/previous group.
7644    (t
7645     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7646       (gnus-summary-jump-to-group gnus-newsgroup-name))
7647     (let ((cmd (if (featurep 'xemacs)
7648                    last-command-char
7649                  last-command-event))
7650           (point
7651            (with-current-buffer gnus-group-buffer
7652              (point)))
7653           (group
7654            (if (eq gnus-keep-same-level 'best)
7655                (gnus-summary-best-group gnus-newsgroup-name)
7656              (gnus-summary-search-group backward gnus-keep-same-level))))
7657       ;; For some reason, the group window gets selected.  We change
7658       ;; it back.
7659       (select-window (get-buffer-window (current-buffer)))
7660       ;; Select next unread newsgroup automagically.
7661       (cond
7662        ((or (not gnus-auto-select-next)
7663             (not cmd))
7664         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7665        ((or (eq gnus-auto-select-next 'quietly)
7666             (and (eq gnus-auto-select-next 'slightly-quietly)
7667                  push)
7668             (and (eq gnus-auto-select-next 'almost-quietly)
7669                  (gnus-summary-last-article-p)))
7670         ;; Select quietly.
7671         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7672             (gnus-summary-exit)
7673           (gnus-message 7 "No more%s articles (%s)..."
7674                         (if unread " unread" "")
7675                         (if group (concat "selecting " group)
7676                           "exiting"))
7677           (gnus-summary-next-group nil group backward)))
7678        (t
7679         (when (gnus-key-press-event-p last-input-event)
7680           (gnus-summary-walk-group-buffer
7681            gnus-newsgroup-name cmd unread backward point))))))))
7682
7683 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7684   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7685                       (?\C-p (gnus-group-prev-unread-group 1))))
7686         (cursor-in-echo-area t)
7687         keve key group ended prompt)
7688     (with-current-buffer gnus-group-buffer
7689       (goto-char start)
7690       (setq group
7691             (if (eq gnus-keep-same-level 'best)
7692                 (gnus-summary-best-group gnus-newsgroup-name)
7693               (gnus-summary-search-group backward gnus-keep-same-level))))
7694     (while (not ended)
7695       (setq prompt
7696             (format
7697              "No more%s articles%s " (if unread " unread" "")
7698              (if (and group
7699                       (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7700                  (format " (Type %s for %s [%s])"
7701                          (single-key-description cmd)
7702                          (gnus-group-decoded-name group)
7703                          (gnus-group-unread group))
7704                (format " (Type %s to exit %s)"
7705                        (single-key-description cmd)
7706                        (gnus-group-decoded-name gnus-newsgroup-name)))))
7707       ;; Confirm auto selection.
7708       (setq key (car (setq keve (gnus-read-event-char prompt)))
7709             ended t)
7710       (cond
7711        ((assq key keystrokes)
7712         (let ((obuf (current-buffer)))
7713           (switch-to-buffer gnus-group-buffer)
7714           (when group
7715             (gnus-group-jump-to-group group))
7716           (eval (cadr (assq key keystrokes)))
7717           (setq group (gnus-group-group-name))
7718           (switch-to-buffer obuf))
7719         (setq ended nil))
7720        ((equal key cmd)
7721         (if (or (not group)
7722                 (gnus-ephemeral-group-p gnus-newsgroup-name))
7723             (gnus-summary-exit)
7724           (gnus-summary-next-group nil group backward)))
7725        (t
7726         (push (cdr keve) unread-command-events))))))
7727
7728 (defun gnus-summary-next-unread-article ()
7729   "Select unread article after current one."
7730   (interactive)
7731   (gnus-summary-next-article
7732    (or (not (eq gnus-summary-goto-unread 'never))
7733        (gnus-summary-last-article-p (gnus-summary-article-number)))
7734    (and gnus-auto-select-same
7735         (gnus-summary-article-subject))))
7736
7737 (defun gnus-summary-prev-article (&optional unread subject)
7738   "Select the article before the current one.
7739 If UNREAD is non-nil, only unread articles are selected."
7740   (interactive "P")
7741   (gnus-summary-next-article unread subject t))
7742
7743 (defun gnus-summary-prev-unread-article ()
7744   "Select unread article before current one."
7745   (interactive)
7746   (gnus-summary-prev-article
7747    (or (not (eq gnus-summary-goto-unread 'never))
7748        (gnus-summary-first-article-p (gnus-summary-article-number)))
7749    (and gnus-auto-select-same
7750         (gnus-summary-article-subject))))
7751
7752 (defun gnus-summary-next-page (&optional lines circular stop)
7753   "Show next page of the selected article.
7754 If at the end of the current article, select the next article.
7755 LINES says how many lines should be scrolled up.
7756
7757 If CIRCULAR is non-nil, go to the start of the article instead of
7758 selecting the next article when reaching the end of the current
7759 article.
7760
7761 If STOP is non-nil, just stop when reaching the end of the message.
7762
7763 Also see the variable `gnus-article-skip-boring'."
7764   (interactive "P")
7765   (setq gnus-summary-buffer (current-buffer))
7766   (gnus-set-global-variables)
7767   (let ((article (gnus-summary-article-number))
7768         (article-window (get-buffer-window gnus-article-buffer t))
7769         endp)
7770     ;; If the buffer is empty, we have no article.
7771     (unless article
7772       (error "No article to select"))
7773     (gnus-configure-windows 'article)
7774     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7775         (if (and (eq gnus-summary-goto-unread 'never)
7776                  (not (gnus-summary-last-article-p article)))
7777             (gnus-summary-next-article)
7778           (gnus-summary-next-unread-article))
7779       (if (or (null gnus-current-article)
7780               (null gnus-article-current)
7781               (/= article (cdr gnus-article-current))
7782               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7783           ;; Selected subject is different from current article's.
7784           (gnus-summary-display-article article)
7785         (when article-window
7786           (gnus-eval-in-buffer-window gnus-article-buffer
7787             (setq endp (or (gnus-article-next-page lines)
7788                            (gnus-article-only-boring-p))))
7789           (when endp
7790             (cond ((or stop gnus-summary-stop-at-end-of-message)
7791                    (gnus-message 3 "End of message"))
7792                   (circular
7793                    (gnus-summary-beginning-of-article))
7794                   (lines
7795                    (gnus-message 3 "End of message"))
7796                   ((null lines)
7797                    (if (and (eq gnus-summary-goto-unread 'never)
7798                             (not (gnus-summary-last-article-p article)))
7799                        (gnus-summary-next-article)
7800                      (gnus-summary-next-unread-article))))))))
7801     (gnus-summary-recenter)
7802     (gnus-summary-position-point)))
7803
7804 (defun gnus-summary-prev-page (&optional lines move)
7805   "Show previous page of selected article.
7806 Argument LINES specifies lines to be scrolled down.
7807 If MOVE, move to the previous unread article if point is at
7808 the beginning of the buffer."
7809   (interactive "P")
7810   (let ((article (gnus-summary-article-number))
7811         (article-window (get-buffer-window gnus-article-buffer t))
7812         endp)
7813     (gnus-configure-windows 'article)
7814     (if (or (null gnus-current-article)
7815             (null gnus-article-current)
7816             (/= article (cdr gnus-article-current))
7817             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7818         ;; Selected subject is different from current article's.
7819         (gnus-summary-display-article article)
7820       (gnus-summary-recenter)
7821       (when article-window
7822         (gnus-eval-in-buffer-window gnus-article-buffer
7823           (setq endp (gnus-article-prev-page lines)))
7824         (when (and move endp)
7825           (cond (lines
7826                  (gnus-message 3 "Beginning of message"))
7827                 ((null lines)
7828                  (if (and (eq gnus-summary-goto-unread 'never)
7829                           (not (gnus-summary-first-article-p article)))
7830                      (gnus-summary-prev-article)
7831                    (gnus-summary-prev-unread-article))))))))
7832   (gnus-summary-position-point))
7833
7834 (defun gnus-summary-prev-page-or-article (&optional lines)
7835   "Show previous page of selected article.
7836 Argument LINES specifies lines to be scrolled down.
7837 If at the beginning of the article, go to the next article."
7838   (interactive "P")
7839   (gnus-summary-prev-page lines t))
7840
7841 (defun gnus-summary-scroll-up (lines)
7842   "Scroll up (or down) one line current article.
7843 Argument LINES specifies lines to be scrolled up (or down if negative)."
7844   (interactive "p")
7845   (gnus-configure-windows 'article)
7846   (gnus-summary-show-thread)
7847   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7848     (gnus-eval-in-buffer-window gnus-article-buffer
7849       (cond ((> lines 0)
7850              (when (gnus-article-next-page lines)
7851                (gnus-message 3 "End of message")))
7852             ((< lines 0)
7853              (gnus-article-prev-page (- lines))))))
7854   (gnus-summary-recenter)
7855   (gnus-summary-position-point))
7856
7857 (defun gnus-summary-scroll-down (lines)
7858   "Scroll down (or up) one line current article.
7859 Argument LINES specifies lines to be scrolled down (or up if negative)."
7860   (interactive "p")
7861   (gnus-summary-scroll-up (- lines)))
7862
7863 (defun gnus-summary-next-same-subject ()
7864   "Select next article which has the same subject as current one."
7865   (interactive)
7866   (gnus-summary-next-article nil (gnus-summary-article-subject)))
7867
7868 (defun gnus-summary-prev-same-subject ()
7869   "Select previous article which has the same subject as current one."
7870   (interactive)
7871   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7872
7873 (defun gnus-summary-next-unread-same-subject ()
7874   "Select next unread article which has the same subject as current one."
7875   (interactive)
7876   (gnus-summary-next-article t (gnus-summary-article-subject)))
7877
7878 (defun gnus-summary-prev-unread-same-subject ()
7879   "Select previous unread article which has the same subject as current one."
7880   (interactive)
7881   (gnus-summary-prev-article t (gnus-summary-article-subject)))
7882
7883 (defun gnus-summary-first-unread-article ()
7884   "Select the first unread article.
7885 Return nil if there are no unread articles."
7886   (interactive)
7887   (prog1
7888       (when (gnus-summary-first-subject t)
7889         (gnus-summary-show-thread)
7890         (gnus-summary-first-subject t)
7891         (gnus-summary-display-article (gnus-summary-article-number)))
7892     (gnus-summary-position-point)))
7893
7894 (defun gnus-summary-first-unread-subject ()
7895   "Place the point on the subject line of the first unread article.
7896 Return nil if there are no unread articles."
7897   (interactive)
7898   (prog1
7899       (when (gnus-summary-first-subject t)
7900         (gnus-summary-show-thread)
7901         (gnus-summary-first-subject t))
7902     (gnus-summary-position-point)))
7903
7904 (defun gnus-summary-first-unseen-subject ()
7905   "Place the point on the subject line of the first unseen article.
7906 Return nil if there are no unseen articles."
7907   (interactive)
7908   (prog1
7909       (when (gnus-summary-first-subject nil nil t)
7910         (gnus-summary-show-thread)
7911         (gnus-summary-first-subject nil nil t))
7912     (gnus-summary-position-point)))
7913
7914 (defun gnus-summary-first-unseen-or-unread-subject ()
7915   "Place the point on the subject line of the first unseen and unread article.
7916 If all article have been seen, on the subject line of the first unread
7917 article."
7918   (interactive)
7919   (prog1
7920       (unless (when (gnus-summary-first-subject nil nil t)
7921                 (gnus-summary-show-thread)
7922                 (gnus-summary-first-subject nil nil t))
7923         (when (gnus-summary-first-subject t)
7924           (gnus-summary-show-thread)
7925           (gnus-summary-first-subject t)))
7926     (gnus-summary-position-point)))
7927
7928 (defun gnus-summary-first-article ()
7929   "Select the first article.
7930 Return nil if there are no articles."
7931   (interactive)
7932   (prog1
7933       (when (gnus-summary-first-subject)
7934         (gnus-summary-show-thread)
7935         (gnus-summary-first-subject)
7936         (gnus-summary-display-article (gnus-summary-article-number)))
7937     (gnus-summary-position-point)))
7938
7939 (defun gnus-summary-best-unread-article (&optional arg)
7940   "Select the unread article with the highest score.
7941 If given a prefix argument, select the next unread article that has a
7942 score higher than the default score."
7943   (interactive "P")
7944   (let ((article (if arg
7945                      (gnus-summary-better-unread-subject)
7946                    (gnus-summary-best-unread-subject))))
7947     (if article
7948         (gnus-summary-goto-article article)
7949       (error "No unread articles"))))
7950
7951 (defun gnus-summary-best-unread-subject ()
7952   "Select the unread subject with the highest score."
7953   (interactive)
7954   (let ((best -1000000)
7955         (data gnus-newsgroup-data)
7956         article score)
7957     (while data
7958       (and (gnus-data-unread-p (car data))
7959            (> (setq score
7960                     (gnus-summary-article-score (gnus-data-number (car data))))
7961               best)
7962            (setq best score
7963                  article (gnus-data-number (car data))))
7964       (setq data (cdr data)))
7965     (when article
7966       (gnus-summary-goto-subject article))
7967     (gnus-summary-position-point)
7968     article))
7969
7970 (defun gnus-summary-better-unread-subject ()
7971   "Select the first unread subject that has a score over the default score."
7972   (interactive)
7973   (let ((data gnus-newsgroup-data)
7974         article score)
7975     (while (and (setq article (gnus-data-number (car data)))
7976                 (or (gnus-data-read-p (car data))
7977                     (not (> (gnus-summary-article-score article)
7978                             gnus-summary-default-score))))
7979       (setq data (cdr data)))
7980     (when article
7981       (gnus-summary-goto-subject article))
7982     (gnus-summary-position-point)
7983     article))
7984
7985 (defun gnus-summary-last-subject ()
7986   "Go to the last displayed subject line in the group."
7987   (let ((article (gnus-data-number (car (gnus-data-list t)))))
7988     (when article
7989       (gnus-summary-goto-subject article))))
7990
7991 (defun gnus-summary-goto-article (article &optional all-headers force)
7992   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7993 If ALL-HEADERS is non-nil, no header lines are hidden.
7994 If FORCE, go to the article even if it isn't displayed.  If FORCE
7995 is a number, it is the line the article is to be displayed on."
7996   (interactive
7997    (list
7998     (completing-read
7999      "Article number or Message-ID: "
8000      (mapcar (lambda (number) (list (int-to-string number)))
8001              gnus-newsgroup-limit))
8002     current-prefix-arg
8003     t))
8004   (prog1
8005       (if (and (stringp article)
8006                (string-match "@\\|%40" article))
8007           (gnus-summary-refer-article article)
8008         (when (stringp article)
8009           (setq article (string-to-number article)))
8010         (if (gnus-summary-goto-subject article force)
8011             (gnus-summary-display-article article all-headers)
8012           (gnus-message 4 "Couldn't go to article %s" article) nil))
8013     (gnus-summary-position-point)))
8014
8015 (defun gnus-summary-goto-last-article ()
8016   "Go to the previously read article."
8017   (interactive)
8018   (prog1
8019       (when gnus-last-article
8020         (gnus-summary-goto-article gnus-last-article nil t))
8021     (gnus-summary-position-point)))
8022
8023 (defun gnus-summary-pop-article (number)
8024   "Pop one article off the history and go to the previous.
8025 NUMBER articles will be popped off."
8026   (interactive "p")
8027   (let (to)
8028     (setq gnus-newsgroup-history
8029           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
8030     (if to
8031         (gnus-summary-goto-article (car to) nil t)
8032       (error "Article history empty")))
8033   (gnus-summary-position-point))
8034
8035 ;; Summary commands and functions for limiting the summary buffer.
8036
8037 (defun gnus-summary-limit-to-articles (n)
8038   "Limit the summary buffer to the next N articles.
8039 If not given a prefix, use the process marked articles instead."
8040   (interactive "P")
8041   (prog1
8042       (let ((articles (gnus-summary-work-articles n)))
8043         (setq gnus-newsgroup-processable nil)
8044         (gnus-summary-limit articles))
8045     (gnus-summary-position-point)))
8046
8047 (defun gnus-summary-pop-limit (&optional total)
8048   "Restore the previous limit.
8049 If given a prefix, remove all limits."
8050   (interactive "P")
8051   (when total
8052     (setq gnus-newsgroup-limits
8053           (list (mapcar (lambda (h) (mail-header-number h))
8054                         gnus-newsgroup-headers))))
8055   (unless gnus-newsgroup-limits
8056     (error "No limit to pop"))
8057   (prog1
8058       (gnus-summary-limit nil 'pop)
8059     (gnus-summary-position-point)))
8060
8061 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
8062   "Limit the summary buffer to articles that have subjects that match a regexp.
8063 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
8064   (interactive
8065    (list (read-string (if current-prefix-arg
8066                           "Exclude subject (regexp): "
8067                         "Limit to subject (regexp): "))
8068          nil current-prefix-arg))
8069   (unless header
8070     (setq header "subject"))
8071   (when (not (equal "" subject))
8072     (prog1
8073         (let ((articles (gnus-summary-find-matching
8074                          (or header "subject") subject 'all nil nil
8075                          not-matching)))
8076           (unless articles
8077             (error "Found no matches for \"%s\"" subject))
8078           (gnus-summary-limit articles))
8079       (gnus-summary-position-point))))
8080
8081 (defun gnus-summary-limit-to-author (from &optional not-matching)
8082   "Limit the summary buffer to articles that have authors that match a regexp.
8083 If NOT-MATCHING, excluding articles that have authors that match a regexp."
8084   (interactive
8085    (list (read-string (if current-prefix-arg
8086                           "Exclude author (regexp): "
8087                         "Limit to author (regexp): "))
8088          current-prefix-arg))
8089   (gnus-summary-limit-to-subject from "from" not-matching))
8090
8091 (defun gnus-summary-limit-to-recipient (recipient &optional not-matching)
8092   "Limit the summary buffer to articles with the given RECIPIENT.
8093
8094 If NOT-MATCHING, exclude RECIPIENT.
8095
8096 To and Cc headers are checked.  You need to include them in
8097 `nnmail-extra-headers'."
8098   ;; Unlike `rmail-summary-by-recipients', doesn't include From.
8099   (interactive
8100    (list (read-string (format "%s recipient (regexp): "
8101                               (if current-prefix-arg "Exclude" "Limit to")))
8102          current-prefix-arg))
8103   (when (not (equal "" recipient))
8104     (prog1 (let* ((to
8105                    (if (memq 'To nnmail-extra-headers)
8106                        (gnus-summary-find-matching
8107                         (cons 'extra 'To) recipient 'all nil nil
8108                         not-matching)
8109                      (gnus-message
8110                       1 "`To' isn't present in `nnmail-extra-headers'")
8111                      (sit-for 1)
8112                      nil))
8113                   (cc
8114                    (if (memq 'Cc nnmail-extra-headers)
8115                        (gnus-summary-find-matching
8116                         (cons 'extra 'Cc) recipient 'all nil nil
8117                         not-matching)
8118                      (gnus-message
8119                       1 "`Cc' isn't present in `nnmail-extra-headers'")
8120                      (sit-for 1)
8121                      nil))
8122                   (articles
8123                    (if not-matching
8124                        ;; We need the numbers that are in both lists:
8125                        (mapcar (lambda (a)
8126                                  (and (memq a to) a))
8127                                cc)
8128                      (nconc to cc))))
8129              (unless articles
8130                (error "Found no matches for \"%s\"" recipient))
8131              (gnus-summary-limit articles))
8132       (gnus-summary-position-point))))
8133
8134 (defun gnus-summary-limit-to-address (address &optional not-matching)
8135   "Limit the summary buffer to articles with the given ADDRESS.
8136
8137 If NOT-MATCHING, exclude ADDRESS.
8138
8139 To, Cc and From headers are checked.  You need to include `To' and `Cc'
8140 in `nnmail-extra-headers'."
8141   (interactive
8142    (list (read-string (format "%s address (regexp): "
8143                               (if current-prefix-arg "Exclude" "Limit to")))
8144          current-prefix-arg))
8145   (when (not (equal "" address))
8146     (prog1 (let* ((to
8147                    (if (memq 'To nnmail-extra-headers)
8148                        (gnus-summary-find-matching
8149                         (cons 'extra 'To) address 'all nil nil
8150                         not-matching)
8151                      (gnus-message
8152                       1 "`To' isn't present in `nnmail-extra-headers'")
8153                      (sit-for 1)
8154                      t))
8155                   (cc
8156                    (if (memq 'Cc nnmail-extra-headers)
8157                        (gnus-summary-find-matching
8158                         (cons 'extra 'Cc) address 'all nil nil
8159                         not-matching)
8160                      (gnus-message
8161                       1 "`Cc' isn't present in `nnmail-extra-headers'")
8162                      (sit-for 1)
8163                      t))
8164                   (from
8165                    (gnus-summary-find-matching "from" address
8166                                                'all nil nil not-matching))
8167                   (articles
8168                    (if not-matching
8169                        ;; We need the numbers that are in all lists:
8170                        (if (eq cc t)
8171                            (if (eq to t)
8172                                from
8173                              (mapcar (lambda (a) (car (memq a from))) to))
8174                          (if (eq to t)
8175                              (mapcar (lambda (a) (car (memq a from))) cc)
8176                            (mapcar (lambda (a) (car (memq a from)))
8177                                    (mapcar (lambda (a) (car (memq a to)))
8178                                            cc))))
8179                      (nconc (if (eq to t) nil to)
8180                             (if (eq cc t) nil cc)
8181                             from))))
8182              (unless articles
8183                (error "Found no matches for \"%s\"" address))
8184              (gnus-summary-limit articles))
8185       (gnus-summary-position-point))))
8186
8187 (defun gnus-summary-limit-strange-charsets-predicate (header)
8188   (when (fboundp 'char-charset)
8189     (let ((string (concat (mail-header-subject header)
8190                           (mail-header-from header)))
8191           charset found)
8192       (dotimes (i (1- (length string)))
8193         (setq charset (format "%s" (char-charset (aref string (1+ i)))))
8194         (when (string-match "unicode\\|big\\|japanese" charset)
8195           (setq found t)))
8196       found)))
8197
8198 (defun gnus-summary-limit-to-predicate (predicate)
8199   "Limit to articles where PREDICATE returns non-nil.
8200 PREDICATE will be called with the header structures of the
8201 articles."
8202   (let ((articles nil)
8203         (case-fold-search t))
8204     (dolist (header gnus-newsgroup-headers)
8205       (when (funcall predicate header)
8206         (push (mail-header-number header) articles)))
8207     (gnus-summary-limit (nreverse articles))))
8208
8209 (defun gnus-summary-limit-to-age (age &optional younger-p)
8210   "Limit the summary buffer to articles that are older than (or equal) AGE days.
8211 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
8212 articles that are younger than AGE days."
8213   (interactive
8214    (let ((younger current-prefix-arg)
8215          (days-got nil)
8216          days)
8217      (while (not days-got)
8218        (setq days (if younger
8219                       (read-string "Limit to articles younger than (in days, older when negative): ")
8220                     (read-string
8221                      "Limit to articles older than (in days, younger when negative): ")))
8222        (when (> (length days) 0)
8223          (setq days (read days)))
8224        (if (numberp days)
8225            (progn
8226              (setq days-got t)
8227              (when (< days 0)
8228                (setq younger (not younger))
8229                (setq days (* days -1))))
8230          (message "Please enter a number.")
8231          (sleep-for 1)))
8232      (list days younger)))
8233   (prog1
8234       (let ((data gnus-newsgroup-data)
8235             (cutoff (days-to-time age))
8236             articles d date is-younger)
8237         (while (setq d (pop data))
8238           (when (and (vectorp (gnus-data-header d))
8239                      (setq date (mail-header-date (gnus-data-header d))))
8240             (setq is-younger (time-less-p
8241                               (time-since (gnus-date-get-time date))
8242                               cutoff))
8243             (when (if younger-p
8244                       is-younger
8245                     (not is-younger))
8246               (push (gnus-data-number d) articles))))
8247         (gnus-summary-limit (nreverse articles)))
8248     (gnus-summary-position-point)))
8249
8250 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
8251   "Limit the summary buffer to articles that match an 'extra' header."
8252   (interactive
8253    (let ((header
8254           (intern
8255            (gnus-completing-read-with-default
8256             (symbol-name (car gnus-extra-headers))
8257             (if current-prefix-arg
8258                 "Exclude extra header"
8259               "Limit extra header")
8260             (mapcar (lambda (x)
8261                       (cons (symbol-name x) x))
8262                     gnus-extra-headers)
8263             nil
8264             t))))
8265      (list header
8266            (read-string (format "%s header %s (regexp): "
8267                                 (if current-prefix-arg "Exclude" "Limit to")
8268                                 header))
8269            current-prefix-arg)))
8270   (when (not (equal "" regexp))
8271     (prog1
8272         (let ((articles (gnus-summary-find-matching
8273                          (cons 'extra header) regexp 'all nil nil
8274                          not-matching)))
8275           (unless articles
8276             (error "Found no matches for \"%s\"" regexp))
8277           (gnus-summary-limit articles))
8278       (gnus-summary-position-point))))
8279
8280 (defun gnus-summary-limit-to-display-predicate ()
8281   "Limit the summary buffer to the predicated in the `display' group parameter."
8282   (interactive)
8283   (unless gnus-newsgroup-display
8284     (error "There is no `display' group parameter"))
8285   (let (articles)
8286     (dolist (number gnus-newsgroup-articles)
8287       (when (funcall gnus-newsgroup-display)
8288         (push number articles)))
8289     (gnus-summary-limit articles))
8290   (gnus-summary-position-point))
8291
8292 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
8293 (make-obsolete
8294  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread "Emacs 20.4")
8295
8296 (defun gnus-summary-limit-to-unread (&optional all)
8297   "Limit the summary buffer to articles that are not marked as read.
8298 If ALL is non-nil, limit strictly to unread articles."
8299   (interactive "P")
8300   (if all
8301       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
8302     (gnus-summary-limit-to-marks
8303      ;; Concat all the marks that say that an article is read and have
8304      ;; those removed.
8305      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
8306            gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
8307            gnus-low-score-mark gnus-expirable-mark
8308            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
8309            gnus-duplicate-mark)
8310      'reverse)))
8311
8312 (defun gnus-summary-limit-to-headers (match &optional reverse)
8313   "Limit the summary buffer to articles that have headers that match MATCH.
8314 If REVERSE (the prefix), limit to articles that don't match."
8315   (interactive "sMatch headers (regexp): \nP")
8316   (gnus-summary-limit-to-bodies match reverse t))
8317
8318 (defun gnus-summary-limit-to-bodies (match &optional reverse headersp)
8319   "Limit the summary buffer to articles that have bodies that match MATCH.
8320 If REVERSE (the prefix), limit to articles that don't match."
8321   (interactive "sMatch body (regexp): \nP")
8322   (let ((articles nil)
8323         (gnus-select-article-hook nil)  ;Disable hook.
8324         (gnus-article-prepare-hook nil)
8325         (gnus-use-article-prefetch nil)
8326         (gnus-keep-backlog nil)
8327         (gnus-break-pages nil)
8328         (gnus-summary-display-arrow nil)
8329         (gnus-updated-mode-lines nil)
8330         (gnus-auto-center-summary nil)
8331         (gnus-display-mime-function nil))
8332     (dolist (data gnus-newsgroup-data)
8333       (let (gnus-mark-article-hook)
8334         (gnus-summary-select-article t t nil (gnus-data-number data)))
8335       (with-current-buffer gnus-article-buffer
8336         (article-goto-body)
8337         (let* ((case-fold-search t)
8338                (found (if headersp
8339                           (re-search-backward match nil t)
8340                         (re-search-forward match nil t))))
8341           (when (or (and found
8342                          (not reverse))
8343                     (and (not found)
8344                          reverse))
8345             (push (gnus-data-number data) articles)))))
8346     (if (not articles)
8347         (message "No messages matched")
8348       (gnus-summary-limit articles)))
8349   (gnus-summary-position-point))
8350
8351 (defun gnus-summary-limit-to-singletons (&optional threadsp)
8352   "Limit the summary buffer to articles that aren't part on any thread.
8353 If THREADSP (the prefix), limit to articles that are in threads."
8354   (interactive "P")
8355   (let ((articles nil)
8356         thread-articles
8357         threads)
8358     (dolist (thread gnus-newsgroup-threads)
8359       (if (stringp (car thread))
8360           (dolist (thread (cdr thread))
8361             (push thread threads))
8362         (push thread threads)))
8363     (dolist (thread threads)
8364       (setq thread-articles (gnus-articles-in-thread thread))
8365       (when (or (and threadsp
8366                      (> (length thread-articles) 1))
8367                 (and (not threadsp)
8368                      (= (length thread-articles) 1)))
8369         (setq articles (nconc thread-articles articles))))
8370     (if (not articles)
8371         (message "No messages matched")
8372       (gnus-summary-limit articles))
8373     (gnus-summary-position-point)))
8374
8375 (defun gnus-summary-limit-to-replied (&optional unreplied)
8376   "Limit the summary buffer to replied articles.
8377 If UNREPLIED (the prefix), limit to unreplied articles."
8378   (interactive "P")
8379   (if unreplied
8380       (gnus-summary-limit
8381        (gnus-set-difference gnus-newsgroup-articles
8382         gnus-newsgroup-replied))
8383     (gnus-summary-limit gnus-newsgroup-replied))
8384   (gnus-summary-position-point))
8385
8386 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
8387 (make-obsolete 'gnus-summary-delete-marked-with
8388                'gnus-summary-limit-exclude-marks "Emacs 20.4")
8389
8390 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
8391   "Exclude articles that are marked with MARKS (e.g. \"DK\").
8392 If REVERSE, limit the summary buffer to articles that are marked
8393 with MARKS.  MARKS can either be a string of marks or a list of marks.
8394 Returns how many articles were removed."
8395   (interactive "sMarks: ")
8396   (gnus-summary-limit-to-marks marks t))
8397
8398 (defun gnus-summary-limit-to-marks (marks &optional reverse)
8399   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
8400 If REVERSE (the prefix), limit the summary buffer to articles that are
8401 not marked with MARKS.  MARKS can either be a string of marks or a
8402 list of marks.
8403 Returns how many articles were removed."
8404   (interactive "sMarks: \nP")
8405   (prog1
8406       (let ((data gnus-newsgroup-data)
8407             (marks (if (listp marks) marks
8408                      (append marks nil))) ; Transform to list.
8409             articles)
8410         (while data
8411           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
8412                   (memq (gnus-data-mark (car data)) marks))
8413             (push (gnus-data-number (car data)) articles))
8414           (setq data (cdr data)))
8415         (gnus-summary-limit articles))
8416     (gnus-summary-position-point)))
8417
8418 (defun gnus-summary-limit-to-score (score)
8419   "Limit to articles with score at or above SCORE."
8420   (interactive "NLimit to articles with score of at least: ")
8421   (let ((data gnus-newsgroup-data)
8422         articles)
8423     (while data
8424       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
8425                 score)
8426         (push (gnus-data-number (car data)) articles))
8427       (setq data (cdr data)))
8428     (prog1
8429         (gnus-summary-limit articles)
8430       (gnus-summary-position-point))))
8431
8432 (defun gnus-summary-limit-to-unseen ()
8433   "Limit to unseen articles."
8434   (interactive)
8435   (prog1
8436       (gnus-summary-limit gnus-newsgroup-unseen)
8437     (gnus-summary-position-point)))
8438
8439 (defun gnus-summary-limit-include-thread (id)
8440   "Display all the hidden articles that is in the thread with ID in it.
8441 When called interactively, ID is the Message-ID of the current
8442 article."
8443   (interactive (list (mail-header-id (gnus-summary-article-header))))
8444   (let ((articles (gnus-articles-in-thread
8445                    (gnus-id-to-thread (gnus-root-id id)))))
8446     (prog1
8447         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
8448       (gnus-summary-limit-include-matching-articles
8449        "subject"
8450        (regexp-quote (gnus-simplify-subject-re
8451                       (mail-header-subject (gnus-id-to-header id)))))
8452       (gnus-summary-position-point))))
8453
8454 (defun gnus-summary-limit-include-matching-articles (header regexp)
8455   "Display all the hidden articles that have HEADERs that match REGEXP."
8456   (interactive (list (read-string "Match on header: ")
8457                      (read-string "Regexp: ")))
8458   (let ((articles (gnus-find-matching-articles header regexp)))
8459     (prog1
8460         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
8461       (gnus-summary-position-point))))
8462
8463 (defun gnus-summary-insert-dormant-articles ()
8464   "Insert all the dormant articles for this group into the current buffer."
8465   (interactive)
8466   (let ((gnus-verbose (max 6 gnus-verbose)))
8467     (if (not gnus-newsgroup-dormant)
8468         (gnus-message 3 "No dormant articles for this group")
8469       (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
8470
8471 (defun gnus-summary-insert-ticked-articles ()
8472   "Insert ticked articles for this group into the current buffer."
8473   (interactive)
8474   (let ((gnus-verbose (max 6 gnus-verbose)))
8475     (if (not gnus-newsgroup-marked)
8476         (gnus-message 3 "No ticked articles for this group")
8477       (gnus-summary-goto-subjects gnus-newsgroup-marked))))
8478
8479 (defun gnus-summary-limit-include-dormant ()
8480   "Display all the hidden articles that are marked as dormant.
8481 Note that this command only works on a subset of the articles currently
8482 fetched for this group."
8483   (interactive)
8484   (unless gnus-newsgroup-dormant
8485     (error "There are no dormant articles in this group"))
8486   (prog1
8487       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
8488     (gnus-summary-position-point)))
8489
8490 (defun gnus-summary-limit-exclude-dormant ()
8491   "Hide all dormant articles."
8492   (interactive)
8493   (prog1
8494       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
8495     (gnus-summary-position-point)))
8496
8497 (defun gnus-summary-limit-exclude-childless-dormant ()
8498   "Hide all dormant articles that have no children."
8499   (interactive)
8500   (let ((data (gnus-data-list t))
8501         articles d children)
8502     ;; Find all articles that are either not dormant or have
8503     ;; children.
8504     (while (setq d (pop data))
8505       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
8506                 (and (setq children
8507                            (gnus-article-children (gnus-data-number d)))
8508                      (let (found)
8509                        (while children
8510                          (when (memq (car children) articles)
8511                            (setq children nil
8512                                  found t))
8513                          (pop children))
8514                        found)))
8515         (push (gnus-data-number d) articles)))
8516     ;; Do the limiting.
8517     (prog1
8518         (gnus-summary-limit articles)
8519       (gnus-summary-position-point))))
8520
8521 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
8522   "Mark all unread excluded articles as read.
8523 If ALL, mark even excluded ticked and dormants as read."
8524   (interactive "P")
8525   (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
8526   (let ((articles (gnus-sorted-ndifference
8527                    (sort
8528                     (mapcar (lambda (h) (mail-header-number h))
8529                             gnus-newsgroup-headers)
8530                     '<)
8531                    gnus-newsgroup-limit))
8532         article)
8533     (setq gnus-newsgroup-unreads
8534           (gnus-sorted-intersection gnus-newsgroup-unreads
8535                                     gnus-newsgroup-limit))
8536     (if all
8537         (setq gnus-newsgroup-dormant nil
8538               gnus-newsgroup-marked nil
8539               gnus-newsgroup-reads
8540               (nconc
8541                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
8542                gnus-newsgroup-reads))
8543       (while (setq article (pop articles))
8544         (unless (or (memq article gnus-newsgroup-dormant)
8545                     (memq article gnus-newsgroup-marked))
8546           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
8547
8548 (defun gnus-summary-limit (articles &optional pop)
8549   (if pop
8550       ;; We pop the previous limit off the stack and use that.
8551       (setq articles (car gnus-newsgroup-limits)
8552             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
8553     ;; We use the new limit, so we push the old limit on the stack.
8554     (push gnus-newsgroup-limit gnus-newsgroup-limits))
8555   ;; Set the limit.
8556   (setq gnus-newsgroup-limit articles)
8557   (let ((total (length gnus-newsgroup-data))
8558         (data (gnus-data-find-list (gnus-summary-article-number)))
8559         (gnus-summary-mark-below nil)   ; Inhibit this.
8560         found)
8561     ;; This will do all the work of generating the new summary buffer
8562     ;; according to the new limit.
8563     (gnus-summary-prepare)
8564     ;; Hide any threads, possibly.
8565     (gnus-summary-maybe-hide-threads)
8566     ;; Try to return to the article you were at, or one in the
8567     ;; neighborhood.
8568     (when data
8569       ;; We try to find some article after the current one.
8570       (while data
8571         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
8572           (setq data nil
8573                 found t))
8574         (setq data (cdr data))))
8575     (unless found
8576       ;; If there is no data, that means that we were after the last
8577       ;; article.  The same goes when we can't find any articles
8578       ;; after the current one.
8579       (goto-char (point-max))
8580       (gnus-summary-find-prev))
8581     (gnus-set-mode-line 'summary)
8582     ;; We return how many articles were removed from the summary
8583     ;; buffer as a result of the new limit.
8584     (- total (length gnus-newsgroup-data))))
8585
8586 (defsubst gnus-invisible-cut-children (threads)
8587   (let ((num 0))
8588     (while threads
8589       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
8590         (incf num))
8591       (pop threads))
8592     (< num 2)))
8593
8594 (defsubst gnus-cut-thread (thread)
8595   "Go forwards in the thread until we find an article that we want to display."
8596   (when (or (eq gnus-fetch-old-headers 'some)
8597             (eq gnus-fetch-old-headers 'invisible)
8598             (numberp gnus-fetch-old-headers)
8599             (eq gnus-build-sparse-threads 'some)
8600             (eq gnus-build-sparse-threads 'more))
8601     ;; Deal with old-fetched headers and sparse threads.
8602     (while (and
8603             thread
8604             (or
8605              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
8606              (gnus-summary-article-ancient-p
8607               (mail-header-number (car thread))))
8608             (if (or (<= (length (cdr thread)) 1)
8609                     (eq gnus-fetch-old-headers 'invisible))
8610                 (setq gnus-newsgroup-limit
8611                       (delq (mail-header-number (car thread))
8612                             gnus-newsgroup-limit)
8613                       thread (cadr thread))
8614               (when (gnus-invisible-cut-children (cdr thread))
8615                 (let ((th (cdr thread)))
8616                   (while th
8617                     (if (memq (mail-header-number (caar th))
8618                               gnus-newsgroup-limit)
8619                         (setq thread (car th)
8620                               th nil)
8621                       (setq th (cdr th))))))))))
8622   thread)
8623
8624 (defun gnus-cut-threads (threads)
8625   "Cut off all uninteresting articles from the beginning of THREADS."
8626   (when (or (eq gnus-fetch-old-headers 'some)
8627             (eq gnus-fetch-old-headers 'invisible)
8628             (numberp gnus-fetch-old-headers)
8629             (eq gnus-build-sparse-threads 'some)
8630             (eq gnus-build-sparse-threads 'more))
8631     (let ((th threads))
8632       (while th
8633         (setcar th (gnus-cut-thread (car th)))
8634         (setq th (cdr th)))))
8635   ;; Remove nixed out threads.
8636   (delq nil threads))
8637
8638 (defun gnus-summary-initial-limit (&optional show-if-empty)
8639   "Figure out what the initial limit is supposed to be on group entry.
8640 This entails weeding out unwanted dormants, low-scored articles,
8641 fetch-old-headers verbiage, and so on."
8642   ;; Most groups have nothing to remove.
8643   (unless (or gnus-inhibit-limiting
8644               (and (null gnus-newsgroup-dormant)
8645                    (eq gnus-newsgroup-display 'gnus-not-ignore)
8646                    (not (eq gnus-fetch-old-headers 'some))
8647                    (not (numberp gnus-fetch-old-headers))
8648                    (not (eq gnus-fetch-old-headers 'invisible))
8649                    (null gnus-summary-expunge-below)
8650                    (not (eq gnus-build-sparse-threads 'some))
8651                    (not (eq gnus-build-sparse-threads 'more))
8652                    (null gnus-thread-expunge-below)
8653                    (not gnus-use-nocem)))
8654     (push gnus-newsgroup-limit gnus-newsgroup-limits)
8655     (setq gnus-newsgroup-limit nil)
8656     (mapatoms
8657      (lambda (node)
8658        (unless (car (symbol-value node))
8659          ;; These threads have no parents -- they are roots.
8660          (let ((nodes (cdr (symbol-value node)))
8661                thread)
8662            (while nodes
8663              (if (and gnus-thread-expunge-below
8664                       (< (gnus-thread-total-score (car nodes))
8665                          gnus-thread-expunge-below))
8666                  (gnus-expunge-thread (pop nodes))
8667                (setq thread (pop nodes))
8668                (gnus-summary-limit-children thread))))))
8669      gnus-newsgroup-dependencies)
8670     ;; If this limitation resulted in an empty group, we might
8671     ;; pop the previous limit and use it instead.
8672     (when (and (not gnus-newsgroup-limit)
8673                show-if-empty)
8674       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
8675     gnus-newsgroup-limit))
8676
8677 (defun gnus-summary-limit-children (thread)
8678   "Return 1 if this subthread is visible and 0 if it is not."
8679   ;; First we get the number of visible children to this thread.  This
8680   ;; is done by recursing down the thread using this function, so this
8681   ;; will really go down to a leaf article first, before slowly
8682   ;; working its way up towards the root.
8683   (when thread
8684     (let* ((max-lisp-eval-depth (max 5000 max-lisp-eval-depth))
8685            (children
8686            (if (cdr thread)
8687                (apply '+ (mapcar 'gnus-summary-limit-children
8688                                  (cdr thread)))
8689              0))
8690           (number (mail-header-number (car thread)))
8691           score)
8692       (if (and
8693            (not (memq number gnus-newsgroup-marked))
8694            (or
8695             ;; If this article is dormant and has absolutely no visible
8696             ;; children, then this article isn't visible.
8697             (and (memq number gnus-newsgroup-dormant)
8698                  (zerop children))
8699             ;; If this is "fetch-old-headered" and there is no
8700             ;; visible children, then we don't want this article.
8701             (and (or (eq gnus-fetch-old-headers 'some)
8702                      (numberp gnus-fetch-old-headers))
8703                  (gnus-summary-article-ancient-p number)
8704                  (zerop children))
8705             ;; If this is "fetch-old-headered" and `invisible', then
8706             ;; we don't want this article.
8707             (and (eq gnus-fetch-old-headers 'invisible)
8708                  (gnus-summary-article-ancient-p number))
8709             ;; If this is a sparsely inserted article with no children,
8710             ;; we don't want it.
8711             (and (eq gnus-build-sparse-threads 'some)
8712                  (gnus-summary-article-sparse-p number)
8713                  (zerop children))
8714             ;; If we use expunging, and this article is really
8715             ;; low-scored, then we don't want this article.
8716             (when (and gnus-summary-expunge-below
8717                        (< (setq score
8718                                 (or (cdr (assq number gnus-newsgroup-scored))
8719                                     gnus-summary-default-score))
8720                           gnus-summary-expunge-below))
8721               ;; We increase the expunge-tally here, but that has
8722               ;; nothing to do with the limits, really.
8723               (incf gnus-newsgroup-expunged-tally)
8724               ;; We also mark as read here, if that's wanted.
8725               (when (and gnus-summary-mark-below
8726                          (< score gnus-summary-mark-below))
8727                 (setq gnus-newsgroup-unreads
8728                       (delq number gnus-newsgroup-unreads))
8729                 (if gnus-newsgroup-auto-expire
8730                     (push number gnus-newsgroup-expirable)
8731                   (push (cons number gnus-low-score-mark)
8732                         gnus-newsgroup-reads)))
8733               t)
8734             ;; Do the `display' group parameter.
8735             (and gnus-newsgroup-display
8736                  (not (funcall gnus-newsgroup-display)))
8737             ;; Check NoCeM things.
8738             (when (and gnus-use-nocem
8739                        (gnus-nocem-unwanted-article-p
8740                         (mail-header-id (car thread))))
8741               (setq gnus-newsgroup-unreads
8742                     (delq number gnus-newsgroup-unreads))
8743               t)))
8744           ;; Nope, invisible article.
8745           0
8746         ;; Ok, this article is to be visible, so we add it to the limit
8747         ;; and return 1.
8748         (push number gnus-newsgroup-limit)
8749         1))))
8750
8751 (defun gnus-expunge-thread (thread)
8752   "Mark all articles in THREAD as read."
8753   (let* ((number (mail-header-number (car thread))))
8754     (incf gnus-newsgroup-expunged-tally)
8755     ;; We also mark as read here, if that's wanted.
8756     (setq gnus-newsgroup-unreads
8757           (delq number gnus-newsgroup-unreads))
8758     (if gnus-newsgroup-auto-expire
8759         (push number gnus-newsgroup-expirable)
8760       (push (cons number gnus-low-score-mark)
8761             gnus-newsgroup-reads)))
8762   ;; Go recursively through all subthreads.
8763   (mapcar 'gnus-expunge-thread (cdr thread)))
8764
8765 ;; Summary article oriented commands
8766
8767 (defun gnus-summary-refer-parent-article (n)
8768   "Refer parent article N times.
8769 If N is negative, go to ancestor -N instead.
8770 The difference between N and the number of articles fetched is returned."
8771   (interactive "p")
8772   (let ((skip 1)
8773         error header ref)
8774     (when (not (natnump n))
8775       (setq skip (abs n)
8776             n 1))
8777     (while (and (> n 0)
8778                 (not error))
8779       (setq header (gnus-summary-article-header))
8780       (if (and (eq (mail-header-number header)
8781                    (cdr gnus-article-current))
8782                (equal gnus-newsgroup-name
8783                       (car gnus-article-current)))
8784           ;; If we try to find the parent of the currently
8785           ;; displayed article, then we take a look at the actual
8786           ;; References header, since this is slightly more
8787           ;; reliable than the References field we got from the
8788           ;; server.
8789           (with-current-buffer gnus-original-article-buffer
8790             (nnheader-narrow-to-headers)
8791             (unless (setq ref (message-fetch-field "references"))
8792               (when (setq ref (message-fetch-field "in-reply-to"))
8793                 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8794             (widen))
8795         (setq ref
8796               ;; It's not the current article, so we take a bet on
8797               ;; the value we got from the server.
8798               (mail-header-references header)))
8799       (if (and ref
8800                (not (equal ref "")))
8801           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8802             (gnus-message 1 "Couldn't find parent"))
8803         (gnus-message 1 "No references in article %d"
8804                       (gnus-summary-article-number))
8805         (setq error t))
8806       (decf n))
8807     (gnus-summary-position-point)
8808     n))
8809
8810 (defun gnus-summary-refer-references ()
8811   "Fetch all articles mentioned in the References header.
8812 Return the number of articles fetched."
8813   (interactive)
8814   (let ((ref (mail-header-references (gnus-summary-article-header)))
8815         (current (gnus-summary-article-number))
8816         (n 0))
8817     (if (or (not ref)
8818             (equal ref ""))
8819         (error "No References in the current article")
8820       ;; For each Message-ID in the References header...
8821       (while (string-match "<[^>]*>" ref)
8822         (incf n)
8823         ;; ... fetch that article.
8824         (gnus-summary-refer-article
8825          (prog1 (match-string 0 ref)
8826            (setq ref (substring ref (match-end 0))))))
8827       (gnus-summary-goto-subject current)
8828       (gnus-summary-position-point)
8829       n)))
8830
8831 (defun gnus-summary-refer-thread (&optional limit)
8832   "Fetch all articles in the current thread.
8833 If LIMIT (the numerical prefix), fetch that many old headers instead
8834 of what's specified by the `gnus-refer-thread-limit' variable."
8835   (interactive "P")
8836   (let ((id (mail-header-id (gnus-summary-article-header)))
8837         (limit (if limit (prefix-numeric-value limit)
8838                  gnus-refer-thread-limit)))
8839     (unless (eq gnus-fetch-old-headers 'invisible)
8840       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8841       ;; Retrieve the headers and read them in.
8842       (if (eq (if (numberp limit)
8843                   (gnus-retrieve-headers
8844                    (list (min
8845                           (+ (mail-header-number
8846                               (gnus-summary-article-header))
8847                              limit)
8848                           gnus-newsgroup-end))
8849                    gnus-newsgroup-name (* limit 2))
8850                 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8851                 ;; headers.
8852                 (gnus-retrieve-headers (list gnus-newsgroup-end)
8853                                        gnus-newsgroup-name limit))
8854               'nov)
8855           (gnus-build-all-threads)
8856         (error "Can't fetch thread from back ends that don't support NOV"))
8857       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8858     (gnus-summary-limit-include-thread id)))
8859
8860 (defun gnus-summary-refer-article (message-id)
8861   "Fetch an article specified by MESSAGE-ID."
8862   (interactive "sMessage-ID: ")
8863   (when (and (stringp message-id)
8864              (not (zerop (length message-id))))
8865     (setq message-id (gnus-replace-in-string message-id " " ""))
8866     ;; Construct the correct Message-ID if necessary.
8867     ;; Suggested by tale@pawl.rpi.edu.
8868     (unless (string-match "^<" message-id)
8869       (setq message-id (concat "<" message-id)))
8870     (unless (string-match ">$" message-id)
8871       (setq message-id (concat message-id ">")))
8872     ;; People often post MIDs from URLs, so unhex it:
8873     (unless (string-match "@" message-id)
8874       (setq message-id (gnus-url-unhex-string message-id)))
8875     (let* ((header (gnus-id-to-header message-id))
8876            (sparse (and header
8877                         (gnus-summary-article-sparse-p
8878                          (mail-header-number header))
8879                         (memq (mail-header-number header)
8880                               gnus-newsgroup-limit)))
8881            number)
8882       (cond
8883        ;; If the article is present in the buffer we just go to it.
8884        ((and header
8885              (or (not (gnus-summary-article-sparse-p
8886                        (mail-header-number header)))
8887                  sparse))
8888         (prog1
8889             (gnus-summary-goto-article
8890              (mail-header-number header) nil t)
8891           (when sparse
8892             (gnus-summary-update-article (mail-header-number header)))))
8893        (t
8894         ;; We fetch the article.
8895         (catch 'found
8896           (dolist (gnus-override-method (gnus-refer-article-methods))
8897             (when (and (gnus-check-server gnus-override-method)
8898                        ;; Fetch the header,
8899                        (setq number (gnus-summary-insert-subject message-id)))
8900               ;; and display the article.
8901               (gnus-summary-select-article nil nil nil number)
8902               (throw 'found t)))
8903           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8904
8905 (defun gnus-refer-article-methods ()
8906   "Return a list of referable methods."
8907   (cond
8908    ;; No method, so we default to current and native.
8909    ((null gnus-refer-article-method)
8910     (list gnus-current-select-method gnus-select-method))
8911    ;; Current.
8912    ((eq 'current gnus-refer-article-method)
8913     (list gnus-current-select-method))
8914    ;; List of select methods.
8915    ((not (and (symbolp (car gnus-refer-article-method))
8916               (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8917     (let (out)
8918       (dolist (method gnus-refer-article-method)
8919         (push (if (eq 'current method)
8920                   gnus-current-select-method
8921                 method)
8922               out))
8923       (nreverse out)))
8924    ;; One single select method.
8925    (t
8926     (list gnus-refer-article-method))))
8927
8928 (defun gnus-summary-edit-parameters ()
8929   "Edit the group parameters of the current group."
8930   (interactive)
8931   (gnus-group-edit-group gnus-newsgroup-name 'params))
8932
8933 (defun gnus-summary-customize-parameters ()
8934   "Customize the group parameters of the current group."
8935   (interactive)
8936   (gnus-group-customize gnus-newsgroup-name))
8937
8938 (defun gnus-summary-enter-digest-group (&optional force)
8939   "Enter an nndoc group based on the current article.
8940 If FORCE, force a digest interpretation.  If not, try
8941 to guess what the document format is."
8942   (interactive "P")
8943   (let ((conf gnus-current-window-configuration))
8944     (save-window-excursion
8945       (save-excursion
8946         (let (gnus-article-prepare-hook
8947               gnus-display-mime-function
8948               gnus-break-pages)
8949           (gnus-summary-select-article))))
8950     (setq gnus-current-window-configuration conf)
8951     (let* ((name (format "%s-%d"
8952                          (gnus-group-prefixed-name
8953                           gnus-newsgroup-name (list 'nndoc ""))
8954                          (with-current-buffer gnus-summary-buffer
8955                            gnus-current-article)))
8956            (ogroup gnus-newsgroup-name)
8957            (params (append (gnus-info-params (gnus-get-info ogroup))
8958                            (list (cons 'to-group ogroup))
8959                            (list (cons 'parent-group ogroup))
8960                            (list (cons 'save-article-group ogroup))))
8961            (case-fold-search t)
8962            (buf (current-buffer))
8963            dig to-address)
8964       (with-current-buffer gnus-original-article-buffer
8965         ;; Have the digest group inherit the main mail address of
8966         ;; the parent article.
8967         (when (setq to-address (or (gnus-fetch-field "reply-to")
8968                                    (gnus-fetch-field "from")))
8969           (setq params
8970                 (append
8971                  (list (cons 'to-address
8972                              (funcall gnus-decode-encoded-address-function
8973                                       to-address))))))
8974         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8975         (insert-buffer-substring gnus-original-article-buffer)
8976         ;; Remove lines that may lead nndoc to misinterpret the
8977         ;; document type.
8978         (narrow-to-region
8979          (goto-char (point-min))
8980          (or (search-forward "\n\n" nil t) (point)))
8981         (goto-char (point-min))
8982         (delete-matching-lines "^Path:\\|^From ")
8983         (widen))
8984       (unwind-protect
8985           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8986                     (gnus-newsgroup-ephemeral-ignored-charsets
8987                      gnus-newsgroup-ignored-charsets))
8988                 (gnus-group-read-ephemeral-group
8989                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8990                               (nndoc-article-type
8991                                ,(if force 'mbox 'guess)))
8992                  t nil nil nil
8993                  `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8994                                                         "ADAPT")))))
8995               ;; Make all postings to this group go to the parent group.
8996               (nconc (gnus-info-params (gnus-get-info name))
8997                      params)
8998             ;; Couldn't select this doc group.
8999             (switch-to-buffer buf)
9000             (gnus-set-global-variables)
9001             (gnus-configure-windows 'summary)
9002             (gnus-message 3 "Article couldn't be entered?"))
9003         (kill-buffer dig)))))
9004
9005 (defun gnus-summary-read-document (n)
9006   "Open a new group based on the current article(s).
9007 This will allow you to read digests and other similar
9008 documents as newsgroups.
9009 Obeys the standard process/prefix convention."
9010   (interactive "P")
9011   (let* ((ogroup gnus-newsgroup-name)
9012          (params (append (gnus-info-params (gnus-get-info ogroup))
9013                          (list (cons 'to-group ogroup))))
9014          group egroup groups vgroup)
9015     (dolist (article (gnus-summary-work-articles n))
9016       (setq group (format "%s-%d" gnus-newsgroup-name article))
9017       (gnus-summary-remove-process-mark article)
9018       (when (gnus-summary-display-article article)
9019         (save-excursion ;;What for?
9020           (with-temp-buffer
9021             (insert-buffer-substring gnus-original-article-buffer)
9022             ;; Remove some headers that may lead nndoc to make
9023             ;; the wrong guess.
9024             (message-narrow-to-head)
9025             (goto-char (point-min))
9026             (delete-matching-lines "^Path:\\|^From ")
9027             (widen)
9028             (if (setq egroup
9029                       (gnus-group-read-ephemeral-group
9030                        group `(nndoc ,group (nndoc-address ,(current-buffer))
9031                                      (nndoc-article-type guess))
9032                        t nil t))
9033                 (progn
9034                   ;; Make all postings to this group go to the parent group.
9035                   (nconc (gnus-info-params (gnus-get-info egroup))
9036                          params)
9037                   (push egroup groups))
9038               ;; Couldn't select this doc group.
9039               (gnus-error 3 "Article couldn't be entered"))))))
9040     ;; Now we have selected all the documents.
9041     (cond
9042      ((not groups)
9043       (error "None of the articles could be interpreted as documents"))
9044      ((gnus-group-read-ephemeral-group
9045        (setq vgroup (format
9046                      "nnvirtual:%s-%s" gnus-newsgroup-name
9047                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
9048        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
9049        t
9050        (cons (current-buffer) 'summary)))
9051      (t
9052       (error "Couldn't select virtual nndoc group")))))
9053
9054 (defun gnus-summary-isearch-article (&optional regexp-p)
9055   "Do incremental search forward on the current article.
9056 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
9057   (interactive "P")
9058   (gnus-summary-select-article)
9059   (gnus-configure-windows 'article)
9060   (gnus-eval-in-buffer-window gnus-article-buffer
9061     (save-restriction
9062       (widen)
9063       (isearch-forward regexp-p))))
9064
9065 (defun gnus-summary-repeat-search-article-forward ()
9066   "Repeat the previous search forwards."
9067   (interactive)
9068   (unless gnus-last-search-regexp
9069     (error "No previous search"))
9070   (gnus-summary-search-article-forward gnus-last-search-regexp))
9071
9072 (defun gnus-summary-repeat-search-article-backward ()
9073   "Repeat the previous search backwards."
9074   (interactive)
9075   (unless gnus-last-search-regexp
9076     (error "No previous search"))
9077   (gnus-summary-search-article-forward gnus-last-search-regexp t))
9078
9079 (defun gnus-summary-search-article-forward (regexp &optional backward)
9080   "Search for an article containing REGEXP forward.
9081 If BACKWARD, search backward instead."
9082   (interactive
9083    (list (read-string
9084           (format "Search article %s (regexp%s): "
9085                   (if current-prefix-arg "backward" "forward")
9086                   (if gnus-last-search-regexp
9087                       (concat ", default " gnus-last-search-regexp)
9088                     "")))
9089          current-prefix-arg))
9090   (if (string-equal regexp "")
9091       (setq regexp (or gnus-last-search-regexp ""))
9092     (setq gnus-last-search-regexp regexp)
9093     (setq gnus-article-before-search gnus-current-article))
9094   ;; Intentionally set gnus-last-article.
9095   (setq gnus-last-article gnus-article-before-search)
9096   (let ((gnus-last-article gnus-last-article))
9097     (if (gnus-summary-search-article regexp backward)
9098         (gnus-summary-show-thread)
9099       (signal 'search-failed (list regexp)))))
9100
9101 (defun gnus-summary-search-article-backward (regexp)
9102   "Search for an article containing REGEXP backward."
9103   (interactive
9104    (list (read-string
9105           (format "Search article backward (regexp%s): "
9106                   (if gnus-last-search-regexp
9107                       (concat ", default " gnus-last-search-regexp)
9108                     "")))))
9109   (gnus-summary-search-article-forward regexp 'backward))
9110
9111 (defun gnus-summary-search-article (regexp &optional backward)
9112   "Search for an article containing REGEXP.
9113 Optional argument BACKWARD means do search for backward.
9114 `gnus-select-article-hook' is not called during the search."
9115   ;; We have to require this here to make sure that the following
9116   ;; dynamic binding isn't shadowed by autoloading.
9117   (require 'gnus-async)
9118   (require 'gnus-art)
9119   (let ((gnus-select-article-hook nil)  ;Disable hook.
9120         (gnus-article-prepare-hook nil)
9121         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
9122         (gnus-use-article-prefetch nil)
9123         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
9124         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
9125         (gnus-visual nil)
9126         (gnus-keep-backlog nil)
9127         (gnus-break-pages nil)
9128         (gnus-summary-display-arrow nil)
9129         (gnus-updated-mode-lines nil)
9130         (gnus-auto-center-summary nil)
9131         (sum (current-buffer))
9132         (gnus-display-mime-function nil)
9133         (found nil)
9134         point)
9135     (gnus-save-hidden-threads
9136       (gnus-summary-select-article)
9137       (set-buffer gnus-article-buffer)
9138       (goto-char (window-point (get-buffer-window (current-buffer))))
9139       (when backward
9140         (forward-line -1))
9141       (while (not found)
9142         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
9143         (if (if backward
9144                 (re-search-backward regexp nil t)
9145               (re-search-forward regexp nil t))
9146             ;; We found the regexp.
9147             (progn
9148               (setq found 'found)
9149               (beginning-of-line)
9150               (set-window-start
9151                (get-buffer-window (current-buffer))
9152                (point))
9153               (forward-line 1)
9154               (set-window-point
9155                (get-buffer-window (current-buffer))
9156                (point))
9157               (set-buffer sum)
9158               (setq point (point)))
9159           ;; We didn't find it, so we go to the next article.
9160           (set-buffer sum)
9161           (setq found 'not)
9162           (while (eq found 'not)
9163             (if (not (if backward (gnus-summary-find-prev)
9164                        (gnus-summary-find-next)))
9165                 ;; No more articles.
9166                 (setq found t)
9167               ;; Select the next article and adjust point.
9168               (unless (gnus-summary-article-sparse-p
9169                        (gnus-summary-article-number))
9170                 (setq found nil)
9171                 (gnus-summary-select-article)
9172                 (set-buffer gnus-article-buffer)
9173                 (widen)
9174                 (goto-char (if backward (point-max) (point-min))))))))
9175       (gnus-message 7 ""))
9176     ;; Return whether we found the regexp.
9177     (when (eq found 'found)
9178       (goto-char point)
9179       (gnus-summary-show-thread)
9180       (gnus-summary-goto-subject gnus-current-article)
9181       (gnus-summary-position-point)
9182       t)))
9183
9184 (defun gnus-find-matching-articles (header regexp)
9185   "Return a list of all articles that match REGEXP on HEADER.
9186 This search includes all articles in the current group that Gnus has
9187 fetched headers for, whether they are displayed or not."
9188   (let ((articles nil)
9189         ;; Can't eta-reduce because it's a macro.
9190         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
9191         (case-fold-search t))
9192     (dolist (header gnus-newsgroup-headers)
9193       (when (string-match regexp (funcall func header))
9194         (push (mail-header-number header) articles)))
9195     (nreverse articles)))
9196
9197 (defun gnus-summary-find-matching (header regexp &optional backward unread
9198                                           not-case-fold not-matching)
9199   "Return a list of all articles that match REGEXP on HEADER.
9200 The search stars on the current article and goes forwards unless
9201 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
9202 If UNREAD is non-nil, only unread articles will
9203 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
9204 in the comparisons. If NOT-MATCHING, return a list of all articles that
9205 not match REGEXP on HEADER."
9206   (let ((case-fold-search (not not-case-fold))
9207         articles d func)
9208     (if (consp header)
9209         (if (eq (car header) 'extra)
9210             (setq func
9211                   `(lambda (h)
9212                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
9213                          "")))
9214           (error "%s is an invalid header" header))
9215       (unless (fboundp (intern (concat "mail-header-" header)))
9216         (error "%s is not a valid header" header))
9217       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
9218     (dolist (d (if (eq backward 'all)
9219                    gnus-newsgroup-data
9220                  (gnus-data-find-list
9221                   (gnus-summary-article-number)
9222                   (gnus-data-list backward))))
9223       (when (and (or (not unread)       ; We want all articles...
9224                      (gnus-data-unread-p d)) ; Or just unreads.
9225                  (vectorp (gnus-data-header d)) ; It's not a pseudo.
9226                  (if not-matching
9227                      (not (string-match
9228                            regexp
9229                            (funcall func (gnus-data-header d))))
9230                    (string-match regexp
9231                                  (funcall func (gnus-data-header d)))))
9232         (push (gnus-data-number d) articles))) ; Success!
9233     (nreverse articles)))
9234
9235 (defun gnus-summary-execute-command (header regexp command &optional backward)
9236   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
9237 If HEADER is an empty string (or nil), the match is done on the entire
9238 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
9239   (interactive
9240    (list (let ((completion-ignore-case t))
9241            (completing-read
9242             "Header name: "
9243             (mapcar (lambda (header) (list (format "%s" header)))
9244                     (append
9245                      '("Number" "Subject" "From" "Lines" "Date"
9246                        "Message-ID" "Xref" "References" "Body")
9247                      gnus-extra-headers))
9248             nil 'require-match))
9249          (read-string "Regexp: ")
9250          (read-key-sequence "Command: ")
9251          current-prefix-arg))
9252   (when (equal header "Body")
9253     (setq header ""))
9254   ;; Hidden thread subtrees must be searched as well.
9255   (gnus-summary-show-all-threads)
9256   ;; We don't want to change current point nor window configuration.
9257   (save-excursion
9258     (save-window-excursion
9259       (let (gnus-visual
9260             gnus-treat-strip-trailing-blank-lines
9261             gnus-treat-strip-leading-blank-lines
9262             gnus-treat-strip-multiple-blank-lines
9263             gnus-treat-hide-boring-headers
9264             gnus-treat-fold-newsgroups
9265             gnus-article-prepare-hook)
9266         (gnus-message 6 "Executing %s..." (key-description command))
9267         ;; We'd like to execute COMMAND interactively so as to give arguments.
9268         (gnus-execute header regexp
9269                       `(call-interactively ',(key-binding command))
9270                       backward)
9271         (gnus-message 6 "Executing %s...done" (key-description command))))))
9272
9273 (defun gnus-summary-beginning-of-article ()
9274   "Scroll the article back to the beginning."
9275   (interactive)
9276   (gnus-summary-select-article)
9277   (gnus-configure-windows 'article)
9278   (gnus-eval-in-buffer-window gnus-article-buffer
9279     (widen)
9280     (goto-char (point-min))
9281     (when gnus-break-pages
9282       (gnus-narrow-to-page))))
9283
9284 (defun gnus-summary-end-of-article ()
9285   "Scroll to the end of the article."
9286   (interactive)
9287   (gnus-summary-select-article)
9288   (gnus-configure-windows 'article)
9289   (gnus-eval-in-buffer-window gnus-article-buffer
9290     (widen)
9291     (goto-char (point-max))
9292     (recenter -3)
9293     (when gnus-break-pages
9294       (gnus-narrow-to-page))))
9295
9296 (defun gnus-summary-print-truncate-and-quote (string &optional len)
9297   "Truncate to LEN and quote all \"(\"'s in STRING."
9298   (gnus-replace-in-string (if (and len (> (length string) len))
9299                               (substring string 0 len)
9300                             string)
9301                           "[()]" "\\\\\\&"))
9302
9303 (defun gnus-summary-print-article (&optional filename n)
9304   "Generate and print a PostScript image of the process-marked (mail) articles.
9305
9306 If used interactively, print the current article if none are
9307 process-marked.  With prefix arg, prompt the user for the name of the
9308 file to save in.
9309
9310 When used from Lisp, accept two optional args FILENAME and N.  N means
9311 to print the next N articles.  If N is negative, print the N previous
9312 articles.  If N is nil and articles have been marked with the process
9313 mark, print these instead.
9314
9315 If the optional first argument FILENAME is nil, send the image to the
9316 printer.  If FILENAME is a string, save the PostScript image in a file with
9317 that name.  If FILENAME is a number, prompt the user for the name of the file
9318 to save in."
9319   (interactive (list (ps-print-preprint current-prefix-arg)))
9320   (dolist (article (gnus-summary-work-articles n))
9321     (gnus-summary-select-article nil nil 'pseudo article)
9322     (gnus-eval-in-buffer-window gnus-article-buffer
9323       (gnus-print-buffer))
9324     (gnus-summary-remove-process-mark article))
9325   (ps-despool filename))
9326
9327 (defun gnus-print-buffer ()
9328   (let ((buffer (generate-new-buffer " *print*")))
9329     (unwind-protect
9330         (progn
9331           (copy-to-buffer buffer (point-min) (point-max))
9332           (set-buffer buffer)
9333           (gnus-remove-text-with-property 'gnus-decoration)
9334           (when (gnus-visual-p 'article-highlight 'highlight)
9335             ;; Copy-to-buffer doesn't copy overlay.  So redo
9336             ;; highlight.
9337             (let ((gnus-article-buffer buffer))
9338               (gnus-article-highlight-citation t)
9339               (gnus-article-highlight-signature)
9340               (gnus-article-emphasize)
9341               (gnus-article-delete-invisible-text)))
9342           (let ((ps-left-header
9343                  (list
9344                   (concat "("
9345                           (gnus-summary-print-truncate-and-quote
9346                            (mail-header-subject gnus-current-headers)
9347                            66) ")")
9348                   (concat "("
9349                           (gnus-summary-print-truncate-and-quote
9350                            (mail-header-from gnus-current-headers)
9351                            45) ")")))
9352                 (ps-right-header
9353                  (list
9354                   "/pagenumberstring load"
9355                   (concat "("
9356                           (mail-header-date gnus-current-headers) ")"))))
9357             (gnus-run-hooks 'gnus-ps-print-hook)
9358             (save-excursion
9359               (if ps-print-color-p
9360                   (ps-spool-buffer-with-faces)
9361                 (ps-spool-buffer)))))
9362       (kill-buffer buffer))))
9363
9364 (defun gnus-summary-show-article (&optional arg)
9365   "Force redisplaying of the current article.
9366 If ARG (the prefix) is a number, show the article with the charset
9367 defined in `gnus-summary-show-article-charset-alist', or the charset
9368 input.
9369 If ARG (the prefix) is non-nil and not a number, show the raw article
9370 without any article massaging functions being run.  Normally, the key
9371 strokes are `C-u g'."
9372   (interactive "P")
9373   (cond
9374    ((numberp arg)
9375     (gnus-summary-show-article t)
9376     (let ((gnus-newsgroup-charset
9377            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
9378                (mm-read-coding-system
9379                 "View as charset: " ;; actually it is coding system.
9380                 (with-current-buffer gnus-article-buffer
9381                   (mm-detect-coding-region (point) (point-max))))))
9382           (gnus-newsgroup-ignored-charsets 'gnus-all))
9383       (gnus-summary-select-article nil 'force)
9384       (let ((deps gnus-newsgroup-dependencies)
9385             head header lines)
9386         (with-current-buffer gnus-original-article-buffer
9387           (save-restriction
9388             (message-narrow-to-head)
9389             (setq head (buffer-string))
9390             (goto-char (point-min))
9391             (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
9392               (goto-char (point-max))
9393               (widen)
9394               (setq lines (1- (count-lines (point) (point-max))))))
9395           (with-temp-buffer
9396             (insert (format "211 %d Article retrieved.\n"
9397                             (cdr gnus-article-current)))
9398             (insert head)
9399             (if lines (insert (format "Lines: %d\n" lines)))
9400             (insert ".\n")
9401             (let ((nntp-server-buffer (current-buffer)))
9402               (setq header (car (gnus-get-newsgroup-headers deps t))))))
9403         (gnus-data-set-header
9404          (gnus-data-find (cdr gnus-article-current))
9405          header)
9406         (gnus-summary-update-article-line
9407          (cdr gnus-article-current) header)
9408         (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9409           (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
9410    ((not arg)
9411     ;; Select the article the normal way.
9412     (gnus-summary-select-article nil 'force))
9413    (t
9414     ;; We have to require this here to make sure that the following
9415     ;; dynamic binding isn't shadowed by autoloading.
9416     (require 'gnus-async)
9417     (require 'gnus-art)
9418     ;; Bind the article treatment functions to nil.
9419     (let ((gnus-have-all-headers t)
9420           gnus-article-prepare-hook
9421           gnus-article-decode-hook
9422           gnus-display-mime-function
9423           gnus-break-pages)
9424       ;; Destroy any MIME parts.
9425       (when (gnus-buffer-live-p gnus-article-buffer)
9426         (with-current-buffer gnus-article-buffer
9427           (mm-destroy-parts gnus-article-mime-handles)
9428           ;; Set it to nil for safety reason.
9429           (setq gnus-article-mime-handle-alist nil)
9430           (setq gnus-article-mime-handles nil)))
9431       (gnus-summary-select-article nil 'force))))
9432   (gnus-summary-goto-subject gnus-current-article)
9433   (gnus-summary-position-point))
9434
9435 (defun gnus-summary-show-raw-article ()
9436   "Show the raw article without any article massaging functions being run."
9437   (interactive)
9438   (gnus-summary-show-article t))
9439
9440 (defun gnus-summary-verbose-headers (&optional arg)
9441   "Toggle permanent full header display.
9442 If ARG is a positive number, turn header display on.
9443 If ARG is a negative number, turn header display off."
9444   (interactive "P")
9445   (setq gnus-show-all-headers
9446         (cond ((or (not (numberp arg))
9447                    (zerop arg))
9448                (not gnus-show-all-headers))
9449               ((natnump arg)
9450                t)))
9451   (gnus-summary-show-article))
9452
9453 (defun gnus-summary-toggle-header (&optional arg)
9454   "Show the headers if they are hidden, or hide them if they are shown.
9455 If ARG is a positive number, show the entire header.
9456 If ARG is a negative number, hide the unwanted header lines."
9457   (interactive "P")
9458   (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
9459                      (get-buffer-window gnus-article-buffer t))))
9460     (with-current-buffer gnus-article-buffer
9461       (widen)
9462       (article-narrow-to-head)
9463       (let* ((inhibit-read-only t)
9464              (inhibit-point-motion-hooks t)
9465              (hidden (if (numberp arg)
9466                          (>= arg 0)
9467                        (or (not (looking-at "[^ \t\n]+:"))
9468                            (gnus-article-hidden-text-p 'headers))))
9469              s e)
9470         (delete-region (point-min) (point-max))
9471         (with-current-buffer gnus-original-article-buffer
9472           (goto-char (setq s (point-min)))
9473           (setq e (if (search-forward "\n\n" nil t)
9474                       (1- (point))
9475                     (point-max))))
9476         (insert-buffer-substring gnus-original-article-buffer s e)
9477         (run-hooks 'gnus-article-decode-hook)
9478         (if hidden
9479             (let ((gnus-treat-hide-headers nil)
9480                   (gnus-treat-hide-boring-headers nil))
9481               (gnus-delete-wash-type 'headers)
9482               (gnus-treat-article 'head))
9483           (gnus-treat-article 'head))
9484         (widen)
9485         (if window
9486             (set-window-start window (goto-char (point-min))))
9487         (if gnus-break-pages
9488             (gnus-narrow-to-page)
9489           (when (gnus-visual-p 'page-marker)
9490             (let ((inhibit-read-only t))
9491               (gnus-remove-text-with-property 'gnus-prev)
9492               (gnus-remove-text-with-property 'gnus-next))))
9493         (gnus-set-mode-line 'article)))))
9494
9495 (defun gnus-summary-show-all-headers ()
9496   "Make all header lines visible."
9497   (interactive)
9498   (gnus-summary-toggle-header 1))
9499
9500 (defun gnus-summary-caesar-message (&optional arg)
9501   "Caesar rotate the current article by 13.
9502 With a non-numerical prefix, also rotate headers.  A numerical
9503 prefix specifies how many places to rotate each letter forward."
9504   (interactive "P")
9505   (gnus-summary-select-article)
9506   (let ((mail-header-separator ""))
9507     (gnus-eval-in-buffer-window gnus-article-buffer
9508       (save-restriction
9509         (widen)
9510         (let ((start (window-start))
9511               (inhibit-read-only t))
9512           (if (equal arg '(4))
9513               (message-caesar-buffer-body nil t)
9514             (message-caesar-buffer-body arg))
9515           (set-window-start (get-buffer-window (current-buffer)) start)))))
9516   ;; Create buttons and stuff...
9517   (gnus-treat-article nil))
9518
9519 (declare-function idna-to-unicode "ext:idna" (str))
9520
9521 (defun gnus-summary-idna-message (&optional arg)
9522   "Decode IDNA encoded domain names in the current articles.
9523 IDNA encoded domain names looks like `xn--bar'.  If a string
9524 remain unencoded after running this function, it is likely an
9525 invalid IDNA string (`xn--bar' is invalid).
9526
9527 You must have GNU Libidn (URL `http://www.gnu.org/software/libidn/')
9528 installed for this command to work."
9529   (interactive "P")
9530   (if (not (and (condition-case nil (require 'idna)
9531                   (file-error))
9532                 (mm-coding-system-p 'utf-8)
9533                 (executable-find (symbol-value 'idna-program))))
9534       (gnus-message
9535        5 "GNU Libidn not installed properly (`idn' or `idna.el' missing)")
9536     (gnus-summary-select-article)
9537     (let ((mail-header-separator ""))
9538       (gnus-eval-in-buffer-window gnus-article-buffer
9539         (save-restriction
9540           (widen)
9541           (let ((start (window-start))
9542                 buffer-read-only)
9543             (while (re-search-forward "\\(xn--[-0-9a-z]+\\)" nil t)
9544               (replace-match (idna-to-unicode (match-string 1))))
9545             (set-window-start (get-buffer-window (current-buffer)) start)))))))
9546
9547 (defun gnus-summary-morse-message (&optional arg)
9548   "Morse decode the current article."
9549   (interactive "P")
9550   (gnus-summary-select-article)
9551   (let ((mail-header-separator ""))
9552     (gnus-eval-in-buffer-window gnus-article-buffer
9553       (save-excursion
9554         (save-restriction
9555           (widen)
9556           (let ((pos (window-start))
9557                 (inhibit-read-only t))
9558             (goto-char (point-min))
9559             (when (message-goto-body)
9560               (gnus-narrow-to-body))
9561             (goto-char (point-min))
9562             (while (search-forward "·" (point-max) t)
9563               (replace-match "."))
9564             (unmorse-region (point-min) (point-max))
9565             (widen)
9566             (set-window-start (get-buffer-window (current-buffer)) pos)))))))
9567
9568 (defun gnus-summary-stop-page-breaking ()
9569   "Stop page breaking in the current article."
9570   (interactive)
9571   (gnus-summary-select-article)
9572   (gnus-eval-in-buffer-window gnus-article-buffer
9573     (widen)
9574     (when (gnus-visual-p 'page-marker)
9575       (let ((inhibit-read-only t))
9576         (gnus-remove-text-with-property 'gnus-prev)
9577         (gnus-remove-text-with-property 'gnus-next))
9578       (setq gnus-page-broken nil))))
9579
9580 (defun gnus-summary-move-article (&optional n to-newsgroup
9581                                             select-method action)
9582   "Move the current article to a different newsgroup.
9583 If N is a positive number, move the N next articles.
9584 If N is a negative number, move the N previous articles.
9585 If N is nil and any articles have been marked with the process mark,
9586 move those articles instead.
9587 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
9588 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9589 re-spool using this method.
9590
9591 When called interactively with TO-NEWSGROUP being nil, the value of
9592 the variable `gnus-move-split-methods' is used for finding a default
9593 for the target newsgroup.
9594
9595 For this function to work, both the current newsgroup and the
9596 newsgroup that you want to move to have to support the `request-move'
9597 and `request-accept' functions.
9598
9599 ACTION can be either `move' (the default), `crosspost' or `copy'."
9600   (interactive "P")
9601   (unless action
9602     (setq action 'move))
9603   ;; Check whether the source group supports the required functions.
9604   (cond ((and (eq action 'move)
9605               (not (gnus-check-backend-function
9606                     'request-move-article gnus-newsgroup-name)))
9607          (error "The current group does not support article moving"))
9608         ((and (eq action 'crosspost)
9609               (not (gnus-check-backend-function
9610                     'request-replace-article gnus-newsgroup-name)))
9611          (error "The current group does not support article editing")))
9612   (let ((articles (gnus-summary-work-articles n))
9613         (prefix (if (gnus-check-backend-function
9614                      'request-move-article gnus-newsgroup-name)
9615                     (funcall gnus-move-group-prefix-function
9616                              gnus-newsgroup-name)
9617                   ""))
9618         (names '((move "Move" "Moving")
9619                  (copy "Copy" "Copying")
9620                  (crosspost "Crosspost" "Crossposting")))
9621         (copy-buf (save-excursion
9622                     (nnheader-set-temp-buffer " *copy article*")))
9623         art-group to-method new-xref article to-groups
9624         articles-to-update-marks encoded)
9625     (unless (assq action names)
9626       (error "Unknown action %s" action))
9627     ;; Read the newsgroup name.
9628     (when (and (not to-newsgroup)
9629                (not select-method))
9630       (if (and gnus-move-split-methods
9631                (not
9632                 (and (memq gnus-current-article articles)
9633                      (gnus-buffer-live-p gnus-original-article-buffer))))
9634           ;; When `gnus-move-split-methods' is non-nil, we have to
9635           ;; select an article to give `gnus-read-move-group-name' an
9636           ;; opportunity to suggest an appropriate default.  However,
9637           ;; we needn't render or mark the article.
9638           (let ((gnus-display-mime-function nil)
9639                 (gnus-article-prepare-hook nil)
9640                 (gnus-mark-article-hook nil))
9641             (gnus-summary-select-article nil nil nil (car articles))))
9642       (setq to-newsgroup (gnus-read-move-group-name
9643                           (cadr (assq action names))
9644                           (symbol-value
9645                            (intern (format "gnus-current-%s-group" action)))
9646                           articles prefix)
9647             encoded to-newsgroup
9648             to-method (gnus-server-to-method (gnus-group-method to-newsgroup)))
9649       (set (intern (format "gnus-current-%s-group" action))
9650            (mm-decode-coding-string
9651             to-newsgroup
9652             (gnus-group-name-charset to-method to-newsgroup))))
9653     (unless to-method
9654       (setq to-method (or select-method
9655                           (gnus-server-to-method
9656                            (gnus-group-method to-newsgroup)))))
9657     (setq to-newsgroup
9658           (or encoded
9659               (and to-newsgroup
9660                    (mm-encode-coding-string
9661                     to-newsgroup
9662                     (gnus-group-name-charset to-method to-newsgroup)))))
9663     ;; Check the method we are to move this article to...
9664     (unless (gnus-check-backend-function
9665              'request-accept-article (car to-method))
9666       (error "%s does not support article copying" (car to-method)))
9667     (unless (gnus-check-server to-method)
9668       (error "Can't open server %s" (car to-method)))
9669     (gnus-message 6 "%s to %s: %s..."
9670                   (caddr (assq action names))
9671                   (or (car select-method)
9672                       (gnus-group-decoded-name to-newsgroup))
9673                   articles)
9674     (while articles
9675       (setq article (pop articles))
9676       (setq
9677        art-group
9678        (cond
9679         ;; Move the article.
9680         ((eq action 'move)
9681          ;; Remove this article from future suppression.
9682          (gnus-dup-unsuppress-article article)
9683          (let* ((from-method (gnus-find-method-for-group
9684                               gnus-newsgroup-name))
9685                 (to-method (or select-method
9686                                (gnus-find-method-for-group to-newsgroup)))
9687                 (move-is-internal (gnus-server-equal from-method to-method)))
9688            (gnus-request-move-article
9689             article                     ; Article to move
9690             gnus-newsgroup-name         ; From newsgroup
9691             (nth 1 (gnus-find-method-for-group
9692                     gnus-newsgroup-name)) ; Server
9693             (list 'gnus-request-accept-article
9694                   to-newsgroup (list 'quote select-method)
9695                   (not articles) t)     ; Accept form
9696             (not articles)              ; Only save nov last time
9697             (and move-is-internal
9698                  to-newsgroup           ; Not respooling
9699                  (gnus-group-real-name to-newsgroup))))) ; Is this move internal?
9700         ;; Copy the article.
9701         ((eq action 'copy)
9702          (with-current-buffer copy-buf
9703            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
9704              (save-restriction
9705                (nnheader-narrow-to-headers)
9706                (dolist (hdr gnus-copy-article-ignored-headers)
9707                  (message-remove-header hdr t)))
9708              (gnus-request-accept-article
9709               to-newsgroup select-method (not articles) t))))
9710         ;; Crosspost the article.
9711         ((eq action 'crosspost)
9712          (let ((xref (message-tokenize-header
9713                       (mail-header-xref (gnus-summary-article-header article))
9714                       " ")))
9715            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
9716                                   ":" (number-to-string article)))
9717            (unless xref
9718              (setq xref (list (system-name))))
9719            (setq new-xref
9720                  (concat
9721                   (mapconcat 'identity
9722                              (delete "Xref:" (delete new-xref xref))
9723                              " ")
9724                   " " new-xref))
9725            (with-current-buffer copy-buf
9726              ;; First put the article in the destination group.
9727              (gnus-request-article-this-buffer article gnus-newsgroup-name)
9728              (when (consp (setq art-group
9729                                 (gnus-request-accept-article
9730                                  to-newsgroup select-method (not articles) t)))
9731                (setq new-xref (concat new-xref " " (car art-group)
9732                                       ":"
9733                                       (number-to-string (cdr art-group))))
9734                ;; Now we have the new Xrefs header, so we insert
9735                ;; it and replace the new article.
9736                (nnheader-replace-header "Xref" new-xref)
9737                (gnus-request-replace-article
9738                 (cdr art-group) to-newsgroup (current-buffer) t)
9739                art-group))))))
9740       (cond
9741        ((not art-group)
9742         (gnus-message 1 "Couldn't %s article %s: %s"
9743                       (cadr (assq action names)) article
9744                       (nnheader-get-report (car to-method))))
9745        ((eq art-group 'junk)
9746         (when (eq action 'move)
9747           (gnus-summary-mark-article article gnus-canceled-mark)
9748           (gnus-message 4 "Deleted article %s" article)
9749           ;; run the delete hook
9750           (run-hook-with-args 'gnus-summary-article-delete-hook
9751                               action
9752                               (gnus-data-header
9753                                (assoc article (gnus-data-list nil)))
9754                               gnus-newsgroup-name nil
9755                               select-method)))
9756        (t
9757         (let* ((pto-group (gnus-group-prefixed-name
9758                            (car art-group) to-method))
9759                (info (gnus-get-info pto-group))
9760                (to-group (gnus-info-group info))
9761                to-marks)
9762           ;; Update the group that has been moved to.
9763           (when (and info
9764                      (memq action '(move copy)))
9765             (unless (member to-group to-groups)
9766               (push to-group to-groups))
9767
9768             (unless (memq article gnus-newsgroup-unreads)
9769               (push 'read to-marks)
9770               (gnus-info-set-read
9771                info (gnus-add-to-range (gnus-info-read info)
9772                                        (list (cdr art-group)))))
9773
9774             ;; See whether the article is to be put in the cache.
9775             (let* ((expirable (gnus-group-auto-expirable-p to-group))
9776                    (marks (if expirable
9777                               gnus-article-mark-lists
9778                             (delete '(expirable . expire)
9779                                     (copy-sequence gnus-article-mark-lists))))
9780                    (to-article (cdr art-group)))
9781
9782               ;; Enter the article into the cache in the new group,
9783               ;; if that is required.
9784               (when gnus-use-cache
9785                 (gnus-cache-possibly-enter-article
9786                  to-group to-article
9787                  (memq article gnus-newsgroup-marked)
9788                  (memq article gnus-newsgroup-dormant)
9789                  (memq article gnus-newsgroup-unreads)))
9790
9791               (when gnus-preserve-marks
9792                 ;; Copy any marks over to the new group.
9793                 (when (and (equal to-group gnus-newsgroup-name)
9794                            (not (memq article gnus-newsgroup-unreads)))
9795                   ;; Mark this article as read in this group.
9796                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
9797                   (setcdr (gnus-active to-group) to-article)
9798                   (setcdr gnus-newsgroup-active to-article))
9799
9800                 (while marks
9801                   (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
9802                     (when (memq article (symbol-value
9803                                          (intern (format "gnus-newsgroup-%s"
9804                                                          (caar marks)))))
9805                       (push (cdar marks) to-marks)
9806                       ;; If the other group is the same as this group,
9807                       ;; then we have to add the mark to the list.
9808                       (when (equal to-group gnus-newsgroup-name)
9809                         (set (intern (format "gnus-newsgroup-%s" (caar marks)))
9810                              (cons to-article
9811                                    (symbol-value
9812                                     (intern (format "gnus-newsgroup-%s"
9813                                                     (caar marks)))))))
9814                       ;; Copy the marks to other group.
9815                       (gnus-add-marked-articles
9816                        to-group (cdar marks) (list to-article) info)))
9817                   (setq marks (cdr marks)))
9818
9819                 (when (and expirable
9820                            gnus-mark-copied-or-moved-articles-as-expirable
9821                            (not (memq 'expire to-marks)))
9822                   ;; Mark this article as expirable.
9823                   (push 'expire to-marks)
9824                   (when (equal to-group gnus-newsgroup-name)
9825                     (push to-article gnus-newsgroup-expirable))
9826                   ;; Copy the expirable mark to other group.
9827                   (gnus-add-marked-articles
9828                    to-group 'expire (list to-article) info))
9829
9830                 (when to-marks
9831                   (gnus-request-set-mark
9832                    to-group (list (list (list to-article) 'add to-marks)))))
9833
9834               (gnus-dribble-enter
9835                (concat "(gnus-group-set-info '"
9836                        (gnus-prin1-to-string (gnus-get-info to-group))
9837                        ")"))))
9838
9839           ;; Update the Xref header in this article to point to
9840           ;; the new crossposted article we have just created.
9841           (when (eq action 'crosspost)
9842             (with-current-buffer copy-buf
9843               (gnus-request-article-this-buffer article gnus-newsgroup-name)
9844               (nnheader-replace-header "Xref" new-xref)
9845               (gnus-request-replace-article
9846                article gnus-newsgroup-name (current-buffer) t)))
9847
9848           ;; run the move/copy/crosspost/respool hook
9849           (run-hook-with-args 'gnus-summary-article-move-hook
9850                               action
9851                               (gnus-data-header
9852                                (assoc article (gnus-data-list nil)))
9853                               gnus-newsgroup-name
9854                               to-newsgroup
9855                               select-method))
9856
9857         ;;;!!!Why is this necessary?
9858         (set-buffer gnus-summary-buffer)
9859
9860         (when (eq action 'move)
9861           (save-excursion
9862             (gnus-summary-goto-subject article)
9863             (gnus-summary-mark-article article gnus-canceled-mark)))))
9864       (push article articles-to-update-marks))
9865
9866     (save-excursion
9867       (apply 'gnus-summary-remove-process-mark articles-to-update-marks))
9868     ;; Re-activate all groups that have been moved to.
9869     (with-current-buffer gnus-group-buffer
9870       (let ((gnus-group-marked to-groups))
9871         (gnus-group-get-new-news-this-group nil t)))
9872
9873     (gnus-kill-buffer copy-buf)
9874     (gnus-summary-position-point)
9875     (gnus-set-mode-line 'summary)))
9876
9877 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9878   "Copy the current article to some other group.
9879 If TO-NEWSGROUP is string, do not prompt for a newsgroup to copy to.
9880 When called interactively, if TO-NEWSGROUP is nil, use the value of
9881 the variable `gnus-move-split-methods' for finding a default target
9882 newsgroup.
9883 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9884 re-spool using this method."
9885   (interactive "P")
9886   (gnus-summary-move-article n to-newsgroup select-method 'copy))
9887
9888 (defun gnus-summary-crosspost-article (&optional n)
9889   "Crosspost the current article to some other group."
9890   (interactive "P")
9891   (gnus-summary-move-article n nil nil 'crosspost))
9892
9893 (defcustom gnus-summary-respool-default-method nil
9894   "Default method type for respooling an article.
9895 If nil, use to the current newsgroup method."
9896   :type 'symbol
9897   :group 'gnus-summary-mail)
9898
9899 (defun gnus-summary-respool-article (&optional n method)
9900   "Respool the current article.
9901 The article will be squeezed through the mail spooling process again,
9902 which means that it will be put in some mail newsgroup or other
9903 depending on `nnmail-split-methods'.
9904 If N is a positive number, respool the N next articles.
9905 If N is a negative number, respool the N previous articles.
9906 If N is nil and any articles have been marked with the process mark,
9907 respool those articles instead.
9908
9909 Respooling can be done both from mail groups and \"real\" newsgroups.
9910 In the former case, the articles in question will be moved from the
9911 current group into whatever groups they are destined to.  In the
9912 latter case, they will be copied into the relevant groups."
9913   (interactive
9914    (list current-prefix-arg
9915          (let* ((methods (gnus-methods-using 'respool))
9916                 (methname
9917                  (symbol-name (or gnus-summary-respool-default-method
9918                                   (car (gnus-find-method-for-group
9919                                         gnus-newsgroup-name)))))
9920                 (method
9921                  (gnus-completing-read-with-default
9922                   methname "Backend to use when respooling"
9923                   methods nil t nil 'gnus-mail-method-history))
9924                 ms)
9925            (cond
9926             ((zerop (length (setq ms (gnus-servers-using-backend
9927                                       (intern method)))))
9928              (list (intern method) ""))
9929             ((= 1 (length ms))
9930              (car ms))
9931             (t
9932              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9933                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9934                            ms-alist))))))))
9935   (unless method
9936     (error "No method given for respooling"))
9937   (if (assoc (symbol-name
9938               (car (gnus-find-method-for-group gnus-newsgroup-name)))
9939              (gnus-methods-using 'respool))
9940       (gnus-summary-move-article n nil method)
9941     (gnus-summary-copy-article n nil method)))
9942
9943 (defun gnus-summary-import-article (file &optional edit)
9944   "Import an arbitrary file into a mail newsgroup."
9945   (interactive "fImport file: \nP")
9946   (let ((group gnus-newsgroup-name)
9947         (now (current-time))
9948         atts lines group-art)
9949     (unless (gnus-check-backend-function 'request-accept-article group)
9950       (error "%s does not support article importing" group))
9951     (or (file-readable-p file)
9952         (not (file-regular-p file))
9953         (error "Can't read %s" file))
9954     (with-current-buffer (gnus-get-buffer-create " *import file*")
9955       (erase-buffer)
9956       (nnheader-insert-file-contents file)
9957       (goto-char (point-min))
9958       (if (nnheader-article-p)
9959           (save-restriction
9960             (goto-char (point-min))
9961             (search-forward "\n\n" nil t)
9962             (narrow-to-region (point-min) (1- (point)))
9963             (goto-char (point-min))
9964             (unless (re-search-forward "^date:" nil t)
9965               (goto-char (point-max))
9966               (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9967        ;; This doesn't look like an article, so we fudge some headers.
9968         (setq atts (file-attributes file)
9969               lines (count-lines (point-min) (point-max)))
9970         (insert "From: " (read-string "From: ") "\n"
9971                 "Subject: " (read-string "Subject: ") "\n"
9972                 "Date: " (message-make-date (nth 5 atts)) "\n"
9973                 "Message-ID: " (message-make-message-id) "\n"
9974                 "Lines: " (int-to-string lines) "\n"
9975                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9976       (setq group-art (gnus-request-accept-article group nil t))
9977       (kill-buffer (current-buffer)))
9978     (setq gnus-newsgroup-active (gnus-activate-group group))
9979     (forward-line 1)
9980     (gnus-summary-goto-article (cdr group-art) nil t)
9981     (when edit
9982       (gnus-summary-edit-article))))
9983
9984 (defun gnus-summary-create-article ()
9985   "Create an article in a mail newsgroup."
9986   (interactive)
9987   (let ((group gnus-newsgroup-name)
9988         (now (current-time))
9989         group-art)
9990     (unless (gnus-check-backend-function 'request-accept-article group)
9991       (error "%s does not support article importing" group))
9992     (with-current-buffer (gnus-get-buffer-create " *import file*")
9993       (erase-buffer)
9994       (goto-char (point-min))
9995       ;; This doesn't look like an article, so we fudge some headers.
9996       (insert "From: " (read-string "From: ") "\n"
9997               "Subject: " (read-string "Subject: ") "\n"
9998               "Date: " (message-make-date now) "\n"
9999               "Message-ID: " (message-make-message-id) "\n")
10000       (setq group-art (gnus-request-accept-article group nil t))
10001       (kill-buffer (current-buffer)))
10002     (setq gnus-newsgroup-active (gnus-activate-group group))
10003     (forward-line 1)
10004     (gnus-summary-goto-article (cdr group-art) nil t)
10005     (gnus-summary-edit-article)))
10006
10007 (defun gnus-summary-article-posted-p ()
10008   "Say whether the current (mail) article is available from news as well.
10009 This will be the case if the article has both been mailed and posted."
10010   (interactive)
10011   (let ((id (mail-header-references (gnus-summary-article-header)))
10012         (gnus-override-method (car (gnus-refer-article-methods))))
10013     (if (gnus-request-head id "")
10014         (gnus-message 2 "The current message was found on %s"
10015                       gnus-override-method)
10016       (gnus-message 2 "The current message couldn't be found on %s"
10017                     gnus-override-method)
10018       nil)))
10019
10020 (defun gnus-summary-expire-articles (&optional now)
10021   "Expire all articles that are marked as expirable in the current group."
10022   (interactive)
10023   (when (and (not gnus-group-is-exiting-without-update-p)
10024              (gnus-check-backend-function
10025               'request-expire-articles gnus-newsgroup-name))
10026     ;; This backend supports expiry.
10027     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
10028            (expirable (if total
10029                           (progn
10030                             ;; We need to update the info for
10031                             ;; this group for `gnus-list-of-read-articles'
10032                             ;; to give us the right answer.
10033                             (gnus-run-hooks 'gnus-exit-group-hook)
10034                             (gnus-summary-update-info)
10035                             (gnus-list-of-read-articles gnus-newsgroup-name))
10036                         (setq gnus-newsgroup-expirable
10037                               (sort gnus-newsgroup-expirable '<))))
10038            (expiry-wait (if now 'immediate
10039                           (gnus-group-find-parameter
10040                            gnus-newsgroup-name 'expiry-wait)))
10041            (nnmail-expiry-target
10042             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
10043                 nnmail-expiry-target))
10044            es)
10045       (when expirable
10046         ;; There are expirable articles in this group, so we run them
10047         ;; through the expiry process.
10048         (gnus-message 6 "Expiring articles...")
10049         (unless (gnus-check-group gnus-newsgroup-name)
10050           (error "Can't open server for %s" gnus-newsgroup-name))
10051         ;; The list of articles that weren't expired is returned.
10052         (save-excursion
10053           (if expiry-wait
10054               (let ((nnmail-expiry-wait-function nil)
10055                     (nnmail-expiry-wait expiry-wait))
10056                 (setq es (gnus-request-expire-articles
10057                           expirable gnus-newsgroup-name)))
10058             (setq es (gnus-request-expire-articles
10059                       expirable gnus-newsgroup-name)))
10060           (unless total
10061             (setq gnus-newsgroup-expirable es))
10062           ;; We go through the old list of expirable, and mark all
10063           ;; really expired articles as nonexistent.
10064           (unless (eq es expirable) ;If nothing was expired, we don't mark.
10065             (let ((gnus-use-cache nil))
10066               (dolist (article expirable)
10067                 (when (and (not (memq article es))
10068                            (gnus-data-find article))
10069                   (gnus-summary-mark-article article gnus-canceled-mark)
10070                   (run-hook-with-args 'gnus-summary-article-expire-hook
10071                                       'delete
10072                                       (gnus-data-header
10073                                        (assoc article (gnus-data-list nil)))
10074                                       gnus-newsgroup-name
10075                                       nil
10076                                       nil))))))
10077         (gnus-message 6 "Expiring articles...done")))))
10078
10079 (defun gnus-summary-expire-articles-now ()
10080   "Expunge all expirable articles in the current group.
10081 This means that *all* articles that are marked as expirable will be
10082 deleted forever, right now."
10083   (interactive)
10084   (or gnus-expert-user
10085       (gnus-yes-or-no-p
10086        "Are you really, really sure you want to delete all expirable messages? ")
10087       (error "Phew!"))
10088   (gnus-summary-expire-articles t))
10089
10090 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
10091 (defun gnus-summary-delete-article (&optional n)
10092   "Delete the N next (mail) articles.
10093 This command actually deletes articles.  This is not a marking
10094 command.  The article will disappear forever from your life, never to
10095 return.
10096
10097 If N is negative, delete backwards.
10098 If N is nil and articles have been marked with the process mark,
10099 delete these instead.
10100
10101 If `gnus-novice-user' is non-nil you will be asked for
10102 confirmation before the articles are deleted."
10103   (interactive "P")
10104   (unless (gnus-check-backend-function 'request-expire-articles
10105                                        gnus-newsgroup-name)
10106     (error "The current newsgroup does not support article deletion"))
10107   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
10108     (error "Couldn't open server"))
10109   ;; Compute the list of articles to delete.
10110   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
10111         (nnmail-expiry-target 'delete)
10112         not-deleted)
10113     (if (and gnus-novice-user
10114              (not (gnus-yes-or-no-p
10115                    (format "Do you really want to delete %s forever? "
10116                            (if (> (length articles) 1)
10117                                (format "these %s articles" (length articles))
10118                              "this article")))))
10119         ()
10120       ;; Delete the articles.
10121       (setq not-deleted (gnus-request-expire-articles
10122                          articles gnus-newsgroup-name 'force))
10123       (save-excursion
10124         (while articles
10125           (gnus-summary-remove-process-mark (car articles))
10126           ;; The backend might not have been able to delete the article
10127           ;; after all.
10128           (unless (memq (car articles) not-deleted)
10129             (gnus-summary-mark-article (car articles) gnus-canceled-mark))
10130           (let* ((article (car articles))
10131                  (ghead  (gnus-data-header
10132                           (assoc article (gnus-data-list nil)))))
10133             (run-hook-with-args 'gnus-summary-article-delete-hook
10134                                 'delete ghead gnus-newsgroup-name nil
10135                                 nil))
10136           (setq articles (cdr articles))))
10137       (when not-deleted
10138         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
10139     (gnus-summary-position-point)
10140     (gnus-set-mode-line 'summary)
10141     not-deleted))
10142
10143 (defun gnus-summary-edit-article (&optional arg)
10144   "Edit the current article.
10145 This will have permanent effect only in mail groups.
10146 If ARG is nil, edit the decoded articles.
10147 If ARG is 1, edit the raw articles.
10148 If ARG is 2, edit the raw articles even in read-only groups.
10149 If ARG is 3, edit the articles with the current handles.
10150 Otherwise, allow editing of articles even in read-only
10151 groups."
10152   (interactive "P")
10153   (let (force raw current-handles)
10154     (cond
10155      ((null arg))
10156      ((eq arg 1)
10157       (setq raw t))
10158      ((eq arg 2)
10159       (setq raw t
10160             force t))
10161      ((eq arg 3)
10162       (setq current-handles
10163             (and (gnus-buffer-live-p gnus-article-buffer)
10164                  (with-current-buffer gnus-article-buffer
10165                    (prog1
10166                        gnus-article-mime-handles
10167                      (setq gnus-article-mime-handles nil))))))
10168      (t
10169       (setq force t)))
10170     (when (and raw (not force)
10171                (member gnus-newsgroup-name '("nndraft:delayed"
10172                                              "nndraft:drafts"
10173                                              "nndraft:queue")))
10174       (error "Can't edit the raw article in group %s"
10175              gnus-newsgroup-name))
10176     (with-current-buffer gnus-summary-buffer
10177       (let ((mail-parse-charset gnus-newsgroup-charset)
10178             (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
10179         (gnus-set-global-variables)
10180         (when (and (not force)
10181                    (gnus-group-read-only-p))
10182           (error "The current newsgroup does not support article editing"))
10183         (gnus-summary-show-article t)
10184         (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
10185           (with-current-buffer gnus-article-buffer
10186             (mm-enable-multibyte)))
10187         (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
10188             (setq raw t))
10189         (gnus-article-edit-article
10190          (if raw 'ignore
10191            `(lambda ()
10192               (let ((mbl mml-buffer-list))
10193                 (setq mml-buffer-list nil)
10194                 (let ((rfc2047-quote-decoded-words-containing-tspecials t))
10195                   (mime-to-mml ,'current-handles))
10196                 (let ((mbl1 mml-buffer-list))
10197                   (setq mml-buffer-list mbl)
10198                   (set (make-local-variable 'mml-buffer-list) mbl1))
10199                 (gnus-make-local-hook 'kill-buffer-hook)
10200                 (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
10201          `(lambda (no-highlight)
10202             (let ((mail-parse-charset ',gnus-newsgroup-charset)
10203                   (message-options message-options)
10204                   (message-options-set-recipient)
10205                   (mail-parse-ignored-charsets
10206                    ',gnus-newsgroup-ignored-charsets)
10207                   (rfc2047-header-encoding-alist
10208                    ',(let ((charset (gnus-group-name-charset
10209                                      (gnus-find-method-for-group
10210                                       gnus-newsgroup-name)
10211                                      gnus-newsgroup-name)))
10212                        (append (list (cons "Newsgroups" charset)
10213                                      (cons "Followup-To" charset)
10214                                      (cons "Xref" charset))
10215                                rfc2047-header-encoding-alist))))
10216               ,(if (not raw) '(progn
10217                                 (mml-to-mime)
10218                                 (mml-destroy-buffers)
10219                                 (remove-hook 'kill-buffer-hook
10220                                              'mml-destroy-buffers t)
10221                                 (kill-local-variable 'mml-buffer-list)))
10222               (gnus-summary-edit-article-done
10223                ,(or (mail-header-references gnus-current-headers) "")
10224                ,(gnus-group-read-only-p)
10225                ,gnus-summary-buffer no-highlight))))))))
10226
10227 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
10228
10229 (defun gnus-summary-edit-article-done (&optional references read-only buffer
10230                                                  no-highlight)
10231   "Make edits to the current article permanent."
10232   (interactive)
10233   (save-excursion
10234    ;; The buffer restriction contains the entire article if it exists.
10235     (when (article-goto-body)
10236       (let ((lines (count-lines (point) (point-max)))
10237             (length (- (point-max) (point)))
10238             (case-fold-search t)
10239             (body (copy-marker (point))))
10240         (goto-char (point-min))
10241         (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
10242           (delete-region (match-beginning 1) (match-end 1))
10243           (insert (number-to-string length)))
10244         (goto-char (point-min))
10245         (when (re-search-forward
10246                "^x-content-length:[ \t]\\([0-9]+\\)" body t)
10247           (delete-region (match-beginning 1) (match-end 1))
10248           (insert (number-to-string length)))
10249         (goto-char (point-min))
10250         (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
10251           (delete-region (match-beginning 1) (match-end 1))
10252           (insert (number-to-string lines))))))
10253   ;; Replace the article.
10254   (let ((buf (current-buffer)))
10255     (with-temp-buffer
10256       (insert-buffer-substring buf)
10257
10258       (if (and (not read-only)
10259                (not (gnus-request-replace-article
10260                      (cdr gnus-article-current) (car gnus-article-current)
10261                      (current-buffer) t)))
10262           (error "Couldn't replace article")
10263         ;; Update the summary buffer.
10264         (if (and references
10265                  (equal (message-tokenize-header references " ")
10266                         (message-tokenize-header
10267                          (or (message-fetch-field "references") "") " ")))
10268             ;; We only have to update this line.
10269             (save-excursion
10270               (save-restriction
10271                 (message-narrow-to-head)
10272                 (let ((head (buffer-substring-no-properties
10273                              (point-min) (point-max)))
10274                       header)
10275                   (with-temp-buffer
10276                     (insert (format "211 %d Article retrieved.\n"
10277                                     (cdr gnus-article-current)))
10278                     (insert head)
10279                     (insert ".\n")
10280                     (let ((nntp-server-buffer (current-buffer)))
10281                       (setq header (car (gnus-get-newsgroup-headers
10282                                          nil t))))
10283                     (with-current-buffer gnus-summary-buffer
10284                       (gnus-data-set-header
10285                        (gnus-data-find (cdr gnus-article-current))
10286                        header)
10287                       (gnus-summary-update-article-line
10288                        (cdr gnus-article-current) header)
10289                       (if (gnus-summary-goto-subject
10290                            (cdr gnus-article-current) nil t)
10291                           (gnus-summary-update-secondary-mark
10292                            (cdr gnus-article-current))))))))
10293           ;; Update threads.
10294           (set-buffer (or buffer gnus-summary-buffer))
10295           (gnus-summary-update-article (cdr gnus-article-current))
10296           (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10297               (gnus-summary-update-secondary-mark
10298                (cdr gnus-article-current))))
10299         ;; Prettify the article buffer again.
10300         (unless no-highlight
10301           (with-current-buffer gnus-article-buffer
10302             ;;;!!! Fix this -- article should be rehighlighted.
10303             ;;;(gnus-run-hooks 'gnus-article-display-hook)
10304             (set-buffer gnus-original-article-buffer)
10305             (gnus-request-article
10306              (cdr gnus-article-current)
10307              (car gnus-article-current) (current-buffer))))
10308         ;; Prettify the summary buffer line.
10309         (when (gnus-visual-p 'summary-highlight 'highlight)
10310           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
10311
10312 (defun gnus-summary-edit-wash (key)
10313   "Perform editing command KEY in the article buffer."
10314   (interactive
10315    (list
10316     (progn
10317       (message "%s" (concat (this-command-keys) "- "))
10318       (read-char))))
10319   (message "")
10320   (gnus-summary-edit-article)
10321   (execute-kbd-macro (concat (this-command-keys) key))
10322   (gnus-article-edit-done))
10323
10324 ;;; Respooling
10325
10326 (defun gnus-summary-respool-query (&optional silent trace)
10327   "Query where the respool algorithm would put this article."
10328   (interactive)
10329   (let (gnus-mark-article-hook)
10330     (gnus-summary-select-article)
10331     (with-current-buffer gnus-original-article-buffer
10332       (let ((groups (nnmail-article-group 'identity trace)))
10333         (unless silent
10334           (if groups
10335               (message "This message would go to %s"
10336                        (mapconcat 'car groups ", "))
10337             (message "This message would go to no groups"))
10338           groups)))))
10339
10340 (defun gnus-summary-respool-trace ()
10341   "Trace where the respool algorithm would put this article.
10342 Display a buffer showing all fancy splitting patterns which matched."
10343   (interactive)
10344   (gnus-summary-respool-query nil t))
10345
10346 ;; Summary marking commands.
10347
10348 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
10349   "Mark articles which has the same subject as read, and then select the next.
10350 If UNMARK is positive, remove any kind of mark.
10351 If UNMARK is negative, tick articles."
10352   (interactive "P")
10353   (when unmark
10354     (setq unmark (prefix-numeric-value unmark)))
10355   (let ((count
10356          (gnus-summary-mark-same-subject
10357           (gnus-summary-article-subject) unmark)))
10358     ;; Select next unread article.  If auto-select-same mode, should
10359     ;; select the first unread article.
10360     (gnus-summary-next-article t (and gnus-auto-select-same
10361                                       (gnus-summary-article-subject)))
10362     (gnus-message 7 "%d article%s marked as %s"
10363                   count (if (= count 1) " is" "s are")
10364                   (if unmark "unread" "read"))))
10365
10366 (defun gnus-summary-kill-same-subject (&optional unmark)
10367   "Mark articles which has the same subject as read.
10368 If UNMARK is positive, remove any kind of mark.
10369 If UNMARK is negative, tick articles."
10370   (interactive "P")
10371   (when unmark
10372     (setq unmark (prefix-numeric-value unmark)))
10373   (let ((count
10374          (gnus-summary-mark-same-subject
10375           (gnus-summary-article-subject) unmark)))
10376     ;; If marked as read, go to next unread subject.
10377     (when (null unmark)
10378       ;; Go to next unread subject.
10379       (gnus-summary-next-subject 1 t))
10380     (gnus-message 7 "%d articles are marked as %s"
10381                   count (if unmark "unread" "read"))))
10382
10383 (defun gnus-summary-mark-same-subject (subject &optional unmark)
10384   "Mark articles with same SUBJECT as read, and return marked number.
10385 If optional argument UNMARK is positive, remove any kinds of marks.
10386 If optional argument UNMARK is negative, mark articles as unread instead."
10387   (let ((count 1))
10388     (save-excursion
10389       (cond
10390        ((null unmark)                   ; Mark as read.
10391         (while (and
10392                 (progn
10393                   (gnus-summary-mark-article-as-read gnus-killed-mark)
10394                   (gnus-summary-show-thread) t)
10395                 (gnus-summary-find-subject subject))
10396           (setq count (1+ count))))
10397        ((> unmark 0)                    ; Tick.
10398         (while (and
10399                 (progn
10400                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
10401                   (gnus-summary-show-thread) t)
10402                 (gnus-summary-find-subject subject))
10403           (setq count (1+ count))))
10404        (t                               ; Mark as unread.
10405         (while (and
10406                 (progn
10407                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
10408                   (gnus-summary-show-thread) t)
10409                 (gnus-summary-find-subject subject))
10410           (setq count (1+ count)))))
10411       (gnus-set-mode-line 'summary)
10412       ;; Return the number of marked articles.
10413       count)))
10414
10415 (defun gnus-summary-mark-as-processable (n &optional unmark)
10416   "Set the process mark on the next N articles.
10417 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
10418 the process mark instead.  The difference between N and the actual
10419 number of articles marked is returned."
10420   (interactive "P")
10421   (if (and (null n) (gnus-region-active-p))
10422       (gnus-uu-mark-region (region-beginning) (region-end) unmark)
10423     (setq n (prefix-numeric-value n))
10424     (let ((backward (< n 0))
10425           (n (abs n)))
10426       (while (and
10427               (> n 0)
10428               (if unmark
10429                   (gnus-summary-remove-process-mark
10430                    (gnus-summary-article-number))
10431                 (gnus-summary-set-process-mark (gnus-summary-article-number)))
10432               (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
10433         (setq n (1- n)))
10434       (when (/= 0 n)
10435         (gnus-message 7 "No more articles"))
10436       (gnus-summary-recenter)
10437       (gnus-summary-position-point)
10438       n)))
10439
10440 (defun gnus-summary-unmark-as-processable (n)
10441   "Remove the process mark from the next N articles.
10442 If N is negative, unmark backward instead.  The difference between N and
10443 the actual number of articles unmarked is returned."
10444   (interactive "P")
10445   (gnus-summary-mark-as-processable n t))
10446
10447 (defun gnus-summary-unmark-all-processable ()
10448   "Remove the process mark from all articles."
10449   (interactive)
10450   (save-excursion
10451     (while gnus-newsgroup-processable
10452       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
10453   (gnus-summary-position-point))
10454
10455 (defun gnus-summary-add-mark (article type)
10456   "Mark ARTICLE with a mark of TYPE."
10457   (let ((vtype (car (assq type gnus-article-mark-lists)))
10458         var)
10459     (if (not vtype)
10460         (error "No such mark type: %s" type)
10461       (setq var (intern (format "gnus-newsgroup-%s" type)))
10462       (set var (cons article (symbol-value var)))
10463       (if (memq type '(processable cached replied forwarded recent saved))
10464           (gnus-summary-update-secondary-mark article)
10465         ;;; !!! This is bogus.  We should find out what primary
10466         ;;; !!! mark we want to set.
10467         (gnus-summary-update-mark gnus-del-mark 'unread)))))
10468
10469 (defun gnus-summary-mark-as-expirable (n)
10470   "Mark N articles forward as expirable.
10471 If N is negative, mark backward instead.  The difference between N and
10472 the actual number of articles marked is returned."
10473   (interactive "p")
10474   (gnus-summary-mark-forward n gnus-expirable-mark))
10475
10476 (defun gnus-summary-mark-as-spam (n)
10477   "Mark N articles forward as spam.
10478 If N is negative, mark backward instead.  The difference between N and
10479 the actual number of articles marked is returned."
10480   (interactive "p")
10481   (gnus-summary-mark-forward n gnus-spam-mark))
10482
10483 (defun gnus-summary-mark-article-as-replied (article)
10484   "Mark ARTICLE as replied to and update the summary line.
10485 ARTICLE can also be a list of articles."
10486   (interactive (list (gnus-summary-article-number)))
10487   (let ((articles (if (listp article) article (list article))))
10488     (dolist (article articles)
10489       (unless (numberp article)
10490         (error "%s is not a number" article))
10491       (push article gnus-newsgroup-replied)
10492       (let ((inhibit-read-only t))
10493         (when (gnus-summary-goto-subject article nil t)
10494           (gnus-summary-update-secondary-mark article))))))
10495
10496 (defun gnus-summary-mark-article-as-forwarded (article)
10497   "Mark ARTICLE as forwarded and update the summary line.
10498 ARTICLE can also be a list of articles."
10499   (let ((articles (if (listp article) article (list article))))
10500     (dolist (article articles)
10501       (push article gnus-newsgroup-forwarded)
10502       (let ((inhibit-read-only t))
10503         (when (gnus-summary-goto-subject article nil t)
10504           (gnus-summary-update-secondary-mark article))))))
10505
10506 (defun gnus-summary-set-bookmark (article)
10507   "Set a bookmark in current article."
10508   (interactive (list (gnus-summary-article-number)))
10509   (when (or (not (get-buffer gnus-article-buffer))
10510             (not gnus-current-article)
10511             (not gnus-article-current)
10512             (not (equal gnus-newsgroup-name (car gnus-article-current))))
10513     (error "No current article selected"))
10514   ;; Remove old bookmark, if one exists.
10515   (gnus-pull article gnus-newsgroup-bookmarks)
10516   ;; Set the new bookmark, which is on the form
10517   ;; (article-number . line-number-in-body).
10518   (push
10519    (cons article
10520          (with-current-buffer gnus-article-buffer
10521            (count-lines
10522             (min (point)
10523                  (save-excursion
10524                    (article-goto-body)
10525                    (point)))
10526             (point))))
10527    gnus-newsgroup-bookmarks)
10528   (gnus-message 6 "A bookmark has been added to the current article."))
10529
10530 (defun gnus-summary-remove-bookmark (article)
10531   "Remove the bookmark from the current article."
10532   (interactive (list (gnus-summary-article-number)))
10533   ;; Remove old bookmark, if one exists.
10534   (if (not (assq article gnus-newsgroup-bookmarks))
10535       (gnus-message 6 "No bookmark in current article.")
10536     (gnus-pull article gnus-newsgroup-bookmarks)
10537     (gnus-message 6 "Removed bookmark.")))
10538
10539 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10540 (defun gnus-summary-mark-as-dormant (n)
10541   "Mark N articles forward as dormant.
10542 If N is negative, mark backward instead.  The difference between N and
10543 the actual number of articles marked is returned."
10544   (interactive "p")
10545   (gnus-summary-mark-forward n gnus-dormant-mark))
10546
10547 (defun gnus-summary-set-process-mark (article)
10548   "Set the process mark on ARTICLE and update the summary line."
10549   (setq gnus-newsgroup-processable
10550         (cons article
10551               (delq article gnus-newsgroup-processable)))
10552   (when (gnus-summary-goto-subject article)
10553     (gnus-summary-show-thread)
10554     (gnus-summary-goto-subject article)
10555     (gnus-summary-update-secondary-mark article)))
10556
10557 (defun gnus-summary-remove-process-mark (&rest articles)
10558   "Remove the process mark from ARTICLES and update the summary line."
10559   (dolist (article articles)
10560     (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
10561     (when (gnus-summary-goto-subject article)
10562       (gnus-summary-show-thread)
10563       (gnus-summary-goto-subject article)
10564       (gnus-summary-update-secondary-mark article)))
10565   t)
10566
10567 (defun gnus-summary-set-saved-mark (article)
10568   "Set the process mark on ARTICLE and update the summary line."
10569   (push article gnus-newsgroup-saved)
10570   (when (gnus-summary-goto-subject article)
10571     (gnus-summary-update-secondary-mark article)))
10572
10573 (defun gnus-summary-mark-forward (n &optional mark no-expire)
10574   "Mark N articles as read forwards.
10575 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
10576 The difference between N and the actual number of articles marked is
10577 returned.
10578 If NO-EXPIRE, auto-expiry will be inhibited."
10579   (interactive "p")
10580   (gnus-summary-show-thread)
10581   (let ((backward (< n 0))
10582         (gnus-summary-goto-unread
10583          (and gnus-summary-goto-unread
10584               (not (eq gnus-summary-goto-unread 'never))
10585               (not (memq mark (list gnus-unread-mark gnus-spam-mark
10586                                     gnus-ticked-mark gnus-dormant-mark)))))
10587         (n (abs n))
10588         (mark (or mark gnus-del-mark)))
10589     (while (and (> n 0)
10590                 (gnus-summary-mark-article nil mark no-expire)
10591                 (zerop (gnus-summary-next-subject
10592                         (if backward -1 1)
10593                         (and gnus-summary-goto-unread
10594                              (not (eq gnus-summary-goto-unread 'never)))
10595                         t)))
10596       (setq n (1- n)))
10597     (when (/= 0 n)
10598       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
10599     (gnus-summary-recenter)
10600     (gnus-summary-position-point)
10601     (gnus-set-mode-line 'summary)
10602     n))
10603
10604 (defun gnus-summary-mark-article-as-read (mark)
10605   "Mark the current article quickly as read with MARK."
10606   (let ((article (gnus-summary-article-number)))
10607     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10608     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10609     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10610     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10611     (push (cons article mark) gnus-newsgroup-reads)
10612     ;; Possibly remove from cache, if that is used.
10613     (when gnus-use-cache
10614       (gnus-cache-enter-remove-article article))
10615     ;; Allow the backend to change the mark.
10616     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10617     ;; Check for auto-expiry.
10618     (when (and gnus-newsgroup-auto-expire
10619                (memq mark gnus-auto-expirable-marks))
10620       (setq mark gnus-expirable-mark)
10621       ;; Let the backend know about the mark change.
10622       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10623       (push article gnus-newsgroup-expirable))
10624     ;; Set the mark in the buffer.
10625     (gnus-summary-update-mark mark 'unread)
10626     t))
10627
10628 (defun gnus-summary-mark-article-as-unread (mark)
10629   "Mark the current article quickly as unread with MARK."
10630   (let* ((article (gnus-summary-article-number))
10631          (old-mark (gnus-summary-article-mark article)))
10632     ;; Allow the backend to change the mark.
10633     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10634     (if (eq mark old-mark)
10635         t
10636       (if (<= article 0)
10637           (progn
10638             (gnus-error 1 "Can't mark negative article numbers")
10639             nil)
10640         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10641         (setq gnus-newsgroup-spam-marked
10642               (delq article gnus-newsgroup-spam-marked))
10643         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10644         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
10645         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
10646         (cond ((= mark gnus-ticked-mark)
10647                (setq gnus-newsgroup-marked
10648                      (gnus-add-to-sorted-list gnus-newsgroup-marked
10649                                               article)))
10650               ((= mark gnus-spam-mark)
10651                (setq gnus-newsgroup-spam-marked
10652                      (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10653                                               article)))
10654               ((= mark gnus-dormant-mark)
10655                (setq gnus-newsgroup-dormant
10656                      (gnus-add-to-sorted-list gnus-newsgroup-dormant
10657                                               article)))
10658               (t
10659                (setq gnus-newsgroup-unreads
10660                      (gnus-add-to-sorted-list gnus-newsgroup-unreads
10661                                               article))))
10662         (gnus-pull article gnus-newsgroup-reads)
10663
10664         ;; See whether the article is to be put in the cache.
10665         (and gnus-use-cache
10666              (vectorp (gnus-summary-article-header article))
10667              (save-excursion
10668                (gnus-cache-possibly-enter-article
10669                 gnus-newsgroup-name article
10670                 (= mark gnus-ticked-mark)
10671                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10672
10673         ;; Fix the mark.
10674         (gnus-summary-update-mark mark 'unread)
10675         t))))
10676
10677 (defun gnus-summary-mark-article (&optional article mark no-expire)
10678   "Mark ARTICLE with MARK.  MARK can be any character.
10679 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
10680 `??' (dormant) and `?E' (expirable).
10681 If MARK is nil, then the default character `?r' is used.
10682 If ARTICLE is nil, then the article on the current line will be
10683 marked.
10684 If NO-EXPIRE, auto-expiry will be inhibited."
10685   ;; The mark might be a string.
10686   (when (stringp mark)
10687     (setq mark (aref mark 0)))
10688   ;; If no mark is given, then we check auto-expiring.
10689   (when (null mark)
10690     (setq mark gnus-del-mark))
10691   (when (and (not no-expire)
10692              gnus-newsgroup-auto-expire
10693              (memq mark gnus-auto-expirable-marks))
10694     (setq mark gnus-expirable-mark))
10695   (let ((article (or article (gnus-summary-article-number)))
10696         (old-mark (gnus-summary-article-mark article)))
10697     ;; Allow the backend to change the mark.
10698     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
10699     (if (eq mark old-mark)
10700         t
10701       (unless article
10702         (error "No article on current line"))
10703       (if (not (if (or (= mark gnus-unread-mark)
10704                        (= mark gnus-ticked-mark)
10705                        (= mark gnus-spam-mark)
10706                        (= mark gnus-dormant-mark))
10707                    (gnus-mark-article-as-unread article mark)
10708                  (gnus-mark-article-as-read article mark)))
10709           t
10710         ;; See whether the article is to be put in the cache.
10711         (and gnus-use-cache
10712              (not (= mark gnus-canceled-mark))
10713              (vectorp (gnus-summary-article-header article))
10714              (save-excursion
10715                (gnus-cache-possibly-enter-article
10716                 gnus-newsgroup-name article
10717                 (= mark gnus-ticked-mark)
10718                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10719
10720         (when (gnus-summary-goto-subject article nil t)
10721           (let ((inhibit-read-only t))
10722             (gnus-summary-show-thread)
10723             ;; Fix the mark.
10724             (gnus-summary-update-mark mark 'unread)
10725             t))))))
10726
10727 (defun gnus-summary-update-secondary-mark (article)
10728   "Update the secondary (read, process, cache) mark."
10729   (gnus-summary-update-mark
10730    (cond ((memq article gnus-newsgroup-processable)
10731           gnus-process-mark)
10732          ((memq article gnus-newsgroup-cached)
10733           gnus-cached-mark)
10734          ((memq article gnus-newsgroup-replied)
10735           gnus-replied-mark)
10736          ((memq article gnus-newsgroup-forwarded)
10737           gnus-forwarded-mark)
10738          ((memq article gnus-newsgroup-saved)
10739           gnus-saved-mark)
10740          ((memq article gnus-newsgroup-recent)
10741           gnus-recent-mark)
10742          ((memq article gnus-newsgroup-unseen)
10743           gnus-unseen-mark)
10744          (t gnus-no-mark))
10745    'replied)
10746   (when (gnus-visual-p 'summary-highlight 'highlight)
10747     (gnus-summary-highlight-line)
10748     (gnus-run-hooks 'gnus-summary-update-hook))
10749   t)
10750
10751 (defun gnus-summary-update-download-mark (article)
10752   "Update the download mark."
10753   (gnus-summary-update-mark
10754    (cond ((memq article gnus-newsgroup-undownloaded)
10755           gnus-undownloaded-mark)
10756          (gnus-newsgroup-agentized
10757           gnus-downloaded-mark)
10758          (t
10759           gnus-no-mark))
10760    'download)
10761   (gnus-summary-update-line t)
10762   t)
10763
10764 (defun gnus-summary-update-mark (mark type)
10765   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
10766         (inhibit-read-only t))
10767     (re-search-backward "[\n\r]" (point-at-bol) 'move-to-limit)
10768     (when forward
10769       (when (looking-at "\r")
10770         (incf forward))
10771       (when (<= (+ forward (point)) (point-max))
10772         ;; Go to the right position on the line.
10773         (goto-char (+ forward (point)))
10774         ;; Replace the old mark with the new mark.
10775         (let ((to-insert
10776                (mm-subst-char-in-string
10777                 (char-after) mark
10778                 (buffer-substring (point) (1+ (point))))))
10779           (delete-region (point) (1+ (point)))
10780           (insert to-insert))
10781         ;; Optionally update the marks by some user rule.
10782         (when (eq type 'unread)
10783           (gnus-data-set-mark
10784            (gnus-data-find (gnus-summary-article-number)) mark)
10785           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
10786
10787 (defun gnus-mark-article-as-read (article &optional mark)
10788   "Enter ARTICLE in the pertinent lists and remove it from others."
10789   ;; Make the article expirable.
10790   (let ((mark (or mark gnus-del-mark)))
10791     (setq gnus-newsgroup-expirable
10792           (if (= mark gnus-expirable-mark)
10793               (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
10794             (delq article gnus-newsgroup-expirable)))
10795     ;; Remove from unread and marked lists.
10796     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10797     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10798     (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10799     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10800     (push (cons article mark) gnus-newsgroup-reads)
10801     ;; Possibly remove from cache, if that is used.
10802     (when gnus-use-cache
10803       (gnus-cache-enter-remove-article article))
10804     t))
10805
10806 (defun gnus-mark-article-as-unread (article &optional mark)
10807   "Enter ARTICLE in the pertinent lists and remove it from others."
10808   (let ((mark (or mark gnus-ticked-mark)))
10809     (if (<= article 0)
10810         (progn
10811           (gnus-error 1 "Can't mark negative article numbers")
10812           nil)
10813       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
10814             gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
10815             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
10816             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
10817             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10818
10819       ;; Unsuppress duplicates?
10820       (when gnus-suppress-duplicates
10821         (gnus-dup-unsuppress-article article))
10822
10823       (cond ((= mark gnus-ticked-mark)
10824              (setq gnus-newsgroup-marked
10825                    (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
10826             ((= mark gnus-spam-mark)
10827              (setq gnus-newsgroup-spam-marked
10828                    (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10829                                             article)))
10830             ((= mark gnus-dormant-mark)
10831              (setq gnus-newsgroup-dormant
10832                    (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10833             (t
10834              (setq gnus-newsgroup-unreads
10835                    (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10836       (gnus-pull article gnus-newsgroup-reads)
10837       t)))
10838
10839 (defalias 'gnus-summary-mark-as-unread-forward
10840   'gnus-summary-tick-article-forward)
10841 (make-obsolete 'gnus-summary-mark-as-unread-forward
10842                'gnus-summary-tick-article-forward "Emacs 20.4")
10843 (defun gnus-summary-tick-article-forward (n)
10844   "Tick N articles forwards.
10845 If N is negative, tick backwards instead.
10846 The difference between N and the number of articles ticked is returned."
10847   (interactive "p")
10848   (gnus-summary-mark-forward n gnus-ticked-mark))
10849
10850 (defalias 'gnus-summary-mark-as-unread-backward
10851   'gnus-summary-tick-article-backward)
10852 (make-obsolete 'gnus-summary-mark-as-unread-backward
10853                'gnus-summary-tick-article-backward "Emacs 20.4")
10854 (defun gnus-summary-tick-article-backward (n)
10855   "Tick N articles backwards.
10856 The difference between N and the number of articles ticked is returned."
10857   (interactive "p")
10858   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10859
10860 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10861 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article "Emacs 20.4")
10862 (defun gnus-summary-tick-article (&optional article clear-mark)
10863   "Mark current article as unread.
10864 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10865 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10866   (interactive)
10867   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10868                                        gnus-ticked-mark)))
10869
10870 (defun gnus-summary-mark-as-read-forward (n)
10871   "Mark N articles as read forwards.
10872 If N is negative, mark backwards instead.
10873 The difference between N and the actual number of articles marked is
10874 returned."
10875   (interactive "p")
10876   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10877
10878 (defun gnus-summary-mark-as-read-backward (n)
10879   "Mark the N articles as read backwards.
10880 The difference between N and the actual number of articles marked is
10881 returned."
10882   (interactive "p")
10883   (gnus-summary-mark-forward
10884    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10885
10886 (defun gnus-summary-mark-as-read (&optional article mark)
10887   "Mark current article as read.
10888 ARTICLE specifies the article to be marked as read.
10889 MARK specifies a string to be inserted at the beginning of the line."
10890   (gnus-summary-mark-article article mark))
10891
10892 (defun gnus-summary-clear-mark-forward (n)
10893   "Clear marks from N articles forward.
10894 If N is negative, clear backward instead.
10895 The difference between N and the number of marks cleared is returned."
10896   (interactive "p")
10897   (gnus-summary-mark-forward n gnus-unread-mark))
10898
10899 (defun gnus-summary-clear-mark-backward (n)
10900   "Clear marks from N articles backward.
10901 The difference between N and the number of marks cleared is returned."
10902   (interactive "p")
10903   (gnus-summary-mark-forward (- n) gnus-unread-mark))
10904
10905 (defun gnus-summary-mark-unread-as-read ()
10906   "Intended to be used by `gnus-mark-article-hook'."
10907   (when (memq gnus-current-article gnus-newsgroup-unreads)
10908     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10909
10910 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10911   "Intended to be used by `gnus-mark-article-hook'."
10912   (let ((mark (gnus-summary-article-mark)))
10913     (when (or (gnus-unread-mark-p mark)
10914               (gnus-read-mark-p mark))
10915       (gnus-summary-mark-article gnus-current-article
10916                                  (or new-mark gnus-read-mark)))))
10917
10918 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10919   "Intended to be used by `gnus-mark-article-hook'."
10920   (let ((mark (gnus-summary-article-mark)))
10921     (when (or (gnus-unread-mark-p mark)
10922               (gnus-read-mark-p mark))
10923       (gnus-summary-mark-article (gnus-summary-article-number)
10924                                  (or new-mark gnus-read-mark)))))
10925
10926 (defun gnus-summary-mark-unread-as-ticked ()
10927   "Intended to be used by `gnus-mark-article-hook'."
10928   (when (memq gnus-current-article gnus-newsgroup-unreads)
10929     (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10930
10931 (defun gnus-summary-mark-region-as-read (point mark all)
10932   "Mark all unread articles between point and mark as read.
10933 If given a prefix, mark all articles between point and mark as read,
10934 even ticked and dormant ones."
10935   (interactive "r\nP")
10936   (save-excursion
10937     (let (article)
10938       (goto-char point)
10939       (beginning-of-line)
10940       (while (and
10941               (< (point) mark)
10942               (progn
10943                 (when (or all
10944                           (memq (setq article (gnus-summary-article-number))
10945                                 gnus-newsgroup-unreads))
10946                   (gnus-summary-mark-article article gnus-del-mark))
10947                 t)
10948               (gnus-summary-find-next))))))
10949
10950 (defun gnus-summary-mark-below (score mark)
10951   "Mark articles with score less than SCORE with MARK."
10952   (interactive "P\ncMark: ")
10953   (setq score (if score
10954                   (prefix-numeric-value score)
10955                 (or gnus-summary-default-score 0)))
10956   (with-current-buffer gnus-summary-buffer
10957     (goto-char (point-min))
10958     (while
10959         (progn
10960           (and (< (gnus-summary-article-score) score)
10961                (gnus-summary-mark-article nil mark))
10962           (gnus-summary-find-next)))))
10963
10964 (defun gnus-summary-kill-below (&optional score)
10965   "Mark articles with score below SCORE as read."
10966   (interactive "P")
10967   (gnus-summary-mark-below score gnus-killed-mark))
10968
10969 (defun gnus-summary-clear-above (&optional score)
10970   "Clear all marks from articles with score above SCORE."
10971   (interactive "P")
10972   (gnus-summary-mark-above score gnus-unread-mark))
10973
10974 (defun gnus-summary-tick-above (&optional score)
10975   "Tick all articles with score above SCORE."
10976   (interactive "P")
10977   (gnus-summary-mark-above score gnus-ticked-mark))
10978
10979 (defun gnus-summary-mark-above (score mark)
10980   "Mark articles with score over SCORE with MARK."
10981   (interactive "P\ncMark: ")
10982   (setq score (if score
10983                   (prefix-numeric-value score)
10984                 (or gnus-summary-default-score 0)))
10985   (with-current-buffer gnus-summary-buffer
10986     (goto-char (point-min))
10987     (while (and (progn
10988                   (when (> (gnus-summary-article-score) score)
10989                     (gnus-summary-mark-article nil mark))
10990                   t)
10991                 (gnus-summary-find-next)))))
10992
10993 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10994 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10995 (defun gnus-summary-limit-include-expunged (&optional no-error)
10996   "Display all the hidden articles that were expunged for low scores."
10997   (interactive)
10998   (let ((inhibit-read-only t))
10999     (let ((scored gnus-newsgroup-scored)
11000           headers h)
11001       (while scored
11002         (unless (gnus-summary-article-header (caar scored))
11003           (and (setq h (gnus-number-to-header (caar scored)))
11004                (< (cdar scored) gnus-summary-expunge-below)
11005                (push h headers)))
11006         (setq scored (cdr scored)))
11007       (if (not headers)
11008           (when (not no-error)
11009             (error "No expunged articles hidden"))
11010         (goto-char (point-min))
11011         (push gnus-newsgroup-limit gnus-newsgroup-limits)
11012         (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
11013         (dolist (x headers)
11014           (push (mail-header-number x) gnus-newsgroup-limit))
11015         (gnus-summary-prepare-unthreaded (nreverse headers))
11016         (goto-char (point-min))
11017         (gnus-summary-position-point)
11018         t))))
11019
11020 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
11021   "Mark all unread articles in this newsgroup as read.
11022 If prefix argument ALL is non-nil, ticked and dormant articles will
11023 also be marked as read.
11024 If QUIETLY is non-nil, no questions will be asked.
11025
11026 If TO-HERE is non-nil, it should be a point in the buffer.  All
11027 articles before (after, if REVERSE is set) this point will be marked
11028 as read.
11029
11030 Note that this function will only catch up the unread article
11031 in the current summary buffer limitation.
11032
11033 The number of articles marked as read is returned."
11034   (interactive "P")
11035   (prog1
11036       (save-excursion
11037         (when (or quietly
11038                   (not gnus-interactive-catchup) ;Without confirmation?
11039                   gnus-expert-user
11040                   (gnus-y-or-n-p
11041                    (if all
11042                        "Mark absolutely all articles as read? "
11043                      "Mark all unread articles as read? ")))
11044           (if (and not-mark
11045                    (not gnus-newsgroup-adaptive)
11046                    (not gnus-newsgroup-auto-expire)
11047                    (not gnus-suppress-duplicates)
11048                    (or (not gnus-use-cache)
11049                        (eq gnus-use-cache 'passive)))
11050               (progn
11051                 (when all
11052                   (setq gnus-newsgroup-marked nil
11053                         gnus-newsgroup-spam-marked nil
11054                         gnus-newsgroup-dormant nil))
11055                 (setq gnus-newsgroup-unreads
11056                       (gnus-sorted-nunion
11057                        (gnus-sorted-intersection gnus-newsgroup-unreads
11058                                                  gnus-newsgroup-downloadable)
11059                        (gnus-sorted-difference gnus-newsgroup-unfetched
11060                                                gnus-newsgroup-cached))))
11061             ;; We actually mark all articles as canceled, which we
11062             ;; have to do when using auto-expiry or adaptive scoring.
11063             (gnus-summary-show-all-threads)
11064             (if (and to-here reverse)
11065                 (progn
11066                   (goto-char to-here)
11067                   (gnus-summary-mark-current-read-and-unread-as-read
11068                    gnus-catchup-mark)
11069                   (while (gnus-summary-find-next (not all))
11070                     (gnus-summary-mark-article-as-read gnus-catchup-mark)))
11071               (when (gnus-summary-first-subject (not all))
11072                 (while (and
11073                         (if to-here (< (point) to-here) t)
11074                         (gnus-summary-mark-article-as-read gnus-catchup-mark)
11075                         (gnus-summary-find-next (not all))))))
11076             (gnus-set-mode-line 'summary))
11077           t))
11078     (gnus-summary-position-point)))
11079
11080 (defun gnus-summary-catchup-to-here (&optional all)
11081   "Mark all unticked articles before the current one as read.
11082 If ALL is non-nil, also mark ticked and dormant articles as read."
11083   (interactive "P")
11084   (save-excursion
11085     (gnus-save-hidden-threads
11086       (let ((beg (point)))
11087         ;; We check that there are unread articles.
11088         (when (or all (gnus-summary-find-prev))
11089           (gnus-summary-catchup all t beg)))))
11090   (gnus-summary-position-point))
11091
11092 (defun gnus-summary-catchup-from-here (&optional all)
11093   "Mark all unticked articles after (and including) the current one as read.
11094 If ALL is non-nil, also mark ticked and dormant articles as read."
11095   (interactive "P")
11096   (save-excursion
11097     (gnus-save-hidden-threads
11098       (let ((beg (point)))
11099         ;; We check that there are unread articles.
11100         (when (or all (gnus-summary-find-next))
11101           (gnus-summary-catchup all t beg nil t)))))
11102   (gnus-summary-position-point))
11103
11104 (defun gnus-summary-catchup-all (&optional quietly)
11105   "Mark all articles in this newsgroup as read.
11106 This command is dangerous.  Normally, you want \\[gnus-summary-catchup]
11107 instead, which marks only unread articles as read."
11108   (interactive "P")
11109   (gnus-summary-catchup t quietly))
11110
11111 (defun gnus-summary-catchup-and-exit (&optional all quietly)
11112   "Mark all unread articles in this group as read, then exit.
11113 If prefix argument ALL is non-nil, all articles are marked as read.
11114 If QUIETLY is non-nil, no questions will be asked."
11115   (interactive "P")
11116   (when (gnus-summary-catchup all quietly nil 'fast)
11117     ;; Select next newsgroup or exit.
11118     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
11119              (eq gnus-auto-select-next 'quietly))
11120         (gnus-summary-next-group nil)
11121       (gnus-summary-exit))))
11122
11123 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
11124   "Mark all articles in this newsgroup as read, and then exit.
11125 This command is dangerous.  Normally, you want \\[gnus-summary-catchup-and-exit]
11126 instead, which marks only unread articles as read."
11127   (interactive "P")
11128   (gnus-summary-catchup-and-exit t quietly))
11129
11130 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
11131   "Mark all articles in this group as read and select the next group.
11132 If given a prefix, mark all articles, unread as well as ticked, as
11133 read."
11134   (interactive "P")
11135   (save-excursion
11136     (gnus-summary-catchup all))
11137   (gnus-summary-next-group))
11138
11139 (defun gnus-summary-catchup-and-goto-prev-group (&optional all)
11140   "Mark all articles in this group as read and select the previous group.
11141 If given a prefix, mark all articles, unread as well as ticked, as
11142 read."
11143   (interactive "P")
11144   (save-excursion
11145     (gnus-summary-catchup all))
11146   (gnus-summary-next-group nil nil t))
11147
11148 ;;;
11149 ;;; with article
11150 ;;;
11151
11152 (defmacro gnus-with-article (article &rest forms)
11153   "Select ARTICLE and perform FORMS in the original article buffer.
11154 Then replace the article with the result."
11155   `(progn
11156      ;; We don't want the article to be marked as read.
11157      (let (gnus-mark-article-hook)
11158        (gnus-summary-select-article t t nil ,article))
11159      (set-buffer gnus-original-article-buffer)
11160      ,@forms
11161      (if (not (gnus-check-backend-function
11162                'request-replace-article (car gnus-article-current)))
11163          (gnus-message 5 "Read-only group; not replacing")
11164        (unless (gnus-request-replace-article
11165                 ,article (car gnus-article-current)
11166                 (current-buffer) t)
11167          (error "Couldn't replace article")))
11168      ;; The cache and backlog have to be flushed somewhat.
11169      (when gnus-keep-backlog
11170        (gnus-backlog-remove-article
11171         (car gnus-article-current) (cdr gnus-article-current)))
11172      (when gnus-use-cache
11173        (gnus-cache-update-article
11174         (car gnus-article-current) (cdr gnus-article-current)))))
11175
11176 (put 'gnus-with-article 'lisp-indent-function 1)
11177 (put 'gnus-with-article 'edebug-form-spec '(form body))
11178
11179 ;; Thread-based commands.
11180
11181 (defun gnus-summary-articles-in-thread (&optional article)
11182   "Return a list of all articles in the current thread.
11183 If ARTICLE is non-nil, return all articles in the thread that starts
11184 with that article."
11185   (let* ((article (or article (gnus-summary-article-number)))
11186          (data (gnus-data-find-list article))
11187          (top-level (gnus-data-level (car data)))
11188          (top-subject
11189           (cond ((null gnus-thread-operation-ignore-subject)
11190                  (gnus-simplify-subject-re
11191                   (mail-header-subject (gnus-data-header (car data)))))
11192                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
11193                  (gnus-simplify-subject-fuzzy
11194                   (mail-header-subject (gnus-data-header (car data)))))
11195                 (t nil)))
11196          (end-point (save-excursion
11197                       (if (gnus-summary-go-to-next-thread)
11198                           (point) (point-max))))
11199          articles)
11200     (while (and data
11201                 (< (gnus-data-pos (car data)) end-point))
11202       (when (or (not top-subject)
11203                 (string= top-subject
11204                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
11205                              (gnus-simplify-subject-fuzzy
11206                               (mail-header-subject
11207                                (gnus-data-header (car data))))
11208                            (gnus-simplify-subject-re
11209                             (mail-header-subject
11210                              (gnus-data-header (car data)))))))
11211         (push (gnus-data-number (car data)) articles))
11212       (unless (and (setq data (cdr data))
11213                    (> (gnus-data-level (car data)) top-level))
11214         (setq data nil)))
11215     ;; Return the list of articles.
11216     (nreverse articles)))
11217
11218 (defun gnus-summary-rethread-current ()
11219   "Rethread the thread the current article is part of."
11220   (interactive)
11221   (let* ((gnus-show-threads t)
11222          (article (gnus-summary-article-number))
11223          (id (mail-header-id (gnus-summary-article-header)))
11224          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
11225     (unless id
11226       (error "No article on the current line"))
11227     (gnus-rebuild-thread id)
11228     (gnus-summary-goto-subject article)))
11229
11230 (defun gnus-summary-reparent-thread ()
11231   "Make the current article child of the marked (or previous) article.
11232
11233 Note that the re-threading will only work if `gnus-thread-ignore-subject'
11234 is non-nil or the Subject: of both articles are the same."
11235   (interactive)
11236   (unless (not (gnus-group-read-only-p))
11237     (error "The current newsgroup does not support article editing"))
11238   (unless (<= (length gnus-newsgroup-processable) 1)
11239     (error "No more than one article may be marked"))
11240   (let ((child (gnus-summary-article-number))
11241         ;; First grab the marked article, otherwise one line up.
11242         (parent (if (not (null gnus-newsgroup-processable))
11243                     (car gnus-newsgroup-processable)
11244                   (save-excursion
11245                     (if (eq (forward-line -1) 0)
11246                         (gnus-summary-article-number)
11247                       (error "Beginning of summary buffer"))))))
11248     (gnus-summary-reparent-children parent (list child))))
11249
11250 (defun gnus-summary-reparent-children (parent children)
11251   "Make PARENT the parent of CHILDREN.
11252 When called interactively, PARENT is the current article and CHILDREN
11253 are the process-marked articles."
11254   (interactive
11255    (list (gnus-summary-article-number)
11256          (gnus-summary-work-articles nil)))
11257   (dolist (child children)
11258     (save-window-excursion
11259       (let ((gnus-article-buffer " *reparent*"))
11260         (unless (not (eq parent child))
11261           (error "An article may not be self-referential"))
11262         (let ((message-id (mail-header-id
11263                            (gnus-summary-article-header parent))))
11264           (unless (and message-id (not (equal message-id "")))
11265             (error "No message-id in desired parent"))
11266           (gnus-with-article child
11267             (save-restriction
11268               (goto-char (point-min))
11269               (message-narrow-to-head)
11270               (if (re-search-forward "^References: " nil t)
11271                   (progn
11272                     (re-search-forward "^[^ \t]" nil t)
11273                     (forward-line -1)
11274                     (end-of-line)
11275                     (insert " " message-id))
11276                 (insert "References: " message-id "\n"))))
11277           (set-buffer gnus-summary-buffer)
11278           (gnus-summary-unmark-all-processable)
11279           (gnus-summary-update-article child)
11280           (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
11281             (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
11282           (gnus-summary-rethread-current)
11283           (gnus-message 3 "Article %d is now the child of article %d"
11284                         child parent))))))
11285
11286 (defun gnus-summary-toggle-threads (&optional arg)
11287   "Toggle showing conversation threads.
11288 If ARG is positive number, turn showing conversation threads on."
11289   (interactive "P")
11290   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
11291     (setq gnus-show-threads
11292           (if (null arg) (not gnus-show-threads)
11293             (> (prefix-numeric-value arg) 0)))
11294     (gnus-summary-prepare)
11295     (gnus-summary-goto-subject current)
11296     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
11297     (gnus-summary-position-point)))
11298
11299 (eval-and-compile
11300   (if (fboundp 'remove-overlays)
11301       (defalias 'gnus-remove-overlays 'remove-overlays)
11302     (defun gnus-remove-overlays (beg end name val)
11303       "Clear BEG and END of overlays whose property NAME has value VAL.
11304 For compatibility with Emacs 21 and XEmacs."
11305       (dolist (ov (gnus-overlays-in beg end))
11306         (when (eq (gnus-overlay-get ov name) val)
11307           (gnus-delete-overlay ov))))))
11308
11309 (defun gnus-summary-show-all-threads ()
11310   "Show all threads."
11311   (interactive)
11312   (gnus-remove-overlays (point-min) (point-max) 'invisible 'gnus-sum)
11313   (gnus-summary-position-point))
11314
11315 (defun gnus-summary-show-thread ()
11316   "Show thread subtrees.
11317 Returns nil if no thread was there to be shown."
11318   (interactive)
11319   (let* ((orig (point))
11320          (end (point-at-eol))
11321          ;; Leave point at bol
11322          (beg (progn (beginning-of-line) (if (bobp) (point) (1- (point)))))
11323          (eoi (when (eq (get-char-property end 'invisible) 'gnus-sum)
11324                 (if (fboundp 'next-single-char-property-change)
11325                     (or (next-single-char-property-change end 'invisible)
11326                         (point-max))
11327                   (while (progn
11328                            (end-of-line 2)
11329                            (and (not (eobp))
11330                                 (eq (get-char-property (point) 'invisible)
11331                                     'gnus-sum))))
11332                   (point)))))
11333     (when eoi
11334       (gnus-remove-overlays beg eoi 'invisible 'gnus-sum)
11335       (goto-char orig)
11336       (gnus-summary-position-point)
11337       eoi)))
11338
11339 (defun gnus-summary-maybe-hide-threads ()
11340   "If requested, hide the threads that should be hidden."
11341   (when (and gnus-show-threads
11342              gnus-thread-hide-subtree)
11343     (gnus-summary-hide-all-threads
11344      (if (or (consp gnus-thread-hide-subtree)
11345              (functionp gnus-thread-hide-subtree))
11346          (gnus-make-predicate gnus-thread-hide-subtree)
11347        nil))))
11348
11349 ;;; Hiding predicates.
11350
11351 (defun gnus-article-unread-p (header)
11352   (memq (mail-header-number header) gnus-newsgroup-unreads))
11353
11354 (defun gnus-article-unseen-p (header)
11355   (memq (mail-header-number header) gnus-newsgroup-unseen))
11356
11357 (defun gnus-map-articles (predicate articles)
11358   "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
11359   (apply 'gnus-or (mapcar predicate
11360                           (mapcar (lambda (number)
11361                                     (gnus-summary-article-header number))
11362                                   articles))))
11363
11364 (defun gnus-summary-hide-all-threads (&optional predicate)
11365   "Hide all thread subtrees.
11366 If PREDICATE is supplied, threads that satisfy this predicate
11367 will not be hidden."
11368   (interactive)
11369   (save-excursion
11370     (goto-char (point-min))
11371     (let ((end nil))
11372       (while (not end)
11373         (when (or (not predicate)
11374                   (gnus-map-articles
11375                    predicate (gnus-summary-article-children)))
11376             (gnus-summary-hide-thread))
11377         (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
11378   (gnus-summary-position-point))
11379
11380 (defun gnus-summary-hide-thread ()
11381   "Hide thread subtrees.
11382 If PREDICATE is supplied, threads that satisfy this predicate
11383 will not be hidden.
11384 Returns nil if no threads were there to be hidden."
11385   (interactive)
11386   (let ((start (point))
11387         (starteol (line-end-position))
11388         (article (gnus-summary-article-number)))
11389     (goto-char start)
11390     ;; Go forward until either the buffer ends or the subthread ends.
11391     (when (and (not (eobp))
11392                (or (zerop (gnus-summary-next-thread 1 t))
11393                    (goto-char (point-max))))
11394       (if (and (> (point) start)
11395                ;; FIXME: this should actually search for a non-invisible \n.
11396                (search-backward "\n" start t))
11397           (progn
11398             (when (> (point) starteol)
11399               (gnus-remove-overlays starteol (point) 'invisible 'gnus-sum)
11400               (let ((ol (gnus-make-overlay starteol (point) nil t nil)))
11401                 (gnus-overlay-put ol 'invisible 'gnus-sum)
11402                 (gnus-overlay-put ol 'evaporate t)))
11403             (gnus-summary-goto-subject article))
11404         (goto-char start)
11405         nil))))
11406
11407 (defun gnus-summary-go-to-next-thread (&optional previous)
11408   "Go to the same level (or less) next thread.
11409 If PREVIOUS is non-nil, go to previous thread instead.
11410 Return the article number moved to, or nil if moving was impossible."
11411   (let ((level (gnus-summary-thread-level))
11412         (way (if previous -1 1))
11413         (beg (point)))
11414     (forward-line way)
11415     (while (and (not (eobp))
11416                 (< level (gnus-summary-thread-level)))
11417       (forward-line way))
11418     (if (eobp)
11419         (progn
11420           (goto-char beg)
11421           nil)
11422       (setq beg (point))
11423       (prog1
11424           (gnus-summary-article-number)
11425         (goto-char beg)))))
11426
11427 (defun gnus-summary-next-thread (n &optional silent)
11428   "Go to the same level next N'th thread.
11429 If N is negative, search backward instead.
11430 Returns the difference between N and the number of skips actually
11431 done.
11432
11433 If SILENT, don't output messages."
11434   (interactive "p")
11435   (let ((backward (< n 0))
11436         (n (abs n)))
11437     (while (and (> n 0)
11438                 (gnus-summary-go-to-next-thread backward))
11439       (decf n))
11440     (unless silent
11441       (gnus-summary-position-point))
11442     (when (and (not silent) (/= 0 n))
11443       (gnus-message 7 "No more threads"))
11444     n))
11445
11446 (defun gnus-summary-prev-thread (n)
11447   "Go to the same level previous N'th thread.
11448 Returns the difference between N and the number of skips actually
11449 done."
11450   (interactive "p")
11451   (gnus-summary-next-thread (- n)))
11452
11453 (defun gnus-summary-go-down-thread ()
11454   "Go down one level in the current thread."
11455   (let ((children (gnus-summary-article-children)))
11456     (when children
11457       (gnus-summary-goto-subject (car children)))))
11458
11459 (defun gnus-summary-go-up-thread ()
11460   "Go up one level in the current thread."
11461   (let ((parent (gnus-summary-article-parent)))
11462     (when parent
11463       (gnus-summary-goto-subject parent))))
11464
11465 (defun gnus-summary-down-thread (n)
11466   "Go down thread N steps.
11467 If N is negative, go up instead.
11468 Returns the difference between N and how many steps down that were
11469 taken."
11470   (interactive "p")
11471   (let ((up (< n 0))
11472         (n (abs n)))
11473     (while (and (> n 0)
11474                 (if up (gnus-summary-go-up-thread)
11475                   (gnus-summary-go-down-thread)))
11476       (setq n (1- n)))
11477     (gnus-summary-position-point)
11478     (when (/= 0 n)
11479       (gnus-message 7 "Can't go further"))
11480     n))
11481
11482 (defun gnus-summary-up-thread (n)
11483   "Go up thread N steps.
11484 If N is negative, go down instead.
11485 Returns the difference between N and how many steps down that were
11486 taken."
11487   (interactive "p")
11488   (gnus-summary-down-thread (- n)))
11489
11490 (defun gnus-summary-top-thread ()
11491   "Go to the top of the thread."
11492   (interactive)
11493   (while (gnus-summary-go-up-thread))
11494   (gnus-summary-article-number))
11495
11496 (defun gnus-summary-expire-thread ()
11497   "Mark articles under current thread as expired."
11498   (interactive)
11499   (gnus-summary-kill-thread 0))
11500
11501 (defun gnus-summary-kill-thread (&optional unmark)
11502   "Mark articles under current thread as read.
11503 If the prefix argument is positive, remove any kinds of marks.
11504 If the prefix argument is zero, mark thread as expired.
11505 If the prefix argument is negative, tick articles instead."
11506   (interactive "P")
11507   (when unmark
11508     (setq unmark (prefix-numeric-value unmark)))
11509   (let ((articles (gnus-summary-articles-in-thread))
11510         (hide (or (null unmark) (= unmark 0))))
11511     (save-excursion
11512       ;; Expand the thread.
11513       (gnus-summary-show-thread)
11514       ;; Mark all the articles.
11515       (while articles
11516         (gnus-summary-goto-subject (car articles))
11517         (cond ((null unmark)
11518                (gnus-summary-mark-article-as-read gnus-killed-mark))
11519               ((> unmark 0)
11520                (gnus-summary-mark-article-as-unread gnus-unread-mark))
11521               ((= unmark 0)
11522                (gnus-summary-mark-article nil gnus-expirable-mark))
11523               (t
11524                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
11525         (setq articles (cdr articles))))
11526     ;; Hide killed subtrees when hide is true.
11527     (and hide
11528          gnus-thread-hide-killed
11529          (gnus-summary-hide-thread))
11530     ;; If hide is t, go to next unread subject.
11531     (when hide
11532       ;; Go to next unread subject.
11533       (gnus-summary-next-subject 1 t)))
11534   (gnus-set-mode-line 'summary))
11535
11536 ;; Summary sorting commands
11537
11538 (defun gnus-summary-sort-by-number (&optional reverse)
11539   "Sort the summary buffer by article number.
11540 Argument REVERSE means reverse order."
11541   (interactive "P")
11542   (gnus-summary-sort 'number reverse))
11543
11544 (defun gnus-summary-sort-by-most-recent-number (&optional reverse)
11545   "Sort the summary buffer by most recent article number.
11546 Argument REVERSE means reverse order."
11547   (interactive "P")
11548   (gnus-summary-sort 'most-recent-number reverse))
11549
11550 (defun gnus-summary-sort-by-random (&optional reverse)
11551   "Randomize the order in the summary buffer.
11552 Argument REVERSE means to randomize in reverse order."
11553   (interactive "P")
11554   (gnus-summary-sort 'random reverse))
11555
11556 (defun gnus-summary-sort-by-author (&optional reverse)
11557   "Sort the summary buffer by author name alphabetically.
11558 If `case-fold-search' is non-nil, case of letters is ignored.
11559 Argument REVERSE means reverse order."
11560   (interactive "P")
11561   (gnus-summary-sort 'author reverse))
11562
11563 (defun gnus-summary-sort-by-recipient (&optional reverse)
11564   "Sort the summary buffer by recipient name alphabetically.
11565 If `case-fold-search' is non-nil, case of letters is ignored.
11566 Argument REVERSE means reverse order."
11567   (interactive "P")
11568   (gnus-summary-sort 'recipient reverse))
11569
11570 (defun gnus-summary-sort-by-subject (&optional reverse)
11571   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
11572 If `case-fold-search' is non-nil, case of letters is ignored.
11573 Argument REVERSE means reverse order."
11574   (interactive "P")
11575   (gnus-summary-sort 'subject reverse))
11576
11577 (defun gnus-summary-sort-by-date (&optional reverse)
11578   "Sort the summary buffer by date.
11579 Argument REVERSE means reverse order."
11580   (interactive "P")
11581   (gnus-summary-sort 'date reverse))
11582
11583 (defun gnus-summary-sort-by-most-recent-date (&optional reverse)
11584   "Sort the summary buffer by most recent date.
11585 Argument REVERSE means reverse order."
11586   (interactive "P")
11587   (gnus-summary-sort 'most-recent-date reverse))
11588
11589 (defun gnus-summary-sort-by-score (&optional reverse)
11590   "Sort the summary buffer by score.
11591 Argument REVERSE means reverse order."
11592   (interactive "P")
11593   (gnus-summary-sort 'score reverse))
11594
11595 (defun gnus-summary-sort-by-lines (&optional reverse)
11596   "Sort the summary buffer by the number of lines.
11597 Argument REVERSE means reverse order."
11598   (interactive "P")
11599   (gnus-summary-sort 'lines reverse))
11600
11601 (defun gnus-summary-sort-by-chars (&optional reverse)
11602   "Sort the summary buffer by article length.
11603 Argument REVERSE means reverse order."
11604   (interactive "P")
11605   (gnus-summary-sort 'chars reverse))
11606
11607 (defun gnus-summary-sort-by-original (&optional reverse)
11608   "Sort the summary buffer using the default sorting method.
11609 Argument REVERSE means reverse order."
11610   (interactive "P")
11611   (let* ((inhibit-read-only t)
11612          (gnus-summary-prepare-hook nil))
11613     ;; We do the sorting by regenerating the threads.
11614     (gnus-summary-prepare)
11615     ;; Hide subthreads if needed.
11616     (gnus-summary-maybe-hide-threads)))
11617
11618 (defun gnus-summary-sort (predicate reverse)
11619   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
11620   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
11621          (article (intern (format "gnus-article-sort-by-%s" predicate)))
11622          (gnus-thread-sort-functions
11623           (if (not reverse)
11624               thread
11625             `(lambda (t1 t2)
11626                (,thread t2 t1))))
11627          (gnus-sort-gathered-threads-function
11628           gnus-thread-sort-functions)
11629          (gnus-article-sort-functions
11630           (if (not reverse)
11631               article
11632             `(lambda (t1 t2)
11633                (,article t2 t1))))
11634          (inhibit-read-only t)
11635          (gnus-summary-prepare-hook nil))
11636     ;; We do the sorting by regenerating the threads.
11637     (gnus-summary-prepare)
11638     ;; Hide subthreads if needed.
11639     (gnus-summary-maybe-hide-threads)))
11640
11641 ;; Summary saving commands.
11642
11643 (defun gnus-summary-save-article (&optional n not-saved)
11644   "Save the current article using the default saver function.
11645 If N is a positive number, save the N next articles.
11646 If N is a negative number, save the N previous articles.
11647 If N is nil and any articles have been marked with the process mark,
11648 save those articles instead.
11649 The variable `gnus-default-article-saver' specifies the saver function.
11650
11651 If the optional second argument NOT-SAVED is non-nil, articles saved
11652 will not be marked as saved."
11653   (interactive "P")
11654   (require 'gnus-art)
11655   (let* ((articles (gnus-summary-work-articles n))
11656          (save-buffer (save-excursion
11657                         (nnheader-set-temp-buffer " *Gnus Save*")))
11658          (num (length articles))
11659          ;; Whether to save decoded articles or raw articles.
11660          (decode (when gnus-article-save-coding-system
11661                    (get gnus-default-article-saver :decode)))
11662          ;; When saving many articles in a single file, use the other
11663          ;; function to save articles other than the first one.
11664          (saver2 (get gnus-default-article-saver :function))
11665          (gnus-prompt-before-saving (if saver2
11666                                         t
11667                                       gnus-prompt-before-saving))
11668          (gnus-default-article-saver gnus-default-article-saver)
11669          header file)
11670     (dolist (article articles)
11671       (setq header (gnus-summary-article-header article))
11672       (if (not (vectorp header))
11673           ;; This is a pseudo-article.
11674           (if (assq 'name header)
11675               (gnus-copy-file (cdr (assq 'name header)))
11676             (gnus-message 1 "Article %d is unsaveable" article))
11677         ;; This is a real article.
11678         (save-window-excursion
11679           (gnus-summary-select-article decode decode nil article)
11680           (gnus-summary-goto-subject article))
11681         (with-current-buffer save-buffer
11682           (erase-buffer)
11683           (insert-buffer-substring (if decode
11684                                        gnus-article-buffer
11685                                      gnus-original-article-buffer)))
11686         (setq file (gnus-article-save save-buffer file num))
11687         (gnus-summary-remove-process-mark article)
11688         (unless not-saved
11689           (gnus-summary-set-saved-mark article)))
11690       (when saver2
11691         (setq gnus-default-article-saver saver2
11692               saver2 nil)))
11693     (gnus-kill-buffer save-buffer)
11694     (gnus-summary-position-point)
11695     (gnus-set-mode-line 'summary)
11696     n))
11697
11698 (defun gnus-summary-pipe-output (&optional n sym)
11699   "Pipe the current article to a subprocess.
11700 If N is a positive number, pipe the N next articles.
11701 If N is a negative number, pipe the N previous articles.
11702 If N is nil and any articles have been marked with the process mark,
11703 pipe those articles instead.
11704 The default command to which articles are piped is specified by the
11705 variable `gnus-summary-pipe-output-default-command'; if it is nil, you
11706 will be prompted for the command.
11707
11708 The properties `:decode' and `:headers' that are put to the function
11709 symbol `gnus-summary-save-in-pipe' control whether this function
11710 decodes articles and what headers to keep (see the doc string for the
11711 `gnus-default-article-saver' variable).  If SYM (the symbolic prefix)
11712 is neither omitted nor the symbol `r', force including all headers
11713 regardless of the `:headers' property.  If it is the symbol `r',
11714 articles that are not decoded and include all headers will be piped
11715 no matter what the properties `:decode' and `:headers' are."
11716   (interactive (gnus-interactive "P\ny"))
11717   (require 'gnus-art)
11718   (let* ((articles (gnus-summary-work-articles n))
11719          (result-buffer "*Shell Command Output*")
11720          (all-headers (not (memq sym '(nil r))))
11721          (gnus-save-all-headers (or all-headers gnus-save-all-headers))
11722          (raw (eq sym 'r))
11723          (headers (get 'gnus-summary-save-in-pipe :headers))
11724          command result)
11725     (unless (numberp (car articles))
11726       (error "No article to pipe"))
11727     (setq command (gnus-read-shell-command
11728                    (concat "Shell command on "
11729                            (if (cdr articles)
11730                                (format "these %d articles" (length articles))
11731                              "this article")
11732                            ": ")
11733                    gnus-summary-pipe-output-default-command))
11734     (when (string-equal command "")
11735       (error "A command is required"))
11736     (when all-headers
11737       (put 'gnus-summary-save-in-pipe :headers nil))
11738     (unwind-protect
11739         (while articles
11740           (gnus-summary-goto-subject (pop articles))
11741           (save-window-excursion (gnus-summary-save-in-pipe command raw))
11742           (when (and (get-buffer result-buffer)
11743                      (not (zerop (buffer-size (get-buffer result-buffer)))))
11744             (setq result (concat result (with-current-buffer result-buffer
11745                                           (buffer-string))))))
11746       (put 'gnus-summary-save-in-pipe :headers headers))
11747     (unless (zerop (length result))
11748       (if (with-current-buffer (get-buffer-create result-buffer)
11749             (erase-buffer)
11750             (insert result)
11751             (prog1
11752                 (and (= (count-lines (point-min) (point)) 1)
11753                      (progn
11754                        (end-of-line 0)
11755                        (<= (current-column)
11756                            (window-width (minibuffer-window)))))
11757               (goto-char (point-min))))
11758           (message "%s" (substring result 0 -1))
11759         (message nil)
11760         (gnus-configure-windows 'pipe)))))
11761
11762 (defun gnus-summary-save-article-mail (&optional arg)
11763   "Append the current article to a Unix mail box file.
11764 If N is a positive number, save the N next articles.
11765 If N is a negative number, save the N previous articles.
11766 If N is nil and any articles have been marked with the process mark,
11767 save those articles instead."
11768   (interactive "P")
11769   (require 'gnus-art)
11770   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
11771     (gnus-summary-save-article arg)))
11772
11773 (defun gnus-summary-save-article-rmail (&optional arg)
11774   "Append the current article to an rmail file.
11775 If N is a positive number, save the N next articles.
11776 If N is a negative number, save the N previous articles.
11777 If N is nil and any articles have been marked with the process mark,
11778 save those articles instead."
11779   (interactive "P")
11780   (require 'gnus-art)
11781   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
11782     (gnus-summary-save-article arg)))
11783
11784 (defun gnus-summary-save-article-file (&optional arg)
11785   "Append the current article to a file.
11786 If N is a positive number, save the N next articles.
11787 If N is a negative number, save the N previous articles.
11788 If N is nil and any articles have been marked with the process mark,
11789 save those articles instead."
11790   (interactive "P")
11791   (require 'gnus-art)
11792   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
11793     (gnus-summary-save-article arg)))
11794
11795 (defun gnus-summary-write-article-file (&optional arg)
11796   "Write the current article to a file, deleting the previous file.
11797 If N is a positive number, save the N next articles.
11798 If N is a negative number, save the N previous articles.
11799 If N is nil and any articles have been marked with the process mark,
11800 save those articles instead."
11801   (interactive "P")
11802   (require 'gnus-art)
11803   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
11804     (gnus-summary-save-article arg)))
11805
11806 (defun gnus-summary-save-article-body-file (&optional arg)
11807   "Append the current article body to a file.
11808 If N is a positive number, save the N next articles.
11809 If N is a negative number, save the N previous articles.
11810 If N is nil and any articles have been marked with the process mark,
11811 save those articles instead."
11812   (interactive "P")
11813   (require 'gnus-art)
11814   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
11815     (gnus-summary-save-article arg)))
11816
11817 (defun gnus-summary-write-article-body-file (&optional arg)
11818   "Write the current article body to a file, deleting the previous file.
11819 If N is a positive number, save the N next articles.
11820 If N is a negative number, save the N previous articles.
11821 If N is nil and any articles have been marked with the process mark,
11822 save those articles instead."
11823   (interactive "P")
11824   (require 'gnus-art)
11825   (let ((gnus-default-article-saver 'gnus-summary-write-body-to-file))
11826     (gnus-summary-save-article arg)))
11827
11828 (defun gnus-summary-muttprint (&optional arg)
11829   "Print the current article using Muttprint.
11830 If N is a positive number, save the N next articles.
11831 If N is a negative number, save the N previous articles.
11832 If N is nil and any articles have been marked with the process mark,
11833 save those articles instead."
11834   (interactive "P")
11835   (require 'gnus-art)
11836   (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
11837     (gnus-summary-save-article arg t)))
11838
11839 (defun gnus-summary-pipe-message (program)
11840   "Pipe the current article through PROGRAM."
11841   (interactive "sProgram: ")
11842   (gnus-summary-select-article)
11843   (let ((mail-header-separator ""))
11844     (gnus-eval-in-buffer-window gnus-article-buffer
11845       (save-restriction
11846         (widen)
11847         (let ((start (window-start))
11848               (inhibit-read-only t))
11849           (message-pipe-buffer-body program)
11850           (set-window-start (get-buffer-window (current-buffer)) start))))))
11851
11852 (defun gnus-get-split-value (methods)
11853   "Return a value based on the split METHODS."
11854   (let (split-name method result match)
11855     (when methods
11856       (with-current-buffer gnus-original-article-buffer
11857         (save-restriction
11858           (nnheader-narrow-to-headers)
11859           (while (and methods (not split-name))
11860             (goto-char (point-min))
11861             (setq method (pop methods))
11862             (setq match (car method))
11863             (when (cond
11864                    ((stringp match)
11865                     ;; Regular expression.
11866                     (ignore-errors
11867                       (re-search-forward match nil t)))
11868                    ((functionp match)
11869                     ;; Function.
11870                     (save-restriction
11871                       (widen)
11872                       (setq result (funcall match gnus-newsgroup-name))))
11873                    ((consp match)
11874                     ;; Form.
11875                     (save-restriction
11876                       (widen)
11877                       (setq result (eval match)))))
11878               (setq split-name (cdr method))
11879               (cond ((stringp result)
11880                      (push (expand-file-name
11881                             result gnus-article-save-directory)
11882                            split-name))
11883                     ((consp result)
11884                      (setq split-name (append result split-name)))))))))
11885     (nreverse split-name)))
11886
11887 (defun gnus-valid-move-group-p (group)
11888   (and (boundp group)
11889        (symbol-name group)
11890        (symbol-value group)
11891        (gnus-get-function (gnus-find-method-for-group
11892                            (symbol-name group)) 'request-accept-article t)))
11893
11894 (defun gnus-read-move-group-name (prompt default articles prefix)
11895   "Read a group name."
11896   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
11897          (minibuffer-confirm-incomplete nil) ; XEmacs
11898          (prom
11899           (format "%s %s to"
11900                   prompt
11901                   (if (> (length articles) 1)
11902                       (format "these %d articles" (length articles))
11903                     "this article")))
11904          (to-newsgroup
11905           (let (active group)
11906             (when (or (null split-name) (= 1 (length split-name)))
11907               (setq active (gnus-make-hashtable (length gnus-active-hashtb)))
11908               (mapatoms (lambda (symbol)
11909                           (setq group (symbol-name symbol))
11910                           (when (string-match "[^\000-\177]" group)
11911                             (setq group (gnus-group-decoded-name group)))
11912                           (set (intern group active) group))
11913                         gnus-active-hashtb))
11914             (cond
11915              ((null split-name)
11916               (gnus-completing-read-with-default
11917                default prom active 'gnus-valid-move-group-p nil prefix
11918                'gnus-group-history))
11919              ((= 1 (length split-name))
11920               (gnus-completing-read-with-default
11921                (car split-name) prom active 'gnus-valid-move-group-p nil nil
11922                'gnus-group-history))
11923              (t
11924               (gnus-completing-read-with-default
11925                nil prom (mapcar 'list (nreverse split-name)) nil nil nil
11926                'gnus-group-history)))))
11927          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup)))
11928          encoded)
11929     (when to-newsgroup
11930       (if (or (string= to-newsgroup "")
11931               (string= to-newsgroup prefix))
11932           (setq to-newsgroup default))
11933       (unless to-newsgroup
11934         (error "No group name entered"))
11935       (setq encoded (mm-encode-coding-string
11936                      to-newsgroup
11937                      (gnus-group-name-charset to-method to-newsgroup)))
11938       (or (gnus-active encoded)
11939           (gnus-activate-group encoded nil nil to-method)
11940           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
11941                                      to-newsgroup))
11942               (or (and (gnus-request-create-group encoded to-method)
11943                        (gnus-activate-group encoded nil nil to-method)
11944                        (gnus-subscribe-group encoded))
11945                   (error "Couldn't create group %s" to-newsgroup)))
11946           (error "No such group: %s" to-newsgroup))
11947       encoded)))
11948
11949 (defvar gnus-summary-save-parts-counter)
11950 (declare-function mm-uu-dissect "mm-uu" (&optional noheader mime-type))
11951
11952 (defun gnus-summary-save-parts (type dir n &optional reverse)
11953   "Save parts matching TYPE to DIR.
11954 If REVERSE, save parts that do not match TYPE."
11955   (interactive
11956    (list (read-string "Save parts of type: "
11957                       (or (car gnus-summary-save-parts-type-history)
11958                           gnus-summary-save-parts-default-mime)
11959                       'gnus-summary-save-parts-type-history)
11960          (setq gnus-summary-save-parts-last-directory
11961                (read-file-name "Save to directory: "
11962                                gnus-summary-save-parts-last-directory
11963                                nil t))
11964          current-prefix-arg))
11965   (gnus-summary-iterate n
11966     (let ((gnus-display-mime-function nil)
11967           gnus-article-prepare-hook
11968           gnus-article-decode-hook
11969           gnus-display-mime-function
11970           gnus-break-pages
11971           (gnus-inhibit-treatment t))
11972       (gnus-summary-select-article))
11973     (with-current-buffer gnus-article-buffer
11974       (let ((handles (or gnus-article-mime-handles
11975                          (mm-dissect-buffer nil gnus-article-loose-mime)
11976                          (and gnus-article-emulate-mime
11977                               (mm-uu-dissect))))
11978             (gnus-summary-save-parts-counter 1))
11979         (when handles
11980           (gnus-summary-save-parts-1 type dir handles reverse)
11981           (unless gnus-article-mime-handles ;; Don't destroy this case.
11982             (mm-destroy-parts handles)))))))
11983
11984 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11985   (if (stringp (car handle))
11986       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11987               (cdr handle))
11988     (when (if reverse
11989               (not (string-match type (mm-handle-media-type handle)))
11990             (string-match type (mm-handle-media-type handle)))
11991       (let ((file (expand-file-name
11992                    (gnus-map-function
11993                     mm-file-name-rewrite-functions
11994                     (file-name-nondirectory
11995                      (or
11996                       (mail-content-type-get
11997                        (mm-handle-disposition handle) 'filename)
11998                       (mail-content-type-get
11999                        (mm-handle-type handle) 'name)
12000                       (format "%s.%d.%d" gnus-newsgroup-name
12001                               (cdr gnus-article-current)
12002                               gnus-summary-save-parts-counter))))
12003                    dir)))
12004         (incf gnus-summary-save-parts-counter)
12005         (unless (file-exists-p file)
12006           (mm-save-part-to-file handle file))))))
12007
12008 ;; Summary extract commands
12009
12010 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
12011   (let ((inhibit-read-only t)
12012         (article (gnus-summary-article-number))
12013         after-article b e)
12014     (unless (gnus-summary-goto-subject article)
12015       (error "No such article: %d" article))
12016     (gnus-summary-position-point)
12017     ;; If all commands are to be bunched up on one line, we collect
12018     ;; them here.
12019     (unless gnus-view-pseudos-separately
12020       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
12021             files action)
12022         (while ps
12023           (setq action (cdr (assq 'action (car ps))))
12024           (setq files (list (cdr (assq 'name (car ps)))))
12025           (while (and ps (cdr ps)
12026                       (string= (or action "1")
12027                                (or (cdr (assq 'action (cadr ps))) "2")))
12028             (push (cdr (assq 'name (cadr ps))) files)
12029             (setcdr ps (cddr ps)))
12030           (when files
12031             (when (not (string-match "%s" action))
12032               (push " " files))
12033             (push " " files)
12034             (when (assq 'execute (car ps))
12035               (setcdr (assq 'execute (car ps))
12036                       (funcall (if (string-match "%s" action)
12037                                    'format 'concat)
12038                                action
12039                                (mapconcat
12040                                 (lambda (f)
12041                                   (if (equal f " ")
12042                                       f
12043                                     (shell-quote-argument f)))
12044                                 files " ")))))
12045           (setq ps (cdr ps)))))
12046     (if (and gnus-view-pseudos (not not-view))
12047         (while pslist
12048           (when (assq 'execute (car pslist))
12049             (gnus-execute-command (cdr (assq 'execute (car pslist)))
12050                                   (eq gnus-view-pseudos 'not-confirm)))
12051           (setq pslist (cdr pslist)))
12052       (save-excursion
12053         (while pslist
12054           (setq after-article (or (cdr (assq 'article (car pslist)))
12055                                   (gnus-summary-article-number)))
12056           (gnus-summary-goto-subject after-article)
12057           (forward-line 1)
12058           (setq b (point))
12059           (insert "    " (file-name-nondirectory
12060                           (cdr (assq 'name (car pslist))))
12061                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
12062           (setq e (point))
12063           (forward-line -1)             ; back to `b'
12064           (gnus-add-text-properties
12065            b (1- e) (list 'gnus-number gnus-reffed-article-number
12066                           gnus-mouse-face-prop gnus-mouse-face))
12067           (gnus-data-enter
12068            after-article gnus-reffed-article-number
12069            gnus-unread-mark b (car pslist) 0 (- e b))
12070           (setq gnus-newsgroup-unreads
12071                 (gnus-add-to-sorted-list gnus-newsgroup-unreads
12072                                          gnus-reffed-article-number))
12073           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
12074           (setq pslist (cdr pslist)))))))
12075
12076 (defun gnus-pseudos< (p1 p2)
12077   (let ((c1 (cdr (assq 'action p1)))
12078         (c2 (cdr (assq 'action p2))))
12079     (and c1 c2 (string< c1 c2))))
12080
12081 (defun gnus-request-pseudo-article (props)
12082   (cond ((assq 'execute props)
12083          (gnus-execute-command (cdr (assq 'execute props)))))
12084   (let ((gnus-current-article (gnus-summary-article-number)))
12085     (gnus-run-hooks 'gnus-mark-article-hook)))
12086
12087 (defun gnus-execute-command (command &optional automatic)
12088   (save-excursion
12089     (gnus-article-setup-buffer)
12090     (set-buffer gnus-article-buffer)
12091     (setq buffer-read-only nil)
12092     (let ((command (if automatic command
12093                      (read-string "Command: " (cons command 0)))))
12094       (erase-buffer)
12095       (insert "$ " command "\n\n")
12096       (if gnus-view-pseudo-asynchronously
12097           (start-process "gnus-execute" (current-buffer) shell-file-name
12098                          shell-command-switch command)
12099         (call-process shell-file-name nil t nil
12100                       shell-command-switch command)))))
12101
12102 ;; Summary kill commands.
12103
12104 (defun gnus-summary-edit-global-kill (article)
12105   "Edit the \"global\" kill file."
12106   (interactive (list (gnus-summary-article-number)))
12107   (gnus-group-edit-global-kill article))
12108
12109 (defun gnus-summary-edit-local-kill ()
12110   "Edit a local kill file applied to the current newsgroup."
12111   (interactive)
12112   (setq gnus-current-headers (gnus-summary-article-header))
12113   (gnus-group-edit-local-kill
12114    (gnus-summary-article-number) gnus-newsgroup-name))
12115
12116 ;;; Header reading.
12117
12118 (defun gnus-read-header (id &optional header)
12119   "Read the headers of article ID and enter them into the Gnus system."
12120   (let ((group gnus-newsgroup-name)
12121         (gnus-override-method
12122          (or
12123           gnus-override-method
12124           (and (gnus-news-group-p gnus-newsgroup-name)
12125                (car (gnus-refer-article-methods)))))
12126         where)
12127     ;; First we check to see whether the header in question is already
12128     ;; fetched.
12129     (if (stringp id)
12130         ;; This is a Message-ID.
12131         (setq header (or header (gnus-id-to-header id)))
12132       ;; This is an article number.
12133       (setq header (or header (gnus-summary-article-header id))))
12134     (if (and header
12135              (not (gnus-summary-article-sparse-p (mail-header-number header))))
12136         ;; We have found the header.
12137         header
12138       ;; We have to really fetch the header to this article.
12139       (with-current-buffer nntp-server-buffer
12140         (when (setq where (gnus-request-head id group))
12141           (nnheader-fold-continuation-lines)
12142           (goto-char (point-max))
12143           (insert ".\n")
12144           (goto-char (point-min))
12145           (insert "211 ")
12146           (princ (cond
12147                   ((numberp id) id)
12148                   ((cdr where) (cdr where))
12149                   (header (mail-header-number header))
12150                   (t gnus-reffed-article-number))
12151                  (current-buffer))
12152           (insert " Article retrieved.\n"))
12153         (if (or (not where)
12154                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
12155             ()                          ; Malformed head.
12156           (unless (gnus-summary-article-sparse-p (mail-header-number header))
12157             (when (and (stringp id)
12158                        (or
12159                         (not (string= (gnus-group-real-name group)
12160                                       (car where)))
12161                         (not (gnus-server-equal gnus-override-method
12162                                                 (gnus-group-method group)))))
12163               ;; If we fetched by Message-ID and the article came from
12164               ;; a different group (or server), we fudge some bogus
12165               ;; article numbers for this article.
12166               (mail-header-set-number header gnus-reffed-article-number))
12167             (with-current-buffer gnus-summary-buffer
12168               (decf gnus-reffed-article-number)
12169               (gnus-remove-header (mail-header-number header))
12170               (push header gnus-newsgroup-headers)
12171               (setq gnus-current-headers header)
12172               (push (mail-header-number header) gnus-newsgroup-limit)))
12173           header)))))
12174
12175 (defun gnus-remove-header (number)
12176   "Remove header NUMBER from `gnus-newsgroup-headers'."
12177   (if (and gnus-newsgroup-headers
12178            (= number (mail-header-number (car gnus-newsgroup-headers))))
12179       (pop gnus-newsgroup-headers)
12180     (let ((headers gnus-newsgroup-headers))
12181       (while (and (cdr headers)
12182                   (not (= number (mail-header-number (cadr headers)))))
12183         (pop headers))
12184       (when (cdr headers)
12185         (setcdr headers (cddr headers))))))
12186
12187 ;;;
12188 ;;; summary highlights
12189 ;;;
12190
12191 (defun gnus-highlight-selected-summary ()
12192   "Highlight selected article in summary buffer."
12193   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
12194   (when gnus-summary-selected-face
12195     (save-excursion
12196       (let* ((beg (point-at-bol))
12197              (end (point-at-eol))
12198              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
12199              (from (if (get-text-property beg gnus-mouse-face-prop)
12200                        beg
12201                      (or (next-single-property-change
12202                           beg gnus-mouse-face-prop nil end)
12203                          beg)))
12204              (to
12205               (if (= from end)
12206                   (- from 2)
12207                 (or (next-single-property-change
12208                      from gnus-mouse-face-prop nil end)
12209                     end))))
12210         ;; If no mouse-face prop on line we will have to = from = end,
12211         ;; so we highlight the entire line instead.
12212         (when (= (+ to 2) from)
12213           (setq from beg)
12214           (setq to end))
12215         (if gnus-newsgroup-selected-overlay
12216             ;; Move old overlay.
12217             (gnus-move-overlay
12218              gnus-newsgroup-selected-overlay from to (current-buffer))
12219           ;; Create new overlay.
12220           (gnus-overlay-put
12221            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
12222            'face gnus-summary-selected-face))))))
12223
12224 (defvar gnus-summary-highlight-line-cached nil)
12225 (defvar gnus-summary-highlight-line-trigger nil)
12226
12227 (defun gnus-summary-highlight-line-0 ()
12228   (if (and (eq gnus-summary-highlight-line-trigger
12229                gnus-summary-highlight)
12230            gnus-summary-highlight-line-cached)
12231       gnus-summary-highlight-line-cached
12232     (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
12233           gnus-summary-highlight-line-cached
12234           (let* ((cond (list 'cond))
12235                  (c cond)
12236                  (list gnus-summary-highlight))
12237             (while list
12238               (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
12239                               nil))
12240               (setq c (cdr c)
12241                     list (cdr list)))
12242             (gnus-byte-compile (list 'lambda nil cond))))))
12243
12244 (defun gnus-summary-highlight-line ()
12245   "Highlight current line according to `gnus-summary-highlight'."
12246   (let* ((beg (point-at-bol))
12247          (article (or (gnus-summary-article-number) gnus-current-article))
12248          (score (or (cdr (assq article
12249                                gnus-newsgroup-scored))
12250                     gnus-summary-default-score 0))
12251          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
12252          (inhibit-read-only t)
12253          (default gnus-summary-default-score)
12254          (default-high gnus-summary-default-high-score)
12255          (default-low gnus-summary-default-low-score)
12256          (uncached (and gnus-summary-use-undownloaded-faces
12257                         (memq article gnus-newsgroup-undownloaded)
12258                         (not (memq article gnus-newsgroup-cached)))))
12259     (let ((face (funcall (gnus-summary-highlight-line-0))))
12260       (unless (eq face (get-text-property beg 'face))
12261         (gnus-put-text-property-excluding-characters-with-faces
12262          beg (point-at-eol) 'face
12263          (setq face (if (boundp face) (symbol-value face) face)))
12264         (when gnus-summary-highlight-line-function
12265           (funcall gnus-summary-highlight-line-function article face))))))
12266
12267 (defun gnus-update-read-articles (group unread &optional compute)
12268   "Update the list of read articles in GROUP.
12269 UNREAD is a sorted list."
12270   (let ((active (or gnus-newsgroup-active (gnus-active group)))
12271         (info (gnus-get-info group))
12272         (prev 1)
12273         read)
12274     (if (or (not info) (not active))
12275         ;; There is no info on this group if it was, in fact,
12276         ;; killed.  Gnus stores no information on killed groups, so
12277         ;; there's nothing to be done.
12278         ;; One could store the information somewhere temporarily,
12279         ;; perhaps...  Hmmm...
12280         ()
12281       ;; Remove any negative articles numbers.
12282       (while (and unread (< (car unread) 0))
12283         (setq unread (cdr unread)))
12284       ;; Remove any expired article numbers
12285       (while (and unread (< (car unread) (car active)))
12286         (setq unread (cdr unread)))
12287       ;; Compute the ranges of read articles by looking at the list of
12288       ;; unread articles.
12289       (while unread
12290         (when (/= (car unread) prev)
12291           (push (if (= prev (1- (car unread))) prev
12292                   (cons prev (1- (car unread))))
12293                 read))
12294         (setq prev (1+ (car unread)))
12295         (setq unread (cdr unread)))
12296       (when (<= prev (cdr active))
12297         (push (cons prev (cdr active)) read))
12298       (setq read (if (> (length read) 1) (nreverse read) read))
12299       (if compute
12300           read
12301         (save-excursion
12302           (let (setmarkundo)
12303             ;; Propagate the read marks to the backend.
12304             (when (and gnus-propagate-marks
12305                        (gnus-check-backend-function 'request-set-mark group))
12306               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
12307                     (add (gnus-remove-from-range read (gnus-info-read info))))
12308                 (when (or add del)
12309                   (unless (gnus-check-group group)
12310                     (error "Can't open server for %s" group))
12311                   (gnus-request-set-mark
12312                    group (delq nil (list (if add (list add 'add '(read)))
12313                                          (if del (list del 'del '(read))))))
12314                   (setq setmarkundo
12315                         `(gnus-request-set-mark
12316                           ,group
12317                           ',(delq nil (list
12318                                        (if del (list del 'add '(read)))
12319                                        (if add (list add 'del '(read))))))))))
12320             (set-buffer gnus-group-buffer)
12321             (gnus-undo-register
12322               `(progn
12323                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
12324                  (gnus-info-set-read ',info ',(gnus-info-read info))
12325                  (gnus-get-unread-articles-in-group ',info
12326                                                     (gnus-active ,group))
12327                  (gnus-group-update-group ,group t)
12328                  ,setmarkundo))))
12329         ;; Enter this list into the group info.
12330         (gnus-info-set-read info read)
12331         ;; Set the number of unread articles in gnus-newsrc-hashtb.
12332         (gnus-get-unread-articles-in-group info (gnus-active group))
12333         t))))
12334
12335 (defun gnus-offer-save-summaries ()
12336   "Offer to save all active summary buffers."
12337   (let (buffers)
12338     ;; Go through all buffers and find all summaries.
12339     (dolist (buffer (buffer-list))
12340       (when (and (setq buffer (buffer-name buffer))
12341                  (string-match "Summary" buffer)
12342                  (with-current-buffer buffer
12343                    ;; We check that this is, indeed, a summary buffer.
12344                    (and (eq major-mode 'gnus-summary-mode)
12345                         ;; Also make sure this isn't bogus.
12346                         gnus-newsgroup-prepared
12347                         ;; Also make sure that this isn't a
12348                         ;; dead summary buffer.
12349                         (not gnus-dead-summary-mode))))
12350         (push buffer buffers)))
12351     ;; Go through all these summary buffers and offer to save them.
12352     (when buffers
12353       (save-excursion
12354         (map-y-or-n-p
12355          "Update summary buffer %s? "
12356          (lambda (buf)
12357            (switch-to-buffer buf)
12358            (gnus-summary-exit))
12359          buffers)))))
12360
12361 (defun gnus-summary-setup-default-charset ()
12362   "Setup newsgroup default charset."
12363   (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
12364       (setq gnus-newsgroup-charset nil)
12365     (let* ((ignored-charsets
12366             (or gnus-newsgroup-ephemeral-ignored-charsets
12367                 (append
12368                  (and gnus-newsgroup-name
12369                       (gnus-parameter-ignored-charsets gnus-newsgroup-name))
12370                  gnus-newsgroup-ignored-charsets))))
12371       (setq gnus-newsgroup-charset
12372             (or gnus-newsgroup-ephemeral-charset
12373                 (and gnus-newsgroup-name
12374                      (gnus-parameter-charset gnus-newsgroup-name))
12375                 gnus-default-charset))
12376       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
12377            ignored-charsets))))
12378
12379 ;;;
12380 ;;; Mime Commands
12381 ;;;
12382
12383 (defun gnus-summary-display-buttonized (&optional show-all-parts)
12384   "Display the current article buffer fully MIME-buttonized.
12385 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
12386 treated as multipart/mixed."
12387   (interactive "P")
12388   (require 'gnus-art)
12389   (let ((gnus-unbuttonized-mime-types nil)
12390         (gnus-mime-display-multipart-as-mixed show-all-parts))
12391     (gnus-summary-show-article)))
12392
12393 (defun gnus-summary-repair-multipart (article)
12394   "Add a Content-Type header to a multipart article without one."
12395   (interactive (list (gnus-summary-article-number)))
12396   (gnus-with-article article
12397     (message-narrow-to-head)
12398     (message-remove-header "Mime-Version")
12399     (goto-char (point-max))
12400     (insert "Mime-Version: 1.0\n")
12401     (widen)
12402     (when (search-forward "\n--" nil t)
12403       (let ((separator (buffer-substring (point) (point-at-eol))))
12404         (message-narrow-to-head)
12405         (message-remove-header "Content-Type")
12406         (goto-char (point-max))
12407         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
12408                         separator))
12409         (widen))))
12410   (let (gnus-mark-article-hook)
12411     (gnus-summary-select-article t t nil article)))
12412
12413 (defun gnus-summary-toggle-display-buttonized ()
12414   "Toggle the buttonizing of the article buffer."
12415   (interactive)
12416   (require 'gnus-art)
12417   (if (setq gnus-inhibit-mime-unbuttonizing
12418             (not gnus-inhibit-mime-unbuttonizing))
12419       (let ((gnus-unbuttonized-mime-types nil))
12420         (gnus-summary-show-article))
12421     (gnus-summary-show-article)))
12422
12423 ;;;
12424 ;;; Generic summary marking commands
12425 ;;;
12426
12427 (defvar gnus-summary-marking-alist
12428   '((read gnus-del-mark "d")
12429     (unread gnus-unread-mark "u")
12430     (ticked gnus-ticked-mark "!")
12431     (dormant gnus-dormant-mark "?")
12432     (expirable gnus-expirable-mark "e"))
12433   "An alist of names/marks/keystrokes.")
12434
12435 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
12436 (defvar gnus-summary-mark-map)
12437
12438 (defun gnus-summary-make-all-marking-commands ()
12439   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
12440   (dolist (elem gnus-summary-marking-alist)
12441     (apply 'gnus-summary-make-marking-command elem)))
12442
12443 (defun gnus-summary-make-marking-command (name mark keystroke)
12444   (let ((map (make-sparse-keymap)))
12445     (define-key gnus-summary-generic-mark-map keystroke map)
12446     (dolist (lway `((next "next" next nil "n")
12447                     (next-unread "next unread" next t "N")
12448                     (prev "previous" prev nil "p")
12449                     (prev-unread "previous unread" prev t "P")
12450                     (nomove "" nil nil ,keystroke)))
12451       (let ((func (gnus-summary-make-marking-command-1
12452                    mark (car lway) lway name)))
12453         (setq func (eval func))
12454         (define-key map (nth 4 lway) func)))))
12455
12456 (defun gnus-summary-make-marking-command-1 (mark way lway name)
12457   `(defun ,(intern
12458             (format "gnus-summary-put-mark-as-%s%s"
12459                     name (if (eq way 'nomove)
12460                              ""
12461                            (concat "-" (symbol-name way)))))
12462      (n)
12463      ,(format
12464        "Mark the current article as %s%s.
12465 If N, the prefix, then repeat N times.
12466 If N is negative, move in reverse order.
12467 The difference between N and the actual number of articles marked is
12468 returned."
12469        name (cadr lway))
12470      (interactive "p")
12471      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
12472
12473 (defun gnus-summary-generic-mark (n mark move unread)
12474   "Mark N articles with MARK."
12475   (unless (eq major-mode 'gnus-summary-mode)
12476     (error "This command can only be used in the summary buffer"))
12477   (gnus-summary-show-thread)
12478   (let ((nummove
12479          (cond
12480           ((eq move 'next) 1)
12481           ((eq move 'prev) -1)
12482           (t 0))))
12483     (if (zerop nummove)
12484         (setq n 1)
12485       (when (< n 0)
12486         (setq n (abs n)
12487               nummove (* -1 nummove))))
12488     (while (and (> n 0)
12489                 (gnus-summary-mark-article nil mark)
12490                 (zerop (gnus-summary-next-subject nummove unread t)))
12491       (setq n (1- n)))
12492     (when (/= 0 n)
12493       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
12494     (gnus-summary-recenter)
12495     (gnus-summary-position-point)
12496     (gnus-set-mode-line 'summary)
12497     n))
12498
12499 (defun gnus-summary-insert-articles (articles)
12500   (when (setq articles
12501               (gnus-sorted-difference articles
12502                                       (mapcar (lambda (h)
12503                                                 (mail-header-number h))
12504                                               gnus-newsgroup-headers)))
12505     (setq gnus-newsgroup-headers
12506           (gnus-merge 'list
12507                       gnus-newsgroup-headers
12508                       (gnus-fetch-headers articles)
12509                       'gnus-article-sort-by-number))
12510     ;; Suppress duplicates?
12511     (when gnus-suppress-duplicates
12512       (gnus-dup-suppress-articles))
12513
12514     (if (and gnus-fetch-old-headers
12515              (eq gnus-headers-retrieved-by 'nov))
12516         ;; We might want to build some more threads first.
12517         (if (eq gnus-fetch-old-headers 'invisible)
12518             (gnus-build-all-threads)
12519           (gnus-build-old-threads))
12520       ;; Mark the inserted articles that are unread as unread.
12521       (setq gnus-newsgroup-unreads
12522             (gnus-sorted-nunion
12523              gnus-newsgroup-unreads
12524              (gnus-sorted-nintersection
12525               (gnus-list-of-unread-articles gnus-newsgroup-name)
12526               articles)))
12527       ;; Mark the inserted articles as selected so that the information
12528       ;; of the marks having been changed by a user may be updated when
12529       ;; exiting this group.  See `gnus-summary-update-info'.
12530       (dolist (art articles)
12531         (setq gnus-newsgroup-unselected (delq art gnus-newsgroup-unselected))))
12532     ;; Let the Gnus agent mark articles as read.
12533     (when gnus-agent
12534       (gnus-agent-get-undownloaded-list))
12535     ;; Remove list identifiers from subject
12536     (when gnus-list-identifiers
12537       (gnus-summary-remove-list-identifiers))
12538     ;; First and last article in this newsgroup.
12539     (when gnus-newsgroup-headers
12540       (setq gnus-newsgroup-begin
12541             (mail-header-number (car gnus-newsgroup-headers))
12542             gnus-newsgroup-end
12543             (mail-header-number
12544              (gnus-last-element gnus-newsgroup-headers))))
12545     (when gnus-use-scoring
12546       (gnus-possibly-score-headers))))
12547
12548 (defun gnus-summary-insert-old-articles (&optional all)
12549   "Insert all old articles in this group.
12550 If ALL is non-nil, already read articles become readable.
12551 If ALL is a number, fetch this number of articles."
12552   (interactive "P")
12553   (prog1
12554       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
12555             older len)
12556         (setq older
12557               ;; Some nntp servers lie about their active range.  When
12558               ;; this happens, the active range can be in the millions.
12559               ;; Use a compressed range to avoid creating a huge list.
12560               (gnus-range-difference (list gnus-newsgroup-active) old))
12561         (setq len (gnus-range-length older))
12562         (cond
12563          ((null older) nil)
12564          ((numberp all)
12565           (if (< all len)
12566               (let ((older-range (nreverse older)))
12567                 (setq older nil)
12568
12569                 (while (> all 0)
12570                   (let* ((r (pop older-range))
12571                          (min (if (numberp r) r (car r)))
12572                          (max (if (numberp r) r (cdr r))))
12573                     (while (and (<= min max)
12574                                 (> all 0))
12575                       (push max older)
12576                       (setq all (1- all)
12577                             max (1- max))))))
12578             (setq older (gnus-uncompress-range older))))
12579          (all
12580           (setq older (gnus-uncompress-range older)))
12581          (t
12582           (when (and (numberp gnus-large-newsgroup)
12583                    (> len gnus-large-newsgroup))
12584               (let* ((cursor-in-echo-area nil)
12585                      (initial (gnus-parameter-large-newsgroup-initial
12586                                gnus-newsgroup-name))
12587                      (input
12588                       (read-string
12589                        (format
12590                         "How many articles from %s (%s %d): "
12591                         (gnus-group-decoded-name gnus-newsgroup-name)
12592                         (if initial "max" "default")
12593                         len)
12594                        (if initial
12595                            (cons (number-to-string initial)
12596                                  0)))))
12597                 (unless (string-match "^[ \t]*$" input)
12598                   (setq all (string-to-number input))
12599                   (if (< all len)
12600                       (let ((older-range (nreverse older)))
12601                         (setq older nil)
12602
12603                         (while (> all 0)
12604                           (let* ((r (pop older-range))
12605                                  (min (if (numberp r) r (car r)))
12606                                  (max (if (numberp r) r (cdr r))))
12607                             (while (and (<= min max)
12608                                         (> all 0))
12609                               (push max older)
12610                               (setq all (1- all)
12611                                     max (1- max))))))))))
12612           (setq older (gnus-uncompress-range older))))
12613         (if (not older)
12614             (message "No old news.")
12615           (gnus-summary-insert-articles older)
12616           (gnus-summary-limit (gnus-sorted-nunion old older))))
12617     (gnus-summary-position-point)))
12618
12619 (defun gnus-summary-insert-new-articles ()
12620   "Insert all new articles in this group."
12621   (interactive)
12622   (prog1
12623       (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
12624             (old-active gnus-newsgroup-active)
12625             (nnmail-fetched-sources (list t))
12626             i new)
12627         (setq gnus-newsgroup-active
12628               (gnus-activate-group gnus-newsgroup-name 'scan))
12629         (setq i (cdr gnus-newsgroup-active))
12630         (while (> i (cdr old-active))
12631           (push i new)
12632           (decf i))
12633         (if (not new)
12634             (message "No gnus is bad news")
12635           (gnus-summary-insert-articles new)
12636           (setq gnus-newsgroup-unreads
12637                 (gnus-sorted-nunion gnus-newsgroup-unreads new))
12638           (gnus-summary-limit (gnus-sorted-nunion old new))))
12639     (gnus-summary-position-point)))
12640
12641 ;;; Bookmark support for Gnus.
12642 (declare-function bookmark-make-record-default
12643                   "bookmark" (&optional no-file no-context posn))
12644 (declare-function bookmark-prop-get "bookmark" (bookmark prop))
12645 (declare-function bookmark-default-handler "bookmark" (bmk))
12646 (declare-function bookmark-get-bookmark-record "bookmark" (bmk))
12647 (defvar bookmark-yank-point)
12648 (defvar bookmark-current-buffer)
12649
12650 (defun gnus-summary-bookmark-make-record ()
12651   "Make a bookmark entry for a Gnus summary buffer."
12652   (let (pos buf)
12653     (unless (and (derived-mode-p 'gnus-summary-mode) gnus-article-current)
12654       (save-restriction              ; FIXME is it necessary to widen?
12655         (widen) (setq pos (point))) ; Set position in gnus-article buffer.
12656       (setq buf "art") ; We are recording bookmark from article buffer.
12657       (setq bookmark-yank-point (point))
12658       (setq bookmark-current-buffer (current-buffer))
12659       (gnus-article-show-summary))      ; Go back in summary buffer.
12660     ;; We are now recording bookmark from summary buffer.
12661     (unless buf (setq buf "sum"))
12662     (let* ((subject (elt (gnus-summary-article-header) 1))
12663            (grp     (car gnus-article-current))
12664            (art     (cdr gnus-article-current))
12665            (head    (gnus-summary-article-header art))
12666            (id      (mail-header-id head)))
12667       `(,subject
12668         ,@(condition-case nil
12669               (bookmark-make-record-default 'no-file 'no-context pos)
12670             (wrong-number-of-arguments
12671              (bookmark-make-record-default 'point-only)))
12672         (location . ,(format "Gnus-%s %s:%d:%s" buf grp art id))
12673         (group . ,grp) (article . ,art)
12674         (message-id . ,id) (handler . gnus-summary-bookmark-jump)))))
12675
12676 ;;;###autoload
12677 (defun gnus-summary-bookmark-jump (bookmark)
12678   "Handler function for record returned by `gnus-summary-bookmark-make-record'.
12679 BOOKMARK is a bookmark name or a bookmark record."
12680   (let ((group    (bookmark-prop-get bookmark 'group))
12681         (article  (bookmark-prop-get bookmark 'article))
12682         (id       (bookmark-prop-get bookmark 'message-id))
12683         (buf      (car (split-string (bookmark-prop-get bookmark 'location)))))
12684     (gnus-fetch-group group (list article))
12685     (gnus-summary-insert-cached-articles)
12686     (gnus-summary-goto-article id nil 'force)
12687     ;; FIXME we have to wait article buffer is ready (only large buffer)
12688     ;; Is there a better solution to know that?
12689     ;; If we don't wait `bookmark-default-handler' will have no chance
12690     ;; to set position. However there is no error, just wrong pos.
12691     (sit-for 1)
12692     (when (string= buf "Gnus-art")
12693       (other-window 1))
12694     (bookmark-default-handler
12695      `(""
12696        (buffer . ,(current-buffer))
12697        . ,(bookmark-get-bookmark-record bookmark)))))
12698
12699 (gnus-summary-make-all-marking-commands)
12700
12701 (gnus-ems-redefine)
12702
12703 (provide 'gnus-sum)
12704
12705 (run-hooks 'gnus-sum-load-hook)
12706
12707 ;; Local Variables:
12708 ;; coding: iso-8859-1
12709 ;; End:
12710
12711 ;;; gnus-sum.el ends here