Synch.
[elisp/gnus.git-] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Semi-gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;;         MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;;         Katsumi Yamaoka  <yamaoka@jpl.org>
8 ;; Keywords: mail, news, MIME
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 (eval-when-compile (require 'cl))
32
33 (require 'gnus)
34 (require 'gnus-group)
35 (require 'gnus-spec)
36 (require 'gnus-range)
37 (require 'gnus-int)
38 (require 'gnus-undo)
39 (require 'gnus-util)
40 (require 'mime-view)
41
42 (eval-when-compile
43   (require 'mime-play)
44   (require 'static))
45
46 (eval-and-compile
47   (autoload 'gnus-cache-articles-in-group "gnus-cache")
48   (autoload 'pgg-decrypt-region "pgg" nil t)
49   (autoload 'pgg-verify-region "pgg" nil t))
50
51 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
52 (autoload 'gnus-set-summary-default-charset "gnus-i18n" nil t)
53
54 (defcustom gnus-kill-summary-on-exit t
55   "*If non-nil, kill the summary buffer when you exit from it.
56 If nil, the summary will become a \"*Dead Summary*\" buffer, and
57 it will be killed sometime later."
58   :group 'gnus-summary-exit
59   :type 'boolean)
60
61 (defcustom gnus-fetch-old-headers nil
62   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
63 If an unread article in the group refers to an older, already read (or
64 just marked as read) article, the old article will not normally be
65 displayed in the Summary buffer.  If this variable is non-nil, Gnus
66 will attempt to grab the headers to the old articles, and thereby
67 build complete threads.  If it has the value `some', only enough
68 headers to connect otherwise loose threads will be displayed.  This
69 variable can also be a number.  In that case, no more than that number
70 of old headers will be fetched.  If it has the value `invisible', all
71 old headers will be fetched, but none will be displayed.
72
73 The server has to support NOV for any of this to work."
74   :group 'gnus-thread
75   :type '(choice (const :tag "off" nil)
76                  (const some)
77                  number
78                  (sexp :menu-tag "other" t)))
79
80 (defcustom gnus-refer-thread-limit 200
81   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
82 If t, fetch all the available old headers."
83   :group 'gnus-thread
84   :type '(choice number
85                  (sexp :menu-tag "other" t)))
86
87 (defcustom gnus-summary-make-false-root 'adopt
88   "*nil means that Gnus won't gather loose threads.
89 If the root of a thread has expired or been read in a previous
90 session, the information necessary to build a complete thread has been
91 lost.  Instead of having many small sub-threads from this original thread
92 scattered all over the summary buffer, Gnus can gather them.
93
94 If non-nil, Gnus will try to gather all loose sub-threads from an
95 original thread into one large thread.
96
97 If this variable is non-nil, it should be one of `none', `adopt',
98 `dummy' or `empty'.
99
100 If this variable is `none', Gnus will not make a false root, but just
101 present the sub-threads after another.
102 If this variable is `dummy', Gnus will create a dummy root that will
103 have all the sub-threads as children.
104 If this variable is `adopt', Gnus will make one of the \"children\"
105 the parent and mark all the step-children as such.
106 If this variable is `empty', the \"children\" are printed with empty
107 subject fields.  (Or rather, they will be printed with a string
108 given by the `gnus-summary-same-subject' variable.)"
109   :group 'gnus-thread
110   :type '(choice (const :tag "off" nil)
111                  (const none)
112                  (const dummy)
113                  (const adopt)
114                  (const empty)))
115
116 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
117   "*A regexp to match subjects to be excluded from loose thread gathering.
118 As loose thread gathering is done on subjects only, that means that
119 there can be many false gatherings performed.  By rooting out certain
120 common subjects, gathering might become saner."
121   :group 'gnus-thread
122   :type 'regexp)
123
124 (defcustom gnus-summary-gather-subject-limit nil
125   "*Maximum length of subject comparisons when gathering loose threads.
126 Use nil to compare full subjects.  Setting this variable to a low
127 number will help gather threads that have been corrupted by
128 newsreaders chopping off subject lines, but it might also mean that
129 unrelated articles that have subject that happen to begin with the
130 same few characters will be incorrectly gathered.
131
132 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
133 comparing subjects."
134   :group 'gnus-thread
135   :type '(choice (const :tag "off" nil)
136                  (const fuzzy)
137                  (sexp :menu-tag "on" t)))
138
139 (defcustom gnus-simplify-subject-functions nil
140   "List of functions taking a string argument that simplify subjects.
141 The functions are applied recursively.
142
143 Useful functions to put in this list include: `gnus-simplify-subject-re',
144 `gnus-simplify-subject-fuzzy' and `gnus-simplify-whitespace'."
145   :group 'gnus-thread
146   :type '(repeat function))
147
148 (defcustom gnus-simplify-ignored-prefixes nil
149   "*Regexp, matches for which are removed from subject lines when simplifying fuzzily."
150   :group 'gnus-thread
151   :type '(choice (const :tag "off" nil)
152                  regexp))
153
154 (defcustom gnus-build-sparse-threads nil
155   "*If non-nil, fill in the gaps in threads.
156 If `some', only fill in the gaps that are needed to tie loose threads
157 together.  If `more', fill in all leaf nodes that Gnus can find.  If
158 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
159   :group 'gnus-thread
160   :type '(choice (const :tag "off" nil)
161                  (const some)
162                  (const more)
163                  (sexp :menu-tag "all" t)))
164
165 (defcustom gnus-summary-thread-gathering-function
166   'gnus-gather-threads-by-subject
167   "*Function used for gathering loose threads.
168 There are two pre-defined functions: `gnus-gather-threads-by-subject',
169 which only takes Subjects into consideration; and
170 `gnus-gather-threads-by-references', which compared the References
171 headers of the articles to find matches."
172   :group 'gnus-thread
173   :type '(radio (function-item gnus-gather-threads-by-subject)
174                 (function-item gnus-gather-threads-by-references)
175                 (function :tag "other")))
176
177 (defcustom gnus-summary-same-subject ""
178   "*String indicating that the current article has the same subject as the previous.
179 This variable will only be used if the value of
180 `gnus-summary-make-false-root' is `empty'."
181   :group 'gnus-summary-format
182   :type 'string)
183
184 (defcustom gnus-summary-goto-unread t
185   "*If t, many commands will go to the next unread article.
186 This applies to marking commands as well as other commands that
187 \"naturally\" select the next article, like, for instance, `SPC' at
188 the end of an article.
189
190 If nil, the marking commands do NOT go to the next unread article
191 (they go to the next article instead).  If `never', commands that
192 usually go to the next unread article, will go to the next article,
193 whether it is read or not."
194   :group 'gnus-summary-marks
195   :link '(custom-manual "(gnus)Setting Marks")
196   :type '(choice (const :tag "off" nil)
197                  (const never)
198                  (sexp :menu-tag "on" t)))
199
200 (defcustom gnus-summary-default-score 0
201   "*Default article score level.
202 All scores generated by the score files will be added to this score.
203 If this variable is nil, scoring will be disabled."
204   :group 'gnus-score-default
205   :type '(choice (const :tag "disable")
206                  integer))
207
208 (defcustom gnus-summary-zcore-fuzz 0
209   "*Fuzziness factor for the zcore in the summary buffer.
210 Articles with scores closer than this to `gnus-summary-default-score'
211 will not be marked."
212   :group 'gnus-summary-format
213   :type 'integer)
214
215 (defcustom gnus-simplify-subject-fuzzy-regexp nil
216   "*Strings to be removed when doing fuzzy matches.
217 This can either be a regular expression or list of regular expressions
218 that will be removed from subject strings if fuzzy subject
219 simplification is selected."
220   :group 'gnus-thread
221   :type '(repeat regexp))
222
223 (defcustom gnus-show-threads t
224   "*If non-nil, display threads in summary mode."
225   :group 'gnus-thread
226   :type 'boolean)
227
228 (defcustom gnus-thread-hide-subtree nil
229   "*If non-nil, hide all threads initially.
230 If threads are hidden, you have to run the command
231 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
232 to expose hidden threads."
233   :group 'gnus-thread
234   :type 'boolean)
235
236 (defcustom gnus-thread-hide-killed t
237   "*If non-nil, hide killed threads automatically."
238   :group 'gnus-thread
239   :type 'boolean)
240
241 (defcustom gnus-thread-ignore-subject t
242   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
243 If nil, articles that have different subjects from their parents will
244 start separate threads."
245   :group 'gnus-thread
246   :type 'boolean)
247
248 (defcustom gnus-thread-operation-ignore-subject t
249   "*If non-nil, subjects will be ignored when doing thread commands.
250 This affects commands like `gnus-summary-kill-thread' and
251 `gnus-summary-lower-thread'.
252
253 If this variable is nil, articles in the same thread with different
254 subjects will not be included in the operation in question.  If this
255 variable is `fuzzy', only articles that have subjects that are fuzzily
256 equal will be included."
257   :group 'gnus-thread
258   :type '(choice (const :tag "off" nil)
259                  (const fuzzy)
260                  (sexp :tag "on" t)))
261
262 (defcustom gnus-thread-indent-level 4
263   "*Number that says how much each sub-thread should be indented."
264   :group 'gnus-thread
265   :type 'integer)
266
267 (defcustom gnus-auto-extend-newsgroup t
268   "*If non-nil, extend newsgroup forward and backward when requested."
269   :group 'gnus-summary-choose
270   :type 'boolean)
271
272 (defcustom gnus-auto-select-first t
273   "*If nil, don't select the first unread article when entering a group.
274 If this variable is `best', select the highest-scored unread article
275 in the group.  If t, select the first unread article.
276
277 This variable can also be a function to place point on a likely
278 subject line.  Useful values include `gnus-summary-first-unread-subject',
279 `gnus-summary-first-unread-article' and
280 `gnus-summary-best-unread-article'.
281
282 If you want to prevent automatic selection of the first unread article
283 in some newsgroups, set the variable to nil in
284 `gnus-select-group-hook'."
285   :group 'gnus-group-select
286   :type '(choice (const :tag "none" nil)
287                  (const best)
288                  (sexp :menu-tag "first" t)
289                  (function-item gnus-summary-first-unread-subject)
290                  (function-item gnus-summary-first-unread-article)
291                  (function-item gnus-summary-best-unread-article)))
292
293 (defcustom gnus-dont-select-after-jump-to-other-group nil
294   "If non-nil, don't select the first unread article after entering the
295 other group by the command `gnus-summary-jump-to-other-group'.  If nil,
296 it is depend on the value of `gnus-auto-select-first' whether to select
297 or not."
298   :group 'gnus-group-select
299   :type 'boolean)
300
301 (defcustom gnus-auto-select-next t
302   "*If non-nil, offer to go to the next group from the end of the previous.
303 If the value is t and the next newsgroup is empty, Gnus will exit
304 summary mode and go back to group mode.  If the value is neither nil
305 nor t, Gnus will select the following unread newsgroup.  In
306 particular, if the value is the symbol `quietly', the next unread
307 newsgroup will be selected without any confirmation, and if it is
308 `almost-quietly', the next group will be selected without any
309 confirmation if you are located on the last article in the group.
310 Finally, if this variable is `slightly-quietly', the `Z n' command
311 will go to the next group without confirmation."
312   :group 'gnus-summary-maneuvering
313   :type '(choice (const :tag "off" nil)
314                  (const quietly)
315                  (const almost-quietly)
316                  (const slightly-quietly)
317                  (sexp :menu-tag "on" t)))
318
319 (defcustom gnus-auto-select-same nil
320   "*If non-nil, select the next article with the same subject.
321 If there are no more articles with the same subject, go to
322 the first unread article."
323   :group 'gnus-summary-maneuvering
324   :type 'boolean)
325
326 (defcustom gnus-summary-check-current nil
327   "*If non-nil, consider the current article when moving.
328 The \"unread\" movement commands will stay on the same line if the
329 current article is unread."
330   :group 'gnus-summary-maneuvering
331   :type 'boolean)
332
333 (defcustom gnus-auto-center-summary t
334   "*If non-nil, always center the current summary buffer.
335 In particular, if `vertical' do only vertical recentering.  If non-nil
336 and non-`vertical', do both horizontal and vertical recentering."
337   :group 'gnus-summary-maneuvering
338   :type '(choice (const :tag "none" nil)
339                  (const vertical)
340                  (integer :tag "height")
341                  (sexp :menu-tag "both" t)))
342
343 (defcustom gnus-show-all-headers nil
344   "*If non-nil, don't hide any headers."
345   :group 'gnus-article-hiding
346   :group 'gnus-article-headers
347   :type 'boolean)
348
349 (defcustom gnus-summary-ignore-duplicates nil
350   "*If non-nil, ignore articles with identical Message-ID headers."
351   :group 'gnus-summary
352   :type 'boolean)
353
354 (defcustom gnus-single-article-buffer t
355   "*If non-nil, display all articles in the same buffer.
356 If nil, each group will get its own article buffer."
357   :group 'gnus-article-various
358   :type 'boolean)
359
360 (defcustom gnus-break-pages t
361   "*If non-nil, do page breaking on articles.
362 The page delimiter is specified by the `gnus-page-delimiter'
363 variable."
364   :group 'gnus-article-various
365   :type 'boolean)
366
367 (defcustom gnus-show-mime t
368   "*If non-nil, do mime processing of articles.
369 The articles will simply be fed to the function given by
370 `gnus-article-display-method-for-mime'."
371   :group 'gnus-article-mime
372   :type 'boolean)
373
374 (defcustom gnus-move-split-methods nil
375   "*Variable used to suggest where articles are to be moved to.
376 It uses the same syntax as the `gnus-split-methods' variable."
377   :group 'gnus-summary-mail
378   :type '(repeat (choice (list :value (fun) function)
379                          (cons :value ("" "") regexp (repeat string))
380                          (sexp :value nil))))
381
382 (defcustom gnus-unread-mark ?  ;Whitespace
383   "*Mark used for unread articles."
384   :group 'gnus-summary-marks
385   :type 'character)
386
387 (defcustom gnus-ticked-mark ?!
388   "*Mark used for ticked articles."
389   :group 'gnus-summary-marks
390   :type 'character)
391
392 (defcustom gnus-dormant-mark ??
393   "*Mark used for dormant articles."
394   :group 'gnus-summary-marks
395   :type 'character)
396
397 (defcustom gnus-del-mark ?r
398   "*Mark used for del'd articles."
399   :group 'gnus-summary-marks
400   :type 'character)
401
402 (defcustom gnus-read-mark ?R
403   "*Mark used for read articles."
404   :group 'gnus-summary-marks
405   :type 'character)
406
407 (defcustom gnus-expirable-mark ?E
408   "*Mark used for expirable articles."
409   :group 'gnus-summary-marks
410   :type 'character)
411
412 (defcustom gnus-killed-mark ?K
413   "*Mark used for killed articles."
414   :group 'gnus-summary-marks
415   :type 'character)
416
417 (defcustom gnus-souped-mark ?F
418   "*Mark used for killed articles."
419   :group 'gnus-summary-marks
420   :type 'character)
421
422 (defcustom gnus-kill-file-mark ?X
423   "*Mark used for articles killed by kill files."
424   :group 'gnus-summary-marks
425   :type 'character)
426
427 (defcustom gnus-low-score-mark ?Y
428   "*Mark used for articles with a low score."
429   :group 'gnus-summary-marks
430   :type 'character)
431
432 (defcustom gnus-catchup-mark ?C
433   "*Mark used for articles that are caught up."
434   :group 'gnus-summary-marks
435   :type 'character)
436
437 (defcustom gnus-replied-mark ?A
438   "*Mark used for articles that have been replied to."
439   :group 'gnus-summary-marks
440   :type 'character)
441
442 (defcustom gnus-cached-mark ?*
443   "*Mark used for articles that are in the cache."
444   :group 'gnus-summary-marks
445   :type 'character)
446
447 (defcustom gnus-saved-mark ?S
448   "*Mark used for articles that have been saved to."
449   :group 'gnus-summary-marks
450   :type 'character)
451
452 (defcustom gnus-ancient-mark ?O
453   "*Mark used for ancient articles."
454   :group 'gnus-summary-marks
455   :type 'character)
456
457 (defcustom gnus-sparse-mark ?Q
458   "*Mark used for sparsely reffed articles."
459   :group 'gnus-summary-marks
460   :type 'character)
461
462 (defcustom gnus-canceled-mark ?G
463   "*Mark used for canceled articles."
464   :group 'gnus-summary-marks
465   :type 'character)
466
467 (defcustom gnus-duplicate-mark ?M
468   "*Mark used for duplicate articles."
469   :group 'gnus-summary-marks
470   :type 'character)
471
472 (defcustom gnus-undownloaded-mark ?@
473   "*Mark used for articles that weren't downloaded."
474   :group 'gnus-summary-marks
475   :type 'character)
476
477 (defcustom gnus-downloadable-mark ?%
478   "*Mark used for articles that are to be downloaded."
479   :group 'gnus-summary-marks
480   :type 'character)
481
482 (defcustom gnus-unsendable-mark ?=
483   "*Mark used for articles that won't be sent."
484   :group 'gnus-summary-marks
485   :type 'character)
486
487 (defcustom gnus-score-over-mark ?+
488   "*Score mark used for articles with high scores."
489   :group 'gnus-summary-marks
490   :type 'character)
491
492 (defcustom gnus-score-below-mark ?-
493   "*Score mark used for articles with low scores."
494   :group 'gnus-summary-marks
495   :type 'character)
496
497 (defcustom gnus-empty-thread-mark ?  ;Whitespace
498   "*There is no thread under the article."
499   :group 'gnus-summary-marks
500   :type 'character)
501
502 (defcustom gnus-not-empty-thread-mark ?=
503   "*There is a thread under the article."
504   :group 'gnus-summary-marks
505   :type 'character)
506
507 (defcustom gnus-view-pseudo-asynchronously nil
508   "*If non-nil, Gnus will view pseudo-articles asynchronously."
509   :group 'gnus-extract-view
510   :type 'boolean)
511
512 (defcustom gnus-auto-expirable-marks
513   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
514         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
515         gnus-souped-mark gnus-duplicate-mark)
516   "*The list of marks converted into expiration if a group is auto-expirable."
517   :group 'gnus-summary
518   :type '(repeat character))
519
520 (defcustom gnus-inhibit-user-auto-expire t
521   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
522   :group 'gnus-summary
523   :type 'boolean)
524
525 (defcustom gnus-view-pseudos nil
526   "*If `automatic', pseudo-articles will be viewed automatically.
527 If `not-confirm', pseudos will be viewed automatically, and the user
528 will not be asked to confirm the command."
529   :group 'gnus-extract-view
530   :type '(choice (const :tag "off" nil)
531                  (const automatic)
532                  (const not-confirm)))
533
534 (defcustom gnus-view-pseudos-separately t
535   "*If non-nil, one pseudo-article will be created for each file to be viewed.
536 If nil, all files that use the same viewing command will be given as a
537 list of parameters to that command."
538   :group 'gnus-extract-view
539   :type 'boolean)
540
541 (defcustom gnus-insert-pseudo-articles t
542   "*If non-nil, insert pseudo-articles when decoding articles."
543   :group 'gnus-extract-view
544   :type 'boolean)
545
546 (defcustom gnus-summary-dummy-line-format
547   "  %(:                          :%) %S\n"
548   "*The format specification for the dummy roots in the summary buffer.
549 It works along the same lines as a normal formatting string,
550 with some simple extensions.
551
552 %S  The subject"
553   :group 'gnus-threading
554   :type 'string)
555
556 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
557   "*The format specification for the summary mode line.
558 It works along the same lines as a normal formatting string,
559 with some simple extensions:
560
561 %G  Group name
562 %p  Unprefixed group name
563 %A  Current article number
564 %z  Current article score
565 %V  Gnus version
566 %U  Number of unread articles in the group
567 %e  Number of unselected articles in the group
568 %Z  A string with unread/unselected article counts
569 %g  Shortish group name
570 %S  Subject of the current article
571 %u  User-defined spec
572 %s  Current score file name
573 %d  Number of dormant articles
574 %r  Number of articles that have been marked as read in this session
575 %E  Number of articles expunged by the score files"
576   :group 'gnus-summary-format
577   :type 'string)
578
579 (defcustom gnus-list-identifiers nil
580   "Regexp that matches list identifiers to be removed from subject.
581 This can also be a list of regexps."
582   :group 'gnus-summary-format
583   :group 'gnus-article-hiding
584   :type '(choice (const :tag "none" nil)
585                  (regexp :value ".*")
586                  (repeat :value (".*") regexp)))
587
588 (defcustom gnus-summary-mark-below 0
589   "*Mark all articles with a score below this variable as read.
590 This variable is local to each summary buffer and usually set by the
591 score file."
592   :group 'gnus-score-default
593   :type 'integer)
594
595 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
596   "*List of functions used for sorting articles in the summary buffer.
597 This variable is only used when not using a threaded display."
598   :group 'gnus-summary-sort
599   :type '(repeat (choice (function-item gnus-article-sort-by-number)
600                          (function-item gnus-article-sort-by-author)
601                          (function-item gnus-article-sort-by-subject)
602                          (function-item gnus-article-sort-by-date)
603                          (function-item gnus-article-sort-by-score)
604                          (function :tag "other"))))
605
606 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
607   "*List of functions used for sorting threads in the summary buffer.
608 By default, threads are sorted by article number.
609
610 Each function takes two threads and return non-nil if the first thread
611 should be sorted before the other.  If you use more than one function,
612 the primary sort function should be the last.  You should probably
613 always include `gnus-thread-sort-by-number' in the list of sorting
614 functions -- preferably first.
615
616 Ready-made functions include `gnus-thread-sort-by-number',
617 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
618 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score' and
619 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function')."
620   :group 'gnus-summary-sort
621   :type '(repeat (choice (function-item gnus-thread-sort-by-number)
622                          (function-item gnus-thread-sort-by-author)
623                          (function-item gnus-thread-sort-by-subject)
624                          (function-item gnus-thread-sort-by-date)
625                          (function-item gnus-thread-sort-by-score)
626                          (function-item gnus-thread-sort-by-total-score)
627                          (function :tag "other"))))
628
629 (defcustom gnus-thread-score-function '+
630   "*Function used for calculating the total score of a thread.
631
632 The function is called with the scores of the article and each
633 subthread and should then return the score of the thread.
634
635 Some functions you can use are `+', `max', or `min'."
636   :group 'gnus-summary-sort
637   :type 'function)
638
639 (defcustom gnus-summary-expunge-below nil
640   "All articles that have a score less than this variable will be expunged.
641 This variable is local to the summary buffers."
642   :group 'gnus-score-default
643   :type '(choice (const :tag "off" nil)
644                  integer))
645
646 (defcustom gnus-thread-expunge-below nil
647   "All threads that have a total score less than this variable will be expunged.
648 See `gnus-thread-score-function' for en explanation of what a
649 \"thread score\" is.
650
651 This variable is local to the summary buffers."
652   :group 'gnus-threading
653   :group 'gnus-score-default
654   :type '(choice (const :tag "off" nil)
655                  integer))
656
657 (defcustom gnus-summary-mode-hook nil
658   "*A hook for Gnus summary mode.
659 This hook is run before any variables are set in the summary buffer."
660   :group 'gnus-summary-various
661   :type 'hook)
662
663 (defcustom gnus-summary-menu-hook nil
664   "*Hook run after the creation of the summary mode menu."
665   :group 'gnus-summary-visual
666   :type 'hook)
667
668 (defcustom gnus-summary-exit-hook nil
669   "*A hook called on exit from the summary buffer.
670 It will be called with point in the group buffer."
671   :group 'gnus-summary-exit
672   :type 'hook)
673
674 (defcustom gnus-summary-prepare-hook nil
675   "*A hook called after the summary buffer has been generated.
676 If you want to modify the summary buffer, you can use this hook."
677   :group 'gnus-summary-various
678   :type 'hook)
679
680 (defcustom gnus-summary-prepared-hook nil
681   "*A hook called as the last thing after the summary buffer has been generated."
682   :group 'gnus-summary-various
683   :type 'hook)
684
685 (defcustom gnus-summary-generate-hook nil
686   "*A hook run just before generating the summary buffer.
687 This hook is commonly used to customize threading variables and the
688 like."
689   :group 'gnus-summary-various
690   :type 'hook)
691
692 (defcustom gnus-select-group-hook nil
693   "*A hook called when a newsgroup is selected.
694
695 If you'd like to simplify subjects like the
696 `gnus-summary-next-same-subject' command does, you can use the
697 following hook:
698
699  (setq gnus-select-group-hook
700       (list
701         (lambda ()
702           (mapcar (lambda (header)
703                      (mail-header-set-subject
704                       header
705                       (gnus-simplify-subject
706                        (mail-header-subject header) 're-only)))
707                   gnus-newsgroup-headers))))"
708   :group 'gnus-group-select
709   :type 'hook)
710
711 (defcustom gnus-select-article-hook nil
712   "*A hook called when an article is selected."
713   :group 'gnus-summary-choose
714   :type 'hook)
715
716 (defcustom gnus-visual-mark-article-hook
717   (list 'gnus-highlight-selected-summary)
718   "*Hook run after selecting an article in the summary buffer.
719 It is meant to be used for highlighting the article in some way.  It
720 is not run if `gnus-visual' is nil."
721   :group 'gnus-summary-visual
722   :type 'hook)
723
724 (defcustom gnus-parse-headers-hook '(gnus-set-summary-default-charset)
725   "*A hook called before parsing the headers."
726   :group 'gnus-various
727   :type 'hook)
728
729 (defcustom gnus-exit-group-hook nil
730   "*A hook called when exiting summary mode.
731 This hook is not called from the non-updating exit commands like `Q'."
732   :group 'gnus-various
733   :type 'hook)
734
735 (defcustom gnus-summary-update-hook
736   (list 'gnus-summary-highlight-line)
737   "*A hook called when a summary line is changed.
738 The hook will not be called if `gnus-visual' is nil.
739
740 The default function `gnus-summary-highlight-line' will
741 highlight the line according to the `gnus-summary-highlight'
742 variable."
743   :group 'gnus-summary-visual
744   :type 'hook)
745
746 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
747   "*A hook called when an article is selected for the first time.
748 The hook is intended to mark an article as read (or unread)
749 automatically when it is selected."
750   :group 'gnus-summary-choose
751   :type 'hook)
752
753 (defcustom gnus-group-no-more-groups-hook nil
754   "*A hook run when returning to group mode having no more (unread) groups."
755   :group 'gnus-group-select
756   :type 'hook)
757
758 (defcustom gnus-ps-print-hook nil
759   "*A hook run before ps-printing something from Gnus."
760   :group 'gnus-summary
761   :type 'hook)
762
763 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
764   "Face used for highlighting the current article in the summary buffer."
765   :group 'gnus-summary-visual
766   :type 'face)
767
768 (defcustom gnus-summary-highlight
769   '(((= mark gnus-canceled-mark)
770      . gnus-summary-cancelled-face)
771     ((and (> score default)
772           (or (= mark gnus-dormant-mark)
773               (= mark gnus-ticked-mark)))
774      . gnus-summary-high-ticked-face)
775     ((and (< score default)
776           (or (= mark gnus-dormant-mark)
777               (= mark gnus-ticked-mark)))
778      . gnus-summary-low-ticked-face)
779     ((or (= mark gnus-dormant-mark)
780          (= mark gnus-ticked-mark))
781      . gnus-summary-normal-ticked-face)
782     ((and (> score default) (= mark gnus-ancient-mark))
783      . gnus-summary-high-ancient-face)
784     ((and (< score default) (= mark gnus-ancient-mark))
785      . gnus-summary-low-ancient-face)
786     ((= mark gnus-ancient-mark)
787      . gnus-summary-normal-ancient-face)
788     ((and (> score default) (= mark gnus-unread-mark))
789      . gnus-summary-high-unread-face)
790     ((and (< score default) (= mark gnus-unread-mark))
791      . gnus-summary-low-unread-face)
792     ((and (memq article gnus-newsgroup-incorporated)
793           (= mark gnus-unread-mark))
794      . gnus-summary-incorporated-face)
795     ((= mark gnus-unread-mark)
796      . gnus-summary-normal-unread-face)
797     ((and (> score default) (memq mark (list gnus-downloadable-mark
798                                              gnus-undownloaded-mark)))
799      . gnus-summary-high-unread-face)
800     ((and (< score default) (memq mark (list gnus-downloadable-mark
801                                              gnus-undownloaded-mark)))
802      . gnus-summary-low-unread-face)
803     ((memq mark (list gnus-downloadable-mark gnus-undownloaded-mark))
804      . gnus-summary-normal-unread-face)
805     ((> score default)
806      . gnus-summary-high-read-face)
807     ((< score default)
808      . gnus-summary-low-read-face)
809     (t
810      . gnus-summary-normal-read-face))
811   "*Controls the highlighting of summary buffer lines.
812
813 A list of (FORM . FACE) pairs.  When deciding how a a particular
814 summary line should be displayed, each form is evaluated.  The content
815 of the face field after the first true form is used.  You can change
816 how those summary lines are displayed, by editing the face field.
817
818 You can use the following variables in the FORM field.
819
820 score:   The articles score
821 default: The default article score.
822 below:   The score below which articles are automatically marked as read.
823 mark:    The articles mark."
824   :group 'gnus-summary-visual
825   :type '(repeat (cons (sexp :tag "Form" nil)
826                        face)))
827
828 (defcustom gnus-alter-header-function nil
829   "Function called to allow alteration of article header structures.
830 The function is called with one parameter, the article header vector,
831 which it may alter in any way.")
832
833 (defvar gnus-decode-encoded-word-function
834   (mime-find-field-decoder 'From 'nov)
835   "Variable that says which function should be used to decode a string with encoded words.")
836
837 (defcustom gnus-extra-headers nil
838   "*Extra headers to parse."
839   :group 'gnus-summary
840   :type '(repeat symbol))
841
842 (defcustom gnus-ignored-from-addresses
843   (and user-mail-address (regexp-quote user-mail-address))
844   "*Regexp of From headers that may be suppressed in favor of To headers."
845   :group 'gnus-summary
846   :type 'regexp)
847
848 (defcustom gnus-group-charset-alist
849   '(("^hk\\>\\|^tw\\>\\|\\<big5\\>" cn-big5)
850     ("^cn\\>\\|\\<chinese\\>" cn-gb-2312)
851     ("^fj\\>\\|^japan\\>" iso-2022-jp-2)
852     ("^tnn\\>\\|^pin\\>\\|^sci.lang.japan" iso-2022-7bit)
853     ("^relcom\\>" koi8-r)
854     ("^fido7\\>" koi8-r)
855     ("^\\(cz\\|hun\\|pl\\|sk\\|hr\\)\\>" iso-8859-2)
856     ("^israel\\>" iso-8859-1)
857     ("^han\\>" euc-kr)
858     ("^alt.chinese.text.big5\\>" chinese-big5)
859     ("^soc.culture.vietnamese\\>" vietnamese-viqr)
860     ("^\\(comp\\|rec\\|alt\\|sci\\|soc\\|news\\|gnu\\|bofh\\)\\>" iso-8859-1)
861     (".*" iso-8859-1))
862   "Alist of regexps (to match group names) and default charsets to be used when reading."
863   :type '(repeat (list (regexp :tag "Group")
864                        (symbol :tag "Charset")))
865   :group 'gnus-charset)
866
867 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
868   "List of charsets that should be ignored.
869 When these charsets are used in the \"charset\" parameter, the
870 default charset will be used instead."
871   :type '(repeat symbol)
872   :group 'gnus-charset)
873
874 (defcustom gnus-group-ignored-charsets-alist
875   '(("alt\\.chinese\\.text" iso-8859-1))
876   "Alist of regexps (to match group names) and charsets that should be ignored.
877 When these charsets are used in the \"charset\" parameter, the
878 default charset will be used instead."
879   :type '(repeat (cons (regexp :tag "Group")
880                        (repeat symbol)))
881   :group 'gnus-charset)
882
883 (defcustom gnus-group-highlight-words-alist nil
884   "Alist of group regexps and highlight regexps.
885 This variable uses the same syntax as `gnus-emphasis-alist'."
886   :type '(repeat (cons (regexp :tag "Group")
887                        (repeat (list (regexp :tag "Highlight regexp")
888                                      (number :tag "Group for entire word" 0)
889                                      (number :tag "Group for displayed part" 0)
890                                      (symbol :tag "Face"
891                                              gnus-emphasis-highlight-words)))))
892   :group 'gnus-summary-visual)
893
894 (defcustom gnus-use-wheel nil
895   "Use Intelli-mouse on summary movement"
896   :type 'boolean
897   :group 'gnus-summary-maneuvering)
898
899 (defcustom gnus-wheel-scroll-amount '(5 . 1)
900   "Amount to scroll messages by spinning the mouse wheel.
901 This is actually a cons cell, where the first item is the amount to scroll
902 on a normal wheel event, and the second is the amount to scroll when the
903 wheel is moved with the shift key depressed."
904   :type '(cons (integer :tag "Shift") integer)
905   :group 'gnus-summary-maneuvering)
906
907 (defcustom gnus-wheel-edge-resistance 2
908   "How hard it should be to change the current article
909 by moving the mouse over the edge of the article window."
910   :type 'integer
911   :group 'gnus-summary-maneuvering)
912
913 (defcustom gnus-summary-show-article-charset-alist
914   nil
915   "Alist of number and charset.
916 The article will be shown with the charset corresponding to the
917 numbered argument.
918 For example: ((1 . cn-gb-2312) (2 . big5))."
919   :type '(repeat (cons (number :tag "Argument" 1)
920                        (symbol :tag "Charset")))
921   :group 'gnus-charset)
922
923 (defcustom gnus-preserve-marks t
924   "Whether marks are preserved when moving, copying and respooling messages."
925   :type 'boolean
926   :group 'gnus-summary-marks)
927
928 (defcustom gnus-alter-articles-to-read-function nil
929   "Function to be called to alter the list of articles to be selected."
930   :type 'function
931   :group 'gnus-summary)
932
933 (defcustom gnus-orphan-score nil
934   "*All orphans get this score added.  Set in the score file."
935   :group 'gnus-score-default
936   :type '(choice (const nil)
937                  integer))
938
939 ;;; Internal variables
940
941 (defvar gnus-article-mime-handles nil)
942 (defvar gnus-article-decoded-p nil)
943 (defvar gnus-scores-exclude-files nil)
944 (defvar gnus-page-broken nil)
945 (defvar gnus-inhibit-mime-unbuttonizing nil)
946
947 (defvar gnus-original-article nil)
948 (defvar gnus-article-internal-prepare-hook nil)
949 (defvar gnus-newsgroup-process-stack nil)
950
951 (defvar gnus-thread-indent-array nil)
952 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
953 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
954   "Function called to sort the articles within a thread after it has been gathered together.")
955
956 ;; Avoid highlighting in kill files.
957 (defvar gnus-summary-inhibit-highlight nil)
958 (defvar gnus-newsgroup-selected-overlay nil)
959 (defvar gnus-inhibit-limiting nil)
960 (defvar gnus-newsgroup-adaptive-score-file nil)
961 (defvar gnus-current-score-file nil)
962 (defvar gnus-current-move-group nil)
963 (defvar gnus-current-copy-group nil)
964 (defvar gnus-current-crosspost-group nil)
965
966 (defvar gnus-newsgroup-dependencies nil)
967 (defvar gnus-newsgroup-adaptive nil)
968 (defvar gnus-summary-display-article-function nil)
969 (defvar gnus-summary-highlight-line-function nil
970   "Function called after highlighting a summary line.")
971
972 (defvar gnus-summary-line-format-alist
973   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
974     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
975     (?s gnus-tmp-subject-or-nil ?s)
976     (?n gnus-tmp-name ?s)
977     (?A (std11-address-string
978          (car (mime-entity-read-field gnus-tmp-header 'From))) ?s)
979     (?a (or (std11-full-name-string
980              (car (mime-entity-read-field gnus-tmp-header 'From)))
981             gnus-tmp-from) ?s)
982     (?F gnus-tmp-from ?s)
983     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
984     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
985     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
986     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
987     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
988     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
989     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
990     (?L gnus-tmp-lines ?d)
991     (?I gnus-tmp-indentation ?s)
992     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
993     (?R gnus-tmp-replied ?c)
994     (?\[ gnus-tmp-opening-bracket ?c)
995     (?\] gnus-tmp-closing-bracket ?c)
996     (?\> (make-string gnus-tmp-level ? ) ?s)
997     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
998     (?i gnus-tmp-score ?d)
999     (?z gnus-tmp-score-char ?c)
1000     (?l (bbb-grouplens-score gnus-tmp-header) ?s)
1001     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1002     (?U gnus-tmp-unread ?c)
1003     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header) ?s)
1004     (?t (gnus-summary-number-of-articles-in-thread
1005          (and (boundp 'thread) (car thread)) gnus-tmp-level)
1006         ?d)
1007     (?e (gnus-summary-number-of-articles-in-thread
1008          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1009         ?c)
1010     (?u gnus-tmp-user-defined ?s)
1011     (?P (gnus-pick-line-number) ?d))
1012   "An alist of format specifications that can appear in summary lines.
1013 These are paired with what variables they correspond with, along with
1014 the type of the variable (string, integer, character, etc).")
1015
1016 (defvar gnus-summary-dummy-line-format-alist
1017   `((?S gnus-tmp-subject ?s)
1018     (?N gnus-tmp-number ?d)
1019     (?u gnus-tmp-user-defined ?s)))
1020
1021 (defvar gnus-summary-mode-line-format-alist
1022   `((?G gnus-tmp-group-name ?s)
1023     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1024     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1025     (?A gnus-tmp-article-number ?d)
1026     (?Z gnus-tmp-unread-and-unselected ?s)
1027     (?V gnus-version ?s)
1028     (?U gnus-tmp-unread-and-unticked ?d)
1029     (?S gnus-tmp-subject ?s)
1030     (?e gnus-tmp-unselected ?d)
1031     (?u gnus-tmp-user-defined ?s)
1032     (?d (length gnus-newsgroup-dormant) ?d)
1033     (?t (length gnus-newsgroup-marked) ?d)
1034     (?r (length gnus-newsgroup-reads) ?d)
1035     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1036     (?E gnus-newsgroup-expunged-tally ?d)
1037     (?s (gnus-current-score-file-nondirectory) ?s)))
1038
1039 (defvar gnus-last-search-regexp nil
1040   "Default regexp for article search command.")
1041
1042 (defvar gnus-summary-search-article-matched-data nil
1043   "Last matched data of article search command.  It is the local variable
1044 in `gnus-article-buffer' which consists of the list of start position,
1045 end position and text.")
1046
1047 (defvar gnus-last-shell-command nil
1048   "Default shell command on article.")
1049
1050 (defvar gnus-newsgroup-begin nil)
1051 (defvar gnus-newsgroup-end nil)
1052 (defvar gnus-newsgroup-last-rmail nil)
1053 (defvar gnus-newsgroup-last-mail nil)
1054 (defvar gnus-newsgroup-last-folder nil)
1055 (defvar gnus-newsgroup-last-file nil)
1056 (defvar gnus-newsgroup-auto-expire nil)
1057 (defvar gnus-newsgroup-active nil)
1058
1059 (defvar gnus-newsgroup-data nil)
1060 (defvar gnus-newsgroup-data-reverse nil)
1061 (defvar gnus-newsgroup-limit nil)
1062 (defvar gnus-newsgroup-limits nil)
1063
1064 (defvar gnus-newsgroup-unreads nil
1065   "List of unread articles in the current newsgroup.")
1066
1067 (defvar gnus-newsgroup-unselected nil
1068   "List of unselected unread articles in the current newsgroup.")
1069
1070 (defvar gnus-newsgroup-reads nil
1071   "Alist of read articles and article marks in the current newsgroup.")
1072
1073 (defvar gnus-newsgroup-expunged-tally nil)
1074
1075 (defvar gnus-newsgroup-marked nil
1076   "List of ticked articles in the current newsgroup (a subset of unread art).")
1077
1078 (defvar gnus-newsgroup-killed nil
1079   "List of ranges of articles that have been through the scoring process.")
1080
1081 (defvar gnus-newsgroup-cached nil
1082   "List of articles that come from the article cache.")
1083
1084 (defvar gnus-newsgroup-saved nil
1085   "List of articles that have been saved.")
1086
1087 (defvar gnus-newsgroup-kill-headers nil)
1088
1089 (defvar gnus-newsgroup-replied nil
1090   "List of articles that have been replied to in the current newsgroup.")
1091
1092 (defvar gnus-newsgroup-expirable nil
1093   "List of articles in the current newsgroup that can be expired.")
1094
1095 (defvar gnus-newsgroup-processable nil
1096   "List of articles in the current newsgroup that can be processed.")
1097
1098 (defvar gnus-newsgroup-downloadable nil
1099   "List of articles in the current newsgroup that can be processed.")
1100
1101 (defvar gnus-newsgroup-undownloaded nil
1102   "List of articles in the current newsgroup that haven't been downloaded..")
1103
1104 (defvar gnus-newsgroup-unsendable nil
1105   "List of articles in the current newsgroup that won't be sent.")
1106
1107 (defvar gnus-newsgroup-bookmarks nil
1108   "List of articles in the current newsgroup that have bookmarks.")
1109
1110 (defvar gnus-newsgroup-dormant nil
1111   "List of dormant articles in the current newsgroup.")
1112
1113 (defvar gnus-newsgroup-scored nil
1114   "List of scored articles in the current newsgroup.")
1115
1116 (defvar gnus-newsgroup-incorporated nil
1117   "List of incorporated articles in the current newsgroup.")
1118
1119 (defvar gnus-newsgroup-headers nil
1120   "List of article headers in the current newsgroup.")
1121
1122 (defvar gnus-newsgroup-threads nil)
1123
1124 (defvar gnus-newsgroup-prepared nil
1125   "Whether the current group has been prepared properly.")
1126
1127 (defvar gnus-newsgroup-ancient nil
1128   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1129
1130 (defvar gnus-newsgroup-sparse nil)
1131
1132 (defvar gnus-current-article nil)
1133 (defvar gnus-article-current nil)
1134 (defvar gnus-current-headers nil)
1135 (defvar gnus-have-all-headers nil)
1136 (defvar gnus-last-article nil)
1137 (defvar gnus-newsgroup-history nil)
1138 (defvar gnus-newsgroup-charset nil)
1139 (defvar gnus-newsgroup-ephemeral-charset nil)
1140 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1141
1142 (defconst gnus-summary-local-variables
1143   '(gnus-newsgroup-name
1144     gnus-newsgroup-begin gnus-newsgroup-end
1145     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1146     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1147     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1148     gnus-newsgroup-unselected gnus-newsgroup-marked
1149     gnus-newsgroup-reads gnus-newsgroup-saved
1150     gnus-newsgroup-replied gnus-newsgroup-expirable
1151     gnus-newsgroup-processable gnus-newsgroup-killed
1152     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1153     gnus-newsgroup-unsendable
1154     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1155     gnus-newsgroup-headers gnus-newsgroup-threads
1156     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1157     gnus-current-article gnus-current-headers gnus-have-all-headers
1158     gnus-last-article gnus-article-internal-prepare-hook
1159     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1160     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1161     gnus-thread-expunge-below
1162     gnus-score-alist gnus-current-score-file
1163     (gnus-summary-expunge-below . global)
1164     (gnus-summary-mark-below . global)
1165     (gnus-orphan-score . global)
1166     gnus-newsgroup-active gnus-scores-exclude-files
1167     gnus-newsgroup-history gnus-newsgroup-ancient
1168     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1169     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1170     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1171     (gnus-newsgroup-expunged-tally . 0)
1172     gnus-cache-removable-articles gnus-newsgroup-cached
1173     gnus-newsgroup-data gnus-newsgroup-data-reverse
1174     gnus-newsgroup-limit gnus-newsgroup-limits
1175     gnus-newsgroup-charset
1176     gnus-newsgroup-incorporated)
1177   "Variables that are buffer-local to the summary buffers.")
1178
1179 ;; Byte-compiler warning.
1180 (defvar gnus-article-mode-map)
1181
1182 ;; Subject simplification.
1183
1184 (defun gnus-simplify-whitespace (str)
1185   "Remove excessive whitespace from STR."
1186   (let ((mystr str))
1187     ;; Multiple spaces.
1188     (while (string-match "[ \t][ \t]+" mystr)
1189       (setq mystr (concat (substring mystr 0 (match-beginning 0))
1190                           " "
1191                           (substring mystr (match-end 0)))))
1192     ;; Leading spaces.
1193     (when (string-match "^[ \t]+" mystr)
1194       (setq mystr (substring mystr (match-end 0))))
1195     ;; Trailing spaces.
1196     (when (string-match "[ \t]+$" mystr)
1197       (setq mystr (substring mystr 0 (match-beginning 0))))
1198     mystr))
1199
1200 (defsubst gnus-simplify-subject-re (subject)
1201   "Remove \"Re:\" from subject lines."
1202   (if (string-match "^[Rr][Ee]: *" subject)
1203       (substring subject (match-end 0))
1204     subject))
1205
1206 (defun gnus-simplify-subject (subject &optional re-only)
1207   "Remove `Re:' and words in parentheses.
1208 If RE-ONLY is non-nil, strip leading `Re:'s only."
1209   (let ((case-fold-search t))           ;Ignore case.
1210     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1211     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1212       (setq subject (substring subject (match-end 0))))
1213     ;; Remove uninteresting prefixes.
1214     (when (and (not re-only)
1215                gnus-simplify-ignored-prefixes
1216                (string-match gnus-simplify-ignored-prefixes subject))
1217       (setq subject (substring subject (match-end 0))))
1218     ;; Remove words in parentheses from end.
1219     (unless re-only
1220       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1221         (setq subject (substring subject 0 (match-beginning 0)))))
1222     ;; Return subject string.
1223     subject))
1224
1225 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1226 ;; all whitespace.
1227 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1228   (goto-char (point-min))
1229   (while (re-search-forward regexp nil t)
1230     (replace-match (or newtext ""))))
1231
1232 (defun gnus-simplify-buffer-fuzzy ()
1233   "Simplify string in the buffer fuzzily.
1234 The string in the accessible portion of the current buffer is simplified.
1235 It is assumed to be a single-line subject.
1236 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1237 matter is removed.  Additional things can be deleted by setting
1238 `gnus-simplify-subject-fuzzy-regexp'."
1239   (let ((case-fold-search t)
1240         (modified-tick))
1241     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1242
1243     (while (not (eq modified-tick (buffer-modified-tick)))
1244       (setq modified-tick (buffer-modified-tick))
1245       (cond
1246        ((listp gnus-simplify-subject-fuzzy-regexp)
1247         (mapcar 'gnus-simplify-buffer-fuzzy-step
1248                 gnus-simplify-subject-fuzzy-regexp))
1249        (gnus-simplify-subject-fuzzy-regexp
1250         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1251       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1252       (gnus-simplify-buffer-fuzzy-step
1253        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1254       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1255
1256     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1257     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1258     (gnus-simplify-buffer-fuzzy-step " $")
1259     (gnus-simplify-buffer-fuzzy-step "^ +")))
1260
1261 (defun gnus-simplify-subject-fuzzy (subject)
1262   "Simplify a subject string fuzzily.
1263 See `gnus-simplify-buffer-fuzzy' for details."
1264   (save-excursion
1265     (gnus-set-work-buffer)
1266     (let ((case-fold-search t))
1267       ;; Remove uninteresting prefixes.
1268       (when (and gnus-simplify-ignored-prefixes
1269                  (string-match gnus-simplify-ignored-prefixes subject))
1270         (setq subject (substring subject (match-end 0))))
1271       (insert subject)
1272       (inline (gnus-simplify-buffer-fuzzy))
1273       (buffer-string))))
1274
1275 (defsubst gnus-simplify-subject-fully (subject)
1276   "Simplify a subject string according to gnus-summary-gather-subject-limit."
1277   (cond
1278    (gnus-simplify-subject-functions
1279     (gnus-map-function gnus-simplify-subject-functions subject))
1280    ((null gnus-summary-gather-subject-limit)
1281     (gnus-simplify-subject-re subject))
1282    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1283     (gnus-simplify-subject-fuzzy subject))
1284    ((numberp gnus-summary-gather-subject-limit)
1285     (gnus-limit-string (gnus-simplify-subject-re subject)
1286                        gnus-summary-gather-subject-limit))
1287    (t
1288     subject)))
1289
1290 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1291   "Check whether two subjects are equal.
1292 If optional argument simple-first is t, first argument is already
1293 simplified."
1294   (cond
1295    ((null simple-first)
1296     (equal (gnus-simplify-subject-fully s1)
1297            (gnus-simplify-subject-fully s2)))
1298    (t
1299     (equal s1
1300            (gnus-simplify-subject-fully s2)))))
1301
1302 (defun gnus-summary-bubble-group ()
1303   "Increase the score of the current group.
1304 This is a handy function to add to `gnus-summary-exit-hook' to
1305 increase the score of each group you read."
1306   (gnus-group-add-score gnus-newsgroup-name))
1307
1308 \f
1309 ;;;
1310 ;;; Gnus summary mode
1311 ;;;
1312
1313 (put 'gnus-summary-mode 'mode-class 'special)
1314
1315 (when t
1316   ;; Non-orthogonal keys
1317
1318   (gnus-define-keys gnus-summary-mode-map
1319     " " gnus-summary-next-page
1320     "\177" gnus-summary-prev-page
1321     [delete] gnus-summary-prev-page
1322     [backspace] gnus-summary-prev-page
1323     "\r" gnus-summary-scroll-up
1324     "\M-\r" gnus-summary-scroll-down
1325     "n" gnus-summary-next-unread-article
1326     "p" gnus-summary-prev-unread-article
1327     "N" gnus-summary-next-article
1328     "P" gnus-summary-prev-article
1329     "\M-\C-n" gnus-summary-next-same-subject
1330     "\M-\C-p" gnus-summary-prev-same-subject
1331     "\M-n" gnus-summary-next-unread-subject
1332     "\M-p" gnus-summary-prev-unread-subject
1333     "." gnus-summary-first-unread-article
1334     "," gnus-summary-best-unread-article
1335     "\M-s" gnus-summary-search-article-forward
1336     "\M-r" gnus-summary-search-article-backward
1337     "<" gnus-summary-beginning-of-article
1338     ">" gnus-summary-end-of-article
1339     "j" gnus-summary-goto-article
1340     "^" gnus-summary-refer-parent-article
1341     "\M-^" gnus-summary-refer-article
1342     "u" gnus-summary-tick-article-forward
1343     "!" gnus-summary-tick-article-forward
1344     "U" gnus-summary-tick-article-backward
1345     "d" gnus-summary-mark-as-read-forward
1346     "D" gnus-summary-mark-as-read-backward
1347     "E" gnus-summary-mark-as-expirable
1348     "\M-u" gnus-summary-clear-mark-forward
1349     "\M-U" gnus-summary-clear-mark-backward
1350     "k" gnus-summary-kill-same-subject-and-select
1351     "\C-k" gnus-summary-kill-same-subject
1352     "\M-\C-k" gnus-summary-kill-thread
1353     "\M-\C-l" gnus-summary-lower-thread
1354     "e" gnus-summary-edit-article
1355     "#" gnus-summary-mark-as-processable
1356     "\M-#" gnus-summary-unmark-as-processable
1357     "\M-\C-t" gnus-summary-toggle-threads
1358     "\M-\C-s" gnus-summary-show-thread
1359     "\M-\C-h" gnus-summary-hide-thread
1360     "\M-\C-f" gnus-summary-next-thread
1361     "\M-\C-b" gnus-summary-prev-thread
1362     [(meta down)] gnus-summary-next-thread
1363     [(meta up)] gnus-summary-prev-thread
1364     "\M-\C-u" gnus-summary-up-thread
1365     "\M-\C-d" gnus-summary-down-thread
1366     "&" gnus-summary-execute-command
1367     "c" gnus-summary-catchup-and-exit
1368     "\C-w" gnus-summary-mark-region-as-read
1369     "\C-t" gnus-summary-toggle-truncation
1370     "?" gnus-summary-mark-as-dormant
1371     "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1372     "\C-c\C-s\C-n" gnus-summary-sort-by-number
1373     "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1374     "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1375     "\C-c\C-s\C-a" gnus-summary-sort-by-author
1376     "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1377     "\C-c\C-s\C-d" gnus-summary-sort-by-date
1378     "\C-c\C-s\C-i" gnus-summary-sort-by-score
1379     "=" gnus-summary-expand-window
1380     "\C-x\C-s" gnus-summary-reselect-current-group
1381     "\M-g" gnus-summary-rescan-group
1382     "w" gnus-summary-stop-page-breaking
1383     "\C-c\C-r" gnus-summary-caesar-message
1384     "\M-t" gnus-summary-toggle-mime
1385     "f" gnus-summary-followup
1386     "F" gnus-summary-followup-with-original
1387     "C" gnus-summary-cancel-article
1388     "r" gnus-summary-reply
1389     "R" gnus-summary-reply-with-original
1390     "\C-c\C-f" gnus-summary-mail-forward
1391     "o" gnus-summary-save-article
1392     "\C-o" gnus-summary-save-article-mail
1393     "|" gnus-summary-pipe-output
1394     "\M-k" gnus-summary-edit-local-kill
1395     "\M-K" gnus-summary-edit-global-kill
1396     ;; "V" gnus-version
1397     "\C-c\C-d" gnus-summary-describe-group
1398     "q" gnus-summary-exit
1399     "Q" gnus-summary-exit-no-update
1400     "\C-c\C-i" gnus-info-find-node
1401     gnus-mouse-2 gnus-mouse-pick-article
1402     "m" gnus-summary-mail-other-window
1403     "a" gnus-summary-post-news
1404     "x" gnus-summary-limit-to-unread
1405     "s" gnus-summary-isearch-article
1406     "t" gnus-article-toggle-headers
1407     "g" gnus-summary-show-article
1408     "l" gnus-summary-goto-last-article
1409     "v" gnus-summary-preview-mime-message
1410     "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1411     "\C-d" gnus-summary-enter-digest-group
1412     "\M-\C-d" gnus-summary-read-document
1413     "\M-\C-e" gnus-summary-edit-parameters
1414     "\M-\C-a" gnus-summary-customize-parameters
1415     "\C-c\C-b" gnus-bug
1416     "*" gnus-cache-enter-article
1417     "\M-*" gnus-cache-remove-article
1418     "\M-&" gnus-summary-universal-argument
1419     "\C-l" gnus-recenter
1420     "I" gnus-summary-increase-score
1421     "L" gnus-summary-lower-score
1422     "\M-i" gnus-symbolic-argument
1423     "h" gnus-summary-select-article-buffer
1424
1425     "V" gnus-summary-score-map
1426     "X" gnus-uu-extract-map
1427     "S" gnus-summary-send-map)
1428
1429   ;; Sort of orthogonal keymap
1430   (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1431     "t" gnus-summary-tick-article-forward
1432     "!" gnus-summary-tick-article-forward
1433     "d" gnus-summary-mark-as-read-forward
1434     "r" gnus-summary-mark-as-read-forward
1435     "c" gnus-summary-clear-mark-forward
1436     " " gnus-summary-clear-mark-forward
1437     "e" gnus-summary-mark-as-expirable
1438     "x" gnus-summary-mark-as-expirable
1439     "?" gnus-summary-mark-as-dormant
1440     "b" gnus-summary-set-bookmark
1441     "B" gnus-summary-remove-bookmark
1442     "#" gnus-summary-mark-as-processable
1443     "\M-#" gnus-summary-unmark-as-processable
1444     "S" gnus-summary-limit-include-expunged
1445     "C" gnus-summary-catchup
1446     "H" gnus-summary-catchup-to-here
1447     "\C-c" gnus-summary-catchup-all
1448     "k" gnus-summary-kill-same-subject-and-select
1449     "K" gnus-summary-kill-same-subject
1450     "P" gnus-uu-mark-map)
1451
1452   (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1453     "c" gnus-summary-clear-above
1454     "u" gnus-summary-tick-above
1455     "m" gnus-summary-mark-above
1456     "k" gnus-summary-kill-below)
1457
1458   (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1459     "/" gnus-summary-limit-to-subject
1460     "n" gnus-summary-limit-to-articles
1461     "w" gnus-summary-pop-limit
1462     "s" gnus-summary-limit-to-subject
1463     "a" gnus-summary-limit-to-author
1464     "u" gnus-summary-limit-to-unread
1465     "m" gnus-summary-limit-to-marks
1466     "M" gnus-summary-limit-exclude-marks
1467     "v" gnus-summary-limit-to-score
1468     "*" gnus-summary-limit-include-cached
1469     "D" gnus-summary-limit-include-dormant
1470     "T" gnus-summary-limit-include-thread
1471     "d" gnus-summary-limit-exclude-dormant
1472     "t" gnus-summary-limit-to-age
1473     "x" gnus-summary-limit-to-extra
1474     "E" gnus-summary-limit-include-expunged
1475     "c" gnus-summary-limit-exclude-childless-dormant
1476     "C" gnus-summary-limit-mark-excluded-as-read)
1477
1478   (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1479     "n" gnus-summary-next-unread-article
1480     "p" gnus-summary-prev-unread-article
1481     "N" gnus-summary-next-article
1482     "P" gnus-summary-prev-article
1483     "\C-n" gnus-summary-next-same-subject
1484     "\C-p" gnus-summary-prev-same-subject
1485     "\M-n" gnus-summary-next-unread-subject
1486     "\M-p" gnus-summary-prev-unread-subject
1487     "f" gnus-summary-first-unread-article
1488     "b" gnus-summary-best-unread-article
1489     "j" gnus-summary-goto-article
1490     "g" gnus-summary-goto-subject
1491     "l" gnus-summary-goto-last-article
1492     "o" gnus-summary-pop-article)
1493
1494   (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1495     "k" gnus-summary-kill-thread
1496     "l" gnus-summary-lower-thread
1497     "i" gnus-summary-raise-thread
1498     "T" gnus-summary-toggle-threads
1499     "t" gnus-summary-rethread-current
1500     "^" gnus-summary-reparent-thread
1501     "s" gnus-summary-show-thread
1502     "S" gnus-summary-show-all-threads
1503     "h" gnus-summary-hide-thread
1504     "H" gnus-summary-hide-all-threads
1505     "n" gnus-summary-next-thread
1506     "p" gnus-summary-prev-thread
1507     "u" gnus-summary-up-thread
1508     "o" gnus-summary-top-thread
1509     "d" gnus-summary-down-thread
1510     "#" gnus-uu-mark-thread
1511     "\M-#" gnus-uu-unmark-thread)
1512
1513   (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1514     "g" gnus-summary-prepare
1515     "c" gnus-summary-insert-cached-articles)
1516
1517   (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1518     "c" gnus-summary-catchup-and-exit
1519     "C" gnus-summary-catchup-all-and-exit
1520     "E" gnus-summary-exit-no-update
1521     "J" gnus-summary-jump-to-other-group
1522     "Q" gnus-summary-exit
1523     "Z" gnus-summary-exit
1524     "n" gnus-summary-catchup-and-goto-next-group
1525     "R" gnus-summary-reselect-current-group
1526     "G" gnus-summary-rescan-group
1527     "N" gnus-summary-next-group
1528     "s" gnus-summary-save-newsrc
1529     "P" gnus-summary-prev-group)
1530
1531   (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1532     " " gnus-summary-next-page
1533     "n" gnus-summary-next-page
1534     "\177" gnus-summary-prev-page
1535     [delete] gnus-summary-prev-page
1536     "p" gnus-summary-prev-page
1537     "\r" gnus-summary-scroll-up
1538     "\M-\r" gnus-summary-scroll-down
1539     "<" gnus-summary-beginning-of-article
1540     ">" gnus-summary-end-of-article
1541     "b" gnus-summary-beginning-of-article
1542     "e" gnus-summary-end-of-article
1543     "^" gnus-summary-refer-parent-article
1544     "r" gnus-summary-refer-parent-article
1545     "D" gnus-summary-enter-digest-group
1546     "R" gnus-summary-refer-references
1547     "T" gnus-summary-refer-thread
1548     "g" gnus-summary-show-article
1549     "s" gnus-summary-isearch-article
1550     "P" gnus-summary-print-article
1551     "t" gnus-article-babel
1552     "d" gnus-summary-decrypt-article
1553     "v" gnus-summary-verify-article)
1554
1555   (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1556     "b" gnus-article-add-buttons
1557     "B" gnus-article-add-buttons-to-head
1558     "o" gnus-article-treat-overstrike
1559     "e" gnus-article-emphasize
1560     "w" gnus-article-fill-cited-article
1561     "Q" gnus-article-fill-long-lines
1562     "C" gnus-article-capitalize-sentences
1563     "c" gnus-article-remove-cr
1564     "Z" gnus-article-decode-HZ
1565     "f" gnus-article-display-x-face
1566     "l" gnus-summary-stop-page-breaking
1567     "r" gnus-summary-caesar-message
1568     "t" gnus-article-toggle-headers
1569     "v" gnus-summary-verbose-headers
1570     "m" gnus-summary-toggle-mime
1571     "H" gnus-article-strip-headers-in-body
1572     "d" gnus-article-treat-dumbquotes
1573     "s" gnus-smiley-display)
1574
1575   (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1576     "a" gnus-article-hide
1577     "h" gnus-article-toggle-headers
1578     "b" gnus-article-hide-boring-headers
1579     "s" gnus-article-hide-signature
1580     "c" gnus-article-hide-citation
1581     "C" gnus-article-hide-citation-in-followups
1582     "l" gnus-article-hide-list-identifiers
1583     "p" gnus-article-hide-pgp
1584     "B" gnus-article-strip-banner
1585     "P" gnus-article-hide-pem
1586     "\C-c" gnus-article-hide-citation-maybe)
1587
1588   (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1589     "a" gnus-article-highlight
1590     "h" gnus-article-highlight-headers
1591     "c" gnus-article-highlight-citation
1592     "s" gnus-article-highlight-signature)
1593
1594   (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1595     "z" gnus-article-date-ut
1596     "u" gnus-article-date-ut
1597     "l" gnus-article-date-local
1598     "e" gnus-article-date-lapsed
1599     "o" gnus-article-date-original
1600     "i" gnus-article-date-iso8601
1601     "s" gnus-article-date-user)
1602
1603   (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1604     "t" gnus-article-remove-trailing-blank-lines
1605     "l" gnus-article-strip-leading-blank-lines
1606     "m" gnus-article-strip-multiple-blank-lines
1607     "a" gnus-article-strip-blank-lines
1608     "A" gnus-article-strip-all-blank-lines
1609     "s" gnus-article-strip-leading-space
1610     "e" gnus-article-strip-trailing-space)
1611
1612   (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1613     "v" gnus-version
1614     "f" gnus-summary-fetch-faq
1615     "d" gnus-summary-describe-group
1616     "h" gnus-summary-describe-briefly
1617     "i" gnus-info-find-node)
1618
1619   (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
1620     "e" gnus-summary-expire-articles
1621     "\M-\C-e" gnus-summary-expire-articles-now
1622     "\177" gnus-summary-delete-article
1623     [delete] gnus-summary-delete-article
1624     [backspace] gnus-summary-delete-article
1625     "m" gnus-summary-move-article
1626     "r" gnus-summary-respool-article
1627     "w" gnus-summary-edit-article
1628     "c" gnus-summary-copy-article
1629     "B" gnus-summary-crosspost-article
1630     "q" gnus-summary-respool-query
1631     "t" gnus-summary-respool-trace
1632     "i" gnus-summary-import-article
1633     "p" gnus-summary-article-posted-p)
1634
1635   (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
1636     "o" gnus-summary-save-article
1637     "m" gnus-summary-save-article-mail
1638     "F" gnus-summary-write-article-file
1639     "r" gnus-summary-save-article-rmail
1640     "f" gnus-summary-save-article-file
1641     "b" gnus-summary-save-article-body-file
1642     "h" gnus-summary-save-article-folder
1643     "v" gnus-summary-save-article-vm
1644     "p" gnus-summary-pipe-output
1645     "s" gnus-soup-add-article)
1646
1647   (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
1648     "b" gnus-summary-display-buttonized
1649     "m" gnus-summary-repair-multipart
1650     "v" gnus-article-view-part
1651     "o" gnus-article-save-part
1652     "c" gnus-article-copy-part
1653     "e" gnus-article-externalize-part
1654     "i" gnus-article-inline-part
1655     "|" gnus-article-pipe-part))
1656
1657 (defun gnus-summary-make-menu-bar ()
1658   (gnus-turn-off-edit-menu 'summary)
1659
1660   (unless (boundp 'gnus-summary-misc-menu)
1661
1662     (easy-menu-define
1663      gnus-summary-kill-menu gnus-summary-mode-map ""
1664      (cons
1665       "Score"
1666       (nconc
1667        (list
1668         ["Enter score..." gnus-summary-score-entry t]
1669         ["Customize" gnus-score-customize t])
1670        (gnus-make-score-map 'increase)
1671        (gnus-make-score-map 'lower)
1672        '(("Mark"
1673           ["Kill below" gnus-summary-kill-below t]
1674           ["Mark above" gnus-summary-mark-above t]
1675           ["Tick above" gnus-summary-tick-above t]
1676           ["Clear above" gnus-summary-clear-above t])
1677          ["Current score" gnus-summary-current-score t]
1678          ["Set score" gnus-summary-set-score t]
1679          ["Switch current score file..." gnus-score-change-score-file t]
1680          ["Set mark below..." gnus-score-set-mark-below t]
1681          ["Set expunge below..." gnus-score-set-expunge-below t]
1682          ["Edit current score file" gnus-score-edit-current-scores t]
1683          ["Edit score file" gnus-score-edit-file t]
1684          ["Trace score" gnus-score-find-trace t]
1685          ["Find words" gnus-score-find-favourite-words t]
1686          ["Rescore buffer" gnus-summary-rescore t]
1687          ["Increase score..." gnus-summary-increase-score t]
1688          ["Lower score..." gnus-summary-lower-score t]))))
1689
1690     ;; Define both the Article menu in the summary buffer and the equivalent
1691     ;; Commands menu in the article buffer here for consistency.
1692     (let ((innards
1693            '(("Hide"
1694               ["All" gnus-article-hide t]
1695               ["Headers" gnus-article-toggle-headers t]
1696               ["Signature" gnus-article-hide-signature t]
1697               ["Citation" gnus-article-hide-citation t]
1698               ["List identifiers" gnus-article-hide-list-identifiers t]
1699               ["PGP" gnus-article-hide-pgp t]
1700               ["Banner" gnus-article-strip-banner t]
1701               ["Boring headers" gnus-article-hide-boring-headers t])
1702              ("Highlight"
1703               ["All" gnus-article-highlight t]
1704               ["Headers" gnus-article-highlight-headers t]
1705               ["Signature" gnus-article-highlight-signature t]
1706               ["Citation" gnus-article-highlight-citation t])
1707              ("Date"
1708               ["Local" gnus-article-date-local t]
1709               ["ISO8601" gnus-article-date-iso8601 t]
1710               ["UT" gnus-article-date-ut t]
1711               ["Original" gnus-article-date-original t]
1712               ["Lapsed" gnus-article-date-lapsed t]
1713               ["User-defined" gnus-article-date-user t])
1714              ("Washing"
1715               ("Remove Blanks"
1716                ["Leading" gnus-article-strip-leading-blank-lines t]
1717                ["Multiple" gnus-article-strip-multiple-blank-lines t]
1718                ["Trailing" gnus-article-remove-trailing-blank-lines t]
1719                ["All of the above" gnus-article-strip-blank-lines t]
1720                ["All" gnus-article-strip-all-blank-lines t]
1721                ["Leading space" gnus-article-strip-leading-space t]
1722                ["Trailing space" gnus-article-strip-trailing-space t])
1723               ["Overstrike" gnus-article-treat-overstrike t]
1724               ["Dumb quotes" gnus-article-treat-dumbquotes t]
1725               ["Emphasis" gnus-article-emphasize t]
1726               ["Word wrap" gnus-article-fill-cited-article t]
1727               ["Fill long lines" gnus-article-fill-long-lines t]
1728               ["Capitalize sentences" gnus-article-capitalize-sentences t]
1729               ["CR" gnus-article-remove-cr t]
1730               ["Show X-Face" gnus-article-display-x-face t]
1731               ["Rot 13" gnus-summary-caesar-message t]
1732               ["Unix pipe" gnus-summary-pipe-message t]
1733               ["Add buttons" gnus-article-add-buttons t]
1734               ["Add buttons to head" gnus-article-add-buttons-to-head t]
1735               ["Stop page breaking" gnus-summary-stop-page-breaking t]
1736               ["Toggle MIME" gnus-summary-toggle-mime t]
1737               ["Verbose header" gnus-summary-verbose-headers t]
1738               ["Toggle header" gnus-summary-toggle-header t]
1739               ["Toggle smileys" gnus-smiley-display t]
1740               ["HZ" gnus-article-decode-HZ t])
1741              ("Output"
1742               ["Save in default format" gnus-summary-save-article t]
1743               ["Save in file" gnus-summary-save-article-file t]
1744               ["Save in Unix mail format" gnus-summary-save-article-mail t]
1745               ["Save in MH folder" gnus-summary-save-article-folder t]
1746               ["Save in VM folder" gnus-summary-save-article-vm t]
1747               ["Save in RMAIL mbox" gnus-summary-save-article-rmail t]
1748               ["Save body in file" gnus-summary-save-article-body-file t]
1749               ["Pipe through a filter" gnus-summary-pipe-output t]
1750               ["Add to SOUP packet" gnus-soup-add-article t]
1751               ["Print" gnus-summary-print-article t])
1752              ("Backend"
1753               ["Respool article..." gnus-summary-respool-article t]
1754               ["Move article..." gnus-summary-move-article
1755                (gnus-check-backend-function
1756                 'request-move-article gnus-newsgroup-name)]
1757               ["Copy article..." gnus-summary-copy-article t]
1758               ["Crosspost article..." gnus-summary-crosspost-article
1759                (gnus-check-backend-function
1760                 'request-replace-article gnus-newsgroup-name)]
1761               ["Import file..." gnus-summary-import-article t]
1762               ["Check if posted" gnus-summary-article-posted-p t]
1763               ["Edit article" gnus-summary-edit-article
1764                (not (gnus-group-read-only-p))]
1765               ["Delete article" gnus-summary-delete-article
1766                (gnus-check-backend-function
1767                 'request-expire-articles gnus-newsgroup-name)]
1768               ["Query respool" gnus-summary-respool-query t]
1769               ["Trace respool" gnus-summary-respool-trace t]
1770               ["Delete expirable articles" gnus-summary-expire-articles-now
1771                (gnus-check-backend-function
1772                 'request-expire-articles gnus-newsgroup-name)])
1773              ("Extract"
1774               ["Uudecode" gnus-uu-decode-uu t]
1775               ["Uudecode and save" gnus-uu-decode-uu-and-save t]
1776               ["Unshar" gnus-uu-decode-unshar t]
1777               ["Unshar and save" gnus-uu-decode-unshar-and-save t]
1778               ["Save" gnus-uu-decode-save t]
1779               ["Binhex" gnus-uu-decode-binhex t]
1780               ["Postscript" gnus-uu-decode-postscript t])
1781              ("Cache"
1782               ["Enter article" gnus-cache-enter-article t]
1783               ["Remove article" gnus-cache-remove-article t])
1784              ["Translate" gnus-article-babel t]
1785              ["Select article buffer" gnus-summary-select-article-buffer t]
1786              ["Enter digest buffer" gnus-summary-enter-digest-group t]
1787              ["Isearch article..." gnus-summary-isearch-article t]
1788              ["Beginning of the article" gnus-summary-beginning-of-article t]
1789              ["End of the article" gnus-summary-end-of-article t]
1790              ["Fetch parent of article" gnus-summary-refer-parent-article t]
1791              ["Fetch referenced articles" gnus-summary-refer-references t]
1792              ["Fetch current thread" gnus-summary-refer-thread t]
1793              ["Fetch article with id..." gnus-summary-refer-article t]
1794              ["Redisplay" gnus-summary-show-article t])))
1795       (easy-menu-define
1796        gnus-summary-article-menu gnus-summary-mode-map ""
1797        (cons "Article" innards))
1798
1799       (easy-menu-define
1800        gnus-article-commands-menu gnus-article-mode-map ""
1801        (cons "Commands" innards)))
1802
1803     (easy-menu-define
1804      gnus-summary-thread-menu gnus-summary-mode-map ""
1805      '("Threads"
1806        ["Toggle threading" gnus-summary-toggle-threads t]
1807        ["Hide threads" gnus-summary-hide-all-threads t]
1808        ["Show threads" gnus-summary-show-all-threads t]
1809        ["Hide thread" gnus-summary-hide-thread t]
1810        ["Show thread" gnus-summary-show-thread t]
1811        ["Go to next thread" gnus-summary-next-thread t]
1812        ["Go to previous thread" gnus-summary-prev-thread t]
1813        ["Go down thread" gnus-summary-down-thread t]
1814        ["Go up thread" gnus-summary-up-thread t]
1815        ["Top of thread" gnus-summary-top-thread t]
1816        ["Mark thread as read" gnus-summary-kill-thread t]
1817        ["Lower thread score" gnus-summary-lower-thread t]
1818        ["Raise thread score" gnus-summary-raise-thread t]
1819        ["Rethread current" gnus-summary-rethread-current t]))
1820
1821     (easy-menu-define
1822      gnus-summary-post-menu gnus-summary-mode-map ""
1823      '("Post"
1824        ["Post an article" gnus-summary-post-news t]
1825        ["Followup" gnus-summary-followup t]
1826        ["Followup and yank" gnus-summary-followup-with-original t]
1827        ["Supersede article" gnus-summary-supersede-article t]
1828        ["Cancel article" gnus-summary-cancel-article t]
1829        ["Reply" gnus-summary-reply t]
1830        ["Reply and yank" gnus-summary-reply-with-original t]
1831        ["Wide reply" gnus-summary-wide-reply t]
1832        ["Wide reply and yank" gnus-summary-wide-reply-with-original t]
1833        ["Mail forward" gnus-summary-mail-forward t]
1834        ["Post forward" gnus-summary-post-forward t]
1835        ["Digest and mail" gnus-uu-digest-mail-forward t]
1836        ["Digest and post" gnus-uu-digest-post-forward t]
1837        ["Resend message" gnus-summary-resend-message t]
1838        ["Send bounced mail" gnus-summary-resend-bounced-mail t]
1839        ["Send a mail" gnus-summary-mail-other-window t]
1840        ["Uuencode and post" gnus-uu-post-news t]
1841        ["Followup via news" gnus-summary-followup-to-mail t]
1842        ["Followup via news and yank"
1843         gnus-summary-followup-to-mail-with-original t]
1844        ;;("Draft"
1845        ;;["Send" gnus-summary-send-draft t]
1846        ;;["Send bounced" gnus-resend-bounced-mail t])
1847        ))
1848
1849     (easy-menu-define
1850      gnus-summary-misc-menu gnus-summary-mode-map ""
1851      '("Misc"
1852        ("Mark Read"
1853         ["Mark as read" gnus-summary-mark-as-read-forward t]
1854         ["Mark same subject and select"
1855          gnus-summary-kill-same-subject-and-select t]
1856         ["Mark same subject" gnus-summary-kill-same-subject t]
1857         ["Catchup" gnus-summary-catchup t]
1858         ["Catchup all" gnus-summary-catchup-all t]
1859         ["Catchup to here" gnus-summary-catchup-to-here t]
1860         ["Catchup region" gnus-summary-mark-region-as-read t]
1861         ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
1862        ("Mark Various"
1863         ["Tick" gnus-summary-tick-article-forward t]
1864         ["Mark as dormant" gnus-summary-mark-as-dormant t]
1865         ["Remove marks" gnus-summary-clear-mark-forward t]
1866         ["Set expirable mark" gnus-summary-mark-as-expirable t]
1867         ["Set bookmark" gnus-summary-set-bookmark t]
1868         ["Remove bookmark" gnus-summary-remove-bookmark t])
1869        ("Mark Limit"
1870         ["Marks..." gnus-summary-limit-to-marks t]
1871         ["Subject..." gnus-summary-limit-to-subject t]
1872         ["Author..." gnus-summary-limit-to-author t]
1873         ["Age..." gnus-summary-limit-to-age t]
1874         ["Extra..." gnus-summary-limit-to-extra t]
1875         ["Score" gnus-summary-limit-to-score t]
1876         ["Unread" gnus-summary-limit-to-unread t]
1877         ["Non-dormant" gnus-summary-limit-exclude-dormant t]
1878         ["Articles" gnus-summary-limit-to-articles t]
1879         ["Pop limit" gnus-summary-pop-limit t]
1880         ["Show dormant" gnus-summary-limit-include-dormant t]
1881         ["Hide childless dormant"
1882          gnus-summary-limit-exclude-childless-dormant t]
1883         ;;["Hide thread" gnus-summary-limit-exclude-thread t]
1884         ["Hide marked" gnus-summary-limit-exclude-marks t]
1885         ["Show expunged" gnus-summary-show-all-expunged t])
1886        ("Process Mark"
1887         ["Set mark" gnus-summary-mark-as-processable t]
1888         ["Remove mark" gnus-summary-unmark-as-processable t]
1889         ["Remove all marks" gnus-summary-unmark-all-processable t]
1890         ["Mark above" gnus-uu-mark-over t]
1891         ["Mark series" gnus-uu-mark-series t]
1892         ["Mark region" gnus-uu-mark-region t]
1893         ["Unmark region" gnus-uu-unmark-region t]
1894         ["Mark by regexp..." gnus-uu-mark-by-regexp t]
1895         ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
1896         ["Mark all" gnus-uu-mark-all t]
1897         ["Mark buffer" gnus-uu-mark-buffer t]
1898         ["Mark sparse" gnus-uu-mark-sparse t]
1899         ["Mark thread" gnus-uu-mark-thread t]
1900         ["Unmark thread" gnus-uu-unmark-thread t]
1901         ("Process Mark Sets"
1902          ["Kill" gnus-summary-kill-process-mark t]
1903          ["Yank" gnus-summary-yank-process-mark
1904           gnus-newsgroup-process-stack]
1905          ["Save" gnus-summary-save-process-mark t]))
1906        ("Scroll article"
1907         ["Page forward" gnus-summary-next-page t]
1908         ["Page backward" gnus-summary-prev-page t]
1909         ["Line forward" gnus-summary-scroll-up t])
1910        ("Move"
1911         ["Next unread article" gnus-summary-next-unread-article t]
1912         ["Previous unread article" gnus-summary-prev-unread-article t]
1913         ["Next article" gnus-summary-next-article t]
1914         ["Previous article" gnus-summary-prev-article t]
1915         ["Next unread subject" gnus-summary-next-unread-subject t]
1916         ["Previous unread subject" gnus-summary-prev-unread-subject t]
1917         ["Next article same subject" gnus-summary-next-same-subject t]
1918         ["Previous article same subject" gnus-summary-prev-same-subject t]
1919         ["First unread article" gnus-summary-first-unread-article t]
1920         ["Best unread article" gnus-summary-best-unread-article t]
1921         ["Go to subject number..." gnus-summary-goto-subject t]
1922         ["Go to article number..." gnus-summary-goto-article t]
1923         ["Go to the last article" gnus-summary-goto-last-article t]
1924         ["Pop article off history" gnus-summary-pop-article t])
1925        ("Sort"
1926         ["Sort by number" gnus-summary-sort-by-number t]
1927         ["Sort by author" gnus-summary-sort-by-author t]
1928         ["Sort by subject" gnus-summary-sort-by-subject t]
1929         ["Sort by date" gnus-summary-sort-by-date t]
1930         ["Sort by score" gnus-summary-sort-by-score t]
1931         ["Sort by lines" gnus-summary-sort-by-lines t]
1932         ["Sort by characters" gnus-summary-sort-by-chars t])
1933        ("Help"
1934         ["Fetch group FAQ" gnus-summary-fetch-faq t]
1935         ["Describe group" gnus-summary-describe-group t]
1936         ["Read manual" gnus-info-find-node t])
1937        ("Modes"
1938         ["Pick and read" gnus-pick-mode t]
1939         ["Binary" gnus-binary-mode t])
1940        ("Regeneration"
1941         ["Regenerate" gnus-summary-prepare t]
1942         ["Insert cached articles" gnus-summary-insert-cached-articles t]
1943         ["Toggle threading" gnus-summary-toggle-threads t])
1944        ["Filter articles..." gnus-summary-execute-command t]
1945        ["Run command on subjects..." gnus-summary-universal-argument t]
1946        ["Search articles forward..." gnus-summary-search-article-forward t]
1947        ["Search articles backward..." gnus-summary-search-article-backward t]
1948        ["Toggle line truncation" gnus-summary-toggle-truncation t]
1949        ["Expand window" gnus-summary-expand-window t]
1950        ["Expire expirable articles" gnus-summary-expire-articles
1951         (gnus-check-backend-function
1952          'request-expire-articles gnus-newsgroup-name)]
1953        ["Edit local kill file" gnus-summary-edit-local-kill t]
1954        ["Edit main kill file" gnus-summary-edit-global-kill t]
1955        ["Edit group parameters" gnus-summary-edit-parameters t]
1956        ["Customize group parameters" gnus-summary-customize-parameters t]
1957        ["Send a bug report" gnus-bug t]
1958        ("Exit"
1959         ["Catchup and exit" gnus-summary-catchup-and-exit t]
1960         ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
1961         ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
1962         ["Exit group" gnus-summary-exit t]
1963         ["Exit group without updating" gnus-summary-exit-no-update t]
1964         ["Exit and goto next group" gnus-summary-next-group t]
1965         ["Exit and goto prev group" gnus-summary-prev-group t]
1966         ["Reselect group" gnus-summary-reselect-current-group t]
1967         ["Rescan group" gnus-summary-rescan-group t]
1968         ["Update dribble" gnus-summary-save-newsrc t])))
1969
1970     (gnus-run-hooks 'gnus-summary-menu-hook)))
1971
1972 (defun gnus-score-set-default (var value)
1973   "A version of set that updates the GNU Emacs menu-bar."
1974   (set var value)
1975   ;; It is the message that forces the active status to be updated.
1976   (message ""))
1977
1978 (defun gnus-make-score-map (type)
1979   "Make a summary score map of type TYPE."
1980   (if t
1981       nil
1982     (let ((headers '(("author" "from" string)
1983                      ("subject" "subject" string)
1984                      ("article body" "body" string)
1985                      ("article head" "head" string)
1986                      ("xref" "xref" string)
1987                      ("extra header" "extra" string)
1988                      ("lines" "lines" number)
1989                      ("followups to author" "followup" string)))
1990           (types '((number ("less than" <)
1991                            ("greater than" >)
1992                            ("equal" =))
1993                    (string ("substring" s)
1994                            ("exact string" e)
1995                            ("fuzzy string" f)
1996                            ("regexp" r))))
1997           (perms '(("temporary" (current-time-string))
1998                    ("permanent" nil)
1999                    ("immediate" now)))
2000           header)
2001       (list
2002        (apply
2003         'nconc
2004         (list
2005          (if (eq type 'lower)
2006              "Lower score"
2007            "Increase score"))
2008         (let (outh)
2009           (while headers
2010             (setq header (car headers))
2011             (setq outh
2012                   (cons
2013                    (apply
2014                     'nconc
2015                     (list (car header))
2016                     (let ((ts (cdr (assoc (nth 2 header) types)))
2017                           outt)
2018                       (while ts
2019                         (setq outt
2020                               (cons
2021                                (apply
2022                                 'nconc
2023                                 (list (caar ts))
2024                                 (let ((ps perms)
2025                                       outp)
2026                                   (while ps
2027                                     (setq outp
2028                                           (cons
2029                                            (vector
2030                                             (caar ps)
2031                                             (list
2032                                              'gnus-summary-score-entry
2033                                              (nth 1 header)
2034                                              (if (or (string= (nth 1 header)
2035                                                               "head")
2036                                                      (string= (nth 1 header)
2037                                                               "body"))
2038                                                  ""
2039                                                (list 'gnus-summary-header
2040                                                      (nth 1 header)))
2041                                              (list 'quote (nth 1 (car ts)))
2042                                              (list 'gnus-score-delta-default
2043                                                    nil)
2044                                              (nth 1 (car ps))
2045                                              t)
2046                                             t)
2047                                            outp))
2048                                     (setq ps (cdr ps)))
2049                                   (list (nreverse outp))))
2050                                outt))
2051                         (setq ts (cdr ts)))
2052                       (list (nreverse outt))))
2053                    outh))
2054             (setq headers (cdr headers)))
2055           (list (nreverse outh))))))))
2056
2057 \f
2058
2059 (defun gnus-summary-mode (&optional group)
2060   "Major mode for reading articles.
2061
2062 All normal editing commands are switched off.
2063 \\<gnus-summary-mode-map>
2064 Each line in this buffer represents one article.  To read an
2065 article, you can, for instance, type `\\[gnus-summary-next-page]'.  To move forwards
2066 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2067 respectively.
2068
2069 You can also post articles and send mail from this buffer.  To
2070 follow up an article, type `\\[gnus-summary-followup]'.  To mail a reply to the author
2071 of an article, type `\\[gnus-summary-reply]'.
2072
2073 There are approx. one gazillion commands you can execute in this
2074 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2075
2076 The following commands are available:
2077
2078 \\{gnus-summary-mode-map}"
2079   (interactive)
2080   (when (gnus-visual-p 'summary-menu 'menu)
2081     (gnus-summary-make-menu-bar))
2082   (kill-all-local-variables)
2083   (gnus-summary-make-local-variables)
2084   (gnus-make-thread-indent-array)
2085   (gnus-simplify-mode-line)
2086   (setq major-mode 'gnus-summary-mode)
2087   (setq mode-name "Summary")
2088   (make-local-variable 'minor-mode-alist)
2089   (use-local-map gnus-summary-mode-map)
2090   (buffer-disable-undo)
2091   (setq buffer-read-only t)             ;Disable modification
2092   (setq truncate-lines t)
2093   (setq selective-display t)
2094   (setq selective-display-ellipses t)   ;Display `...'
2095   (gnus-summary-set-display-table)
2096   (gnus-set-default-directory)
2097   (setq gnus-newsgroup-name group)
2098   (unless (gnus-news-group-p group)
2099     (setq gnus-newsgroup-incorporated
2100           (nnmail-new-mail-numbers (gnus-group-real-name group))))
2101   (make-local-variable 'gnus-summary-line-format)
2102   (make-local-variable 'gnus-summary-line-format-spec)
2103   (make-local-variable 'gnus-summary-dummy-line-format)
2104   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2105   (make-local-variable 'gnus-summary-mark-positions)
2106   (make-local-hook 'pre-command-hook)
2107   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2108   (gnus-run-hooks 'gnus-summary-mode-hook)
2109   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2110   (gnus-update-summary-mark-positions))
2111
2112 (defun gnus-summary-make-local-variables ()
2113   "Make all the local summary buffer variables."
2114   (let (global)
2115     (dolist (local gnus-summary-local-variables)
2116       (if (consp local)
2117           (progn
2118             (if (eq (cdr local) 'global)
2119                 ;; Copy the global value of the variable.
2120                 (setq global (symbol-value (car local)))
2121               ;; Use the value from the list.
2122               (setq global (eval (cdr local))))
2123             (set (make-local-variable (car local)) global))
2124         ;; Simple nil-valued local variable.
2125         (set (make-local-variable local) nil)))))
2126
2127 (defun gnus-summary-clear-local-variables ()
2128   (let ((locals gnus-summary-local-variables))
2129     (while locals
2130       (if (consp (car locals))
2131           (and (vectorp (caar locals))
2132                (set (caar locals) nil))
2133         (and (vectorp (car locals))
2134              (set (car locals) nil)))
2135       (setq locals (cdr locals)))))
2136
2137 ;; Summary data functions.
2138
2139 (defmacro gnus-data-number (data)
2140   `(car ,data))
2141
2142 (defmacro gnus-data-set-number (data number)
2143   `(setcar ,data ,number))
2144
2145 (defmacro gnus-data-mark (data)
2146   `(nth 1 ,data))
2147
2148 (defmacro gnus-data-set-mark (data mark)
2149   `(setcar (nthcdr 1 ,data) ,mark))
2150
2151 (defmacro gnus-data-pos (data)
2152   `(nth 2 ,data))
2153
2154 (defmacro gnus-data-set-pos (data pos)
2155   `(setcar (nthcdr 2 ,data) ,pos))
2156
2157 (defmacro gnus-data-header (data)
2158   `(nth 3 ,data))
2159
2160 (defmacro gnus-data-set-header (data header)
2161   `(setcar (nthcdr 3 ,data) ,header))
2162
2163 (defmacro gnus-data-level (data)
2164   `(nth 4 ,data))
2165
2166 (defmacro gnus-data-unread-p (data)
2167   `(= (nth 1 ,data) gnus-unread-mark))
2168
2169 (defmacro gnus-data-read-p (data)
2170   `(/= (nth 1 ,data) gnus-unread-mark))
2171
2172 (defmacro gnus-data-pseudo-p (data)
2173   `(consp (nth 3 ,data)))
2174
2175 (defmacro gnus-data-find (number)
2176   `(assq ,number gnus-newsgroup-data))
2177
2178 (defmacro gnus-data-find-list (number &optional data)
2179   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2180      (memq (assq ,number bdata)
2181            bdata)))
2182
2183 (defmacro gnus-data-make (number mark pos header level)
2184   `(list ,number ,mark ,pos ,header ,level))
2185
2186 (defun gnus-data-enter (after-article number mark pos header level offset)
2187   (let ((data (gnus-data-find-list after-article)))
2188     (unless data
2189       (error "No such article: %d" after-article))
2190     (setcdr data (cons (gnus-data-make number mark pos header level)
2191                        (cdr data)))
2192     (setq gnus-newsgroup-data-reverse nil)
2193     (gnus-data-update-list (cddr data) offset)))
2194
2195 (defun gnus-data-enter-list (after-article list &optional offset)
2196   (when list
2197     (let ((data (and after-article (gnus-data-find-list after-article)))
2198           (ilist list))
2199       (if (not (or data
2200                    after-article))
2201           (let ((odata gnus-newsgroup-data))
2202             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2203             (when offset
2204               (gnus-data-update-list odata offset)))
2205         ;; Find the last element in the list to be spliced into the main
2206         ;; list.
2207         (while (cdr list)
2208           (setq list (cdr list)))
2209         (if (not data)
2210             (progn
2211               (setcdr list gnus-newsgroup-data)
2212               (setq gnus-newsgroup-data ilist)
2213               (when offset
2214                 (gnus-data-update-list (cdr list) offset)))
2215           (setcdr list (cdr data))
2216           (setcdr data ilist)
2217           (when offset
2218             (gnus-data-update-list (cdr list) offset))))
2219       (setq gnus-newsgroup-data-reverse nil))))
2220
2221 (defun gnus-data-remove (article &optional offset)
2222   (let ((data gnus-newsgroup-data))
2223     (if (= (gnus-data-number (car data)) article)
2224         (progn
2225           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2226                 gnus-newsgroup-data-reverse nil)
2227           (when offset
2228             (gnus-data-update-list gnus-newsgroup-data offset)))
2229       (while (cdr data)
2230         (when (= (gnus-data-number (cadr data)) article)
2231           (setcdr data (cddr data))
2232           (when offset
2233             (gnus-data-update-list (cdr data) offset))
2234           (setq data nil
2235                 gnus-newsgroup-data-reverse nil))
2236         (setq data (cdr data))))))
2237
2238 (defmacro gnus-data-list (backward)
2239   `(if ,backward
2240        (or gnus-newsgroup-data-reverse
2241            (setq gnus-newsgroup-data-reverse
2242                  (reverse gnus-newsgroup-data)))
2243      gnus-newsgroup-data))
2244
2245 (defun gnus-data-update-list (data offset)
2246   "Add OFFSET to the POS of all data entries in DATA."
2247   (setq gnus-newsgroup-data-reverse nil)
2248   (while data
2249     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2250     (setq data (cdr data))))
2251
2252 (defun gnus-summary-article-pseudo-p (article)
2253   "Say whether this article is a pseudo article or not."
2254   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2255
2256 (defmacro gnus-summary-article-sparse-p (article)
2257   "Say whether this article is a sparse article or not."
2258   `(memq ,article gnus-newsgroup-sparse))
2259
2260 (defmacro gnus-summary-article-ancient-p (article)
2261   "Say whether this article is a sparse article or not."
2262   `(memq ,article gnus-newsgroup-ancient))
2263
2264 (defun gnus-article-parent-p (number)
2265   "Say whether this article is a parent or not."
2266   (let ((data (gnus-data-find-list number)))
2267     (and (cdr data)                     ; There has to be an article after...
2268          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2269             (gnus-data-level (nth 1 data))))))
2270
2271 (defun gnus-article-children (number)
2272   "Return a list of all children to NUMBER."
2273   (let* ((data (gnus-data-find-list number))
2274          (level (gnus-data-level (car data)))
2275          children)
2276     (setq data (cdr data))
2277     (while (and data
2278                 (= (gnus-data-level (car data)) (1+ level)))
2279       (push (gnus-data-number (car data)) children)
2280       (setq data (cdr data)))
2281     children))
2282
2283 (defmacro gnus-summary-skip-intangible ()
2284   "If the current article is intangible, then jump to a different article."
2285   '(let ((to (get-text-property (point) 'gnus-intangible)))
2286      (and to (gnus-summary-goto-subject to))))
2287
2288 (defmacro gnus-summary-article-intangible-p ()
2289   "Say whether this article is intangible or not."
2290   '(get-text-property (point) 'gnus-intangible))
2291
2292 (defun gnus-article-read-p (article)
2293   "Say whether ARTICLE is read or not."
2294   (not (or (memq article gnus-newsgroup-marked)
2295            (memq article gnus-newsgroup-unreads)
2296            (memq article gnus-newsgroup-unselected)
2297            (memq article gnus-newsgroup-dormant))))
2298
2299 ;; Some summary mode macros.
2300
2301 (defmacro gnus-summary-article-number ()
2302   "The article number of the article on the current line.
2303 If there isn's an article number here, then we return the current
2304 article number."
2305   '(progn
2306      (gnus-summary-skip-intangible)
2307      (or (get-text-property (point) 'gnus-number)
2308          (gnus-summary-last-subject))))
2309
2310 (defmacro gnus-summary-article-header (&optional number)
2311   "Return the header of article NUMBER."
2312   `(gnus-data-header (gnus-data-find
2313                       ,(or number '(gnus-summary-article-number)))))
2314
2315 (defmacro gnus-summary-thread-level (&optional number)
2316   "Return the level of thread that starts with article NUMBER."
2317   `(if (and (eq gnus-summary-make-false-root 'dummy)
2318             (get-text-property (point) 'gnus-intangible))
2319        0
2320      (gnus-data-level (gnus-data-find
2321                        ,(or number '(gnus-summary-article-number))))))
2322
2323 (defmacro gnus-summary-article-mark (&optional number)
2324   "Return the mark of article NUMBER."
2325   `(gnus-data-mark (gnus-data-find
2326                     ,(or number '(gnus-summary-article-number)))))
2327
2328 (defmacro gnus-summary-article-pos (&optional number)
2329   "Return the position of the line of article NUMBER."
2330   `(gnus-data-pos (gnus-data-find
2331                    ,(or number '(gnus-summary-article-number)))))
2332
2333 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2334 (defmacro gnus-summary-article-subject (&optional number)
2335   "Return current subject string or nil if nothing."
2336   `(let ((headers
2337           ,(if number
2338                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2339              '(gnus-data-header (assq (gnus-summary-article-number)
2340                                       gnus-newsgroup-data)))))
2341      (and headers
2342           (vectorp headers)
2343           (mail-header-subject headers))))
2344
2345 (defmacro gnus-summary-article-score (&optional number)
2346   "Return current article score."
2347   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2348                   gnus-newsgroup-scored))
2349        gnus-summary-default-score 0))
2350
2351 (defun gnus-summary-article-children (&optional number)
2352   "Return a list of article numbers that are children of article NUMBER."
2353   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2354          (level (gnus-data-level (car data)))
2355          l children)
2356     (while (and (setq data (cdr data))
2357                 (> (setq l (gnus-data-level (car data))) level))
2358       (and (= (1+ level) l)
2359            (push (gnus-data-number (car data))
2360                  children)))
2361     (nreverse children)))
2362
2363 (defun gnus-summary-article-parent (&optional number)
2364   "Return the article number of the parent of article NUMBER."
2365   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2366                                     (gnus-data-list t)))
2367          (level (gnus-data-level (car data))))
2368     (if (zerop level)
2369         ()                              ; This is a root.
2370       ;; We search until we find an article with a level less than
2371       ;; this one.  That function has to be the parent.
2372       (while (and (setq data (cdr data))
2373                   (not (< (gnus-data-level (car data)) level))))
2374       (and data (gnus-data-number (car data))))))
2375
2376 (defun gnus-unread-mark-p (mark)
2377   "Say whether MARK is the unread mark."
2378   (= mark gnus-unread-mark))
2379
2380 (defun gnus-read-mark-p (mark)
2381   "Say whether MARK is one of the marks that mark as read.
2382 This is all marks except unread, ticked, dormant, and expirable."
2383   (not (or (= mark gnus-unread-mark)
2384            (= mark gnus-ticked-mark)
2385            (= mark gnus-dormant-mark)
2386            (= mark gnus-expirable-mark))))
2387
2388 (defmacro gnus-article-mark (number)
2389   "Return the MARK of article NUMBER.
2390 This macro should only be used when computing the mark the \"first\"
2391 time; i.e., when generating the summary lines.  After that,
2392 `gnus-summary-article-mark' should be used to examine the
2393 marks of articles."
2394   `(cond
2395     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
2396     ((memq ,number gnus-newsgroup-undownloaded) gnus-undownloaded-mark)
2397     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
2398     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
2399     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
2400     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
2401     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
2402     (t (or (cdr (assq ,number gnus-newsgroup-reads))
2403            gnus-ancient-mark))))
2404
2405 ;; Saving hidden threads.
2406
2407 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
2408 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
2409
2410 (defmacro gnus-save-hidden-threads (&rest forms)
2411   "Save hidden threads, eval FORMS, and restore the hidden threads."
2412   (let ((config (make-symbol "config")))
2413     `(let ((,config (gnus-hidden-threads-configuration)))
2414        (unwind-protect
2415            (save-excursion
2416              ,@forms)
2417          (gnus-restore-hidden-threads-configuration ,config)))))
2418
2419 (defun gnus-data-compute-positions ()
2420   "Compute the positions of all articles."
2421   (setq gnus-newsgroup-data-reverse nil)
2422   (let ((data gnus-newsgroup-data))
2423     (save-excursion
2424       (gnus-save-hidden-threads
2425         (gnus-summary-show-all-threads)
2426         (goto-char (point-min))
2427         (while data
2428           (while (get-text-property (point) 'gnus-intangible)
2429             (forward-line 1))
2430           (gnus-data-set-pos (car data) (+ (point) 3))
2431           (setq data (cdr data))
2432           (forward-line 1))))))
2433
2434 (defun gnus-hidden-threads-configuration ()
2435   "Return the current hidden threads configuration."
2436   (save-excursion
2437     (let (config)
2438       (goto-char (point-min))
2439       (while (search-forward "\r" nil t)
2440         (push (1- (point)) config))
2441       config)))
2442
2443 (defun gnus-restore-hidden-threads-configuration (config)
2444   "Restore hidden threads configuration from CONFIG."
2445   (let (point buffer-read-only)
2446     (while (setq point (pop config))
2447       (when (and (< point (point-max))
2448                  (goto-char point)
2449                  (eq (char-after) ?\n))
2450         (subst-char-in-region point (1+ point) ?\n ?\r)))))
2451
2452 ;; Various summary mode internalish functions.
2453
2454 (defun gnus-mouse-pick-article (e)
2455   (interactive "e")
2456   (mouse-set-point e)
2457   (gnus-summary-next-page nil t))
2458
2459 (defun gnus-summary-set-display-table ()
2460   "Change the display table.
2461 Odd characters have a tendency to mess
2462 up nicely formatted displays - we make all possible glyphs
2463 display only a single character."
2464
2465   ;; We start from the standard display table, if any.
2466   (let ((table (or (copy-sequence standard-display-table)
2467                    (make-display-table)))
2468         (i 32))
2469     ;; Nix out all the control chars...
2470     (while (>= (setq i (1- i)) 0)
2471       (aset table i [??]))
2472     ;; ... but not newline and cr, of course.  (cr is necessary for the
2473     ;; selective display).
2474     (aset table ?\n nil)
2475     (aset table ?\r nil)
2476     ;; We keep TAB as well.
2477     (aset table ?\t nil)
2478     ;; We nix out any glyphs over 126 that are not set already.
2479     (let ((i 256))
2480       (while (>= (setq i (1- i)) 127)
2481         ;; Only modify if the entry is nil.
2482         (unless (aref table i)
2483           (aset table i [??]))))
2484     (setq buffer-display-table table)))
2485
2486 (defun gnus-summary-setup-buffer (group)
2487   "Initialize summary buffer."
2488   (let ((buffer (concat "*Summary " group "*")))
2489     (if (get-buffer buffer)
2490         (progn
2491           (set-buffer buffer)
2492           (setq gnus-summary-buffer (current-buffer))
2493           (not gnus-newsgroup-prepared))
2494       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
2495       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
2496       (gnus-summary-mode group)
2497       (when gnus-carpal
2498         (gnus-carpal-setup-buffer 'summary))
2499       (unless gnus-single-article-buffer
2500         (make-local-variable 'gnus-article-buffer)
2501         (make-local-variable 'gnus-article-current)
2502         (make-local-variable 'gnus-original-article-buffer))
2503       (setq gnus-newsgroup-name group)
2504       t)))
2505
2506 (defun gnus-set-global-variables ()
2507   "Set the global equivalents of the buffer-local variables.
2508 They are set to the latest values they had.  These reflect the summary
2509 buffer that was in action when the last article was fetched."
2510   (when (eq major-mode 'gnus-summary-mode)
2511     (setq gnus-summary-buffer (current-buffer))
2512     (let ((name gnus-newsgroup-name)
2513           (marked gnus-newsgroup-marked)
2514           (unread gnus-newsgroup-unreads)
2515           (headers gnus-current-headers)
2516           (data gnus-newsgroup-data)
2517           (summary gnus-summary-buffer)
2518           (article-buffer gnus-article-buffer)
2519           (original gnus-original-article-buffer)
2520           (gac gnus-article-current)
2521           (reffed gnus-reffed-article-number)
2522           (score-file gnus-current-score-file)
2523           (default-charset gnus-newsgroup-charset))
2524       (save-excursion
2525         (set-buffer gnus-group-buffer)
2526         (setq gnus-newsgroup-name name
2527               gnus-newsgroup-marked marked
2528               gnus-newsgroup-unreads unread
2529               gnus-current-headers headers
2530               gnus-newsgroup-data data
2531               gnus-article-current gac
2532               gnus-summary-buffer summary
2533               gnus-article-buffer article-buffer
2534               gnus-original-article-buffer original
2535               gnus-reffed-article-number reffed
2536               gnus-current-score-file score-file
2537               gnus-newsgroup-charset default-charset)
2538         ;; The article buffer also has local variables.
2539         (when (gnus-buffer-live-p gnus-article-buffer)
2540           (set-buffer gnus-article-buffer)
2541           (setq gnus-summary-buffer summary))))))
2542
2543 (defun gnus-summary-article-unread-p (article)
2544   "Say whether ARTICLE is unread or not."
2545   (memq article gnus-newsgroup-unreads))
2546
2547 (defun gnus-summary-first-article-p (&optional article)
2548   "Return whether ARTICLE is the first article in the buffer."
2549   (if (not (setq article (or article (gnus-summary-article-number))))
2550       nil
2551     (eq article (caar gnus-newsgroup-data))))
2552
2553 (defun gnus-summary-last-article-p (&optional article)
2554   "Return whether ARTICLE is the last article in the buffer."
2555   (if (not (setq article (or article (gnus-summary-article-number))))
2556       ;; All non-existent numbers are the last article.  :-)
2557       t
2558     (not (cdr (gnus-data-find-list article)))))
2559
2560 (defun gnus-make-thread-indent-array ()
2561   (let ((n 200))
2562     (unless (and gnus-thread-indent-array
2563                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
2564       (setq gnus-thread-indent-array (make-vector 201 "")
2565             gnus-thread-indent-array-level gnus-thread-indent-level)
2566       (while (>= n 0)
2567         (aset gnus-thread-indent-array n
2568               (make-string (* n gnus-thread-indent-level) ? ))
2569         (setq n (1- n))))))
2570
2571 (defun gnus-update-summary-mark-positions ()
2572   "Compute where the summary marks are to go."
2573   (save-excursion
2574     (when (gnus-buffer-exists-p gnus-summary-buffer)
2575       (set-buffer gnus-summary-buffer))
2576     (let ((gnus-replied-mark 129)
2577           (gnus-score-below-mark 130)
2578           (gnus-score-over-mark 130)
2579           (gnus-download-mark 131)
2580           (spec gnus-summary-line-format-spec)
2581           gnus-visual pos)
2582       (save-excursion
2583         (gnus-set-work-buffer)
2584         (let ((gnus-summary-line-format-spec spec)
2585               (gnus-newsgroup-downloadable '((0 . t))))
2586           (gnus-summary-insert-line
2587            (make-full-mail-header 0 "" "nobody" "" "" "" 0 0 "" nil)
2588            0 nil 128 t nil "" nil 1)
2589           (goto-char (point-min))
2590           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
2591                                              (- (point) 2)))))
2592           (goto-char (point-min))
2593           (push (cons 'replied (and (search-forward "\201" nil t)
2594                                     (- (point) 2)))
2595                 pos)
2596           (goto-char (point-min))
2597           (push (cons 'score (and (search-forward "\202" nil t) (- (point) 2)))
2598                 pos)
2599           (goto-char (point-min))
2600           (push (cons 'download
2601                       (and (search-forward "\203" nil t) (- (point) 2)))
2602                 pos)))
2603       (setq gnus-summary-mark-positions pos))))
2604
2605 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
2606   "Insert a dummy root in the summary buffer."
2607   (beginning-of-line)
2608   (gnus-add-text-properties
2609    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
2610    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
2611
2612 (defun gnus-summary-from-or-to-or-newsgroups (header)
2613   (let ((to (cdr (assq 'To (mail-header-extra header))))
2614         (newsgroups (cdr (assq 'Newsgroups (mail-header-extra header))))
2615         (default-mime-charset (with-current-buffer gnus-summary-buffer
2616                                 default-mime-charset)))
2617     (cond
2618      ((and to
2619            gnus-ignored-from-addresses
2620            (string-match gnus-ignored-from-addresses
2621                          (mail-header-from header)))
2622       (concat "-> "
2623               (or (car (funcall gnus-extract-address-components
2624                                 (funcall
2625                                  gnus-decode-encoded-word-function to)))
2626                   (funcall gnus-decode-encoded-word-function to))))
2627      ((and newsgroups
2628            gnus-ignored-from-addresses
2629            (string-match gnus-ignored-from-addresses
2630                          (mail-header-from header)))
2631       (concat "=> " newsgroups))
2632      (t
2633       (or (car (funcall gnus-extract-address-components
2634                         (mail-header-from header)))
2635           (mail-header-from header))))))
2636
2637 (defun gnus-summary-insert-line (gnus-tmp-header
2638                                  gnus-tmp-level gnus-tmp-current
2639                                  gnus-tmp-unread gnus-tmp-replied
2640                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
2641                                  &optional gnus-tmp-dummy gnus-tmp-score
2642                                  gnus-tmp-process)
2643   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
2644          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
2645          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
2646          (gnus-tmp-score-char
2647           (if (or (null gnus-summary-default-score)
2648                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
2649                       gnus-summary-zcore-fuzz))
2650               ?  ;Whitespace
2651             (if (< gnus-tmp-score gnus-summary-default-score)
2652                 gnus-score-below-mark gnus-score-over-mark)))
2653          (gnus-tmp-replied
2654           (cond (gnus-tmp-process gnus-process-mark)
2655                 ((memq gnus-tmp-current gnus-newsgroup-cached)
2656                  gnus-cached-mark)
2657                 (gnus-tmp-replied gnus-replied-mark)
2658                 ((memq gnus-tmp-current gnus-newsgroup-saved)
2659                  gnus-saved-mark)
2660                 (t gnus-unread-mark)))
2661          (gnus-tmp-from (mail-header-from gnus-tmp-header))
2662          (gnus-tmp-name
2663           (cond
2664            ((string-match "<[^>]+> *$" gnus-tmp-from)
2665             (let ((beg (match-beginning 0)))
2666               (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from)
2667                        (substring gnus-tmp-from (1+ (match-beginning 0))
2668                                   (1- (match-end 0))))
2669                   (substring gnus-tmp-from 0 beg))))
2670            ((string-match "(.+)" gnus-tmp-from)
2671             (substring gnus-tmp-from
2672                        (1+ (match-beginning 0)) (1- (match-end 0))))
2673            (t gnus-tmp-from)))
2674          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
2675          (gnus-tmp-number (mail-header-number gnus-tmp-header))
2676          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
2677          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
2678          (buffer-read-only nil))
2679     (when (string= gnus-tmp-name "")
2680       (setq gnus-tmp-name gnus-tmp-from))
2681     (unless (numberp gnus-tmp-lines)
2682       (setq gnus-tmp-lines 0))
2683     (gnus-put-text-property-excluding-characters-with-faces
2684      (point)
2685      (progn (eval gnus-summary-line-format-spec) (point))
2686      'gnus-number gnus-tmp-number)
2687     (when (gnus-visual-p 'summary-highlight 'highlight)
2688       (forward-line -1)
2689       (gnus-run-hooks 'gnus-summary-update-hook)
2690       (forward-line 1))))
2691
2692 (defun gnus-summary-update-line (&optional dont-update)
2693   "Update summary line after change."
2694   (when (and gnus-summary-default-score
2695              (not gnus-summary-inhibit-highlight))
2696     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
2697            (article (gnus-summary-article-number))
2698            (score (gnus-summary-article-score article)))
2699       (unless dont-update
2700         (if (and gnus-summary-mark-below
2701                  (< (gnus-summary-article-score)
2702                     gnus-summary-mark-below))
2703             ;; This article has a low score, so we mark it as read.
2704             (when (memq article gnus-newsgroup-unreads)
2705               (gnus-summary-mark-article-as-read gnus-low-score-mark))
2706           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
2707             ;; This article was previously marked as read on account
2708             ;; of a low score, but now it has risen, so we mark it as
2709             ;; unread.
2710             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
2711         (gnus-summary-update-mark
2712          (if (or (null gnus-summary-default-score)
2713                  (<= (abs (- score gnus-summary-default-score))
2714                      gnus-summary-zcore-fuzz))
2715              ?  ;Whitespace
2716            (if (< score gnus-summary-default-score)
2717                gnus-score-below-mark gnus-score-over-mark))
2718          'score))
2719       ;; Do visual highlighting.
2720       (when (gnus-visual-p 'summary-highlight 'highlight)
2721         (gnus-run-hooks 'gnus-summary-update-hook)))))
2722
2723 (defvar gnus-tmp-new-adopts nil)
2724
2725 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
2726   "Return the number of articles in THREAD.
2727 This may be 0 in some cases -- if none of the articles in
2728 the thread are to be displayed."
2729   (let* ((number
2730           ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
2731           (cond
2732            ((not (listp thread))
2733             1)
2734            ((and (consp thread) (cdr thread))
2735             (apply
2736              '+ 1 (mapcar
2737                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
2738            ((null thread)
2739             1)
2740            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
2741             1)
2742            (t 0))))
2743     (when (and level (zerop level) gnus-tmp-new-adopts)
2744       (incf number
2745             (apply '+ (mapcar
2746                        'gnus-summary-number-of-articles-in-thread
2747                        gnus-tmp-new-adopts))))
2748     (if char
2749         (if (> number 1) gnus-not-empty-thread-mark
2750           gnus-empty-thread-mark)
2751       number)))
2752
2753 (defun gnus-summary-set-local-parameters (group)
2754   "Go through the local params of GROUP and set all variable specs in that list."
2755   (let ((params (gnus-group-find-parameter group))
2756         elem)
2757     (while params
2758       (setq elem (car params)
2759             params (cdr params))
2760       (and (consp elem)                 ; Has to be a cons.
2761            (consp (cdr elem))           ; The cdr has to be a list.
2762            (symbolp (car elem))         ; Has to be a symbol in there.
2763            (not (memq (car elem) '(quit-config))) ; Ignore quit-config.
2764            (ignore-errors               ; So we set it.
2765              (make-local-variable (car elem))
2766              (set (car elem) (eval (nth 1 elem))))))))
2767
2768 (defun gnus-summary-read-group (group &optional show-all no-article
2769                                       kill-buffer no-display backward
2770                                       select-articles)
2771   "Start reading news in newsgroup GROUP.
2772 If SHOW-ALL is non-nil, already read articles are also listed.
2773 If NO-ARTICLE is non-nil, no article is selected initially.
2774 If NO-DISPLAY, don't generate a summary buffer."
2775   (let (result)
2776     (while (and group
2777                 (null (setq result
2778                             (let ((gnus-auto-select-next nil))
2779                               (or (gnus-summary-read-group-1
2780                                    group show-all no-article
2781                                    kill-buffer no-display
2782                                    select-articles)
2783                                   (setq show-all nil
2784                                         select-articles nil)))))
2785                 (eq gnus-auto-select-next 'quietly))
2786       (set-buffer gnus-group-buffer)
2787       ;; The entry function called above goes to the next
2788       ;; group automatically, so we go two groups back
2789       ;; if we are searching for the previous group.
2790       (when backward
2791         (gnus-group-prev-unread-group 2))
2792       (if (not (equal group (gnus-group-group-name)))
2793           (setq group (gnus-group-group-name))
2794         (setq group nil)))
2795     result))
2796
2797 (defun gnus-summary-jump-to-other-group (group &optional show-all)
2798   "Directly jump to the other GROUP from summary buffer.
2799 If SHOW-ALL is non-nil, already read articles are also listed."
2800   (interactive
2801    (if (eq gnus-summary-buffer (current-buffer))
2802        (list (completing-read
2803               "Group: " gnus-active-hashtb nil t
2804               (when (and gnus-newsgroup-name
2805                          (string-match "[.:][^.:]+$" gnus-newsgroup-name))
2806                 (substring gnus-newsgroup-name 0 (1+ (match-beginning 0))))
2807               'gnus-group-history)
2808              current-prefix-arg)
2809      (error "%s must be invoked from a gnus summary buffer." this-command)))
2810   (unless (or (zerop (length group))
2811               (and gnus-newsgroup-name
2812                    (string-equal gnus-newsgroup-name group)))
2813     (gnus-summary-exit)
2814     (gnus-summary-read-group group show-all
2815                              gnus-dont-select-after-jump-to-other-group)))
2816
2817 (defun gnus-summary-read-group-1 (group show-all no-article
2818                                         kill-buffer no-display
2819                                         &optional select-articles)
2820   ;; Killed foreign groups can't be entered.
2821   (when (and (not (gnus-group-native-p group))
2822              (not (gnus-gethash group gnus-newsrc-hashtb)))
2823     (error "Dead non-native groups can't be entered"))
2824   (gnus-message 5 "Retrieving newsgroup: %s..." group)
2825   (let* ((new-group (gnus-summary-setup-buffer group))
2826          (quit-config (gnus-group-quit-config group))
2827          (did-select (and new-group (gnus-select-newsgroup
2828                                      group show-all select-articles))))
2829     (cond
2830      ;; This summary buffer exists already, so we just select it.
2831      ((not new-group)
2832       (gnus-set-global-variables)
2833       (when kill-buffer
2834         (gnus-kill-or-deaden-summary kill-buffer))
2835       (gnus-configure-windows 'summary 'force)
2836       (gnus-set-mode-line 'summary)
2837       (gnus-summary-position-point)
2838       (message "")
2839       t)
2840      ;; We couldn't select this group.
2841      ((null did-select)
2842       (when (and (eq major-mode 'gnus-summary-mode)
2843                  (not (equal (current-buffer) kill-buffer)))
2844         (kill-buffer (current-buffer))
2845         (if (not quit-config)
2846             (progn
2847               ;; Update the info -- marks might need to be removed,
2848               ;; for instance.
2849               (gnus-summary-update-info)
2850               (set-buffer gnus-group-buffer)
2851               (gnus-group-jump-to-group group)
2852               (gnus-group-next-unread-group 1))
2853           (gnus-handle-ephemeral-exit quit-config)))
2854       (gnus-message 3 "Can't select group")
2855       nil)
2856      ;; The user did a `C-g' while prompting for number of articles,
2857      ;; so we exit this group.
2858      ((eq did-select 'quit)
2859       (and (eq major-mode 'gnus-summary-mode)
2860            (not (equal (current-buffer) kill-buffer))
2861            (kill-buffer (current-buffer)))
2862       (when kill-buffer
2863         (gnus-kill-or-deaden-summary kill-buffer))
2864       (if (not quit-config)
2865           (progn
2866             (set-buffer gnus-group-buffer)
2867             (gnus-group-jump-to-group group)
2868             (gnus-group-next-unread-group 1)
2869             (gnus-configure-windows 'group 'force))
2870         (gnus-handle-ephemeral-exit quit-config))
2871       ;; Finally signal the quit.
2872       (signal 'quit nil))
2873      ;; The group was successfully selected.
2874      (t
2875       (gnus-set-global-variables)
2876       ;; Save the active value in effect when the group was entered.
2877       (setq gnus-newsgroup-active
2878             (gnus-copy-sequence
2879              (gnus-active gnus-newsgroup-name)))
2880       ;; You can change the summary buffer in some way with this hook.
2881       (gnus-run-hooks 'gnus-select-group-hook)
2882       ;; Set any local variables in the group parameters.
2883       (gnus-summary-set-local-parameters gnus-newsgroup-name)
2884       (gnus-update-format-specifications
2885        nil 'summary 'summary-mode 'summary-dummy)
2886       (gnus-update-summary-mark-positions)
2887       ;; Do score processing.
2888       (when gnus-use-scoring
2889         (gnus-possibly-score-headers))
2890       ;; Check whether to fill in the gaps in the threads.
2891       (when gnus-build-sparse-threads
2892         (gnus-build-sparse-threads))
2893       ;; Find the initial limit.
2894       (if gnus-show-threads
2895           (if show-all
2896               (let ((gnus-newsgroup-dormant nil))
2897                 (gnus-summary-initial-limit show-all))
2898             (gnus-summary-initial-limit show-all))
2899         ;; When untreaded, all articles are always shown.
2900         (setq gnus-newsgroup-limit
2901               (mapcar
2902                (lambda (header) (mail-header-number header))
2903                gnus-newsgroup-headers)))
2904       ;; Generate the summary buffer.
2905       (unless no-display
2906         (gnus-summary-prepare))
2907       (when gnus-use-trees
2908         (gnus-tree-open group)
2909         (setq gnus-summary-highlight-line-function
2910               'gnus-tree-highlight-article))
2911       ;; If the summary buffer is empty, but there are some low-scored
2912       ;; articles or some excluded dormants, we include these in the
2913       ;; buffer.
2914       (when (and (zerop (buffer-size))
2915                  (not no-display))
2916         (cond (gnus-newsgroup-dormant
2917                (gnus-summary-limit-include-dormant))
2918               ((and gnus-newsgroup-scored show-all)
2919                (gnus-summary-limit-include-expunged t))))
2920       ;; Function `gnus-apply-kill-file' must be called in this hook.
2921       (gnus-run-hooks 'gnus-apply-kill-hook)
2922       (if (and (zerop (buffer-size))
2923                (not no-display))
2924           (progn
2925             ;; This newsgroup is empty.
2926             (gnus-summary-catchup-and-exit nil t)
2927             (gnus-message 6 "No unread news")
2928             (when kill-buffer
2929               (gnus-kill-or-deaden-summary kill-buffer))
2930             ;; Return nil from this function.
2931             nil)
2932         ;; Hide conversation thread subtrees.  We cannot do this in
2933         ;; gnus-summary-prepare-hook since kill processing may not
2934         ;; work with hidden articles.
2935         (and gnus-show-threads
2936              gnus-thread-hide-subtree
2937              (gnus-summary-hide-all-threads))
2938         (when kill-buffer
2939           (gnus-kill-or-deaden-summary kill-buffer))
2940         ;; Show first unread article if requested.
2941         (if (and (not no-article)
2942                  (not no-display)
2943                  gnus-newsgroup-unreads
2944                  gnus-auto-select-first)
2945             (progn
2946               (gnus-configure-windows 'summary)
2947               (cond
2948                ((eq gnus-auto-select-first 'best)
2949                 (gnus-summary-best-unread-article))
2950                ((eq gnus-auto-select-first t)
2951                 (gnus-summary-first-unread-article))
2952                ((gnus-functionp gnus-auto-select-first)
2953                 (funcall gnus-auto-select-first))))
2954           ;; Don't select any articles, just move point to the first
2955           ;; article in the group.
2956           (goto-char (point-min))
2957           (gnus-summary-position-point)
2958           (gnus-configure-windows 'summary 'force)
2959           (gnus-set-mode-line 'summary))
2960         (when (get-buffer-window gnus-group-buffer t)
2961           ;; Gotta use windows, because recenter does weird stuff if
2962           ;; the current buffer ain't the displayed window.
2963           (let ((owin (selected-window)))
2964             (select-window (get-buffer-window gnus-group-buffer t))
2965             (when (gnus-group-goto-group group)
2966               (recenter))
2967             (select-window owin)))
2968         ;; Mark this buffer as "prepared".
2969         (setq gnus-newsgroup-prepared t)
2970         (gnus-run-hooks 'gnus-summary-prepared-hook)
2971         t)))))
2972
2973 (defun gnus-summary-prepare ()
2974   "Generate the summary buffer."
2975   (interactive)
2976   (let ((buffer-read-only nil))
2977     (erase-buffer)
2978     (setq gnus-newsgroup-data nil
2979           gnus-newsgroup-data-reverse nil)
2980     (gnus-run-hooks 'gnus-summary-generate-hook)
2981     ;; Generate the buffer, either with threads or without.
2982     (when gnus-newsgroup-headers
2983       (gnus-summary-prepare-threads
2984        (if gnus-show-threads
2985            (gnus-sort-gathered-threads
2986             (funcall gnus-summary-thread-gathering-function
2987                      (gnus-sort-threads
2988                       (gnus-cut-threads (gnus-make-threads)))))
2989          ;; Unthreaded display.
2990          (gnus-sort-articles gnus-newsgroup-headers))))
2991     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
2992     ;; Call hooks for modifying summary buffer.
2993     (goto-char (point-min))
2994     (gnus-run-hooks 'gnus-summary-prepare-hook)))
2995
2996 (defsubst gnus-general-simplify-subject (subject)
2997   "Simply subject by the same rules as gnus-gather-threads-by-subject."
2998   (setq subject
2999         (cond
3000          ;; Truncate the subject.
3001          (gnus-simplify-subject-functions
3002           (gnus-map-function gnus-simplify-subject-functions subject))
3003          ((numberp gnus-summary-gather-subject-limit)
3004           (setq subject (gnus-simplify-subject-re subject))
3005           (if (> (length subject) gnus-summary-gather-subject-limit)
3006               (substring subject 0 gnus-summary-gather-subject-limit)
3007             subject))
3008          ;; Fuzzily simplify it.
3009          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3010           (gnus-simplify-subject-fuzzy subject))
3011          ;; Just remove the leading "Re:".
3012          (t
3013           (gnus-simplify-subject-re subject))))
3014
3015   (if (and gnus-summary-gather-exclude-subject
3016            (string-match gnus-summary-gather-exclude-subject subject))
3017       nil                               ; This article shouldn't be gathered
3018     subject))
3019
3020 (defun gnus-summary-simplify-subject-query ()
3021   "Query where the respool algorithm would put this article."
3022   (interactive)
3023   (gnus-summary-select-article)
3024   (message "%s"
3025            (gnus-general-simplify-subject (gnus-summary-article-subject))))
3026
3027 (defun gnus-gather-threads-by-subject (threads)
3028   "Gather threads by looking at Subject headers."
3029   (if (not gnus-summary-make-false-root)
3030       threads
3031     (let ((hashtb (gnus-make-hashtable 1024))
3032           (prev threads)
3033           (result threads)
3034           subject hthread whole-subject)
3035       (while threads
3036         (setq subject (gnus-general-simplify-subject
3037                        (setq whole-subject (mail-header-subject
3038                                             (caar threads)))))
3039         (when subject
3040           (if (setq hthread (gnus-gethash subject hashtb))
3041               (progn
3042                 ;; We enter a dummy root into the thread, if we
3043                 ;; haven't done that already.
3044                 (unless (stringp (caar hthread))
3045                   (setcar hthread (list whole-subject (car hthread))))
3046                 ;; We add this new gathered thread to this gathered
3047                 ;; thread.
3048                 (setcdr (car hthread)
3049                         (nconc (cdar hthread) (list (car threads))))
3050                 ;; Remove it from the list of threads.
3051                 (setcdr prev (cdr threads))
3052                 (setq threads prev))
3053             ;; Enter this thread into the hash table.
3054             (gnus-sethash subject threads hashtb)))
3055         (setq prev threads)
3056         (setq threads (cdr threads)))
3057       result)))
3058
3059 (defun gnus-gather-threads-by-references (threads)
3060   "Gather threads by looking at References headers."
3061   (let ((idhashtb (gnus-make-hashtable 1024))
3062         (thhashtb (gnus-make-hashtable 1024))
3063         (prev threads)
3064         (result threads)
3065         ids references id gthread gid entered ref)
3066     (while threads
3067       (when (setq references (mail-header-references (caar threads)))
3068         (setq id (mail-header-id (caar threads))
3069               ids (gnus-split-references references)
3070               entered nil)
3071         (while (setq ref (pop ids))
3072           (setq ids (delete ref ids))
3073           (if (not (setq gid (gnus-gethash ref idhashtb)))
3074               (progn
3075                 (gnus-sethash ref id idhashtb)
3076                 (gnus-sethash id threads thhashtb))
3077             (setq gthread (gnus-gethash gid thhashtb))
3078             (unless entered
3079               ;; We enter a dummy root into the thread, if we
3080               ;; haven't done that already.
3081               (unless (stringp (caar gthread))
3082                 (setcar gthread (list (mail-header-subject (caar gthread))
3083                                       (car gthread))))
3084               ;; We add this new gathered thread to this gathered
3085               ;; thread.
3086               (setcdr (car gthread)
3087                       (nconc (cdar gthread) (list (car threads)))))
3088             ;; Add it into the thread hash table.
3089             (gnus-sethash id gthread thhashtb)
3090             (setq entered t)
3091             ;; Remove it from the list of threads.
3092             (setcdr prev (cdr threads))
3093             (setq threads prev))))
3094       (setq prev threads)
3095       (setq threads (cdr threads)))
3096     result))
3097
3098 (defun gnus-sort-gathered-threads (threads)
3099   "Sort subtreads inside each gathered thread by article number."
3100   (let ((result threads))
3101     (while threads
3102       (when (stringp (caar threads))
3103         (setcdr (car threads)
3104                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3105       (setq threads (cdr threads)))
3106     result))
3107
3108 (defun gnus-thread-loop-p (root thread)
3109   "Say whether ROOT is in THREAD."
3110   (let ((stack (list thread))
3111         (infloop 0)
3112         th)
3113     (while (setq thread (pop stack))
3114       (setq th (cdr thread))
3115       (while (and th
3116                   (not (eq (caar th) root)))
3117         (pop th))
3118       (if th
3119           ;; We have found a loop.
3120           (let (ref-dep)
3121             (setcdr thread (delq (car th) (cdr thread)))
3122             (if (boundp (setq ref-dep (intern "none"
3123                                               gnus-newsgroup-dependencies)))
3124                 (setcdr (symbol-value ref-dep)
3125                         (nconc (cdr (symbol-value ref-dep))
3126                                (list (car th))))
3127               (set ref-dep (list nil (car th))))
3128             (setq infloop 1
3129                   stack nil))
3130         ;; Push all the subthreads onto the stack.
3131         (push (cdr thread) stack)))
3132     infloop))
3133
3134 (defun gnus-make-threads ()
3135   "Go through the dependency hashtb and find the roots.  Return all threads."
3136   (let (threads)
3137     (while (catch 'infloop
3138              (mapatoms
3139               (lambda (refs)
3140                 ;; Deal with self-referencing References loops.
3141                 (when (and (car (symbol-value refs))
3142                            (not (zerop
3143                                  (apply
3144                                   '+
3145                                   (mapcar
3146                                    (lambda (thread)
3147                                      (gnus-thread-loop-p
3148                                       (car (symbol-value refs)) thread))
3149                                    (cdr (symbol-value refs)))))))
3150                   (setq threads nil)
3151                   (throw 'infloop t))
3152                 (unless (car (symbol-value refs))
3153                   ;; These threads do not refer back to any other articles,
3154                   ;; so they're roots.
3155                   (setq threads (append (cdr (symbol-value refs)) threads))))
3156               gnus-newsgroup-dependencies)))
3157     threads))
3158
3159 ;; Build the thread tree.
3160 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3161   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3162
3163 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3164 if it was already present.
3165
3166 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3167 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3168 Message-IDs will be renamed be renamed to a unique Message-ID before
3169 being entered.
3170
3171 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3172   (let* ((id (mail-header-id header))
3173          (id-dep (and id (intern id dependencies)))
3174          ref ref-dep ref-header)
3175     ;; Enter this `header' in the `dependencies' table.
3176     (cond
3177      ((not id-dep)
3178       (setq header nil))
3179      ;; The first two cases do the normal part: enter a new `header'
3180      ;; in the `dependencies' table.
3181      ((not (boundp id-dep))
3182       (set id-dep (list header)))
3183      ((null (car (symbol-value id-dep)))
3184       (setcar (symbol-value id-dep) header))
3185
3186      ;; From here the `header' was already present in the
3187      ;; `dependencies' table.
3188      (force-new
3189       ;; Overrides an existing entry;
3190       ;; just set the header part of the entry.
3191       (setcar (symbol-value id-dep) header))
3192
3193      ;; Renames the existing `header' to a unique Message-ID.
3194      ((not gnus-summary-ignore-duplicates)
3195       ;; An article with this Message-ID has already been seen.
3196       ;; We rename the Message-ID.
3197       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3198            (list header))
3199       (mail-header-set-id header id))
3200
3201      ;; The last case ignores an existing entry, except it adds any
3202      ;; additional Xrefs (in case the two articles came from different
3203      ;; servers.
3204      ;; Also sets `header' to `nil' meaning that the `dependencies'
3205      ;; table was *not* modified.
3206      (t
3207       (mail-header-set-xref
3208        (car (symbol-value id-dep))
3209        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3210                    "")
3211                (or (mail-header-xref header) "")))
3212       (setq header nil)))
3213
3214     (when header
3215       ;; First check if that we are not creating a References loop.
3216       (setq ref (gnus-parent-id (mail-header-references header)))
3217       (while (and ref
3218                   (setq ref-dep (intern-soft ref dependencies))
3219                   (boundp ref-dep)
3220                   (setq ref-header (car (symbol-value ref-dep))))
3221         (if (string= id ref)
3222             ;; Yuk!  This is a reference loop.  Make the article be a
3223             ;; root article.
3224             (progn
3225               (mail-header-set-references (car (symbol-value id-dep)) "none")
3226               (setq ref nil))
3227           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3228       (setq ref (gnus-parent-id (mail-header-references header)))
3229       (setq ref-dep (intern (or ref "none") dependencies))
3230       (if (boundp ref-dep)
3231           (setcdr (symbol-value ref-dep)
3232                   (nconc (cdr (symbol-value ref-dep))
3233                          (list (symbol-value id-dep))))
3234         (set ref-dep (list nil (symbol-value id-dep)))))
3235     header))
3236
3237 (defun gnus-build-sparse-threads ()
3238   (let ((headers gnus-newsgroup-headers)
3239         (mail-parse-charset gnus-newsgroup-charset)
3240         (gnus-summary-ignore-duplicates t)
3241         header references generation relations
3242         subject child end new-child date)
3243     ;; First we create an alist of generations/relations, where
3244     ;; generations is how much we trust the relation, and the relation
3245     ;; is parent/child.
3246     (gnus-message 7 "Making sparse threads...")
3247     (save-excursion
3248       (nnheader-set-temp-buffer " *gnus sparse threads*")
3249       (while (setq header (pop headers))
3250         (when (and (setq references (mail-header-references header))
3251                    (not (string= references "")))
3252           (insert references)
3253           (setq child (mail-header-id header)
3254                 subject (mail-header-subject header)
3255                 date (mail-header-date header)
3256                 generation 0)
3257           (while (search-backward ">" nil t)
3258             (setq end (1+ (point)))
3259             (when (search-backward "<" nil t)
3260               (setq new-child (buffer-substring (point) end))
3261               (push (list (incf generation)
3262                           child (setq child new-child)
3263                           subject date)
3264                     relations)))
3265           (when child
3266             (push (list (1+ generation) child nil subject) relations))
3267           (erase-buffer)))
3268       (kill-buffer (current-buffer)))
3269     ;; Sort over trustworthiness.
3270     (mapcar
3271      (lambda (relation)
3272        (when (gnus-dependencies-add-header
3273               (make-full-mail-header
3274                gnus-reffed-article-number
3275                (nth 3 relation) "" (or (nth 4 relation) "")
3276                (nth 1 relation)
3277                (or (nth 2 relation) "") 0 0 "")
3278               gnus-newsgroup-dependencies nil)
3279          (push gnus-reffed-article-number gnus-newsgroup-limit)
3280          (push gnus-reffed-article-number gnus-newsgroup-sparse)
3281          (push (cons gnus-reffed-article-number gnus-sparse-mark)
3282                gnus-newsgroup-reads)
3283          (decf gnus-reffed-article-number)))
3284      (sort relations 'car-less-than-car))
3285     (gnus-message 7 "Making sparse threads...done")))
3286
3287 (defun gnus-build-old-threads ()
3288   ;; Look at all the articles that refer back to old articles, and
3289   ;; fetch the headers for the articles that aren't there.  This will
3290   ;; build complete threads - if the roots haven't been expired by the
3291   ;; server, that is.
3292   (let ((mail-parse-charset gnus-newsgroup-charset)
3293         id heads)
3294     (mapatoms
3295      (lambda (refs)
3296        (when (not (car (symbol-value refs)))
3297          (setq heads (cdr (symbol-value refs)))
3298          (while heads
3299            (if (memq (mail-header-number (caar heads))
3300                      gnus-newsgroup-dormant)
3301                (setq heads (cdr heads))
3302              (setq id (symbol-name refs))
3303              (while (and (setq id (gnus-build-get-header id))
3304                          (not (car (gnus-id-to-thread id)))))
3305              (setq heads nil)))))
3306      gnus-newsgroup-dependencies)))
3307
3308 ;; This function has to be called with point after the article number
3309 ;; on the beginning of the line.
3310 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
3311   (let ((eol (gnus-point-at-eol))
3312         (buffer (current-buffer))
3313         header)
3314
3315     ;; overview: [num subject from date id refs chars lines misc]
3316     (unless (eobp)
3317       (forward-char))
3318
3319     (setq header
3320           (make-full-mail-header
3321            number                               ; number
3322            (nnheader-nov-field)                 ; subject
3323            (nnheader-nov-field)                 ; from
3324            (nnheader-nov-field)                 ; date
3325            (nnheader-nov-read-message-id)       ; id
3326            (nnheader-nov-field)                 ; refs
3327            (nnheader-nov-read-integer)          ; chars
3328            (nnheader-nov-read-integer)          ; lines
3329            (unless (eobp)
3330              (nnheader-nov-field))              ; misc
3331            (nnheader-nov-parse-extra)))         ; extra
3332
3333     (when gnus-alter-header-function
3334       (funcall gnus-alter-header-function header))
3335     (gnus-dependencies-add-header header dependencies force-new)))
3336
3337 (defun gnus-build-get-header (id)
3338   "Look through the buffer of NOV lines and find the header to ID.
3339 Enter this line into the dependencies hash table, and return
3340 the id of the parent article (if any)."
3341   (let ((deps gnus-newsgroup-dependencies)
3342         found header)
3343     (prog1
3344         (save-excursion
3345           (set-buffer nntp-server-buffer)
3346           (let ((case-fold-search nil))
3347             (goto-char (point-min))
3348             (while (and (not found)
3349                         (search-forward id nil t))
3350               (beginning-of-line)
3351               (setq found (looking-at
3352                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
3353                                    (regexp-quote id))))
3354               (or found (beginning-of-line 2)))
3355             (when found
3356               (beginning-of-line)
3357               (and
3358                (setq header (gnus-nov-parse-line
3359                              (read (current-buffer)) deps))
3360                (gnus-parent-id (mail-header-references header))))))
3361       (when header
3362         (let ((number (mail-header-number header)))
3363           (push number gnus-newsgroup-limit)
3364           (push header gnus-newsgroup-headers)
3365           (if (memq number gnus-newsgroup-unselected)
3366               (progn
3367                 (push number gnus-newsgroup-unreads)
3368                 (setq gnus-newsgroup-unselected
3369                       (delq number gnus-newsgroup-unselected)))
3370             (push number gnus-newsgroup-ancient)))))))
3371
3372 (defun gnus-build-all-threads ()
3373   "Read all the headers."
3374   (let ((gnus-summary-ignore-duplicates t)
3375         (mail-parse-charset gnus-newsgroup-charset)
3376         (dependencies gnus-newsgroup-dependencies)
3377         header article)
3378     (save-excursion
3379       (set-buffer nntp-server-buffer)
3380       (let ((case-fold-search nil))
3381         (goto-char (point-min))
3382         (while (not (eobp))
3383           (ignore-errors
3384             (setq article (read (current-buffer))
3385                   header (gnus-nov-parse-line article dependencies)))
3386           (when header
3387             (save-excursion
3388               (set-buffer gnus-summary-buffer)
3389               (push header gnus-newsgroup-headers)
3390               (if (memq (setq article (mail-header-number header))
3391                         gnus-newsgroup-unselected)
3392                   (progn
3393                     (push article gnus-newsgroup-unreads)
3394                     (setq gnus-newsgroup-unselected
3395                           (delq article gnus-newsgroup-unselected)))
3396                 (push article gnus-newsgroup-ancient)))
3397             (forward-line 1)))))))
3398
3399 (defun gnus-summary-update-article-line (article header)
3400   "Update the line for ARTICLE using HEADERS."
3401   (let* ((id (mail-header-id header))
3402          (thread (gnus-id-to-thread id)))
3403     (unless thread
3404       (error "Article in no thread"))
3405     ;; Update the thread.
3406     (setcar thread header)
3407     (gnus-summary-goto-subject article)
3408     (let* ((datal (gnus-data-find-list article))
3409            (data (car datal))
3410            (length (when (cdr datal)
3411                      (- (gnus-data-pos data)
3412                         (gnus-data-pos (cadr datal)))))
3413            (buffer-read-only nil)
3414            (level (gnus-summary-thread-level)))
3415       (gnus-delete-line)
3416       (gnus-summary-insert-line
3417        header level nil (gnus-article-mark article)
3418        (memq article gnus-newsgroup-replied)
3419        (memq article gnus-newsgroup-expirable)
3420        ;; Only insert the Subject string when it's different
3421        ;; from the previous Subject string.
3422        (if (and
3423             gnus-show-threads
3424             (gnus-subject-equal
3425              (condition-case ()
3426                  (mail-header-subject
3427                   (gnus-data-header
3428                    (cadr
3429                     (gnus-data-find-list
3430                      article
3431                      (gnus-data-list t)))))
3432                ;; Error on the side of excessive subjects.
3433                (error ""))
3434              (mail-header-subject header)))
3435            ""
3436          (mail-header-subject header))
3437        nil (cdr (assq article gnus-newsgroup-scored))
3438        (memq article gnus-newsgroup-processable))
3439       (when length
3440         (gnus-data-update-list
3441          (cdr datal) (- length (- (gnus-data-pos data) (point))))))))
3442
3443 (defun gnus-summary-update-article (article &optional iheader)
3444   "Update ARTICLE in the summary buffer."
3445   (set-buffer gnus-summary-buffer)
3446   (let* ((header (gnus-summary-article-header article))
3447          (id (mail-header-id header))
3448          (data (gnus-data-find article))
3449          (thread (gnus-id-to-thread id))
3450          (references (mail-header-references header))
3451          (parent
3452           (gnus-id-to-thread
3453            (or (gnus-parent-id
3454                 (when (and references
3455                            (not (equal "" references)))
3456                   references))
3457                "none")))
3458          (buffer-read-only nil)
3459          (old (car thread)))
3460     (when thread
3461       (unless iheader
3462         (setcar thread nil)
3463         (when parent
3464           (delq thread parent)))
3465       (if (gnus-summary-insert-subject id header)
3466           ;; Set the (possibly) new article number in the data structure.
3467           (gnus-data-set-number data (gnus-id-to-article id))
3468         (setcar thread old)
3469         nil))))
3470
3471 (defun gnus-rebuild-thread (id &optional line)
3472   "Rebuild the thread containing ID.
3473 If LINE, insert the rebuilt thread starting on line LINE."
3474   (let ((buffer-read-only nil)
3475         old-pos current thread data)
3476     (if (not gnus-show-threads)
3477         (setq thread (list (car (gnus-id-to-thread id))))
3478       ;; Get the thread this article is part of.
3479       (setq thread (gnus-remove-thread id)))
3480     (setq old-pos (gnus-point-at-bol))
3481     (setq current (save-excursion
3482                     (and (zerop (forward-line -1))
3483                          (gnus-summary-article-number))))
3484     ;; If this is a gathered thread, we have to go some re-gathering.
3485     (when (stringp (car thread))
3486       (let ((subject (car thread))
3487             roots thr)
3488         (setq thread (cdr thread))
3489         (while thread
3490           (unless (memq (setq thr (gnus-id-to-thread
3491                                    (gnus-root-id
3492                                     (mail-header-id (caar thread)))))
3493                         roots)
3494             (push thr roots))
3495           (setq thread (cdr thread)))
3496         ;; We now have all (unique) roots.
3497         (if (= (length roots) 1)
3498             ;; All the loose roots are now one solid root.
3499             (setq thread (car roots))
3500           (setq thread (cons subject (gnus-sort-threads roots))))))
3501     (let (threads)
3502       ;; We then insert this thread into the summary buffer.
3503       (when line
3504         (goto-char (point-min))
3505         (forward-line (1- line)))
3506       (let (gnus-newsgroup-data gnus-newsgroup-threads)
3507         (if gnus-show-threads
3508             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
3509           (gnus-summary-prepare-unthreaded thread))
3510         (setq data (nreverse gnus-newsgroup-data))
3511         (setq threads gnus-newsgroup-threads))
3512       ;; We splice the new data into the data structure.
3513       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
3514       ;;!!! then we want to insert at the beginning of the buffer.
3515       ;;!!! That happens to be true with Gnus now, but that may
3516       ;;!!! change in the future.  Perhaps.
3517       (gnus-data-enter-list
3518        (if line nil current) data (- (point) old-pos))
3519       (setq gnus-newsgroup-threads
3520             (nconc threads gnus-newsgroup-threads))
3521       (gnus-data-compute-positions))))
3522
3523 (defun gnus-number-to-header (number)
3524   "Return the header for article NUMBER."
3525   (let ((headers gnus-newsgroup-headers))
3526     (while (and headers
3527                 (not (= number (mail-header-number (car headers)))))
3528       (pop headers))
3529     (when headers
3530       (car headers))))
3531
3532 (defun gnus-parent-headers (in-headers &optional generation)
3533   "Return the headers of the GENERATIONeth parent of HEADERS."
3534   (unless generation
3535     (setq generation 1))
3536   (let ((parent t)
3537         (headers in-headers)
3538         references)
3539     (while (and parent
3540                 (not (zerop generation))
3541                 (setq references (mail-header-references headers)))
3542       (setq headers (if (and references
3543                              (setq parent (gnus-parent-id references)))
3544                         (car (gnus-id-to-thread parent))
3545                       nil))
3546       (decf generation))
3547     (and (not (eq headers in-headers))
3548          headers)))
3549
3550 (defun gnus-id-to-thread (id)
3551   "Return the (sub-)thread where ID appears."
3552   (gnus-gethash id gnus-newsgroup-dependencies))
3553
3554 (defun gnus-id-to-article (id)
3555   "Return the article number of ID."
3556   (let ((thread (gnus-id-to-thread id)))
3557     (when (and thread
3558                (car thread))
3559       (mail-header-number (car thread)))))
3560
3561 (defun gnus-id-to-header (id)
3562   "Return the article headers of ID."
3563   (car (gnus-id-to-thread id)))
3564
3565 (defun gnus-article-displayed-root-p (article)
3566   "Say whether ARTICLE is a root(ish) article."
3567   (let ((level (gnus-summary-thread-level article))
3568         (refs (mail-header-references  (gnus-summary-article-header article)))
3569         particle)
3570     (cond
3571      ((null level) nil)
3572      ((zerop level) t)
3573      ((null refs) t)
3574      ((null (gnus-parent-id refs)) t)
3575      ((and (= 1 level)
3576            (null (setq particle (gnus-id-to-article
3577                                  (gnus-parent-id refs))))
3578            (null (gnus-summary-thread-level particle)))))))
3579
3580 (defun gnus-root-id (id)
3581   "Return the id of the root of the thread where ID appears."
3582   (let (last-id prev)
3583     (while (and id (setq prev (car (gnus-id-to-thread id))))
3584       (setq last-id id
3585             id (gnus-parent-id (mail-header-references prev))))
3586     last-id))
3587
3588 (defun gnus-articles-in-thread (thread)
3589   "Return the list of articles in THREAD."
3590   (cons (mail-header-number (car thread))
3591         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
3592
3593 (defun gnus-remove-thread (id &optional dont-remove)
3594   "Remove the thread that has ID in it."
3595   (let (headers thread last-id)
3596     ;; First go up in this thread until we find the root.
3597     (setq last-id (gnus-root-id id)
3598           headers (message-flatten-list (gnus-id-to-thread last-id)))
3599     ;; We have now found the real root of this thread.  It might have
3600     ;; been gathered into some loose thread, so we have to search
3601     ;; through the threads to find the thread we wanted.
3602     (let ((threads gnus-newsgroup-threads)
3603           sub)
3604       (while threads
3605         (setq sub (car threads))
3606         (if (stringp (car sub))
3607             ;; This is a gathered thread, so we look at the roots
3608             ;; below it to find whether this article is in this
3609             ;; gathered root.
3610             (progn
3611               (setq sub (cdr sub))
3612               (while sub
3613                 (when (member (caar sub) headers)
3614                   (setq thread (car threads)
3615                         threads nil
3616                         sub nil))
3617                 (setq sub (cdr sub))))
3618           ;; It's an ordinary thread, so we check it.
3619           (when (eq (car sub) (car headers))
3620             (setq thread sub
3621                   threads nil)))
3622         (setq threads (cdr threads)))
3623       ;; If this article is in no thread, then it's a root.
3624       (if thread
3625           (unless dont-remove
3626             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
3627         (setq thread (gnus-id-to-thread last-id)))
3628       (when thread
3629         (prog1
3630             thread                      ; We return this thread.
3631           (unless dont-remove
3632             (if (stringp (car thread))
3633                 (progn
3634                   ;; If we use dummy roots, then we have to remove the
3635                   ;; dummy root as well.
3636                   (when (eq gnus-summary-make-false-root 'dummy)
3637                     ;; We go to the dummy root by going to
3638                     ;; the first sub-"thread", and then one line up.
3639                     (gnus-summary-goto-article
3640                      (mail-header-number (caadr thread)))
3641                     (forward-line -1)
3642                     (gnus-delete-line)
3643                     (gnus-data-compute-positions))
3644                   (setq thread (cdr thread))
3645                   (while thread
3646                     (gnus-remove-thread-1 (car thread))
3647                     (setq thread (cdr thread))))
3648               (gnus-remove-thread-1 thread))))))))
3649
3650 (defun gnus-remove-thread-1 (thread)
3651   "Remove the thread THREAD recursively."
3652   (let ((number (mail-header-number (pop thread)))
3653         d)
3654     (setq thread (reverse thread))
3655     (while thread
3656       (gnus-remove-thread-1 (pop thread)))
3657     (when (setq d (gnus-data-find number))
3658       (goto-char (gnus-data-pos d))
3659       (gnus-summary-show-thread)
3660       (gnus-data-remove
3661        number
3662        (- (gnus-point-at-bol)
3663           (prog1
3664               (1+ (gnus-point-at-eol))
3665             (gnus-delete-line)))))))
3666
3667 (defun gnus-sort-threads (threads)
3668   "Sort THREADS."
3669   (if (not gnus-thread-sort-functions)
3670       threads
3671     (gnus-message 8 "Sorting threads...")
3672     (prog1
3673         (sort threads (gnus-make-sort-function gnus-thread-sort-functions))
3674       (gnus-message 8 "Sorting threads...done"))))
3675
3676 (defun gnus-sort-articles (articles)
3677   "Sort ARTICLES."
3678   (when gnus-article-sort-functions
3679     (gnus-message 7 "Sorting articles...")
3680     (prog1
3681         (setq gnus-newsgroup-headers
3682               (sort articles (gnus-make-sort-function
3683                               gnus-article-sort-functions)))
3684       (gnus-message 7 "Sorting articles...done"))))
3685
3686 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
3687 (defmacro gnus-thread-header (thread)
3688   "Return header of first article in THREAD.
3689 Note that THREAD must never, ever be anything else than a variable -
3690 using some other form will lead to serious barfage."
3691   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
3692   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
3693   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
3694         (vector thread) 2))
3695
3696 (defsubst gnus-article-sort-by-number (h1 h2)
3697   "Sort articles by article number."
3698   (< (mail-header-number h1)
3699      (mail-header-number h2)))
3700
3701 (defun gnus-thread-sort-by-number (h1 h2)
3702   "Sort threads by root article number."
3703   (gnus-article-sort-by-number
3704    (gnus-thread-header h1) (gnus-thread-header h2)))
3705
3706 (defsubst gnus-article-sort-by-lines (h1 h2)
3707   "Sort articles by article Lines header."
3708   (< (mail-header-lines h1)
3709      (mail-header-lines h2)))
3710
3711 (defun gnus-thread-sort-by-lines (h1 h2)
3712   "Sort threads by root article Lines header."
3713   (gnus-article-sort-by-lines
3714    (gnus-thread-header h1) (gnus-thread-header h2)))
3715
3716 (defsubst gnus-article-sort-by-chars (h1 h2)
3717   "Sort articles by octet length."
3718   (< (mail-header-chars h1)
3719      (mail-header-chars h2)))
3720
3721 (defun gnus-thread-sort-by-chars (h1 h2)
3722   "Sort threads by root article octet length."
3723   (gnus-article-sort-by-chars
3724    (gnus-thread-header h1) (gnus-thread-header h2)))
3725
3726 (defsubst gnus-article-sort-by-author (h1 h2)
3727   "Sort articles by root author."
3728   (string-lessp
3729    (let ((addr (car (mime-entity-read-field h1 'From))))
3730      (or (std11-full-name-string addr)
3731          (std11-address-string addr)
3732          ""))
3733    (let ((addr (car (mime-entity-read-field h2 'From))))
3734      (or (std11-full-name-string addr)
3735          (std11-address-string addr)
3736          ""))
3737    ))
3738
3739 (defun gnus-thread-sort-by-author (h1 h2)
3740   "Sort threads by root author."
3741   (gnus-article-sort-by-author
3742    (gnus-thread-header h1)  (gnus-thread-header h2)))
3743
3744 (defsubst gnus-article-sort-by-subject (h1 h2)
3745   "Sort articles by root subject."
3746   (string-lessp
3747    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
3748    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
3749
3750 (defun gnus-thread-sort-by-subject (h1 h2)
3751   "Sort threads by root subject."
3752   (gnus-article-sort-by-subject
3753    (gnus-thread-header h1) (gnus-thread-header h2)))
3754
3755 (defsubst gnus-article-sort-by-date (h1 h2)
3756   "Sort articles by root article date."
3757   (time-less-p
3758    (gnus-date-get-time (mail-header-date h1))
3759    (gnus-date-get-time (mail-header-date h2))))
3760
3761 (defun gnus-thread-sort-by-date (h1 h2)
3762   "Sort threads by root article date."
3763   (gnus-article-sort-by-date
3764    (gnus-thread-header h1) (gnus-thread-header h2)))
3765
3766 (defsubst gnus-article-sort-by-score (h1 h2)
3767   "Sort articles by root article score.
3768 Unscored articles will be counted as having a score of zero."
3769   (> (or (cdr (assq (mail-header-number h1)
3770                     gnus-newsgroup-scored))
3771          gnus-summary-default-score 0)
3772      (or (cdr (assq (mail-header-number h2)
3773                     gnus-newsgroup-scored))
3774          gnus-summary-default-score 0)))
3775
3776 (defun gnus-thread-sort-by-score (h1 h2)
3777   "Sort threads by root article score."
3778   (gnus-article-sort-by-score
3779    (gnus-thread-header h1) (gnus-thread-header h2)))
3780
3781 (defun gnus-thread-sort-by-total-score (h1 h2)
3782   "Sort threads by the sum of all scores in the thread.
3783 Unscored articles will be counted as having a score of zero."
3784   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
3785
3786 (defun gnus-thread-total-score (thread)
3787   ;; This function find the total score of THREAD.
3788   (cond ((null thread)
3789          0)
3790         ((consp thread)
3791          (if (stringp (car thread))
3792              (apply gnus-thread-score-function 0
3793                     (mapcar 'gnus-thread-total-score-1 (cdr thread)))
3794            (gnus-thread-total-score-1 thread)))
3795         (t
3796          (gnus-thread-total-score-1 (list thread)))))
3797
3798 (defun gnus-thread-total-score-1 (root)
3799   ;; This function find the total score of the thread below ROOT.
3800   (setq root (car root))
3801   (apply gnus-thread-score-function
3802          (or (append
3803               (mapcar 'gnus-thread-total-score
3804                       (cdr (gnus-id-to-thread (mail-header-id root))))
3805               (when (> (mail-header-number root) 0)
3806                 (list (or (cdr (assq (mail-header-number root)
3807                                      gnus-newsgroup-scored))
3808                           gnus-summary-default-score 0))))
3809              (list gnus-summary-default-score)
3810              '(0))))
3811
3812 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
3813 (defvar gnus-tmp-prev-subject nil)
3814 (defvar gnus-tmp-false-parent nil)
3815 (defvar gnus-tmp-root-expunged nil)
3816 (defvar gnus-tmp-dummy-line nil)
3817
3818 (defvar gnus-tmp-header)
3819 (defun gnus-extra-header (type &optional header)
3820   "Return the extra header of TYPE."
3821   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
3822       ""))
3823
3824 (defun gnus-summary-prepare-threads (threads)
3825   "Prepare summary buffer from THREADS and indentation LEVEL.
3826 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
3827 or a straight list of headers."
3828   (gnus-message 7 "Generating summary...")
3829
3830   (setq gnus-newsgroup-threads threads)
3831   (beginning-of-line)
3832
3833   (let ((gnus-tmp-level 0)
3834         (default-score (or gnus-summary-default-score 0))
3835         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
3836         thread number subject stack state gnus-tmp-gathered beg-match
3837         new-roots gnus-tmp-new-adopts thread-end
3838         gnus-tmp-header gnus-tmp-unread
3839         gnus-tmp-replied gnus-tmp-subject-or-nil
3840         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
3841         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
3842         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket)
3843
3844     (setq gnus-tmp-prev-subject nil)
3845
3846     (if (vectorp (car threads))
3847         ;; If this is a straight (sic) list of headers, then a
3848         ;; threaded summary display isn't required, so we just create
3849         ;; an unthreaded one.
3850         (gnus-summary-prepare-unthreaded threads)
3851
3852       ;; Do the threaded display.
3853
3854       (while (or threads stack gnus-tmp-new-adopts new-roots)
3855
3856         (if (and (= gnus-tmp-level 0)
3857                  (or (not stack)
3858                      (= (caar stack) 0))
3859                  (not gnus-tmp-false-parent)
3860                  (or gnus-tmp-new-adopts new-roots))
3861             (if gnus-tmp-new-adopts
3862                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
3863                       thread (list (car gnus-tmp-new-adopts))
3864                       gnus-tmp-header (caar thread)
3865                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
3866               (when new-roots
3867                 (setq thread (list (car new-roots))
3868                       gnus-tmp-header (caar thread)
3869                       new-roots (cdr new-roots))))
3870
3871           (if threads
3872               ;; If there are some threads, we do them before the
3873               ;; threads on the stack.
3874               (setq thread threads
3875                     gnus-tmp-header (caar thread))
3876             ;; There were no current threads, so we pop something off
3877             ;; the stack.
3878             (setq state (car stack)
3879                   gnus-tmp-level (car state)
3880                   thread (cdr state)
3881                   stack (cdr stack)
3882                   gnus-tmp-header (caar thread))))
3883
3884         (setq gnus-tmp-false-parent nil)
3885         (setq gnus-tmp-root-expunged nil)
3886         (setq thread-end nil)
3887
3888         (if (stringp gnus-tmp-header)
3889             ;; The header is a dummy root.
3890             (cond
3891              ((eq gnus-summary-make-false-root 'adopt)
3892               ;; We let the first article adopt the rest.
3893               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
3894                                                (cddar thread)))
3895               (setq gnus-tmp-gathered
3896                     (nconc (mapcar
3897                             (lambda (h) (mail-header-number (car h)))
3898                             (cddar thread))
3899                            gnus-tmp-gathered))
3900               (setq thread (cons (list (caar thread)
3901                                        (cadar thread))
3902                                  (cdr thread)))
3903               (setq gnus-tmp-level -1
3904                     gnus-tmp-false-parent t))
3905              ((eq gnus-summary-make-false-root 'empty)
3906               ;; We print adopted articles with empty subject fields.
3907               (setq gnus-tmp-gathered
3908                     (nconc (mapcar
3909                             (lambda (h) (mail-header-number (car h)))
3910                             (cddar thread))
3911                            gnus-tmp-gathered))
3912               (setq gnus-tmp-level -1))
3913              ((eq gnus-summary-make-false-root 'dummy)
3914               ;; We remember that we probably want to output a dummy
3915               ;; root.
3916               (setq gnus-tmp-dummy-line gnus-tmp-header)
3917               (setq gnus-tmp-prev-subject gnus-tmp-header))
3918              (t
3919               ;; We do not make a root for the gathered
3920               ;; sub-threads at all.
3921               (setq gnus-tmp-level -1)))
3922
3923           (setq number (mail-header-number gnus-tmp-header)
3924                 subject (mail-header-subject gnus-tmp-header))
3925
3926           (cond
3927            ;; If the thread has changed subject, we might want to make
3928            ;; this subthread into a root.
3929            ((and (null gnus-thread-ignore-subject)
3930                  (not (zerop gnus-tmp-level))
3931                  gnus-tmp-prev-subject
3932                  (not (inline
3933                         (gnus-subject-equal gnus-tmp-prev-subject subject))))
3934             (setq new-roots (nconc new-roots (list (car thread)))
3935                   thread-end t
3936                   gnus-tmp-header nil))
3937            ;; If the article lies outside the current limit,
3938            ;; then we do not display it.
3939            ((not (memq number gnus-newsgroup-limit))
3940             (setq gnus-tmp-gathered
3941                   (nconc (mapcar
3942                           (lambda (h) (mail-header-number (car h)))
3943                           (cdar thread))
3944                          gnus-tmp-gathered))
3945             (setq gnus-tmp-new-adopts (if (cdar thread)
3946                                           (append gnus-tmp-new-adopts
3947                                                   (cdar thread))
3948                                         gnus-tmp-new-adopts)
3949                   thread-end t
3950                   gnus-tmp-header nil)
3951             (when (zerop gnus-tmp-level)
3952               (setq gnus-tmp-root-expunged t)))
3953            ;; Perhaps this article is to be marked as read?
3954            ((and gnus-summary-mark-below
3955                  (< (or (cdr (assq number gnus-newsgroup-scored))
3956                         default-score)
3957                     gnus-summary-mark-below)
3958                  ;; Don't touch sparse articles.
3959                  (not (gnus-summary-article-sparse-p number))
3960                  (not (gnus-summary-article-ancient-p number)))
3961             (setq gnus-newsgroup-unreads
3962                   (delq number gnus-newsgroup-unreads))
3963             (if gnus-newsgroup-auto-expire
3964                 (push number gnus-newsgroup-expirable)
3965               (push (cons number gnus-low-score-mark)
3966                     gnus-newsgroup-reads))))
3967
3968           (when gnus-tmp-header
3969             ;; We may have an old dummy line to output before this
3970             ;; article.
3971             (when (and gnus-tmp-dummy-line
3972                        (gnus-subject-equal
3973                         gnus-tmp-dummy-line
3974                         (mail-header-subject gnus-tmp-header)))
3975               (gnus-summary-insert-dummy-line
3976                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
3977               (setq gnus-tmp-dummy-line nil))
3978
3979             ;; Compute the mark.
3980             (setq gnus-tmp-unread (gnus-article-mark number))
3981
3982             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
3983                                   gnus-tmp-header gnus-tmp-level)
3984                   gnus-newsgroup-data)
3985
3986             ;; Actually insert the line.
3987             (setq
3988              gnus-tmp-subject-or-nil
3989              (cond
3990               ((and gnus-thread-ignore-subject
3991                     gnus-tmp-prev-subject
3992                     (not (inline (gnus-subject-equal
3993                                   gnus-tmp-prev-subject subject))))
3994                subject)
3995               ((zerop gnus-tmp-level)
3996                (if (and (eq gnus-summary-make-false-root 'empty)
3997                         (memq number gnus-tmp-gathered)
3998                         gnus-tmp-prev-subject
3999                         (inline (gnus-subject-equal
4000                                  gnus-tmp-prev-subject subject)))
4001                    gnus-summary-same-subject
4002                  subject))
4003               (t gnus-summary-same-subject)))
4004             (if (and (eq gnus-summary-make-false-root 'adopt)
4005                      (= gnus-tmp-level 1)
4006                      (memq number gnus-tmp-gathered))
4007                 (setq gnus-tmp-opening-bracket ?\<
4008                       gnus-tmp-closing-bracket ?\>)
4009               (setq gnus-tmp-opening-bracket ?\[
4010                     gnus-tmp-closing-bracket ?\]))
4011             (setq
4012              gnus-tmp-indentation
4013              (aref gnus-thread-indent-array gnus-tmp-level)
4014              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4015              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4016                                 gnus-summary-default-score 0)
4017              gnus-tmp-score-char
4018              (if (or (null gnus-summary-default-score)
4019                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4020                          gnus-summary-zcore-fuzz))
4021                  ?  ;Whitespace
4022                (if (< gnus-tmp-score gnus-summary-default-score)
4023                    gnus-score-below-mark gnus-score-over-mark))
4024              gnus-tmp-replied
4025              (cond ((memq number gnus-newsgroup-processable)
4026                     gnus-process-mark)
4027                    ((memq number gnus-newsgroup-cached)
4028                     gnus-cached-mark)
4029                    ((memq number gnus-newsgroup-replied)
4030                     gnus-replied-mark)
4031                    ((memq number gnus-newsgroup-saved)
4032                     gnus-saved-mark)
4033                    (t gnus-unread-mark))
4034              gnus-tmp-from (mail-header-from gnus-tmp-header)
4035              gnus-tmp-name
4036              (cond
4037               ((string-match "<[^>]+> *$" gnus-tmp-from)
4038                (setq beg-match (match-beginning 0))
4039                (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from)
4040                         (substring gnus-tmp-from (1+ (match-beginning 0))
4041                                    (1- (match-end 0))))
4042                    (substring gnus-tmp-from 0 beg-match)))
4043               ((string-match "(.+)" gnus-tmp-from)
4044                (substring gnus-tmp-from
4045                           (1+ (match-beginning 0)) (1- (match-end 0))))
4046               (t gnus-tmp-from)))
4047             (when (string= gnus-tmp-name "")
4048               (setq gnus-tmp-name gnus-tmp-from))
4049             (unless (numberp gnus-tmp-lines)
4050               (setq gnus-tmp-lines 0))
4051             (gnus-put-text-property
4052              (point)
4053              (progn (eval gnus-summary-line-format-spec) (point))
4054              'gnus-number number)
4055             (when gnus-visual-p
4056               (forward-line -1)
4057               (gnus-run-hooks 'gnus-summary-update-hook)
4058               (forward-line 1))
4059
4060             (setq gnus-tmp-prev-subject subject)))
4061
4062         (when (nth 1 thread)
4063           (push (cons (max 0 gnus-tmp-level) (nthcdr 1 thread)) stack))
4064         (incf gnus-tmp-level)
4065         (setq threads (if thread-end nil (cdar thread)))
4066         (unless threads
4067           (setq gnus-tmp-level 0)))))
4068   (gnus-message 7 "Generating summary...done"))
4069
4070 (defun gnus-summary-prepare-unthreaded (headers)
4071   "Generate an unthreaded summary buffer based on HEADERS."
4072   (let (header number mark)
4073
4074     (beginning-of-line)
4075
4076     (while headers
4077       ;; We may have to root out some bad articles...
4078       (when (memq (setq number (mail-header-number
4079                                 (setq header (pop headers))))
4080                   gnus-newsgroup-limit)
4081         ;; Mark article as read when it has a low score.
4082         (when (and gnus-summary-mark-below
4083                    (< (or (cdr (assq number gnus-newsgroup-scored))
4084                           gnus-summary-default-score 0)
4085                       gnus-summary-mark-below)
4086                    (not (gnus-summary-article-ancient-p number)))
4087           (setq gnus-newsgroup-unreads
4088                 (delq number gnus-newsgroup-unreads))
4089           (if gnus-newsgroup-auto-expire
4090               (push number gnus-newsgroup-expirable)
4091             (push (cons number gnus-low-score-mark)
4092                   gnus-newsgroup-reads)))
4093
4094         (setq mark (gnus-article-mark number))
4095         (push (gnus-data-make number mark (1+ (point)) header 0)
4096               gnus-newsgroup-data)
4097         (gnus-summary-insert-line
4098          header 0 number
4099          mark (memq number gnus-newsgroup-replied)
4100          (memq number gnus-newsgroup-expirable)
4101          (mail-header-subject header) nil
4102          (cdr (assq number gnus-newsgroup-scored))
4103          (memq number gnus-newsgroup-processable))))))
4104
4105 (defun gnus-summary-remove-list-identifiers ()
4106   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
4107   (let ((regexp (if (stringp gnus-list-identifiers)
4108                     gnus-list-identifiers
4109                   (mapconcat 'identity gnus-list-identifiers " *\\|"))))
4110     (dolist (header gnus-newsgroup-headers)
4111       (when (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp
4112                                   " *\\)\\)+\\(Re: +\\)?\\)")
4113                           (mail-header-subject header))
4114         (mail-header-set-subject
4115          header (concat (substring (mail-header-subject header)
4116                                    0 (match-beginning 1))
4117                         (or
4118                          (match-string 3 (mail-header-subject header))
4119                          (match-string 5 (mail-header-subject header)))
4120                         (substring (mail-header-subject header)
4121                                    (match-end 1))))))))
4122
4123 (defun gnus-select-newsgroup (group &optional read-all select-articles)
4124   "Select newsgroup GROUP.
4125 If READ-ALL is non-nil, all articles in the group are selected.
4126 If SELECT-ARTICLES, only select those articles from GROUP."
4127   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4128          ;;!!! Dirty hack; should be removed.
4129          (gnus-summary-ignore-duplicates
4130           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
4131               t
4132             gnus-summary-ignore-duplicates))
4133          (info (nth 2 entry))
4134          articles fetched-articles cached)
4135
4136     (unless (gnus-check-server
4137              (setq gnus-current-select-method
4138                    (gnus-find-method-for-group group)))
4139       (error "Couldn't open server"))
4140
4141     (or (and entry (not (eq (car entry) t))) ; Either it's active...
4142         (gnus-activate-group group)     ; Or we can activate it...
4143         (progn                          ; Or we bug out.
4144           (when (equal major-mode 'gnus-summary-mode)
4145             (kill-buffer (current-buffer)))
4146           (error "Couldn't request group %s: %s"
4147                  group (gnus-status-message group))))
4148
4149     (unless (gnus-request-group group t)
4150       (when (equal major-mode 'gnus-summary-mode)
4151         (kill-buffer (current-buffer)))
4152       (error "Couldn't request group %s: %s"
4153              group (gnus-status-message group)))
4154
4155     (setq gnus-newsgroup-name group)
4156     (setq gnus-newsgroup-unselected nil)
4157     (setq gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
4158     (gnus-summary-setup-default-charset)
4159
4160     ;; Adjust and set lists of article marks.
4161     (when info
4162       (gnus-adjust-marked-articles info))
4163
4164     ;; Kludge to avoid having cached articles nixed out in virtual groups.
4165     (setq cached
4166           (if (gnus-virtual-group-p group)
4167               gnus-newsgroup-cached
4168             (gnus-cache-articles-in-group group)))
4169
4170     (setq gnus-newsgroup-unreads
4171           (gnus-set-difference
4172            (gnus-set-difference gnus-newsgroup-unreads gnus-newsgroup-marked)
4173            gnus-newsgroup-dormant))
4174
4175     (setq gnus-newsgroup-processable nil)
4176
4177     (gnus-update-read-articles group gnus-newsgroup-unreads)
4178
4179     (if (setq articles select-articles)
4180         (setq gnus-newsgroup-unselected
4181               (gnus-sorted-intersection
4182                gnus-newsgroup-unreads
4183                (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4184       (setq articles (gnus-articles-to-read group read-all)))
4185
4186     (cond
4187      ((null articles)
4188       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
4189       'quit)
4190      ((eq articles 0) nil)
4191      (t
4192       ;; Init the dependencies hash table.
4193       (setq gnus-newsgroup-dependencies
4194             (gnus-make-hashtable (length articles)))
4195       (gnus-set-global-variables)
4196       ;; Retrieve the headers and read them in.
4197       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
4198       (setq gnus-newsgroup-headers
4199             (gnus-retrieve-parsed-headers
4200              articles gnus-newsgroup-name
4201              ;; We might want to fetch old headers, but
4202              ;; not if there is only 1 article.
4203              (and (or (and (not (eq gnus-fetch-old-headers 'some))
4204                            (not (numberp gnus-fetch-old-headers)))
4205                       (> (length articles) 1))
4206                   gnus-fetch-old-headers)))
4207       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name)
4208
4209       ;; Suppress duplicates?
4210       (when gnus-suppress-duplicates
4211         (gnus-dup-suppress-articles))
4212
4213       ;; Set the initial limit.
4214       (setq gnus-newsgroup-limit (copy-sequence articles))
4215       ;; Remove canceled articles from the list of unread articles.
4216       (setq gnus-newsgroup-unreads
4217             (gnus-set-sorted-intersection
4218              gnus-newsgroup-unreads
4219              (setq fetched-articles
4220                    (mapcar (lambda (headers) (mail-header-number headers))
4221                            gnus-newsgroup-headers))))
4222       ;; Removed marked articles that do not exist.
4223       (gnus-update-missing-marks
4224        (gnus-sorted-complement fetched-articles articles))
4225
4226       ;; Kludge to avoid having cached articles nixed out in virtual groups.
4227       (when cached
4228         (setq gnus-newsgroup-cached cached))
4229
4230       ;; We might want to build some more threads first.
4231       (when (and gnus-fetch-old-headers
4232                  (eq gnus-headers-retrieved-by 'nov))
4233         (if (eq gnus-fetch-old-headers 'invisible)
4234             (gnus-build-all-threads)
4235           (gnus-build-old-threads)))
4236       ;; Let the Gnus agent mark articles as read.
4237       (when gnus-agent
4238         (gnus-agent-get-undownloaded-list))
4239       ;; Remove list identifiers from subject
4240       (when gnus-list-identifiers
4241         (gnus-summary-remove-list-identifiers))
4242       ;; Check whether auto-expire is to be done in this group.
4243       (setq gnus-newsgroup-auto-expire
4244             (gnus-group-auto-expirable-p group))
4245       ;; Set up the article buffer now, if necessary.
4246       (unless gnus-single-article-buffer
4247         (gnus-article-setup-buffer))
4248       ;; First and last article in this newsgroup.
4249       (when gnus-newsgroup-headers
4250         (setq gnus-newsgroup-begin
4251               (mail-header-number (car gnus-newsgroup-headers))
4252               gnus-newsgroup-end
4253               (mail-header-number
4254                (gnus-last-element gnus-newsgroup-headers))))
4255       ;; GROUP is successfully selected.
4256       (or gnus-newsgroup-headers t)))))
4257
4258 (defun gnus-articles-to-read (group &optional read-all)
4259   "Find out what articles the user wants to read."
4260   (let* ((articles
4261           ;; Select all articles if `read-all' is non-nil, or if there
4262           ;; are no unread articles.
4263           (if (or read-all
4264                   (and (zerop (length gnus-newsgroup-marked))
4265                        (zerop (length gnus-newsgroup-unreads)))
4266                   (eq (gnus-group-find-parameter group 'display)
4267                       'all))
4268               (or
4269                (gnus-uncompress-range (gnus-active group))
4270                (gnus-cache-articles-in-group group))
4271             (sort (append gnus-newsgroup-dormant gnus-newsgroup-marked
4272                           (copy-sequence gnus-newsgroup-unreads))
4273                   '<)))
4274          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
4275          (scored (length scored-list))
4276          (number (length articles))
4277          (marked (+ (length gnus-newsgroup-marked)
4278                     (length gnus-newsgroup-dormant)))
4279          (select
4280           (cond
4281            ((numberp read-all)
4282             read-all)
4283            (t
4284             (condition-case ()
4285                 (cond
4286                  ((and (or (<= scored marked) (= scored number))
4287                        (natnump gnus-large-newsgroup)
4288                        (> number gnus-large-newsgroup))
4289                   (let* ((cursor-in-echo-area nil)
4290                          (input (read-from-minibuffer
4291                                  (format
4292                                   "How many articles from %s (max %d): "
4293                                   (gnus-limit-string gnus-newsgroup-name 35)
4294                                   number)
4295                                  (cons (number-to-string gnus-large-newsgroup)
4296                                        0))))
4297                     (if (string-match "^[ \t]*$" input)
4298                         number
4299                       input)))
4300                  ((and (> scored marked) (< scored number)
4301                        (> (- scored number) 20))
4302                   (let ((input
4303                          (read-string
4304                           (format "%s %s (%d scored, %d total): "
4305                                   "How many articles from"
4306                                   group scored number))))
4307                     (if (string-match "^[ \t]*$" input)
4308                         number input)))
4309                  (t number))
4310               (quit nil))))))
4311     (setq select (if (stringp select) (string-to-number select) select))
4312     (if (or (null select) (zerop select))
4313         select
4314       (if (and (not (zerop scored)) (<= (abs select) scored))
4315           (progn
4316             (setq articles (sort scored-list '<))
4317             (setq number (length articles)))
4318         (setq articles (copy-sequence articles)))
4319
4320       (when (< (abs select) number)
4321         (if (< select 0)
4322             ;; Select the N oldest articles.
4323             (setcdr (nthcdr (1- (abs select)) articles) nil)
4324           ;; Select the N most recent articles.
4325           (setq articles (nthcdr (- number select) articles))))
4326       (setq gnus-newsgroup-unselected
4327             (gnus-sorted-intersection
4328              gnus-newsgroup-unreads
4329              (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4330       (when gnus-alter-articles-to-read-function
4331         (setq gnus-newsgroup-unreads
4332               (sort
4333                (funcall gnus-alter-articles-to-read-function
4334                         gnus-newsgroup-name gnus-newsgroup-unreads)
4335                '<)))
4336       articles)))
4337
4338 (defun gnus-killed-articles (killed articles)
4339   (let (out)
4340     (while articles
4341       (when (inline (gnus-member-of-range (car articles) killed))
4342         (push (car articles) out))
4343       (setq articles (cdr articles)))
4344     out))
4345
4346 (defun gnus-uncompress-marks (marks)
4347   "Uncompress the mark ranges in MARKS."
4348   (let ((uncompressed '(score bookmark))
4349         out)
4350     (while marks
4351       (if (memq (caar marks) uncompressed)
4352           (push (car marks) out)
4353         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
4354       (setq marks (cdr marks)))
4355     out))
4356
4357 (defun gnus-adjust-marked-articles (info)
4358   "Set all article lists and remove all marks that are no longer valid."
4359   (let* ((marked-lists (gnus-info-marks info))
4360          (active (gnus-active (gnus-info-group info)))
4361          (min (car active))
4362          (max (cdr active))
4363          (types gnus-article-mark-lists)
4364          (uncompressed '(score bookmark killed))
4365          marks var articles article mark)
4366
4367     (while marked-lists
4368       (setq marks (pop marked-lists))
4369       (set (setq var (intern (format "gnus-newsgroup-%s"
4370                                      (car (rassq (setq mark (car marks))
4371                                                  types)))))
4372            (if (memq (car marks) uncompressed) (cdr marks)
4373              (gnus-uncompress-range (cdr marks))))
4374
4375       (setq articles (symbol-value var))
4376
4377       ;; All articles have to be subsets of the active articles.
4378       (cond
4379        ;; Adjust "simple" lists.
4380        ((memq mark '(tick dormant expire reply save))
4381         (while articles
4382           (when (or (< (setq article (pop articles)) min) (> article max))
4383             (set var (delq article (symbol-value var))))))
4384        ;; Adjust assocs.
4385        ((memq mark uncompressed)
4386         (when (not (listp (cdr (symbol-value var))))
4387           (set var (list (symbol-value var))))
4388         (when (not (listp (cdr articles)))
4389           (setq articles (list articles)))
4390         (while articles
4391           (when (or (not (consp (setq article (pop articles))))
4392                     (< (car article) min)
4393                     (> (car article) max))
4394             (set var (delq article (symbol-value var))))))))))
4395
4396 (defun gnus-update-missing-marks (missing)
4397   "Go through the list of MISSING articles and remove them from the mark lists."
4398   (when missing
4399     (let ((types gnus-article-mark-lists)
4400           var m)
4401       ;; Go through all types.
4402       (while types
4403         (setq var (intern (format "gnus-newsgroup-%s" (car (pop types)))))
4404         (when (symbol-value var)
4405           ;; This list has articles.  So we delete all missing articles
4406           ;; from it.
4407           (setq m missing)
4408           (while m
4409             (set var (delq (pop m) (symbol-value var)))))))))
4410
4411 (defun gnus-update-marks ()
4412   "Enter the various lists of marked articles into the newsgroup info list."
4413   (let ((types gnus-article-mark-lists)
4414         (info (gnus-get-info gnus-newsgroup-name))
4415         (uncompressed '(score bookmark killed))
4416         type list newmarked symbol delta-marks)
4417     (when info
4418       ;; Add all marks lists to the list of marks lists.
4419       (while (setq type (pop types))
4420         (setq list (symbol-value
4421                     (setq symbol
4422                           (intern (format "gnus-newsgroup-%s"
4423                                           (car type))))))
4424
4425         (when list
4426           ;; Get rid of the entries of the articles that have the
4427           ;; default score.
4428           (when (and (eq (cdr type) 'score)
4429                      gnus-save-score
4430                      list)
4431             (let* ((arts list)
4432                    (prev (cons nil list))
4433                    (all prev))
4434               (while arts
4435                 (if (or (not (consp (car arts)))
4436                         (= (cdar arts) gnus-summary-default-score))
4437                     (setcdr prev (cdr arts))
4438                   (setq prev arts))
4439                 (setq arts (cdr arts)))
4440               (setq list (cdr all)))))
4441
4442         (unless (memq (cdr type) uncompressed)
4443           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
4444
4445         (when (gnus-check-backend-function
4446                'request-set-mark gnus-newsgroup-name)
4447           ;; propagate flags to server, with the following exceptions:
4448           ;; uncompressed:s are not proper flags (they are cons cells)
4449           ;; cache is a internal gnus flag
4450           ;; download are local to one gnus installation (well)
4451           ;; unsend are for nndraft groups only
4452           ;; xxx: generality of this?  this suits nnimap anyway
4453           (unless (memq (cdr type) (append '(cache download unsend)
4454                                            uncompressed))
4455             (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
4456                    (del (gnus-remove-from-range (gnus-copy-sequence old) list))
4457                    (add (gnus-remove-from-range
4458                          (gnus-copy-sequence list) old)))
4459               (when add
4460                 (push (list add 'add (list (cdr type))) delta-marks))
4461               (when del
4462                 (push (list del 'del (list (cdr type))) delta-marks)))))
4463
4464         (when list
4465           (push (cons (cdr type) list) newmarked)))
4466
4467       (when delta-marks
4468         (unless (gnus-check-group gnus-newsgroup-name)
4469           (error "Can't open server for %s" gnus-newsgroup-name))
4470         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
4471
4472       ;; Enter these new marks into the info of the group.
4473       (if (nthcdr 3 info)
4474           (setcar (nthcdr 3 info) newmarked)
4475         ;; Add the marks lists to the end of the info.
4476         (when newmarked
4477           (setcdr (nthcdr 2 info) (list newmarked))))
4478
4479       ;; Cut off the end of the info if there's nothing else there.
4480       (let ((i 5))
4481         (while (and (> i 2)
4482                     (not (nth i info)))
4483           (when (nthcdr (decf i) info)
4484             (setcdr (nthcdr i info) nil)))))))
4485
4486 (defun gnus-set-mode-line (where)
4487   "Set the mode line of the article or summary buffers.
4488 If WHERE is `summary', the summary mode line format will be used."
4489   ;; Is this mode line one we keep updated?
4490   (when (and (memq where gnus-updated-mode-lines)
4491              (symbol-value
4492               (intern (format "gnus-%s-mode-line-format-spec" where))))
4493     (let (mode-string)
4494       (save-excursion
4495         ;; We evaluate this in the summary buffer since these
4496         ;; variables are buffer-local to that buffer.
4497         (set-buffer gnus-summary-buffer)
4498         ;; We bind all these variables that are used in the `eval' form
4499         ;; below.
4500         (let* ((mformat (symbol-value
4501                          (intern
4502                           (format "gnus-%s-mode-line-format-spec" where))))
4503                (gnus-tmp-group-name (gnus-group-name-decode
4504                                      gnus-newsgroup-name
4505                                      (gnus-group-name-charset
4506                                       nil
4507                                       gnus-newsgroup-name)))
4508                (gnus-tmp-article-number (or gnus-current-article 0))
4509                (gnus-tmp-unread gnus-newsgroup-unreads)
4510                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
4511                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
4512                (gnus-tmp-unread-and-unselected
4513                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
4514                             (zerop gnus-tmp-unselected))
4515                        "")
4516                       ((zerop gnus-tmp-unselected)
4517                        (format "{%d more}" gnus-tmp-unread-and-unticked))
4518                       (t (format "{%d(+%d) more}"
4519                                  gnus-tmp-unread-and-unticked
4520                                  gnus-tmp-unselected))))
4521                (gnus-tmp-subject
4522                 (if (and gnus-current-headers
4523                          (vectorp gnus-current-headers))
4524                     (gnus-mode-string-quote
4525                      (mail-header-subject gnus-current-headers))
4526                   ""))
4527                bufname-length max-len
4528                gnus-tmp-header);; passed as argument to any user-format-funcs
4529           (setq mode-string (eval mformat))
4530           (setq bufname-length (if (string-match "%b" mode-string)
4531                                    (- (length
4532                                        (buffer-name
4533                                         (if (eq where 'summary)
4534                                             nil
4535                                           (get-buffer gnus-article-buffer))))
4536                                       2)
4537                                  0))
4538           (setq max-len (max 4 (if gnus-mode-non-string-length
4539                                    (- (window-width)
4540                                       gnus-mode-non-string-length
4541                                       bufname-length)
4542                                  (length mode-string))))
4543           ;; We might have to chop a bit of the string off...
4544           (when (> (length mode-string) max-len)
4545             (setq mode-string
4546                   (concat (gnus-truncate-string mode-string (- max-len 3))
4547                           "...")))
4548           ;; Pad the mode string a bit.
4549           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
4550       ;; Update the mode line.
4551       (setq mode-line-buffer-identification
4552             (gnus-mode-line-buffer-identification (list mode-string)))
4553       (set-buffer-modified-p t))))
4554
4555 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
4556   "Go through the HEADERS list and add all Xrefs to a hash table.
4557 The resulting hash table is returned, or nil if no Xrefs were found."
4558   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
4559          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
4560          (xref-hashtb (gnus-make-hashtable))
4561          start group entry number xrefs header)
4562     (while headers
4563       (setq header (pop headers))
4564       (when (and (setq xrefs (mail-header-xref header))
4565                  (not (memq (setq number (mail-header-number header))
4566                             unreads)))
4567         (setq start 0)
4568         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
4569           (setq start (match-end 0))
4570           (setq group (if prefix
4571                           (concat prefix (substring xrefs (match-beginning 1)
4572                                                     (match-end 1)))
4573                         (substring xrefs (match-beginning 1) (match-end 1))))
4574           (setq number
4575                 (string-to-int (substring xrefs (match-beginning 2)
4576                                           (match-end 2))))
4577           (if (setq entry (gnus-gethash group xref-hashtb))
4578               (setcdr entry (cons number (cdr entry)))
4579             (gnus-sethash group (cons number nil) xref-hashtb)))))
4580     (and start xref-hashtb)))
4581
4582 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
4583   "Look through all the headers and mark the Xrefs as read."
4584   (let ((virtual (gnus-virtual-group-p from-newsgroup))
4585         name entry info xref-hashtb idlist method nth4)
4586     (save-excursion
4587       (set-buffer gnus-group-buffer)
4588       (when (setq xref-hashtb
4589                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
4590         (mapatoms
4591          (lambda (group)
4592            (unless (string= from-newsgroup (setq name (symbol-name group)))
4593              (setq idlist (symbol-value group))
4594              ;; Dead groups are not updated.
4595              (and (prog1
4596                       (setq entry (gnus-gethash name gnus-newsrc-hashtb)
4597                             info (nth 2 entry))
4598                     (when (stringp (setq nth4 (gnus-info-method info)))
4599                       (setq nth4 (gnus-server-to-method nth4))))
4600                   ;; Only do the xrefs if the group has the same
4601                   ;; select method as the group we have just read.
4602                   (or (gnus-methods-equal-p
4603                        nth4 (gnus-find-method-for-group from-newsgroup))
4604                       virtual
4605                       (equal nth4 (setq method (gnus-find-method-for-group
4606                                                 from-newsgroup)))
4607                       (and (equal (car nth4) (car method))
4608                            (equal (nth 1 nth4) (nth 1 method))))
4609                   gnus-use-cross-reference
4610                   (or (not (eq gnus-use-cross-reference t))
4611                       virtual
4612                       ;; Only do cross-references on subscribed
4613                       ;; groups, if that is what is wanted.
4614                       (<= (gnus-info-level info) gnus-level-subscribed))
4615                   (gnus-group-make-articles-read name idlist))))
4616          xref-hashtb)))))
4617
4618 (defun gnus-compute-read-articles (group articles)
4619   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4620          (info (nth 2 entry))
4621          (active (gnus-active group))
4622          ninfo)
4623     (when entry
4624       ;; First peel off all invalid article numbers.
4625       (when active
4626         (let ((ids articles)
4627               id first)
4628           (while (setq id (pop ids))
4629             (when (and first (> id (cdr active)))
4630               ;; We'll end up in this situation in one particular
4631               ;; obscure situation.  If you re-scan a group and get
4632               ;; a new article that is cross-posted to a different
4633               ;; group that has not been re-scanned, you might get
4634               ;; crossposted article that has a higher number than
4635               ;; Gnus believes possible.  So we re-activate this
4636               ;; group as well.  This might mean doing the
4637               ;; crossposting thingy will *increase* the number
4638               ;; of articles in some groups.  Tsk, tsk.
4639               (setq active (or (gnus-activate-group group) active)))
4640             (when (or (> id (cdr active))
4641                       (< id (car active)))
4642               (setq articles (delq id articles))))))
4643       ;; If the read list is nil, we init it.
4644       (if (and active
4645                (null (gnus-info-read info))
4646                (> (car active) 1))
4647           (setq ninfo (cons 1 (1- (car active))))
4648         (setq ninfo (gnus-info-read info)))
4649       ;; Then we add the read articles to the range.
4650       (gnus-add-to-range
4651        ninfo (setq articles (sort articles '<))))))
4652
4653 (defun gnus-group-make-articles-read (group articles)
4654   "Update the info of GROUP to say that ARTICLES are read."
4655   (let* ((num 0)
4656          (entry (gnus-gethash group gnus-newsrc-hashtb))
4657          (info (nth 2 entry))
4658          (active (gnus-active group))
4659          range)
4660     (when entry
4661       (setq range (gnus-compute-read-articles group articles))
4662       (save-excursion
4663         (set-buffer gnus-group-buffer)
4664         (gnus-undo-register
4665           `(progn
4666              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
4667              (gnus-info-set-read ',info ',(gnus-info-read info))
4668              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
4669              (gnus-group-update-group ,group t))))
4670       ;; Add the read articles to the range.
4671       (gnus-info-set-read info range)
4672       ;; Then we have to re-compute how many unread
4673       ;; articles there are in this group.
4674       (when active
4675         (cond
4676          ((not range)
4677           (setq num (- (1+ (cdr active)) (car active))))
4678          ((not (listp (cdr range)))
4679           (setq num (- (cdr active) (- (1+ (cdr range))
4680                                        (car range)))))
4681          (t
4682           (while range
4683             (if (numberp (car range))
4684                 (setq num (1+ num))
4685               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
4686             (setq range (cdr range)))
4687           (setq num (- (cdr active) num))))
4688         ;; Update the number of unread articles.
4689         (setcar entry num)
4690         ;; Update the group buffer.
4691         (gnus-group-update-group group t)))))
4692
4693 (defvar gnus-newsgroup-none-id 0)
4694
4695 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
4696   (let ((cur nntp-server-buffer)
4697         (dependencies
4698          (or dependencies
4699              (save-excursion (set-buffer gnus-summary-buffer)
4700                              gnus-newsgroup-dependencies)))
4701         headers id end ref
4702         (mail-parse-charset gnus-newsgroup-charset)
4703         (mail-parse-ignored-charsets
4704          (save-excursion (condition-case nil
4705                              (set-buffer gnus-summary-buffer)
4706                            (error))
4707                          gnus-newsgroup-ignored-charsets)))
4708     (save-excursion
4709       (set-buffer nntp-server-buffer)
4710       ;; Translate all TAB characters into SPACE characters.
4711       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
4712       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4713       (gnus-run-hooks 'gnus-parse-headers-hook)
4714       (let ((case-fold-search t)
4715             in-reply-to header p lines chars ctype)
4716         (goto-char (point-min))
4717         ;; Search to the beginning of the next header.  Error messages
4718         ;; do not begin with 2 or 3.
4719         (while (re-search-forward "^[23][0-9]+ " nil t)
4720           (setq id nil
4721                 ref nil)
4722           ;; This implementation of this function, with nine
4723           ;; search-forwards instead of the one re-search-forward and
4724           ;; a case (which basically was the old function) is actually
4725           ;; about twice as fast, even though it looks messier.  You
4726           ;; can't have everything, I guess.  Speed and elegance
4727           ;; doesn't always go hand in hand.
4728           (setq
4729            header
4730            (make-full-mail-header
4731             ;; Number.
4732             (prog1
4733                 (read cur)
4734               (end-of-line)
4735               (setq p (point))
4736               (narrow-to-region (point)
4737                                 (or (and (search-forward "\n.\n" nil t)
4738                                          (- (point) 2))
4739                                     (point))))
4740             ;; Subject.
4741             (progn
4742               (goto-char p)
4743               (if (search-forward "\nsubject: " nil t)
4744                   (buffer-substring (match-end 0) (std11-field-end))
4745                 "(none)"))
4746             ;; From.
4747             (progn
4748               (goto-char p)
4749               (if (search-forward "\nfrom: " nil t)
4750                   (buffer-substring (match-end 0) (std11-field-end))
4751                 "(nobody)"))
4752             ;; Date.
4753             (progn
4754               (goto-char p)
4755               (if (search-forward "\ndate: " nil t)
4756                   (buffer-substring (match-end 0) (std11-field-end))
4757                 ""))
4758             ;; Message-ID.
4759             (progn
4760               (goto-char p)
4761               (setq id (if (re-search-forward
4762                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
4763                            ;; We do it this way to make sure the Message-ID
4764                            ;; is (somewhat) syntactically valid.
4765                            (buffer-substring (match-beginning 1)
4766                                              (match-end 1))
4767                          ;; If there was no message-id, we just fake one
4768                          ;; to make subsequent routines simpler.
4769                          (nnheader-generate-fake-message-id))))
4770             ;; References.
4771             (progn
4772               (goto-char p)
4773               (if (search-forward "\nreferences: " nil t)
4774                   (progn
4775                     (setq end (point))
4776                     (prog1
4777                         (buffer-substring (match-end 0) (std11-field-end))
4778                       (setq ref
4779                             (buffer-substring
4780                              (progn
4781                                ;; (end-of-line)
4782                                (search-backward ">" end t)
4783                                (1+ (point)))
4784                              (progn
4785                                (search-backward "<" end t)
4786                                (point))))))
4787                 ;; Get the references from the in-reply-to header if there
4788                 ;; were no references and the in-reply-to header looks
4789                 ;; promising.
4790                 (if (and (search-forward "\nin-reply-to: " nil t)
4791                          (setq in-reply-to
4792                                (buffer-substring (match-end 0)
4793                                                  (std11-field-end)))
4794                          (string-match "<[^>]+>" in-reply-to))
4795                     (let (ref2)
4796                       (setq ref (substring in-reply-to (match-beginning 0)
4797                                            (match-end 0)))
4798                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
4799                         (setq ref2 (substring in-reply-to (match-beginning 0)
4800                                               (match-end 0)))
4801                         (when (> (length ref2) (length ref))
4802                           (setq ref ref2)))
4803                       ref)
4804                   (setq ref nil))))
4805             ;; Chars.
4806             (progn
4807               (goto-char p)
4808               (if (search-forward "\nchars: " nil t)
4809                   (if (numberp (setq chars (ignore-errors (read cur))))
4810                       chars 0)
4811                 0))
4812             ;; Lines.
4813             (progn
4814               (goto-char p)
4815               (if (search-forward "\nlines: " nil t)
4816                   (if (numberp (setq lines (ignore-errors (read cur))))
4817                       lines 0)
4818                 0))
4819             ;; Xref.
4820             (progn
4821               (goto-char p)
4822               (and (search-forward "\nxref: " nil t)
4823                    (buffer-substring (match-end 0) (std11-field-end))))
4824             ;; Extra.
4825             (when gnus-extra-headers
4826               (let ((extra gnus-extra-headers)
4827                     out)
4828                 (while extra
4829                   (goto-char p)
4830                   (when (search-forward
4831                          (concat "\n" (symbol-name (car extra)) ": ") nil t)
4832                     (push (cons (car extra)
4833                                 (buffer-substring (match-end 0)
4834                                                   (std11-field-end)))
4835                           out))
4836                   (pop extra))
4837                 out))))
4838           (goto-char p)
4839           (if (and (search-forward "\ncontent-type: " nil t)
4840                    (setq ctype
4841                          (buffer-substring (match-end 0) (std11-field-end))))
4842               (mime-entity-set-content-type-internal
4843                header (mime-parse-Content-Type ctype)))
4844           (when (equal id ref)
4845             (setq ref nil))
4846
4847           (when gnus-alter-header-function
4848             (funcall gnus-alter-header-function header)
4849             (setq id (mail-header-id header)
4850                   ref (gnus-parent-id (mail-header-references header))))
4851
4852           (when (setq header
4853                       (gnus-dependencies-add-header
4854                        header dependencies force-new))
4855             (push header headers))
4856           (goto-char (point-max))
4857           (widen))
4858         (nreverse headers)))))
4859
4860 ;; Goes through the xover lines and returns a list of vectors
4861 (defun gnus-get-newsgroup-headers-xover (sequence &optional
4862                                                   force-new dependencies
4863                                                   group also-fetch-heads)
4864   "Parse the news overview data in the server buffer.
4865 Return a list of headers that match SEQUENCE (see
4866 `nntp-retrieve-headers')."
4867   ;; Get the Xref when the users reads the articles since most/some
4868   ;; NNTP servers do not include Xrefs when using XOVER.
4869   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
4870   (let ((mail-parse-charset gnus-newsgroup-charset)
4871         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
4872         (cur nntp-server-buffer)
4873         (dependencies (or dependencies gnus-newsgroup-dependencies))
4874         number headers header)
4875     (save-excursion
4876       (set-buffer nntp-server-buffer)
4877       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4878       ;; Allow the user to mangle the headers before parsing them.
4879       (gnus-run-hooks 'gnus-parse-headers-hook)
4880       (goto-char (point-min))
4881       (while (not (eobp))
4882         (condition-case ()
4883             (while (and sequence (not (eobp)))
4884               (setq number (read cur))
4885               (while (and sequence
4886                           (< (car sequence) number))
4887                 (setq sequence (cdr sequence)))
4888               (and sequence
4889                    (eq number (car sequence))
4890                    (progn
4891                      (setq sequence (cdr sequence))
4892                      (setq header (inline
4893                                     (gnus-nov-parse-line
4894                                      number dependencies force-new))))
4895                    (push header headers))
4896               (forward-line 1))
4897           (error
4898            (gnus-error 4 "Strange nov line (%d)"
4899                        (count-lines (point-min) (point)))))
4900         (forward-line 1))
4901       ;; A common bug in inn is that if you have posted an article and
4902       ;; then retrieves the active file, it will answer correctly --
4903       ;; the new article is included.  However, a NOV entry for the
4904       ;; article may not have been generated yet, so this may fail.
4905       ;; We work around this problem by retrieving the last few
4906       ;; headers using HEAD.
4907       (if (or (not also-fetch-heads)
4908               (not sequence))
4909           ;; We (probably) got all the headers.
4910           (nreverse headers)
4911         (let ((gnus-nov-is-evil t))
4912           (nconc
4913            (nreverse headers)
4914            (gnus-retrieve-parsed-headers sequence group)
4915            ))))))
4916
4917 (defun gnus-article-get-xrefs ()
4918   "Fill in the Xref value in `gnus-current-headers', if necessary.
4919 This is meant to be called in `gnus-article-internal-prepare-hook'."
4920   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
4921                                  gnus-current-headers)))
4922     (or (not gnus-use-cross-reference)
4923         (not headers)
4924         (and (mail-header-xref headers)
4925              (not (string= (mail-header-xref headers) "")))
4926         (let ((case-fold-search t)
4927               xref)
4928           (save-restriction
4929             (nnheader-narrow-to-headers)
4930             (goto-char (point-min))
4931             (when (or (and (not (eobp))
4932                            (eq (downcase (char-after)) ?x)
4933                            (looking-at "Xref:"))
4934                       (search-forward "\nXref:" nil t))
4935               (goto-char (1+ (match-end 0)))
4936               (setq xref (buffer-substring (point)
4937                                            (progn (end-of-line) (point))))
4938               (mail-header-set-xref headers xref)))))))
4939
4940 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
4941   "Find article ID and insert the summary line for that article.
4942 OLD-HEADER can either be a header or a line number to insert
4943 the subject line on."
4944   (let* ((line (and (numberp old-header) old-header))
4945          (old-header (and (vectorp old-header) old-header))
4946          (header (cond ((and old-header use-old-header)
4947                         old-header)
4948                        ((and (numberp id)
4949                              (gnus-number-to-header id))
4950                         (gnus-number-to-header id))
4951                        (t
4952                         (gnus-read-header id))))
4953          (number (and (numberp id) id))
4954          d)
4955     (when header
4956       ;; Rebuild the thread that this article is part of and go to the
4957       ;; article we have fetched.
4958       (when (and (not gnus-show-threads)
4959                  old-header)
4960         (when (and number
4961                    (setq d (gnus-data-find (mail-header-number old-header))))
4962           (goto-char (gnus-data-pos d))
4963           (gnus-data-remove
4964            number
4965            (- (gnus-point-at-bol)
4966               (prog1
4967                   (1+ (gnus-point-at-eol))
4968                 (gnus-delete-line))))))
4969       (when old-header
4970         (mail-header-set-number header (mail-header-number old-header)))
4971       (setq gnus-newsgroup-sparse
4972             (delq (setq number (mail-header-number header))
4973                   gnus-newsgroup-sparse))
4974       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
4975       (push number gnus-newsgroup-limit)
4976       (gnus-rebuild-thread (mail-header-id header) line)
4977       (gnus-summary-goto-subject number nil t))
4978     (when (and (numberp number)
4979                (> number 0))
4980       ;; We have to update the boundaries even if we can't fetch the
4981       ;; article if ID is a number -- so that the next `P' or `N'
4982       ;; command will fetch the previous (or next) article even
4983       ;; if the one we tried to fetch this time has been canceled.
4984       (when (> number gnus-newsgroup-end)
4985         (setq gnus-newsgroup-end number))
4986       (when (< number gnus-newsgroup-begin)
4987         (setq gnus-newsgroup-begin number))
4988       (setq gnus-newsgroup-unselected
4989             (delq number gnus-newsgroup-unselected)))
4990     ;; Report back a success?
4991     (and header (mail-header-number header))))
4992
4993 ;;; Process/prefix in the summary buffer
4994
4995 (defun gnus-summary-work-articles (n)
4996   "Return a list of articles to be worked upon.
4997 The prefix argument, the list of process marked articles, and the
4998 current article will be taken into consideration."
4999   (save-excursion
5000     (set-buffer gnus-summary-buffer)
5001     (cond
5002      (n
5003       ;; A numerical prefix has been given.
5004       (setq n (prefix-numeric-value n))
5005       (let ((backward (< n 0))
5006             (n (abs (prefix-numeric-value n)))
5007             articles article)
5008         (save-excursion
5009           (while
5010               (and (> n 0)
5011                    (push (setq article (gnus-summary-article-number))
5012                          articles)
5013                    (if backward
5014                        (gnus-summary-find-prev nil article)
5015                      (gnus-summary-find-next nil article)))
5016             (decf n)))
5017         (nreverse articles)))
5018      ((and (gnus-region-active-p) (mark))
5019       (message "region active")
5020       ;; Work on the region between point and mark.
5021       (let ((max (max (point) (mark)))
5022             articles article)
5023         (save-excursion
5024           (goto-char (min (point) (mark)))
5025           (while
5026               (and
5027                (push (setq article (gnus-summary-article-number)) articles)
5028                (gnus-summary-find-next nil article)
5029                (< (point) max)))
5030           (nreverse articles))))
5031      (gnus-newsgroup-processable
5032       ;; There are process-marked articles present.
5033       ;; Save current state.
5034       (gnus-summary-save-process-mark)
5035       ;; Return the list.
5036       (reverse gnus-newsgroup-processable))
5037      (t
5038       ;; Just return the current article.
5039       (list (gnus-summary-article-number))))))
5040
5041 (defmacro gnus-summary-iterate (arg &rest forms)
5042   "Iterate over the process/prefixed articles and do FORMS.
5043 ARG is the interactive prefix given to the command.  FORMS will be
5044 executed with point over the summary line of the articles."
5045   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
5046     `(let ((,articles (gnus-summary-work-articles ,arg)))
5047        (while ,articles
5048          (gnus-summary-goto-subject (car ,articles))
5049          ,@forms
5050          (pop ,articles)))))
5051
5052 (put 'gnus-summary-iterate 'lisp-indent-function 1)
5053 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
5054
5055 (defun gnus-summary-save-process-mark ()
5056   "Push the current set of process marked articles on the stack."
5057   (interactive)
5058   (push (copy-sequence gnus-newsgroup-processable)
5059         gnus-newsgroup-process-stack))
5060
5061 (defun gnus-summary-kill-process-mark ()
5062   "Push the current set of process marked articles on the stack and unmark."
5063   (interactive)
5064   (gnus-summary-save-process-mark)
5065   (gnus-summary-unmark-all-processable))
5066
5067 (defun gnus-summary-yank-process-mark ()
5068   "Pop the last process mark state off the stack and restore it."
5069   (interactive)
5070   (unless gnus-newsgroup-process-stack
5071     (error "Empty mark stack"))
5072   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
5073
5074 (defun gnus-summary-process-mark-set (set)
5075   "Make SET into the current process marked articles."
5076   (gnus-summary-unmark-all-processable)
5077   (while set
5078     (gnus-summary-set-process-mark (pop set))))
5079
5080 ;;; Searching and stuff
5081
5082 (defun gnus-summary-search-group (&optional backward use-level)
5083   "Search for next unread newsgroup.
5084 If optional argument BACKWARD is non-nil, search backward instead."
5085   (save-excursion
5086     (set-buffer gnus-group-buffer)
5087     (when (gnus-group-search-forward
5088            backward nil (if use-level (gnus-group-group-level) nil))
5089       (gnus-group-group-name))))
5090
5091 (defun gnus-summary-best-group (&optional exclude-group)
5092   "Find the name of the best unread group.
5093 If EXCLUDE-GROUP, do not go to this group."
5094   (save-excursion
5095     (set-buffer gnus-group-buffer)
5096     (save-excursion
5097       (gnus-group-best-unread-group exclude-group))))
5098
5099 (defun gnus-summary-find-next (&optional unread article backward undownloaded)
5100   (if backward (gnus-summary-find-prev)
5101     (let* ((dummy (gnus-summary-article-intangible-p))
5102            (article (or article (gnus-summary-article-number)))
5103            (arts (gnus-data-find-list article))
5104            result)
5105       (when (and (not dummy)
5106                  (or (not gnus-summary-check-current)
5107                      (not unread)
5108                      (not (gnus-data-unread-p (car arts)))))
5109         (setq arts (cdr arts)))
5110       (when (setq result
5111                   (if unread
5112                       (progn
5113                         (while arts
5114                           (when (or (and undownloaded
5115                                          (eq gnus-undownloaded-mark
5116                                              (gnus-data-mark (car arts))))
5117                                     (gnus-data-unread-p (car arts)))
5118                             (setq result (car arts)
5119                                   arts nil))
5120                           (setq arts (cdr arts)))
5121                         result)
5122                     (car arts)))
5123         (goto-char (gnus-data-pos result))
5124         (gnus-data-number result)))))
5125
5126 (defun gnus-summary-find-prev (&optional unread article)
5127   (let* ((eobp (eobp))
5128          (article (or article (gnus-summary-article-number)))
5129          (arts (gnus-data-find-list article (gnus-data-list 'rev)))
5130          result)
5131     (when (and (not eobp)
5132                (or (not gnus-summary-check-current)
5133                    (not unread)
5134                    (not (gnus-data-unread-p (car arts)))))
5135       (setq arts (cdr arts)))
5136     (when (setq result
5137                 (if unread
5138                     (progn
5139                       (while arts
5140                         (when (gnus-data-unread-p (car arts))
5141                           (setq result (car arts)
5142                                 arts nil))
5143                         (setq arts (cdr arts)))
5144                       result)
5145                   (car arts)))
5146       (goto-char (gnus-data-pos result))
5147       (gnus-data-number result))))
5148
5149 (defun gnus-summary-find-subject (subject &optional unread backward article)
5150   (let* ((simp-subject (gnus-simplify-subject-fully subject))
5151          (article (or article (gnus-summary-article-number)))
5152          (articles (gnus-data-list backward))
5153          (arts (gnus-data-find-list article articles))
5154          result)
5155     (when (or (not gnus-summary-check-current)
5156               (not unread)
5157               (not (gnus-data-unread-p (car arts))))
5158       (setq arts (cdr arts)))
5159     (while arts
5160       (and (or (not unread)
5161                (gnus-data-unread-p (car arts)))
5162            (vectorp (gnus-data-header (car arts)))
5163            (gnus-subject-equal
5164             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
5165            (setq result (car arts)
5166                  arts nil))
5167       (setq arts (cdr arts)))
5168     (and result
5169          (goto-char (gnus-data-pos result))
5170          (gnus-data-number result))))
5171
5172 (defun gnus-summary-search-forward (&optional unread subject backward)
5173   "Search forward for an article.
5174 If UNREAD, look for unread articles.  If SUBJECT, look for
5175 articles with that subject.  If BACKWARD, search backward instead."
5176   (cond (subject (gnus-summary-find-subject subject unread backward))
5177         (backward (gnus-summary-find-prev unread))
5178         (t (gnus-summary-find-next unread))))
5179
5180 (defun gnus-recenter (&optional n)
5181   "Center point in window and redisplay frame.
5182 Also do horizontal recentering."
5183   (interactive "P")
5184   (when (and gnus-auto-center-summary
5185              (not (eq gnus-auto-center-summary 'vertical)))
5186     (gnus-horizontal-recenter))
5187   (recenter n))
5188
5189 (defun gnus-summary-recenter ()
5190   "Center point in the summary window.
5191 If `gnus-auto-center-summary' is nil, or the article buffer isn't
5192 displayed, no centering will be performed."
5193   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
5194   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
5195   (interactive)
5196   (let* ((top (cond ((< (window-height) 4) 0)
5197                     ((< (window-height) 7) 1)
5198                     (t (if (numberp gnus-auto-center-summary)
5199                            gnus-auto-center-summary
5200                          2))))
5201          (height (1- (window-height)))
5202          (bottom (save-excursion (goto-char (point-max))
5203                                  (forward-line (- height))
5204                                  (point)))
5205          (window (get-buffer-window (current-buffer))))
5206     ;; The user has to want it.
5207     (when gnus-auto-center-summary
5208       (when (get-buffer-window gnus-article-buffer)
5209         ;; Only do recentering when the article buffer is displayed,
5210         ;; Set the window start to either `bottom', which is the biggest
5211         ;; possible valid number, or the second line from the top,
5212         ;; whichever is the least.
5213         (set-window-start
5214          window (min bottom (save-excursion
5215                               (forward-line (- top)) (point)))
5216          t))
5217       ;; Do horizontal recentering while we're at it.
5218       (when (and (get-buffer-window (current-buffer) t)
5219                  (not (eq gnus-auto-center-summary 'vertical)))
5220         (let ((selected (selected-window)))
5221           (select-window (get-buffer-window (current-buffer) t))
5222           (gnus-summary-position-point)
5223           (gnus-horizontal-recenter)
5224           (select-window selected))))))
5225
5226 (defun gnus-summary-jump-to-group (newsgroup)
5227   "Move point to NEWSGROUP in group mode buffer."
5228   ;; Keep update point of group mode buffer if visible.
5229   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
5230       (save-window-excursion
5231         ;; Take care of tree window mode.
5232         (when (get-buffer-window gnus-group-buffer)
5233           (pop-to-buffer gnus-group-buffer))
5234         (gnus-group-jump-to-group newsgroup))
5235     (save-excursion
5236       ;; Take care of tree window mode.
5237       (if (get-buffer-window gnus-group-buffer)
5238           (pop-to-buffer gnus-group-buffer)
5239         (set-buffer gnus-group-buffer))
5240       (gnus-group-jump-to-group newsgroup))))
5241
5242 ;; This function returns a list of article numbers based on the
5243 ;; difference between the ranges of read articles in this group and
5244 ;; the range of active articles.
5245 (defun gnus-list-of-unread-articles (group)
5246   (let* ((read (gnus-info-read (gnus-get-info group)))
5247          (active (or (gnus-active group) (gnus-activate-group group)))
5248          (last (cdr active))
5249          first nlast unread)
5250     ;; If none are read, then all are unread.
5251     (if (not read)
5252         (setq first (car active))
5253       ;; If the range of read articles is a single range, then the
5254       ;; first unread article is the article after the last read
5255       ;; article.  Sounds logical, doesn't it?
5256       (if (and (not (listp (cdr read)))
5257                (or (< (car read) (car active))
5258                    (progn (setq read (list read))
5259                           nil)))
5260           (setq first (max (car active) (1+ (cdr read))))
5261         ;; `read' is a list of ranges.
5262         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
5263                                   (caar read)))
5264                   1)
5265           (setq first (car active)))
5266         (while read
5267           (when first
5268             (while (< first nlast)
5269               (push first unread)
5270               (setq first (1+ first))))
5271           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
5272           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
5273           (setq read (cdr read)))))
5274     ;; And add the last unread articles.
5275     (while (<= first last)
5276       (push first unread)
5277       (setq first (1+ first)))
5278     ;; Return the list of unread articles.
5279     (delq 0 (nreverse unread))))
5280
5281 (defun gnus-list-of-read-articles (group)
5282   "Return a list of unread, unticked and non-dormant articles."
5283   (let* ((info (gnus-get-info group))
5284          (marked (gnus-info-marks info))
5285          (active (gnus-active group)))
5286     (and info active
5287          (gnus-set-difference
5288           (gnus-sorted-complement
5289            (gnus-uncompress-range active)
5290            (gnus-list-of-unread-articles group))
5291           (append
5292            (gnus-uncompress-range (cdr (assq 'dormant marked)))
5293            (gnus-uncompress-range (cdr (assq 'tick marked))))))))
5294
5295 ;; Various summary commands
5296
5297 (defun gnus-summary-select-article-buffer ()
5298   "Reconfigure windows to show article buffer."
5299   (interactive)
5300   (if (not (gnus-buffer-live-p gnus-article-buffer))
5301       (error "There is no article buffer for this summary buffer")
5302     (gnus-configure-windows 'article)
5303     (select-window (get-buffer-window gnus-article-buffer))))
5304
5305 (defun gnus-summary-universal-argument (arg)
5306   "Perform any operation on all articles that are process/prefixed."
5307   (interactive "P")
5308   (let ((articles (gnus-summary-work-articles arg))
5309         func article)
5310     (if (eq
5311          (setq
5312           func
5313           (key-binding
5314            (read-key-sequence
5315             (substitute-command-keys
5316              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
5317          'undefined)
5318         (gnus-error 1 "Undefined key")
5319       (save-excursion
5320         (while articles
5321           (gnus-summary-goto-subject (setq article (pop articles)))
5322           (let (gnus-newsgroup-processable)
5323             (command-execute func))
5324           (gnus-summary-remove-process-mark article)))))
5325   (gnus-summary-position-point))
5326
5327 (defun gnus-summary-toggle-truncation (&optional arg)
5328   "Toggle truncation of summary lines.
5329 With arg, turn line truncation on iff arg is positive."
5330   (interactive "P")
5331   (setq truncate-lines
5332         (if (null arg) (not truncate-lines)
5333           (> (prefix-numeric-value arg) 0)))
5334   (redraw-display))
5335
5336 (defun gnus-summary-reselect-current-group (&optional all rescan)
5337   "Exit and then reselect the current newsgroup.
5338 The prefix argument ALL means to select all articles."
5339   (interactive "P")
5340   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
5341     (error "Ephemeral groups can't be reselected"))
5342   (let ((current-subject (gnus-summary-article-number))
5343         (group gnus-newsgroup-name))
5344     (setq gnus-newsgroup-begin nil)
5345     (gnus-summary-exit)
5346     ;; We have to adjust the point of group mode buffer because
5347     ;; point was moved to the next unread newsgroup by exiting.
5348     (gnus-summary-jump-to-group group)
5349     (when rescan
5350       (save-excursion
5351         (save-window-excursion
5352           ;; Don't show group contents.
5353           (set-window-start (selected-window) (point-max))
5354           (gnus-group-get-new-news-this-group 1))))
5355     (gnus-group-read-group all t)
5356     (gnus-summary-goto-subject current-subject nil t)))
5357
5358 (defun gnus-summary-rescan-group (&optional all)
5359   "Exit the newsgroup, ask for new articles, and select the newsgroup."
5360   (interactive "P")
5361   (gnus-summary-reselect-current-group all t))
5362
5363 (defun gnus-summary-update-info (&optional non-destructive)
5364   (save-excursion
5365     (let ((group gnus-newsgroup-name))
5366       (when group
5367         (when gnus-newsgroup-kill-headers
5368           (setq gnus-newsgroup-killed
5369                 (gnus-compress-sequence
5370                  (nconc
5371                   (gnus-set-sorted-intersection
5372                    (gnus-uncompress-range gnus-newsgroup-killed)
5373                    (setq gnus-newsgroup-unselected
5374                          (sort gnus-newsgroup-unselected '<)))
5375                   (setq gnus-newsgroup-unreads
5376                         (sort gnus-newsgroup-unreads '<)))
5377                  t)))
5378         (unless (listp (cdr gnus-newsgroup-killed))
5379           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
5380         (let ((headers gnus-newsgroup-headers))
5381           ;; Set the new ranges of read articles.
5382           (save-excursion
5383             (set-buffer gnus-group-buffer)
5384             (gnus-undo-force-boundary))
5385           (gnus-update-read-articles
5386            group (append gnus-newsgroup-unreads gnus-newsgroup-unselected))
5387           ;; Set the current article marks.
5388           (let ((gnus-newsgroup-scored
5389                  (if (and (not gnus-save-score)
5390                           (not non-destructive))
5391                      nil
5392                    gnus-newsgroup-scored)))
5393             (save-excursion
5394               (gnus-update-marks)))
5395           ;; Do the cross-ref thing.
5396           (when gnus-use-cross-reference
5397             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
5398           ;; Do not switch windows but change the buffer to work.
5399           (set-buffer gnus-group-buffer)
5400           (unless (gnus-ephemeral-group-p group)
5401             (gnus-group-update-group group)))))))
5402
5403 (defun gnus-summary-save-newsrc (&optional force)
5404   "Save the current number of read/marked articles in the dribble buffer.
5405 The dribble buffer will then be saved.
5406 If FORCE (the prefix), also save the .newsrc file(s)."
5407   (interactive "P")
5408   (gnus-summary-update-info t)
5409   (if force
5410       (gnus-save-newsrc-file)
5411     (gnus-dribble-save)))
5412
5413 (defun gnus-summary-exit (&optional temporary)
5414   "Exit reading current newsgroup, and then return to group selection mode.
5415 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
5416   (interactive)
5417   (gnus-set-global-variables)
5418   (gnus-kill-save-kill-buffer)
5419   (gnus-async-halt-prefetch)
5420   (let* ((group gnus-newsgroup-name)
5421          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
5422          (mode major-mode)
5423          (group-point nil)
5424          (buf (current-buffer)))
5425     (unless quit-config
5426       ;; Do adaptive scoring, and possibly save score files.
5427       (when gnus-newsgroup-adaptive
5428         (gnus-score-adaptive))
5429       (when gnus-use-scoring
5430         (gnus-score-save)))
5431     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
5432     ;; If we have several article buffers, we kill them at exit.
5433     (unless gnus-single-article-buffer
5434       (gnus-kill-buffer gnus-original-article-buffer)
5435       (setq gnus-article-current nil))
5436     (when gnus-use-cache
5437       (gnus-cache-possibly-remove-articles)
5438       (gnus-cache-save-buffers))
5439     (gnus-async-prefetch-remove-group group)
5440     (when gnus-suppress-duplicates
5441       (gnus-dup-enter-articles))
5442     (when gnus-use-trees
5443       (gnus-tree-close group))
5444     (when gnus-use-cache
5445       (gnus-cache-write-active))
5446     ;; Remove entries for this group.
5447     (nnmail-purge-split-history (gnus-group-real-name group))
5448     ;; Make all changes in this group permanent.
5449     (unless quit-config
5450       (gnus-run-hooks 'gnus-exit-group-hook)
5451       (gnus-summary-update-info))
5452     (gnus-close-group group)
5453     ;; Make sure where we were, and go to next newsgroup.
5454     (set-buffer gnus-group-buffer)
5455     (unless quit-config
5456       (gnus-group-jump-to-group group))
5457     (gnus-run-hooks 'gnus-summary-exit-hook)
5458     (unless (or quit-config
5459                 ;; If this group has disappeared from the summary
5460                 ;; buffer, don't skip forwards.
5461                 (not (string= group (gnus-group-group-name))))
5462       (gnus-group-next-unread-group 1))
5463     (setq group-point (point))
5464     (if temporary
5465         nil                             ;Nothing to do.
5466       ;; If we have several article buffers, we kill them at exit.
5467       (unless gnus-single-article-buffer
5468         (gnus-kill-buffer gnus-article-buffer)
5469         (gnus-kill-buffer gnus-original-article-buffer)
5470         (setq gnus-article-current nil))
5471       (set-buffer buf)
5472       (if (not gnus-kill-summary-on-exit)
5473           (gnus-deaden-summary)
5474         ;; We set all buffer-local variables to nil.  It is unclear why
5475         ;; this is needed, but if we don't, buffer-local variables are
5476         ;; not garbage-collected, it seems.  This would the lead to en
5477         ;; ever-growing Emacs.
5478         (gnus-summary-clear-local-variables)
5479         (when (get-buffer gnus-article-buffer)
5480           (bury-buffer gnus-article-buffer))
5481         ;; We clear the global counterparts of the buffer-local
5482         ;; variables as well, just to be on the safe side.
5483         (set-buffer gnus-group-buffer)
5484         (gnus-summary-clear-local-variables)
5485         ;; Return to group mode buffer.
5486         (when (eq mode 'gnus-summary-mode)
5487           (gnus-kill-buffer buf)))
5488       (setq gnus-current-select-method gnus-select-method)
5489       (pop-to-buffer gnus-group-buffer)
5490       (if (not quit-config)
5491           (progn
5492             (goto-char group-point)
5493             (gnus-configure-windows 'group 'force)
5494             (unless (pos-visible-in-window-p)
5495               (forward-line (/ (static-if (featurep 'xemacs)
5496                                    (window-displayed-height)
5497                                  (1- (window-height)))
5498                                -2))
5499               (set-window-start (selected-window) (point))
5500               (goto-char group-point)))
5501         (gnus-handle-ephemeral-exit quit-config))
5502       ;; Clear the current group name.
5503       (unless quit-config
5504         (setq gnus-newsgroup-name nil)))))
5505
5506 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
5507 (defun gnus-summary-exit-no-update (&optional no-questions)
5508   "Quit reading current newsgroup without updating read article info."
5509   (interactive)
5510   (let* ((group gnus-newsgroup-name)
5511          (quit-config (gnus-group-quit-config group)))
5512     (when (or no-questions
5513               gnus-expert-user
5514               (gnus-y-or-n-p "Discard changes to this group and exit? "))
5515       (gnus-async-halt-prefetch)
5516       (mapcar 'funcall
5517               (delq 'gnus-summary-expire-articles
5518                     (copy-sequence gnus-summary-prepare-exit-hook)))
5519       ;; If we have several article buffers, we kill them at exit.
5520       (unless gnus-single-article-buffer
5521         (gnus-kill-buffer gnus-article-buffer)
5522         (gnus-kill-buffer gnus-original-article-buffer)
5523         (setq gnus-article-current nil))
5524       (if (not gnus-kill-summary-on-exit)
5525           (gnus-deaden-summary)
5526         (gnus-close-group group)
5527         (gnus-summary-clear-local-variables)
5528         (set-buffer gnus-group-buffer)
5529         (gnus-summary-clear-local-variables)
5530         (when (get-buffer gnus-summary-buffer)
5531           (kill-buffer gnus-summary-buffer)))
5532       (unless gnus-single-article-buffer
5533         (setq gnus-article-current nil))
5534       (when gnus-use-trees
5535         (gnus-tree-close group))
5536       (gnus-async-prefetch-remove-group group)
5537       (when (get-buffer gnus-article-buffer)
5538         (bury-buffer gnus-article-buffer))
5539       ;; Return to the group buffer.
5540       (gnus-configure-windows 'group 'force)
5541       ;; Clear the current group name.
5542       (setq gnus-newsgroup-name nil)
5543       (when (equal (gnus-group-group-name) group)
5544         (gnus-group-next-unread-group 1))
5545       (when quit-config
5546         (gnus-handle-ephemeral-exit quit-config)))))
5547
5548 (defun gnus-handle-ephemeral-exit (quit-config)
5549   "Handle movement when leaving an ephemeral group.
5550 The state which existed when entering the ephemeral is reset."
5551   (if (not (buffer-name (car quit-config)))
5552       (gnus-configure-windows 'group 'force)
5553     (set-buffer (car quit-config))
5554     (cond ((eq major-mode 'gnus-summary-mode)
5555            (gnus-set-global-variables))
5556           ((eq major-mode 'gnus-article-mode)
5557            (save-excursion
5558              ;; The `gnus-summary-buffer' variable may point
5559              ;; to the old summary buffer when using a single
5560              ;; article buffer.
5561              (unless (gnus-buffer-live-p gnus-summary-buffer)
5562                (set-buffer gnus-group-buffer))
5563              (set-buffer gnus-summary-buffer)
5564              (gnus-set-global-variables))))
5565     (if (or (eq (cdr quit-config) 'article)
5566             (eq (cdr quit-config) 'pick))
5567         (progn
5568           ;; The current article may be from the ephemeral group
5569           ;; thus it is best that we reload this article
5570           (gnus-summary-show-article)
5571           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
5572               (gnus-configure-windows 'pick 'force)
5573             (gnus-configure-windows (cdr quit-config) 'force)))
5574       (gnus-configure-windows (cdr quit-config) 'force))
5575     (when (eq major-mode 'gnus-summary-mode)
5576       (gnus-summary-next-subject 1 nil t)
5577       (gnus-summary-recenter)
5578       (gnus-summary-position-point))))
5579
5580 (defun gnus-summary-preview-mime-message ()
5581   "MIME decode and play this message."
5582   (interactive)
5583   (let ((gnus-break-pages nil)
5584         (gnus-show-mime t))
5585     (gnus-summary-select-article gnus-show-all-headers t))
5586   (select-window (get-buffer-window gnus-article-buffer)))
5587
5588 ;;; Dead summaries.
5589
5590 (defvar gnus-dead-summary-mode-map nil)
5591
5592 (unless gnus-dead-summary-mode-map
5593   (setq gnus-dead-summary-mode-map (make-keymap))
5594   (suppress-keymap gnus-dead-summary-mode-map)
5595   (substitute-key-definition
5596    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
5597   (let ((keys '("\C-d" "\r" "\177" [delete])))
5598     (while keys
5599       (define-key gnus-dead-summary-mode-map
5600         (pop keys) 'gnus-summary-wake-up-the-dead))))
5601
5602 (defvar gnus-dead-summary-mode nil
5603   "Minor mode for Gnus summary buffers.")
5604
5605 (defun gnus-dead-summary-mode (&optional arg)
5606   "Minor mode for Gnus summary buffers."
5607   (interactive "P")
5608   (when (eq major-mode 'gnus-summary-mode)
5609     (make-local-variable 'gnus-dead-summary-mode)
5610     (setq gnus-dead-summary-mode
5611           (if (null arg) (not gnus-dead-summary-mode)
5612             (> (prefix-numeric-value arg) 0)))
5613     (when gnus-dead-summary-mode
5614       (gnus-add-minor-mode
5615        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
5616
5617 (defun gnus-deaden-summary ()
5618   "Make the current summary buffer into a dead summary buffer."
5619   ;; Kill any previous dead summary buffer.
5620   (when (and gnus-dead-summary
5621              (buffer-name gnus-dead-summary))
5622     (save-excursion
5623       (set-buffer gnus-dead-summary)
5624       (when gnus-dead-summary-mode
5625         (kill-buffer (current-buffer)))))
5626   ;; Make this the current dead summary.
5627   (setq gnus-dead-summary (current-buffer))
5628   (gnus-dead-summary-mode 1)
5629   (let ((name (buffer-name)))
5630     (when (string-match "Summary" name)
5631       (rename-buffer
5632        (concat (substring name 0 (match-beginning 0)) "Dead "
5633                (substring name (match-beginning 0)))
5634        t)
5635       (bury-buffer))))
5636
5637 (defun gnus-kill-or-deaden-summary (buffer)
5638   "Kill or deaden the summary BUFFER."
5639   (save-excursion
5640     (when (and (buffer-name buffer)
5641                (not gnus-single-article-buffer))
5642       (save-excursion
5643         (set-buffer buffer)
5644         (gnus-kill-buffer gnus-article-buffer)
5645         (gnus-kill-buffer gnus-original-article-buffer)))
5646     (cond (gnus-kill-summary-on-exit
5647            (when (and gnus-use-trees
5648                       (gnus-buffer-exists-p buffer))
5649              (save-excursion
5650                (set-buffer buffer)
5651                (gnus-tree-close gnus-newsgroup-name)))
5652            (gnus-kill-buffer buffer))
5653           ((gnus-buffer-exists-p buffer)
5654            (save-excursion
5655              (set-buffer buffer)
5656              (gnus-deaden-summary))))))
5657
5658 (defun gnus-summary-wake-up-the-dead (&rest args)
5659   "Wake up the dead summary buffer."
5660   (interactive)
5661   (gnus-dead-summary-mode -1)
5662   (let ((name (buffer-name)))
5663     (when (string-match "Dead " name)
5664       (rename-buffer
5665        (concat (substring name 0 (match-beginning 0))
5666                (substring name (match-end 0)))
5667        t)))
5668   (gnus-message 3 "This dead summary is now alive again"))
5669
5670 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
5671 (defun gnus-summary-fetch-faq (&optional faq-dir)
5672   "Fetch the FAQ for the current group.
5673 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
5674 in."
5675   (interactive
5676    (list
5677     (when current-prefix-arg
5678       (completing-read
5679        "Faq dir: " (and (listp gnus-group-faq-directory)
5680                         (mapcar (lambda (file) (list file))
5681                                 gnus-group-faq-directory))))))
5682   (let (gnus-faq-buffer)
5683     (when (setq gnus-faq-buffer
5684                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
5685       (gnus-configure-windows 'summary-faq))))
5686
5687 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
5688 (defun gnus-summary-describe-group (&optional force)
5689   "Describe the current newsgroup."
5690   (interactive "P")
5691   (gnus-group-describe-group force gnus-newsgroup-name))
5692
5693 (defun gnus-summary-describe-briefly ()
5694   "Describe summary mode commands briefly."
5695   (interactive)
5696   (gnus-message 6 (substitute-command-keys "\\<gnus-summary-mode-map>\\[gnus-summary-next-page]:Select  \\[gnus-summary-next-unread-article]:Forward  \\[gnus-summary-prev-unread-article]:Backward  \\[gnus-summary-exit]:Exit  \\[gnus-info-find-node]:Run Info        \\[gnus-summary-describe-briefly]:This help")))
5697
5698 ;; Walking around group mode buffer from summary mode.
5699
5700 (defun gnus-summary-next-group (&optional no-article target-group backward)
5701   "Exit current newsgroup and then select next unread newsgroup.
5702 If prefix argument NO-ARTICLE is non-nil, no article is selected
5703 initially.  If NEXT-GROUP, go to this group.  If BACKWARD, go to
5704 previous group instead."
5705   (interactive "P")
5706   ;; Stop pre-fetching.
5707   (gnus-async-halt-prefetch)
5708   (let ((current-group gnus-newsgroup-name)
5709         (current-buffer (current-buffer))
5710         entered)
5711     ;; First we semi-exit this group to update Xrefs and all variables.
5712     ;; We can't do a real exit, because the window conf must remain
5713     ;; the same in case the user is prompted for info, and we don't
5714     ;; want the window conf to change before that...
5715     (gnus-summary-exit t)
5716     (while (not entered)
5717       ;; Then we find what group we are supposed to enter.
5718       (set-buffer gnus-group-buffer)
5719       (gnus-group-jump-to-group current-group)
5720       (setq target-group
5721             (or target-group
5722                 (if (eq gnus-keep-same-level 'best)
5723                     (gnus-summary-best-group gnus-newsgroup-name)
5724                   (gnus-summary-search-group backward gnus-keep-same-level))))
5725       (if (not target-group)
5726           ;; There are no further groups, so we return to the group
5727           ;; buffer.
5728           (progn
5729             (gnus-message 5 "Returning to the group buffer")
5730             (setq entered t)
5731             (when (gnus-buffer-live-p current-buffer)
5732               (set-buffer current-buffer)
5733               (gnus-summary-exit))
5734             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
5735         ;; We try to enter the target group.
5736         (gnus-group-jump-to-group target-group)
5737         (let ((unreads (gnus-group-group-unread)))
5738           (if (and (or (eq t unreads)
5739                        (and unreads (not (zerop unreads))))
5740                    (gnus-summary-read-group
5741                     target-group nil no-article
5742                     (and (buffer-name current-buffer) current-buffer)
5743                     nil backward))
5744               (setq entered t)
5745             (setq current-group target-group
5746                   target-group nil)))))))
5747
5748 (defun gnus-summary-prev-group (&optional no-article)
5749   "Exit current newsgroup and then select previous unread newsgroup.
5750 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
5751   (interactive "P")
5752   (gnus-summary-next-group no-article nil t))
5753
5754 ;; Walking around summary lines.
5755
5756 (defun gnus-summary-first-subject (&optional unread undownloaded)
5757   "Go to the first unread subject.
5758 If UNREAD is non-nil, go to the first unread article.
5759 Returns the article selected or nil if there are no unread articles."
5760   (interactive "P")
5761   (prog1
5762       (cond
5763        ;; Empty summary.
5764        ((null gnus-newsgroup-data)
5765         (gnus-message 3 "No articles in the group")
5766         nil)
5767        ;; Pick the first article.
5768        ((not unread)
5769         (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
5770         (gnus-data-number (car gnus-newsgroup-data)))
5771        ;; No unread articles.
5772        ((null gnus-newsgroup-unreads)
5773         (gnus-message 3 "No more unread articles")
5774         nil)
5775        ;; Find the first unread article.
5776        (t
5777         (let ((data gnus-newsgroup-data))
5778           (while (and data
5779                       (and (not (and undownloaded
5780                                      (eq gnus-undownloaded-mark
5781                                          (gnus-data-mark (car data)))))
5782                            (not (gnus-data-unread-p (car data)))))
5783             (setq data (cdr data)))
5784           (when data
5785             (goto-char (gnus-data-pos (car data)))
5786             (gnus-data-number (car data))))))
5787     (gnus-summary-position-point)))
5788
5789 (defun gnus-summary-next-subject (n &optional unread dont-display)
5790   "Go to next N'th summary line.
5791 If N is negative, go to the previous N'th subject line.
5792 If UNREAD is non-nil, only unread articles are selected.
5793 The difference between N and the actual number of steps taken is
5794 returned."
5795   (interactive "p")
5796   (let ((backward (< n 0))
5797         (n (abs n)))
5798     (while (and (> n 0)
5799                 (if backward
5800                     (gnus-summary-find-prev unread)
5801                   (gnus-summary-find-next unread)))
5802       (unless (zerop (setq n (1- n)))
5803         (gnus-summary-show-thread)))
5804     (when (/= 0 n)
5805       (gnus-message 7 "No more%s articles"
5806                     (if unread " unread" "")))
5807     (unless dont-display
5808       (gnus-summary-recenter)
5809       (gnus-summary-position-point))
5810     n))
5811
5812 (defun gnus-summary-next-unread-subject (n)
5813   "Go to next N'th unread summary line."
5814   (interactive "p")
5815   (gnus-summary-next-subject n t))
5816
5817 (defun gnus-summary-prev-subject (n &optional unread)
5818   "Go to previous N'th summary line.
5819 If optional argument UNREAD is non-nil, only unread article is selected."
5820   (interactive "p")
5821   (gnus-summary-next-subject (- n) unread))
5822
5823 (defun gnus-summary-prev-unread-subject (n)
5824   "Go to previous N'th unread summary line."
5825   (interactive "p")
5826   (gnus-summary-next-subject (- n) t))
5827
5828 (defun gnus-summary-goto-subject (article &optional force silent)
5829   "Go the subject line of ARTICLE.
5830 If FORCE, also allow jumping to articles not currently shown."
5831   (interactive "nArticle number: ")
5832   (let ((b (point))
5833         (data (gnus-data-find article)))
5834     ;; We read in the article if we have to.
5835     (and (not data)
5836          force
5837          (gnus-summary-insert-subject
5838           article
5839           (if (or (numberp force) (vectorp force)) force)
5840           t)
5841          (setq data (gnus-data-find article)))
5842     (goto-char b)
5843     (if (not data)
5844         (progn
5845           (unless silent
5846             (gnus-message 3 "Can't find article %d" article))
5847           nil)
5848       (goto-char (gnus-data-pos data))
5849       (gnus-summary-position-point)
5850       article)))
5851
5852 ;; Walking around summary lines with displaying articles.
5853
5854 (defun gnus-summary-expand-window (&optional arg)
5855   "Make the summary buffer take up the entire Emacs frame.
5856 Given a prefix, will force an `article' buffer configuration."
5857   (interactive "P")
5858   (if arg
5859       (gnus-configure-windows 'article 'force)
5860     (gnus-configure-windows 'summary 'force)))
5861
5862 (defun gnus-summary-display-article (article &optional all-header)
5863   "Display ARTICLE in article buffer."
5864   (gnus-set-global-variables)
5865   (if (null article)
5866       nil
5867     (prog1
5868         (if gnus-summary-display-article-function
5869             (funcall gnus-summary-display-article-function article all-header)
5870           (gnus-article-prepare article all-header))
5871       (with-current-buffer gnus-article-buffer
5872         (set (make-local-variable 'gnus-summary-search-article-matched-data)
5873              nil))
5874       (gnus-run-hooks 'gnus-select-article-hook)
5875       (when (and gnus-current-article
5876                  (not (zerop gnus-current-article)))
5877         (gnus-summary-goto-subject gnus-current-article))
5878       (gnus-summary-recenter)
5879       (when (and gnus-use-trees gnus-show-threads)
5880         (gnus-possibly-generate-tree article)
5881         (gnus-highlight-selected-tree article))
5882       ;; Successfully display article.
5883       (gnus-article-set-window-start
5884        (cdr (assq article gnus-newsgroup-bookmarks))))))
5885
5886 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
5887   "Select the current article.
5888 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
5889 non-nil, the article will be re-fetched even if it already present in
5890 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
5891 be displayed."
5892   ;; Make sure we are in the summary buffer to work around bbdb bug.
5893   (unless (eq major-mode 'gnus-summary-mode)
5894     (set-buffer gnus-summary-buffer))
5895   (let ((article (or article (gnus-summary-article-number)))
5896         (all-headers (not (not all-headers))) ;Must be T or NIL.
5897         gnus-summary-display-article-function)
5898     (and (not pseudo)
5899          (gnus-summary-article-pseudo-p article)
5900          (error "This is a pseudo-article"))
5901     (save-excursion
5902       (set-buffer gnus-summary-buffer)
5903       (if (or (and gnus-single-article-buffer
5904                    (or (null gnus-current-article)
5905                        (null gnus-article-current)
5906                        (null (get-buffer gnus-article-buffer))
5907                        (not (eq article (cdr gnus-article-current)))
5908                        (not (equal (car gnus-article-current)
5909                                    gnus-newsgroup-name))))
5910               (and (not gnus-single-article-buffer)
5911                    (or (null gnus-current-article)
5912                        (not (eq gnus-current-article article))))
5913               force)
5914           ;; The requested article is different from the current article.
5915           (progn
5916             (gnus-summary-display-article article all-headers)
5917             (when (or all-headers gnus-show-all-headers)
5918               (gnus-article-show-all-headers))
5919             (gnus-article-set-window-start
5920              (cdr (assq article gnus-newsgroup-bookmarks)))
5921             article)
5922         (when (or all-headers gnus-show-all-headers)
5923           (gnus-article-show-all-headers))
5924         'old))))
5925
5926 (defun gnus-summary-set-current-mark (&optional current-mark)
5927   "Obsolete function."
5928   nil)
5929
5930 (defun gnus-summary-next-article (&optional unread subject backward push)
5931   "Select the next article.
5932 If UNREAD, only unread articles are selected.
5933 If SUBJECT, only articles with SUBJECT are selected.
5934 If BACKWARD, the previous article is selected instead of the next."
5935   (interactive "P")
5936   (cond
5937    ;; Is there such an article?
5938    ((and (gnus-summary-search-forward unread subject backward)
5939          (or (gnus-summary-display-article (gnus-summary-article-number))
5940              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
5941     (gnus-summary-position-point))
5942    ;; If not, we try the first unread, if that is wanted.
5943    ((and subject
5944          gnus-auto-select-same
5945          (gnus-summary-first-unread-article))
5946     (gnus-summary-position-point)
5947     (gnus-message 6 "Wrapped"))
5948    ;; Try to get next/previous article not displayed in this group.
5949    ((and gnus-auto-extend-newsgroup
5950          (not unread) (not subject))
5951     (gnus-summary-goto-article
5952      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
5953      nil (count-lines (point-min) (point))))
5954    ;; Go to next/previous group.
5955    (t
5956     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
5957       (gnus-summary-jump-to-group gnus-newsgroup-name))
5958     (let ((cmd last-command-char)
5959           (point
5960            (save-excursion
5961              (set-buffer gnus-group-buffer)
5962              (point)))
5963           (group
5964            (if (eq gnus-keep-same-level 'best)
5965                (gnus-summary-best-group gnus-newsgroup-name)
5966              (gnus-summary-search-group backward gnus-keep-same-level))))
5967       ;; For some reason, the group window gets selected.  We change
5968       ;; it back.
5969       (select-window (get-buffer-window (current-buffer)))
5970       ;; Select next unread newsgroup automagically.
5971       (cond
5972        ((or (not gnus-auto-select-next)
5973             (not cmd))
5974         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
5975        ((or (eq gnus-auto-select-next 'quietly)
5976             (and (eq gnus-auto-select-next 'slightly-quietly)
5977                  push)
5978             (and (eq gnus-auto-select-next 'almost-quietly)
5979                  (gnus-summary-last-article-p)))
5980         ;; Select quietly.
5981         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
5982             (gnus-summary-exit)
5983           (gnus-message 7 "No more%s articles (%s)..."
5984                         (if unread " unread" "")
5985                         (if group (concat "selecting " group)
5986                           "exiting"))
5987           (gnus-summary-next-group nil group backward)))
5988        (t
5989         (when (gnus-key-press-event-p last-input-event)
5990           (gnus-summary-walk-group-buffer
5991            gnus-newsgroup-name cmd unread backward point))))))))
5992
5993 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
5994   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
5995                       (?\C-p (gnus-group-prev-unread-group 1))))
5996         (cursor-in-echo-area t)
5997         keve key group ended)
5998     (save-excursion
5999       (set-buffer gnus-group-buffer)
6000       (goto-char start)
6001       (setq group
6002             (if (eq gnus-keep-same-level 'best)
6003                 (gnus-summary-best-group gnus-newsgroup-name)
6004               (gnus-summary-search-group backward gnus-keep-same-level))))
6005     (while (not ended)
6006       (gnus-message
6007        5 "No more%s articles%s" (if unread " unread" "")
6008        (if (and group
6009                 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
6010            (format " (Type %s for %s [%s])"
6011                    (single-key-description cmd) group
6012                    (car (gnus-gethash group gnus-newsrc-hashtb)))
6013          (format " (Type %s to exit %s)"
6014                  (single-key-description cmd)
6015                  gnus-newsgroup-name)))
6016       ;; Confirm auto selection.
6017       (setq key (car (setq keve (gnus-read-event-char))))
6018       (setq ended t)
6019       (cond
6020        ((assq key keystrokes)
6021         (let ((obuf (current-buffer)))
6022           (switch-to-buffer gnus-group-buffer)
6023           (when group
6024             (gnus-group-jump-to-group group))
6025           (eval (cadr (assq key keystrokes)))
6026           (setq group (gnus-group-group-name))
6027           (switch-to-buffer obuf))
6028         (setq ended nil))
6029        ((equal key cmd)
6030         (if (or (not group)
6031                 (gnus-ephemeral-group-p gnus-newsgroup-name))
6032             (gnus-summary-exit)
6033           (gnus-summary-next-group nil group backward)))
6034        (t
6035         (push (cdr keve) unread-command-events))))))
6036
6037 (defun gnus-summary-next-unread-article ()
6038   "Select unread article after current one."
6039   (interactive)
6040   (gnus-summary-next-article
6041    (or (not (eq gnus-summary-goto-unread 'never))
6042        (gnus-summary-last-article-p (gnus-summary-article-number)))
6043    (and gnus-auto-select-same
6044         (gnus-summary-article-subject))))
6045
6046 (defun gnus-summary-prev-article (&optional unread subject)
6047   "Select the article after the current one.
6048 If UNREAD is non-nil, only unread articles are selected."
6049   (interactive "P")
6050   (gnus-summary-next-article unread subject t))
6051
6052 (defun gnus-summary-prev-unread-article ()
6053   "Select unread article before current one."
6054   (interactive)
6055   (gnus-summary-prev-article
6056    (or (not (eq gnus-summary-goto-unread 'never))
6057        (gnus-summary-first-article-p (gnus-summary-article-number)))
6058    (and gnus-auto-select-same
6059         (gnus-summary-article-subject))))
6060
6061 (defun gnus-summary-next-page (&optional lines circular)
6062   "Show next page of the selected article.
6063 If at the end of the current article, select the next article.
6064 LINES says how many lines should be scrolled up.
6065
6066 If CIRCULAR is non-nil, go to the start of the article instead of
6067 selecting the next article when reaching the end of the current
6068 article."
6069   (interactive "P")
6070   (setq gnus-summary-buffer (current-buffer))
6071   (gnus-set-global-variables)
6072   (let ((article (gnus-summary-article-number))
6073         (article-window (get-buffer-window gnus-article-buffer t))
6074         endp)
6075     ;; If the buffer is empty, we have no article.
6076     (unless article
6077       (error "No article to select"))
6078     (gnus-configure-windows 'article)
6079     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
6080         (if (and (eq gnus-summary-goto-unread 'never)
6081                  (not (gnus-summary-last-article-p article)))
6082             (gnus-summary-next-article)
6083           (gnus-summary-next-unread-article))
6084       (if (or (null gnus-current-article)
6085               (null gnus-article-current)
6086               (/= article (cdr gnus-article-current))
6087               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6088           ;; Selected subject is different from current article's.
6089           (gnus-summary-display-article article)
6090         (when article-window
6091           (gnus-eval-in-buffer-window gnus-article-buffer
6092             (setq endp (gnus-article-next-page lines)))
6093           (when endp
6094             (cond (circular
6095                    (gnus-summary-beginning-of-article))
6096                   (lines
6097                    (gnus-message 3 "End of message"))
6098                   ((null lines)
6099                    (if (and (eq gnus-summary-goto-unread 'never)
6100                             (not (gnus-summary-last-article-p article)))
6101                        (gnus-summary-next-article)
6102                      (gnus-summary-next-unread-article))))))))
6103     (gnus-summary-recenter)
6104     (gnus-summary-position-point)))
6105
6106 (defun gnus-summary-prev-page (&optional lines move)
6107   "Show previous page of selected article.
6108 Argument LINES specifies lines to be scrolled down.
6109 If MOVE, move to the previous unread article if point is at
6110 the beginning of the buffer."
6111   (interactive "P")
6112   (let ((article (gnus-summary-article-number))
6113         (article-window (get-buffer-window gnus-article-buffer t))
6114         endp)
6115     (gnus-configure-windows 'article)
6116     (if (or (null gnus-current-article)
6117             (null gnus-article-current)
6118             (/= article (cdr gnus-article-current))
6119             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6120         ;; Selected subject is different from current article's.
6121         (gnus-summary-display-article article)
6122       (gnus-summary-recenter)
6123       (when article-window
6124         (gnus-eval-in-buffer-window gnus-article-buffer
6125           (setq endp (gnus-article-prev-page lines)))
6126         (when (and move endp)
6127           (cond (lines
6128                  (gnus-message 3 "Beginning of message"))
6129                 ((null lines)
6130                  (if (and (eq gnus-summary-goto-unread 'never)
6131                           (not (gnus-summary-first-article-p article)))
6132                      (gnus-summary-prev-article)
6133                    (gnus-summary-prev-unread-article))))))))
6134   (gnus-summary-position-point))
6135
6136 (defun gnus-summary-prev-page-or-article (&optional lines)
6137   "Show previous page of selected article.
6138 Argument LINES specifies lines to be scrolled down.
6139 If at the beginning of the article, go to the next article."
6140   (interactive "P")
6141   (gnus-summary-prev-page lines t))
6142
6143 (defun gnus-summary-scroll-up (lines)
6144   "Scroll up (or down) one line current article.
6145 Argument LINES specifies lines to be scrolled up (or down if negative)."
6146   (interactive "p")
6147   (gnus-configure-windows 'article)
6148   (gnus-summary-show-thread)
6149   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
6150     (gnus-eval-in-buffer-window gnus-article-buffer
6151       (cond ((> lines 0)
6152              (when (gnus-article-next-page lines)
6153                (gnus-message 3 "End of message")))
6154             ((< lines 0)
6155              (gnus-article-prev-page (- lines))))))
6156   (gnus-summary-recenter)
6157   (gnus-summary-position-point))
6158
6159 (defun gnus-summary-scroll-down (lines)
6160   "Scroll down (or up) one line current article.
6161 Argument LINES specifies lines to be scrolled down (or up if negative)."
6162   (interactive "p")
6163   (gnus-summary-scroll-up (- lines)))
6164
6165 (defun gnus-summary-next-same-subject ()
6166   "Select next article which has the same subject as current one."
6167   (interactive)
6168   (gnus-summary-next-article nil (gnus-summary-article-subject)))
6169
6170 (defun gnus-summary-prev-same-subject ()
6171   "Select previous article which has the same subject as current one."
6172   (interactive)
6173   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
6174
6175 (defun gnus-summary-next-unread-same-subject ()
6176   "Select next unread article which has the same subject as current one."
6177   (interactive)
6178   (gnus-summary-next-article t (gnus-summary-article-subject)))
6179
6180 (defun gnus-summary-prev-unread-same-subject ()
6181   "Select previous unread article which has the same subject as current one."
6182   (interactive)
6183   (gnus-summary-prev-article t (gnus-summary-article-subject)))
6184
6185 (defun gnus-summary-first-unread-article ()
6186   "Select the first unread article.
6187 Return nil if there are no unread articles."
6188   (interactive)
6189   (prog1
6190       (when (gnus-summary-first-subject t)
6191         (gnus-summary-show-thread)
6192         (gnus-summary-first-subject t)
6193         (gnus-summary-display-article (gnus-summary-article-number)))
6194     (gnus-summary-position-point)))
6195
6196 (defun gnus-summary-first-unread-subject ()
6197   "Place the point on the subject line of the first unread article.
6198 Return nil if there are no unread articles."
6199   (interactive)
6200   (prog1
6201       (when (gnus-summary-first-subject t)
6202         (gnus-summary-show-thread)
6203         (gnus-summary-first-subject t))
6204     (gnus-summary-position-point)))
6205
6206 (defun gnus-summary-first-article ()
6207   "Select the first article.
6208 Return nil if there are no articles."
6209   (interactive)
6210   (prog1
6211       (when (gnus-summary-first-subject)
6212         (gnus-summary-show-thread)
6213         (gnus-summary-first-subject)
6214         (gnus-summary-display-article (gnus-summary-article-number)))
6215     (gnus-summary-position-point)))
6216
6217 (defun gnus-summary-best-unread-article ()
6218   "Select the unread article with the highest score."
6219   (interactive)
6220   (let ((best -1000000)
6221         (data gnus-newsgroup-data)
6222         article score)
6223     (while data
6224       (and (gnus-data-unread-p (car data))
6225            (> (setq score
6226                     (gnus-summary-article-score (gnus-data-number (car data))))
6227               best)
6228            (setq best score
6229                  article (gnus-data-number (car data))))
6230       (setq data (cdr data)))
6231     (prog1
6232         (if article
6233             (gnus-summary-goto-article article)
6234           (error "No unread articles"))
6235       (gnus-summary-position-point))))
6236
6237 (defun gnus-summary-last-subject ()
6238   "Go to the last displayed subject line in the group."
6239   (let ((article (gnus-data-number (car (gnus-data-list t)))))
6240     (when article
6241       (gnus-summary-goto-subject article))))
6242
6243 (defun gnus-summary-goto-article (article &optional all-headers force)
6244   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
6245 If ALL-HEADERS is non-nil, no header lines are hidden.
6246 If FORCE, go to the article even if it isn't displayed.  If FORCE
6247 is a number, it is the line the article is to be displayed on."
6248   (interactive
6249    (list
6250     (completing-read
6251      "Article number or Message-ID: "
6252      (mapcar (lambda (number) (list (int-to-string number)))
6253              gnus-newsgroup-limit))
6254     current-prefix-arg
6255     t))
6256   (prog1
6257       (if (and (stringp article)
6258                (string-match "@" article))
6259           (gnus-summary-refer-article article)
6260         (when (stringp article)
6261           (setq article (string-to-number article)))
6262         (if (gnus-summary-goto-subject article force)
6263             (gnus-summary-display-article article all-headers)
6264           (gnus-message 4 "Couldn't go to article %s" article) nil))
6265     (gnus-summary-position-point)))
6266
6267 (defun gnus-summary-goto-last-article ()
6268   "Go to the previously read article."
6269   (interactive)
6270   (prog1
6271       (when gnus-last-article
6272         (gnus-summary-goto-article gnus-last-article nil t))
6273     (gnus-summary-position-point)))
6274
6275 (defun gnus-summary-pop-article (number)
6276   "Pop one article off the history and go to the previous.
6277 NUMBER articles will be popped off."
6278   (interactive "p")
6279   (let (to)
6280     (setq gnus-newsgroup-history
6281           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
6282     (if to
6283         (gnus-summary-goto-article (car to) nil t)
6284       (error "Article history empty")))
6285   (gnus-summary-position-point))
6286
6287 ;; Summary commands and functions for limiting the summary buffer.
6288
6289 (defun gnus-summary-limit-to-articles (n)
6290   "Limit the summary buffer to the next N articles.
6291 If not given a prefix, use the process marked articles instead."
6292   (interactive "P")
6293   (prog1
6294       (let ((articles (gnus-summary-work-articles n)))
6295         (setq gnus-newsgroup-processable nil)
6296         (gnus-summary-limit articles))
6297     (gnus-summary-position-point)))
6298
6299 (defun gnus-summary-pop-limit (&optional total)
6300   "Restore the previous limit.
6301 If given a prefix, remove all limits."
6302   (interactive "P")
6303   (when total
6304     (setq gnus-newsgroup-limits
6305           (list (mapcar (lambda (h) (mail-header-number h))
6306                         gnus-newsgroup-headers))))
6307   (unless gnus-newsgroup-limits
6308     (error "No limit to pop"))
6309   (prog1
6310       (gnus-summary-limit nil 'pop)
6311     (gnus-summary-position-point)))
6312
6313 (defun gnus-summary-limit-to-subject (subject &optional header)
6314   "Limit the summary buffer to articles that have subjects that match a regexp."
6315   (interactive "sLimit to subject (regexp): ")
6316   (unless header
6317     (setq header "subject"))
6318   (when (not (equal "" subject))
6319     (prog1
6320         (let ((articles (gnus-summary-find-matching
6321                          (or header "subject") subject 'all)))
6322           (unless articles
6323             (error "Found no matches for \"%s\"" subject))
6324           (gnus-summary-limit articles))
6325       (gnus-summary-position-point))))
6326
6327 (defun gnus-summary-limit-to-author (from)
6328   "Limit the summary buffer to articles that have authors that match a regexp."
6329   (interactive "sLimit to author (regexp): ")
6330   (gnus-summary-limit-to-subject from "from"))
6331
6332 (defun gnus-summary-limit-to-age (age &optional younger-p)
6333   "Limit the summary buffer to articles that are older than (or equal) AGE days.
6334 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
6335 articles that are younger than AGE days."
6336   (interactive
6337    (let ((younger current-prefix-arg)
6338          (days-got nil)
6339          days)
6340      (while (not days-got)
6341        (setq days (if younger
6342                       (read-string "Limit to articles within (in days): ")
6343                     (read-string "Limit to articles old than (in days): ")))
6344        (when (> (length days) 0)
6345          (setq days (read days)))
6346        (if (numberp days)
6347            (setq days-got t)
6348          (message "Please enter a number.")
6349          (sleep-for 1)))
6350      (list days younger)))
6351   (prog1
6352       (let ((data gnus-newsgroup-data)
6353             (cutoff (days-to-time age))
6354             articles d date is-younger)
6355         (while (setq d (pop data))
6356           (when (and (vectorp (gnus-data-header d))
6357                      (setq date (mail-header-date (gnus-data-header d))))
6358             (setq is-younger (time-less-p
6359                               (time-since (condition-case ()
6360                                               (date-to-time date)
6361                                             (error '(0 0))))
6362                               cutoff))
6363             (when (if younger-p
6364                       is-younger
6365                     (not is-younger))
6366               (push (gnus-data-number d) articles))))
6367         (gnus-summary-limit (nreverse articles)))
6368     (gnus-summary-position-point)))
6369
6370 (defun gnus-summary-limit-to-extra (header regexp)
6371   "Limit the summary buffer to articles that match an 'extra' header."
6372   (interactive
6373    (let ((header
6374           (intern
6375            (gnus-completing-read
6376             (symbol-name (car gnus-extra-headers))
6377             "Limit extra header:"
6378             (mapcar (lambda (x)
6379                       (cons (symbol-name x) x))
6380                     gnus-extra-headers)
6381             nil
6382             t))))
6383      (list header
6384            (read-string (format "Limit to header %s (regexp): " header)))))
6385   (when (not (equal "" regexp))
6386     (prog1
6387         (let ((articles (gnus-summary-find-matching
6388                          (cons 'extra header) regexp 'all)))
6389           (unless articles
6390             (error "Found no matches for \"%s\"" regexp))
6391           (gnus-summary-limit articles))
6392       (gnus-summary-position-point))))
6393
6394 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6395 (make-obsolete
6396  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6397
6398 (defun gnus-summary-limit-to-unread (&optional all)
6399   "Limit the summary buffer to articles that are not marked as read.
6400 If ALL is non-nil, limit strictly to unread articles."
6401   (interactive "P")
6402   (if all
6403       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
6404     (gnus-summary-limit-to-marks
6405      ;; Concat all the marks that say that an article is read and have
6406      ;; those removed.
6407      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
6408            gnus-killed-mark gnus-kill-file-mark
6409            gnus-low-score-mark gnus-expirable-mark
6410            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
6411            gnus-duplicate-mark gnus-souped-mark)
6412      'reverse)))
6413
6414 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
6415 (make-obsolete 'gnus-summary-delete-marked-with
6416                'gnus-summary-limit-exlude-marks)
6417
6418 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
6419   "Exclude articles that are marked with MARKS (e.g. \"DK\").
6420 If REVERSE, limit the summary buffer to articles that are marked
6421 with MARKS.  MARKS can either be a string of marks or a list of marks.
6422 Returns how many articles were removed."
6423   (interactive "sMarks: ")
6424   (gnus-summary-limit-to-marks marks t))
6425
6426 (defun gnus-summary-limit-to-marks (marks &optional reverse)
6427   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
6428 If REVERSE (the prefix), limit the summary buffer to articles that are
6429 not marked with MARKS.  MARKS can either be a string of marks or a
6430 list of marks.
6431 Returns how many articles were removed."
6432   (interactive "sMarks: \nP")
6433   (prog1
6434       (let ((data gnus-newsgroup-data)
6435             (marks (if (listp marks) marks
6436                      (append marks nil))) ; Transform to list.
6437             articles)
6438         (while data
6439           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
6440                   (memq (gnus-data-mark (car data)) marks))
6441             (push (gnus-data-number (car data)) articles))
6442           (setq data (cdr data)))
6443         (gnus-summary-limit articles))
6444     (gnus-summary-position-point)))
6445
6446 (defun gnus-summary-limit-to-score (&optional score)
6447   "Limit to articles with score at or above SCORE."
6448   (interactive "P")
6449   (setq score (if score
6450                   (prefix-numeric-value score)
6451                 (or gnus-summary-default-score 0)))
6452   (let ((data gnus-newsgroup-data)
6453         articles)
6454     (while data
6455       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
6456                 score)
6457         (push (gnus-data-number (car data)) articles))
6458       (setq data (cdr data)))
6459     (prog1
6460         (gnus-summary-limit articles)
6461       (gnus-summary-position-point))))
6462
6463 (defun gnus-summary-limit-include-thread (id)
6464   "Display all the hidden articles that in the current thread."
6465   (interactive (list (mail-header-id (gnus-summary-article-header))))
6466   (let ((articles (gnus-articles-in-thread
6467                    (gnus-id-to-thread (gnus-root-id id)))))
6468     (prog1
6469         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
6470       (gnus-summary-position-point))))
6471
6472 (defun gnus-summary-limit-include-dormant ()
6473   "Display all the hidden articles that are marked as dormant.
6474 Note that this command only works on a subset of the articles currently
6475 fetched for this group."
6476   (interactive)
6477   (unless gnus-newsgroup-dormant
6478     (error "There are no dormant articles in this group"))
6479   (prog1
6480       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
6481     (gnus-summary-position-point)))
6482
6483 (defun gnus-summary-limit-exclude-dormant ()
6484   "Hide all dormant articles."
6485   (interactive)
6486   (prog1
6487       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
6488     (gnus-summary-position-point)))
6489
6490 (defun gnus-summary-limit-exclude-childless-dormant ()
6491   "Hide all dormant articles that have no children."
6492   (interactive)
6493   (let ((data (gnus-data-list t))
6494         articles d children)
6495     ;; Find all articles that are either not dormant or have
6496     ;; children.
6497     (while (setq d (pop data))
6498       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
6499                 (and (setq children
6500                            (gnus-article-children (gnus-data-number d)))
6501                      (let (found)
6502                        (while children
6503                          (when (memq (car children) articles)
6504                            (setq children nil
6505                                  found t))
6506                          (pop children))
6507                        found)))
6508         (push (gnus-data-number d) articles)))
6509     ;; Do the limiting.
6510     (prog1
6511         (gnus-summary-limit articles)
6512       (gnus-summary-position-point))))
6513
6514 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
6515   "Mark all unread excluded articles as read.
6516 If ALL, mark even excluded ticked and dormants as read."
6517   (interactive "P")
6518   (let ((articles (gnus-sorted-complement
6519                    (sort
6520                     (mapcar (lambda (h) (mail-header-number h))
6521                             gnus-newsgroup-headers)
6522                     '<)
6523                    (sort gnus-newsgroup-limit '<)))
6524         article)
6525     (setq gnus-newsgroup-unreads
6526           (gnus-intersection gnus-newsgroup-unreads gnus-newsgroup-limit))
6527     (if all
6528         (setq gnus-newsgroup-dormant nil
6529               gnus-newsgroup-marked nil
6530               gnus-newsgroup-reads
6531               (nconc
6532                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
6533                gnus-newsgroup-reads))
6534       (while (setq article (pop articles))
6535         (unless (or (memq article gnus-newsgroup-dormant)
6536                     (memq article gnus-newsgroup-marked))
6537           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
6538
6539 (defun gnus-summary-limit (articles &optional pop)
6540   (if pop
6541       ;; We pop the previous limit off the stack and use that.
6542       (setq articles (car gnus-newsgroup-limits)
6543             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
6544     ;; We use the new limit, so we push the old limit on the stack.
6545     (push gnus-newsgroup-limit gnus-newsgroup-limits))
6546   ;; Set the limit.
6547   (setq gnus-newsgroup-limit articles)
6548   (let ((total (length gnus-newsgroup-data))
6549         (data (gnus-data-find-list (gnus-summary-article-number)))
6550         (gnus-summary-mark-below nil)   ; Inhibit this.
6551         found)
6552     ;; This will do all the work of generating the new summary buffer
6553     ;; according to the new limit.
6554     (gnus-summary-prepare)
6555     ;; Hide any threads, possibly.
6556     (and gnus-show-threads
6557          gnus-thread-hide-subtree
6558          (gnus-summary-hide-all-threads))
6559     ;; Try to return to the article you were at, or one in the
6560     ;; neighborhood.
6561     (when data
6562       ;; We try to find some article after the current one.
6563       (while data
6564         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
6565           (setq data nil
6566                 found t))
6567         (setq data (cdr data))))
6568     (unless found
6569       ;; If there is no data, that means that we were after the last
6570       ;; article.  The same goes when we can't find any articles
6571       ;; after the current one.
6572       (goto-char (point-max))
6573       (gnus-summary-find-prev))
6574     (gnus-set-mode-line 'summary)
6575     ;; We return how many articles were removed from the summary
6576     ;; buffer as a result of the new limit.
6577     (- total (length gnus-newsgroup-data))))
6578
6579 (defsubst gnus-invisible-cut-children (threads)
6580   (let ((num 0))
6581     (while threads
6582       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
6583         (incf num))
6584       (pop threads))
6585     (< num 2)))
6586
6587 (defsubst gnus-cut-thread (thread)
6588   "Go forwards in the thread until we find an article that we want to display."
6589   (when (or (eq gnus-fetch-old-headers 'some)
6590             (eq gnus-fetch-old-headers 'invisible)
6591             (numberp gnus-fetch-old-headers)
6592             (eq gnus-build-sparse-threads 'some)
6593             (eq gnus-build-sparse-threads 'more))
6594     ;; Deal with old-fetched headers and sparse threads.
6595     (while (and
6596             thread
6597             (or
6598              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
6599              (gnus-summary-article-ancient-p
6600               (mail-header-number (car thread))))
6601             (if (or (<= (length (cdr thread)) 1)
6602                     (eq gnus-fetch-old-headers 'invisible))
6603                 (setq gnus-newsgroup-limit
6604                       (delq (mail-header-number (car thread))
6605                             gnus-newsgroup-limit)
6606                       thread (cadr thread))
6607               (when (gnus-invisible-cut-children (cdr thread))
6608                 (let ((th (cdr thread)))
6609                   (while th
6610                     (if (memq (mail-header-number (caar th))
6611                               gnus-newsgroup-limit)
6612                         (setq thread (car th)
6613                               th nil)
6614                       (setq th (cdr th))))))))))
6615   thread)
6616
6617 (defun gnus-cut-threads (threads)
6618   "Cut off all uninteresting articles from the beginning of threads."
6619   (when (or (eq gnus-fetch-old-headers 'some)
6620             (eq gnus-fetch-old-headers 'invisible)
6621             (numberp gnus-fetch-old-headers)
6622             (eq gnus-build-sparse-threads 'some)
6623             (eq gnus-build-sparse-threads 'more))
6624     (let ((th threads))
6625       (while th
6626         (setcar th (gnus-cut-thread (car th)))
6627         (setq th (cdr th)))))
6628   ;; Remove nixed out threads.
6629   (delq nil threads))
6630
6631 (defun gnus-summary-initial-limit (&optional show-if-empty)
6632   "Figure out what the initial limit is supposed to be on group entry.
6633 This entails weeding out unwanted dormants, low-scored articles,
6634 fetch-old-headers verbiage, and so on."
6635   ;; Most groups have nothing to remove.
6636   (if (or gnus-inhibit-limiting
6637           (and (null gnus-newsgroup-dormant)
6638                (not (eq gnus-fetch-old-headers 'some))
6639                (not (numberp gnus-fetch-old-headers))
6640                (not (eq gnus-fetch-old-headers 'invisible))
6641                (null gnus-summary-expunge-below)
6642                (not (eq gnus-build-sparse-threads 'some))
6643                (not (eq gnus-build-sparse-threads 'more))
6644                (null gnus-thread-expunge-below)
6645                (not gnus-use-nocem)))
6646       ()                                ; Do nothing.
6647     (push gnus-newsgroup-limit gnus-newsgroup-limits)
6648     (setq gnus-newsgroup-limit nil)
6649     (mapatoms
6650      (lambda (node)
6651        (unless (car (symbol-value node))
6652          ;; These threads have no parents -- they are roots.
6653          (let ((nodes (cdr (symbol-value node)))
6654                thread)
6655            (while nodes
6656              (if (and gnus-thread-expunge-below
6657                       (< (gnus-thread-total-score (car nodes))
6658                          gnus-thread-expunge-below))
6659                  (gnus-expunge-thread (pop nodes))
6660                (setq thread (pop nodes))
6661                (gnus-summary-limit-children thread))))))
6662      gnus-newsgroup-dependencies)
6663     ;; If this limitation resulted in an empty group, we might
6664     ;; pop the previous limit and use it instead.
6665     (when (and (not gnus-newsgroup-limit)
6666                show-if-empty)
6667       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
6668     gnus-newsgroup-limit))
6669
6670 (defun gnus-summary-limit-children (thread)
6671   "Return 1 if this subthread is visible and 0 if it is not."
6672   ;; First we get the number of visible children to this thread.  This
6673   ;; is done by recursing down the thread using this function, so this
6674   ;; will really go down to a leaf article first, before slowly
6675   ;; working its way up towards the root.
6676   (when thread
6677     (let ((children
6678            (if (cdr thread)
6679                (apply '+ (mapcar 'gnus-summary-limit-children
6680                                  (cdr thread)))
6681              0))
6682           (number (mail-header-number (car thread)))
6683           score)
6684       (if (and
6685            (not (memq number gnus-newsgroup-marked))
6686            (or
6687             ;; If this article is dormant and has absolutely no visible
6688             ;; children, then this article isn't visible.
6689             (and (memq number gnus-newsgroup-dormant)
6690                  (zerop children))
6691             ;; If this is "fetch-old-headered" and there is no
6692             ;; visible children, then we don't want this article.
6693             (and (or (eq gnus-fetch-old-headers 'some)
6694                      (numberp gnus-fetch-old-headers))
6695                  (gnus-summary-article-ancient-p number)
6696                  (zerop children))
6697             ;; If this is "fetch-old-headered" and `invisible', then
6698             ;; we don't want this article.
6699             (and (eq gnus-fetch-old-headers 'invisible)
6700                  (gnus-summary-article-ancient-p number))
6701             ;; If this is a sparsely inserted article with no children,
6702             ;; we don't want it.
6703             (and (eq gnus-build-sparse-threads 'some)
6704                  (gnus-summary-article-sparse-p number)
6705                  (zerop children))
6706             ;; If we use expunging, and this article is really
6707             ;; low-scored, then we don't want this article.
6708             (when (and gnus-summary-expunge-below
6709                        (< (setq score
6710                                 (or (cdr (assq number gnus-newsgroup-scored))
6711                                     gnus-summary-default-score))
6712                           gnus-summary-expunge-below))
6713               ;; We increase the expunge-tally here, but that has
6714               ;; nothing to do with the limits, really.
6715               (incf gnus-newsgroup-expunged-tally)
6716               ;; We also mark as read here, if that's wanted.
6717               (when (and gnus-summary-mark-below
6718                          (< score gnus-summary-mark-below))
6719                 (setq gnus-newsgroup-unreads
6720                       (delq number gnus-newsgroup-unreads))
6721                 (if gnus-newsgroup-auto-expire
6722                     (push number gnus-newsgroup-expirable)
6723                   (push (cons number gnus-low-score-mark)
6724                         gnus-newsgroup-reads)))
6725               t)
6726             ;; Check NoCeM things.
6727             (if (and gnus-use-nocem
6728                      (gnus-nocem-unwanted-article-p
6729                       (mail-header-id (car thread))))
6730                 (progn
6731                   (setq gnus-newsgroup-unreads
6732                         (delq number gnus-newsgroup-unreads))
6733                   t))))
6734           ;; Nope, invisible article.
6735           0
6736         ;; Ok, this article is to be visible, so we add it to the limit
6737         ;; and return 1.
6738         (push number gnus-newsgroup-limit)
6739         1))))
6740
6741 (defun gnus-expunge-thread (thread)
6742   "Mark all articles in THREAD as read."
6743   (let* ((number (mail-header-number (car thread))))
6744     (incf gnus-newsgroup-expunged-tally)
6745     ;; We also mark as read here, if that's wanted.
6746     (setq gnus-newsgroup-unreads
6747           (delq number gnus-newsgroup-unreads))
6748     (if gnus-newsgroup-auto-expire
6749         (push number gnus-newsgroup-expirable)
6750       (push (cons number gnus-low-score-mark)
6751             gnus-newsgroup-reads)))
6752   ;; Go recursively through all subthreads.
6753   (mapcar 'gnus-expunge-thread (cdr thread)))
6754
6755 ;; Summary article oriented commands
6756
6757 (defun gnus-summary-refer-parent-article (n)
6758   "Refer parent article N times.
6759 If N is negative, go to ancestor -N instead.
6760 The difference between N and the number of articles fetched is returned."
6761   (interactive "p")
6762   (let ((skip 1)
6763         error header ref)
6764     (when (not (natnump n))
6765       (setq skip (abs n)
6766             n 1))
6767     (while (and (> n 0)
6768                 (not error))
6769       (setq header (gnus-summary-article-header))
6770       (if (and (eq (mail-header-number header)
6771                    (cdr gnus-article-current))
6772                (equal gnus-newsgroup-name
6773                       (car gnus-article-current)))
6774           ;; If we try to find the parent of the currently
6775           ;; displayed article, then we take a look at the actual
6776           ;; References header, since this is slightly more
6777           ;; reliable than the References field we got from the
6778           ;; server.
6779           (save-excursion
6780             (set-buffer gnus-original-article-buffer)
6781             (nnheader-narrow-to-headers)
6782             (unless (setq ref (message-fetch-field "references"))
6783               (setq ref (message-fetch-field "in-reply-to")))
6784             (widen))
6785         (setq ref
6786               ;; It's not the current article, so we take a bet on
6787               ;; the value we got from the server.
6788               (mail-header-references header)))
6789       (if (and ref
6790                (not (equal ref "")))
6791           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
6792             (gnus-message 1 "Couldn't find parent"))
6793         (gnus-message 1 "No references in article %d"
6794                       (gnus-summary-article-number))
6795         (setq error t))
6796       (decf n))
6797     (gnus-summary-position-point)
6798     n))
6799
6800 (defun gnus-summary-refer-references ()
6801   "Fetch all articles mentioned in the References header.
6802 Return the number of articles fetched."
6803   (interactive)
6804   (let ((ref (mail-header-references (gnus-summary-article-header)))
6805         (current (gnus-summary-article-number))
6806         (n 0))
6807     (if (or (not ref)
6808             (equal ref ""))
6809         (error "No References in the current article")
6810       ;; For each Message-ID in the References header...
6811       (while (string-match "<[^>]*>" ref)
6812         (incf n)
6813         ;; ... fetch that article.
6814         (gnus-summary-refer-article
6815          (prog1 (match-string 0 ref)
6816            (setq ref (substring ref (match-end 0))))))
6817       (gnus-summary-goto-subject current)
6818       (gnus-summary-position-point)
6819       n)))
6820
6821 (defun gnus-summary-refer-thread (&optional limit)
6822   "Fetch all articles in the current thread.
6823 If LIMIT (the numerical prefix), fetch that many old headers instead
6824 of what's specified by the `gnus-refer-thread-limit' variable."
6825   (interactive "P")
6826   (let ((id (mail-header-id (gnus-summary-article-header)))
6827         (limit (if limit (prefix-numeric-value limit)
6828                  gnus-refer-thread-limit)))
6829     ;; We want to fetch LIMIT *old* headers, but we also have to
6830     ;; re-fetch all the headers in the current buffer, because many of
6831     ;; them may be undisplayed.  So we adjust LIMIT.
6832     (when (numberp limit)
6833       (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin)))
6834     (unless (eq gnus-fetch-old-headers 'invisible)
6835       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
6836       ;; Retrieve the headers and read them in.
6837       (if (eq (gnus-retrieve-headers
6838                (list gnus-newsgroup-end) gnus-newsgroup-name limit)
6839               'nov)
6840           (gnus-build-all-threads)
6841         (error "Can't fetch thread from backends that don't support NOV"))
6842       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
6843     (gnus-summary-limit-include-thread id)))
6844
6845 (defun gnus-summary-refer-article (message-id)
6846   "Fetch an article specified by MESSAGE-ID."
6847   (interactive "sMessage-ID: ")
6848   (when (and (stringp message-id)
6849              (not (zerop (length message-id))))
6850     ;; Construct the correct Message-ID if necessary.
6851     ;; Suggested by tale@pawl.rpi.edu.
6852     (unless (string-match "^<" message-id)
6853       (setq message-id (concat "<" message-id)))
6854     (unless (string-match ">$" message-id)
6855       (setq message-id (concat message-id ">")))
6856     (let* ((header (gnus-id-to-header message-id))
6857            (sparse (and header
6858                         (gnus-summary-article-sparse-p
6859                          (mail-header-number header))
6860                         (memq (mail-header-number header)
6861                               gnus-newsgroup-limit)))
6862            number)
6863       (cond
6864        ;; If the article is present in the buffer we just go to it.
6865        ((and header
6866              (or (not (gnus-summary-article-sparse-p
6867                        (mail-header-number header)))
6868                  sparse))
6869         (prog1
6870             (gnus-summary-goto-article
6871              (mail-header-number header) nil t)
6872           (when sparse
6873             (gnus-summary-update-article (mail-header-number header)))))
6874        (t
6875         ;; We fetch the article.
6876         (catch 'found
6877           (dolist (gnus-override-method (gnus-refer-article-methods))
6878             (gnus-check-server gnus-override-method)
6879             ;; Fetch the header, and display the article.
6880             (when (setq number (gnus-summary-insert-subject message-id))
6881               (gnus-summary-select-article nil nil nil number)
6882               (throw 'found t)))
6883           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
6884
6885 (defun gnus-refer-article-methods ()
6886   "Return a list of referrable methods."
6887   (cond
6888    ;; No method, so we default to current and native.
6889    ((null gnus-refer-article-method)
6890     (list gnus-current-select-method gnus-select-method))
6891    ;; Current.
6892    ((eq 'current gnus-refer-article-method)
6893     (list gnus-current-select-method))
6894    ;; List of select methods.
6895    ((not (stringp (cadr gnus-refer-article-method)))
6896     (let (out)
6897       (dolist (method gnus-refer-article-method)
6898         (push (if (eq 'current method)
6899                   gnus-current-select-method
6900                 method)
6901               out))
6902       (nreverse out)))
6903    ;; One single select method.
6904    (t
6905     (list gnus-refer-article-method))))
6906
6907 (defun gnus-summary-edit-parameters ()
6908   "Edit the group parameters of the current group."
6909   (interactive)
6910   (gnus-group-edit-group gnus-newsgroup-name 'params))
6911
6912 (defun gnus-summary-customize-parameters ()
6913   "Customize the group parameters of the current group."
6914   (interactive)
6915   (gnus-group-customize gnus-newsgroup-name))
6916
6917 (defun gnus-summary-enter-digest-group (&optional force)
6918   "Enter an nndoc group based on the current article.
6919 If FORCE, force a digest interpretation.  If not, try
6920 to guess what the document format is."
6921   (interactive "P")
6922   (let ((conf gnus-current-window-configuration))
6923     (save-excursion
6924       (gnus-summary-select-article))
6925     (setq gnus-current-window-configuration conf)
6926     (let* ((name (format "%s-%d"
6927                          (gnus-group-prefixed-name
6928                           gnus-newsgroup-name (list 'nndoc ""))
6929                          (save-excursion
6930                            (set-buffer gnus-summary-buffer)
6931                            gnus-current-article)))
6932            (ogroup gnus-newsgroup-name)
6933            (params (append (gnus-info-params (gnus-get-info ogroup))
6934                            (list (cons 'to-group ogroup))
6935                            (list (cons 'save-article-group ogroup))))
6936            (case-fold-search t)
6937            (buf (current-buffer))
6938            dig to-address)
6939       (save-excursion
6940         (set-buffer gnus-original-article-buffer)
6941         ;; Have the digest group inherit the main mail address of
6942         ;; the parent article.
6943         (when (setq to-address (or (message-fetch-field "reply-to")
6944                                    (message-fetch-field "from")))
6945           (setq params (append (list (cons 'to-address to-address)))))
6946         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
6947         (insert-buffer-substring gnus-original-article-buffer)
6948         ;; Remove lines that may lead nndoc to misinterpret the
6949         ;; document type.
6950         (narrow-to-region
6951          (goto-char (point-min))
6952          (or (search-forward "\n\n" nil t) (point)))
6953         (goto-char (point-min))
6954         (delete-matching-lines "^Path:\\|^From ")
6955         (widen))
6956       (unwind-protect
6957           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
6958                     (gnus-newsgroup-ephemeral-ignored-charsets
6959                      gnus-newsgroup-ignored-charsets))
6960                 (gnus-group-read-ephemeral-group
6961                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
6962                               (nndoc-article-type
6963                                ,(if force 'mbox 'guess))) t))
6964               ;; Make all postings to this group go to the parent group.
6965               (nconc (gnus-info-params (gnus-get-info name))
6966                      params)
6967             ;; Couldn't select this doc group.
6968             (switch-to-buffer buf)
6969             (gnus-set-global-variables)
6970             (gnus-configure-windows 'summary)
6971             (gnus-message 3 "Article couldn't be entered?"))
6972         (kill-buffer dig)))))
6973
6974 (defun gnus-summary-read-document (n)
6975   "Open a new group based on the current article(s).
6976 This will allow you to read digests and other similar
6977 documents as newsgroups.
6978 Obeys the standard process/prefix convention."
6979   (interactive "P")
6980   (let* ((articles (gnus-summary-work-articles n))
6981          (ogroup gnus-newsgroup-name)
6982          (params (append (gnus-info-params (gnus-get-info ogroup))
6983                          (list (cons 'to-group ogroup))))
6984          article group egroup groups vgroup)
6985     (while (setq article (pop articles))
6986       (setq group (format "%s-%d" gnus-newsgroup-name article))
6987       (gnus-summary-remove-process-mark article)
6988       (when (gnus-summary-display-article article)
6989         (save-excursion
6990           (with-temp-buffer
6991             (insert-buffer-substring gnus-original-article-buffer)
6992             ;; Remove some headers that may lead nndoc to make
6993             ;; the wrong guess.
6994             (message-narrow-to-head)
6995             (goto-char (point-min))
6996             (delete-matching-lines "^\\(Path\\):\\|^From ")
6997             (widen)
6998             (if (setq egroup
6999                       (gnus-group-read-ephemeral-group
7000                        group `(nndoc ,group (nndoc-address ,(current-buffer))
7001                                      (nndoc-article-type guess))
7002                        t nil t))
7003                 (progn
7004                   ;; Make all postings to this group go to the parent group.
7005                   (nconc (gnus-info-params (gnus-get-info egroup))
7006                          params)
7007                   (push egroup groups))
7008               ;; Couldn't select this doc group.
7009               (gnus-error 3 "Article couldn't be entered"))))))
7010     ;; Now we have selected all the documents.
7011     (cond
7012      ((not groups)
7013       (error "None of the articles could be interpreted as documents"))
7014      ((gnus-group-read-ephemeral-group
7015        (setq vgroup (format
7016                      "nnvirtual:%s-%s" gnus-newsgroup-name
7017                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
7018        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
7019        t
7020        (cons (current-buffer) 'summary)))
7021      (t
7022       (error "Couldn't select virtual nndoc group")))))
7023
7024 (defun gnus-summary-isearch-article (&optional regexp-p)
7025   "Do incremental search forward on the current article.
7026 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
7027   (interactive "P")
7028   (let* ((gnus-inhibit-treatment t)
7029          (old (gnus-summary-select-article)))
7030     (gnus-configure-windows 'article)
7031     (gnus-eval-in-buffer-window gnus-article-buffer
7032       (save-restriction
7033         (widen)
7034         (when (eq 'old old)
7035           (gnus-article-show-all-headers))
7036         (goto-char (point-min))
7037         (isearch-forward regexp-p)))))
7038
7039 (defun gnus-summary-search-article-forward (regexp &optional backward)
7040   "Search for an article containing REGEXP forward.
7041 If BACKWARD, search backward instead."
7042   (interactive
7043    (list (read-string
7044           (format "Search article %s (regexp%s): "
7045                   (if current-prefix-arg "backward" "forward")
7046                   (if gnus-last-search-regexp
7047                       (concat ", default " gnus-last-search-regexp)
7048                     "")))
7049          current-prefix-arg))
7050   (if (string-equal regexp "")
7051       (setq regexp (or gnus-last-search-regexp ""))
7052     (setq gnus-last-search-regexp regexp))
7053   (if (gnus-summary-search-article regexp backward)
7054       (gnus-summary-show-thread)
7055     (error "Search failed: \"%s\"" regexp)))
7056
7057 (defun gnus-summary-search-article-backward (regexp)
7058   "Search for an article containing REGEXP backward."
7059   (interactive
7060    (list (read-string
7061           (format "Search article backward (regexp%s): "
7062                   (if gnus-last-search-regexp
7063                       (concat ", default " gnus-last-search-regexp)
7064                     "")))))
7065   (gnus-summary-search-article-forward regexp 'backward))
7066
7067 (eval-when-compile
7068   (defmacro gnus-summary-search-article-position-point (regexp backward)
7069     "Dehighlight the last matched text and goto the beginning position."
7070     (` (if (and gnus-summary-search-article-matched-data
7071                 (let ((text (caddr gnus-summary-search-article-matched-data))
7072                       (inhibit-read-only t)
7073                       buffer-read-only)
7074                   (delete-region
7075                    (goto-char (car gnus-summary-search-article-matched-data))
7076                    (cadr gnus-summary-search-article-matched-data))
7077                   (insert text)
7078                   (string-match (, regexp) text)))
7079            (if (, backward) (beginning-of-line) (end-of-line))
7080          (goto-char (if (, backward) (point-max) (point-min))))))
7081
7082   (defmacro gnus-summary-search-article-highlight-goto-x-face (opoint)
7083     "Place point where X-Face image is displayed."
7084     (if (featurep 'xemacs)
7085         (` (let ((end (if (search-forward "\n\n" nil t)
7086                           (goto-char (1- (point)))
7087                         (point-min)))
7088                  extent)
7089              (or (search-backward "\n\n" nil t) (goto-char (point-min)))
7090              (unless (and (re-search-forward "^From:" end t)
7091                           (setq extent (extent-at (point)))
7092                           (extent-begin-glyph extent))
7093                (goto-char (, opoint)))))
7094       (` (let ((end (if (search-forward "\n\n" nil t)
7095                         (goto-char (1- (point)))
7096                       (point-min))))
7097            (goto-char
7098             (or (text-property-any (or (search-backward "\n\n" nil t)
7099                                        (point-min))
7100                                    end 'x-face-mule-bitmap-image t)
7101                 (, opoint)))))))
7102
7103   (defmacro gnus-summary-search-article-highlight-matched-text
7104     (backward treated x-face)
7105     "Highlight matched text in the function `gnus-summary-search-article'."
7106     (` (let ((start (set-marker (make-marker) (match-beginning 0)))
7107              (end (set-marker (make-marker) (match-end 0)))
7108              (inhibit-read-only t)
7109              buffer-read-only)
7110          (unless treated
7111            (let ((,@
7112                   (let ((items (mapcar 'car gnus-treatment-function-alist)))
7113                     (mapcar
7114                      (lambda (item) (setq items (delq item items)))
7115                      '(gnus-treat-buttonize
7116                        gnus-treat-fill-article
7117                        gnus-treat-fill-long-lines
7118                        gnus-treat-emphasize
7119                        gnus-treat-highlight-headers
7120                        gnus-treat-highlight-citation
7121                        gnus-treat-highlight-signature
7122                        gnus-treat-overstrike
7123                        gnus-treat-display-xface
7124                        gnus-treat-buttonize-head
7125                        gnus-treat-decode-article-as-default-mime-charset))
7126                     (static-if (featurep 'xemacs)
7127                         items
7128                       (cons '(x-face-mule-delete-x-face-field
7129                               (quote never))
7130                             items))))
7131                  (gnus-treat-display-xface
7132                   (when (, x-face) gnus-treat-display-xface)))
7133              (gnus-article-prepare-mime-display)))
7134          (goto-char (if (, backward) start end))
7135          (when (, x-face)
7136            (gnus-summary-search-article-highlight-goto-x-face (point)))
7137          (setq gnus-summary-search-article-matched-data
7138                (list start end (buffer-substring start end)))
7139          (unless (eq start end);; matched text has been deleted. :-<
7140            (put-text-property start end 'face
7141                               (or (find-face 'isearch)
7142                                   'secondary-selection))))))
7143   )
7144
7145 (defun gnus-summary-search-article (regexp &optional backward)
7146   "Search for an article containing REGEXP.
7147 Optional argument BACKWARD means do search for backward.
7148 `gnus-select-article-hook' is not called during the search."
7149   ;; We have to require this here to make sure that the following
7150   ;; dynamic binding isn't shadowed by autoloading.
7151   (require 'gnus-async)
7152   (require 'gnus-art)
7153   (let ((gnus-select-article-hook nil)  ;Disable hook.
7154         (gnus-article-display-hook nil)
7155         (gnus-article-prepare-hook nil)
7156         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
7157         (gnus-use-article-prefetch nil)
7158         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
7159         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
7160         (sum (current-buffer))
7161         (found nil)
7162         point treated)
7163     (gnus-save-hidden-threads
7164       (static-if (featurep 'xemacs)
7165           (let ((gnus-inhibit-treatment t))
7166             (setq treated (eq 'old (gnus-summary-select-article)))
7167             (when (and treated
7168                        (not (and (gnus-buffer-live-p gnus-article-buffer)
7169                                  (window-live-p (get-buffer-window
7170                                                  gnus-article-buffer t)))))
7171               (gnus-summary-select-article nil t)
7172               (setq treated nil)))
7173         (let ((gnus-inhibit-treatment t)
7174               (x-face-mule-delete-x-face-field 'never))
7175           (setq treated (eq 'old (gnus-summary-select-article)))
7176           (when (and treated
7177                      (not
7178                       (and (gnus-buffer-live-p gnus-article-buffer)
7179                            (window-live-p (get-buffer-window
7180                                            gnus-article-buffer t))
7181                            (or (not (string-match "^\\^X-Face:" regexp))
7182                                (with-current-buffer gnus-article-buffer
7183                                  gnus-summary-search-article-matched-data)))))
7184             (gnus-summary-select-article nil t)
7185             (setq treated nil))))
7186       (set-buffer gnus-article-buffer)
7187       (widen)
7188       (if treated
7189           (progn
7190             (gnus-article-show-all-headers)
7191             (gnus-summary-search-article-position-point regexp backward))
7192         (goto-char (if backward (point-max) (point-min))))
7193       (while (not found)
7194         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
7195         (if (if backward
7196                 (re-search-backward regexp nil t)
7197               (re-search-forward regexp nil t))
7198             ;; We found the regexp.
7199             (progn
7200               (gnus-summary-search-article-highlight-matched-text
7201                backward treated (string-match "^\\^X-Face:" regexp))
7202               (setq found 'found)
7203               (forward-line
7204                (/ (- 2 (window-height
7205                         (get-buffer-window gnus-article-buffer t)))
7206                   2))
7207               (set-window-start
7208                (get-buffer-window (current-buffer))
7209                (point))
7210               (set-buffer sum)
7211               (setq point (point)))
7212           ;; We didn't find it, so we go to the next article.
7213           (set-buffer sum)
7214           (setq found 'not)
7215           (while (eq found 'not)
7216             (if (not (if backward (gnus-summary-find-prev)
7217                        (gnus-summary-find-next)))
7218                 ;; No more articles.
7219                 (setq found t)
7220               ;; Select the next article and adjust point.
7221               (unless (gnus-summary-article-sparse-p
7222                        (gnus-summary-article-number))
7223                 (setq found nil)
7224                 (let ((gnus-inhibit-treatment t))
7225                   (gnus-summary-select-article))
7226                 (setq treated nil)
7227                 (set-buffer gnus-article-buffer)
7228                 (widen)
7229                 (goto-char (if backward (point-max) (point-min))))))))
7230       (gnus-message 7 ""))
7231     ;; Return whether we found the regexp.
7232     (when (eq found 'found)
7233       (goto-char point)
7234       (gnus-summary-show-thread)
7235       (gnus-summary-goto-subject gnus-current-article)
7236       (gnus-summary-position-point)
7237       t)))
7238
7239 (defun gnus-summary-find-matching (header regexp &optional backward unread
7240                                           not-case-fold)
7241   "Return a list of all articles that match REGEXP on HEADER.
7242 The search stars on the current article and goes forwards unless
7243 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
7244 If UNREAD is non-nil, only unread articles will
7245 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
7246 in the comparisons."
7247   (let ((data (if (eq backward 'all) gnus-newsgroup-data
7248                 (gnus-data-find-list
7249                  (gnus-summary-article-number) (gnus-data-list backward))))
7250         (case-fold-search (not not-case-fold))
7251         articles d func)
7252     (if (consp header)
7253         (if (eq (car header) 'extra)
7254             (setq func
7255                   `(lambda (h)
7256                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
7257                          "")))
7258           (error "%s is an invalid header" header))
7259       (unless (fboundp (intern (concat "mail-header-" header)))
7260         (error "%s is not a valid header" header))
7261       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
7262     (while data
7263       (setq d (car data))
7264       (and (or (not unread)             ; We want all articles...
7265                (gnus-data-unread-p d))  ; Or just unreads.
7266            (vectorp (gnus-data-header d)) ; It's not a pseudo.
7267            (string-match regexp (funcall func (gnus-data-header d))) ; Match.
7268            (push (gnus-data-number d) articles)) ; Success!
7269       (setq data (cdr data)))
7270     (nreverse articles)))
7271
7272 (defun gnus-summary-execute-command (header regexp command &optional backward)
7273   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
7274 If HEADER is an empty string (or nil), the match is done on the entire
7275 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
7276   (interactive
7277    (list (let ((completion-ignore-case t))
7278            (completing-read
7279             "Header name: "
7280             (mapcar (lambda (string) (list string))
7281                     '("Number" "Subject" "From" "Lines" "Date"
7282                       "Message-ID" "Xref" "References" "Body"))
7283             nil 'require-match))
7284          (read-string "Regexp: ")
7285          (read-key-sequence "Command: ")
7286          current-prefix-arg))
7287   (when (equal header "Body")
7288     (setq header ""))
7289   ;; Hidden thread subtrees must be searched as well.
7290   (gnus-summary-show-all-threads)
7291   ;; We don't want to change current point nor window configuration.
7292   (save-excursion
7293     (save-window-excursion
7294       (gnus-message 6 "Executing %s..." (key-description command))
7295       ;; We'd like to execute COMMAND interactively so as to give arguments.
7296       (gnus-execute header regexp
7297                     `(call-interactively ',(key-binding command))
7298                     backward)
7299       (gnus-message 6 "Executing %s...done" (key-description command)))))
7300
7301 (defun gnus-summary-beginning-of-article ()
7302   "Scroll the article back to the beginning."
7303   (interactive)
7304   (gnus-summary-select-article)
7305   (gnus-configure-windows 'article)
7306   (gnus-eval-in-buffer-window gnus-article-buffer
7307     (widen)
7308     (goto-char (point-min))
7309     (when gnus-page-broken
7310       (gnus-narrow-to-page))))
7311
7312 (defun gnus-summary-end-of-article ()
7313   "Scroll to the end of the article."
7314   (interactive)
7315   (gnus-summary-select-article)
7316   (gnus-configure-windows 'article)
7317   (gnus-eval-in-buffer-window gnus-article-buffer
7318     (widen)
7319     (goto-char (point-max))
7320     (recenter -3)
7321     (when gnus-page-broken
7322       (gnus-narrow-to-page))))
7323
7324 (defun gnus-summary-print-article (&optional filename n)
7325   "Generate and print a PostScript image of the N next (mail) articles.
7326
7327 If N is negative, print the N previous articles.  If N is nil and articles
7328 have been marked with the process mark, print these instead.
7329
7330 If the optional first argument FILENAME is nil, send the image to the
7331 printer.  If FILENAME is a string, save the PostScript image in a file with
7332 that name.  If FILENAME is a number, prompt the user for the name of the file
7333 to save in."
7334   (interactive (list (ps-print-preprint current-prefix-arg)
7335                      current-prefix-arg))
7336   (dolist (article (gnus-summary-work-articles n))
7337     (gnus-summary-select-article nil nil 'pseudo article)
7338     (gnus-eval-in-buffer-window gnus-article-buffer
7339       (let ((buffer (generate-new-buffer " *print*")))
7340         (unwind-protect
7341             (progn
7342               (copy-to-buffer buffer (point-min) (point-max))
7343               (set-buffer buffer)
7344               (gnus-article-delete-invisible-text)
7345               (let ((ps-left-header
7346                      (list
7347                       (concat "("
7348                               (mail-header-subject gnus-current-headers) ")")
7349                       (concat "("
7350                               (mail-header-from gnus-current-headers) ")")))
7351                     (ps-right-header
7352                      (list
7353                       "/pagenumberstring load"
7354                       (concat "("
7355                               (mail-header-date gnus-current-headers) ")"))))
7356                 (gnus-run-hooks 'gnus-ps-print-hook)
7357                 (save-excursion
7358                   (ps-print-buffer-with-faces filename))))
7359           (kill-buffer buffer))))))
7360
7361 (defun gnus-summary-show-article (&optional arg)
7362   "Force re-fetching of the current article.
7363 If ARG (the prefix) is a number, show the article with the charset
7364 defined in `gnus-summary-show-article-charset-alist', or the charset
7365 inputed.
7366 If ARG (the prefix) is non-nil and not a number, show the raw article
7367 without any article massaging functions being run."
7368   (interactive "P")
7369   (cond
7370    ((numberp arg)
7371     (let ((gnus-newsgroup-charset
7372            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
7373                (read-coding-system "Charset: ")))
7374           (gnus-newsgroup-ignored-charsets 'gnus-all))
7375       (gnus-summary-select-article nil 'force)))
7376    ((not arg)
7377     ;; Select the article the normal way.
7378     (gnus-summary-select-article nil 'force))
7379    (t
7380     ;; We have to require this here to make sure that the following
7381     ;; dynamic binding isn't shadowed by autoloading.
7382     (require 'gnus-async)
7383     (require 'gnus-art)
7384     ;; Bind the article treatment functions to nil.
7385     (let ((gnus-have-all-headers t)
7386           gnus-article-display-hook
7387           gnus-article-prepare-hook
7388           gnus-article-decode-hook
7389           gnus-break-pages
7390           gnus-show-mime)
7391       (gnus-summary-select-article nil 'force))))
7392   (gnus-summary-goto-subject gnus-current-article)
7393   (gnus-summary-position-point))
7394
7395 (defun gnus-summary-verbose-headers (&optional arg)
7396   "Toggle permanent full header display.
7397 If ARG is a positive number, turn header display on.
7398 If ARG is a negative number, turn header display off."
7399   (interactive "P")
7400   (setq gnus-show-all-headers
7401         (cond ((or (not (numberp arg))
7402                    (zerop arg))
7403                (not gnus-show-all-headers))
7404               ((natnump arg)
7405                t)))
7406   (gnus-summary-show-article))
7407
7408 (defun gnus-summary-toggle-header (&optional arg)
7409   "Show the headers if they are hidden, or hide them if they are shown.
7410 If ARG is a positive number, show the entire header.
7411 If ARG is a negative number, hide the unwanted header lines."
7412   (interactive "P")
7413   (save-excursion
7414     (set-buffer gnus-article-buffer)
7415     (save-restriction
7416       (let* ((buffer-read-only nil)
7417              (inhibit-point-motion-hooks t)
7418              hidden e)
7419         (setq hidden
7420               (if (numberp arg)
7421                   (>= arg 0)
7422                 (save-restriction
7423                   (article-narrow-to-head)
7424                   (gnus-article-hidden-text-p 'headers))))
7425         (goto-char (point-min))
7426         (when (search-forward "\n\n" nil t)
7427           (delete-region (point-min) (1- (point))))
7428         (goto-char (point-min))
7429         (save-excursion
7430           (set-buffer gnus-original-article-buffer)
7431           (goto-char (point-min))
7432           (setq e (1- (or (search-forward "\n\n" nil t) (point-max)))))
7433         (insert-buffer-substring gnus-original-article-buffer 1 e)
7434         (save-restriction
7435           (narrow-to-region (point-min) (point))
7436           (article-decode-encoded-words)
7437           (if  hidden
7438               (let ((gnus-treat-hide-headers nil)
7439                     (gnus-treat-hide-boring-headers nil))
7440                 (setq gnus-article-wash-types
7441                       (delq 'headers gnus-article-wash-types))
7442                 (gnus-treat-article 'head))
7443             (gnus-treat-article 'head)))
7444         (gnus-set-mode-line 'article)))))
7445
7446 (defun gnus-summary-show-all-headers ()
7447   "Make all header lines visible."
7448   (interactive)
7449   (gnus-article-show-all-headers))
7450
7451 (defun gnus-summary-toggle-mime (&optional arg)
7452   "Toggle MIME processing.
7453 If ARG is a positive number, turn MIME processing on."
7454   (interactive "P")
7455   (setq gnus-show-mime
7456         (if (null arg)
7457             (not gnus-show-mime)
7458           (> (prefix-numeric-value arg) 0)))
7459   (gnus-summary-select-article t 'force))
7460
7461 (defun gnus-summary-caesar-message (&optional arg)
7462   "Caesar rotate the current article by 13.
7463 The numerical prefix specifies how many places to rotate each letter
7464 forward."
7465   (interactive "P")
7466   (gnus-summary-select-article)
7467   (let ((mail-header-separator ""))
7468     (gnus-eval-in-buffer-window gnus-article-buffer
7469       (save-restriction
7470         (widen)
7471         (let ((start (window-start))
7472               buffer-read-only)
7473           (message-caesar-buffer-body arg)
7474           (set-window-start (get-buffer-window (current-buffer)) start))))))
7475
7476 (defun gnus-summary-stop-page-breaking ()
7477   "Stop page breaking in the current article."
7478   (interactive)
7479   (gnus-summary-select-article)
7480   (gnus-eval-in-buffer-window gnus-article-buffer
7481     (widen)
7482     (when (gnus-visual-p 'page-marker)
7483       (let ((buffer-read-only nil))
7484         (gnus-remove-text-with-property 'gnus-prev)
7485         (gnus-remove-text-with-property 'gnus-next))
7486       (setq gnus-page-broken nil))))
7487
7488 (defun gnus-summary-move-article (&optional n to-newsgroup
7489                                             select-method action)
7490   "Move the current article to a different newsgroup.
7491 If N is a positive number, move the N next articles.
7492 If N is a negative number, move the N previous articles.
7493 If N is nil and any articles have been marked with the process mark,
7494 move those articles instead.
7495 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7496 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7497 re-spool using this method.
7498
7499 For this function to work, both the current newsgroup and the
7500 newsgroup that you want to move to have to support the `request-move'
7501 and `request-accept' functions.
7502
7503 ACTION can be either `move' (the default), `crosspost' or `copy'."
7504   (interactive "P")
7505   (unless action
7506     (setq action 'move))
7507   ;; Disable marking as read.
7508   (let (gnus-mark-article-hook)
7509     (save-window-excursion
7510       (gnus-summary-select-article)))
7511   ;; Check whether the source group supports the required functions.
7512   (cond ((and (eq action 'move)
7513               (not (gnus-check-backend-function
7514                     'request-move-article gnus-newsgroup-name)))
7515          (error "The current group does not support article moving"))
7516         ((and (eq action 'crosspost)
7517               (not (gnus-check-backend-function
7518                     'request-replace-article gnus-newsgroup-name)))
7519          (error "The current group does not support article editing")))
7520   (let ((articles (gnus-summary-work-articles n))
7521         (prefix (if (gnus-check-backend-function
7522                     'request-move-article gnus-newsgroup-name)
7523                     (gnus-group-real-prefix gnus-newsgroup-name)
7524                   ""))
7525         (names '((move "Move" "Moving")
7526                  (copy "Copy" "Copying")
7527                  (crosspost "Crosspost" "Crossposting")))
7528         (copy-buf (save-excursion
7529                     (nnheader-set-temp-buffer " *copy article*")))
7530         (default-marks gnus-article-mark-lists)
7531         (no-expire-marks (delete '(expirable . expire)
7532                                  (copy-sequence gnus-article-mark-lists)))
7533         art-group to-method new-xref article to-groups)
7534     (unless (assq action names)
7535       (error "Unknown action %s" action))
7536     ;; Read the newsgroup name.
7537     (when (and (not to-newsgroup)
7538                (not select-method))
7539       (setq to-newsgroup
7540             (gnus-read-move-group-name
7541              (cadr (assq action names))
7542              (symbol-value (intern (format "gnus-current-%s-group" action)))
7543              articles prefix))
7544       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
7545     (setq to-method (or select-method
7546                         (gnus-server-to-method
7547                          (gnus-group-method to-newsgroup))))
7548     ;; Check the method we are to move this article to...
7549     (unless (gnus-check-backend-function
7550              'request-accept-article (car to-method))
7551       (error "%s does not support article copying" (car to-method)))
7552     (unless (gnus-check-server to-method)
7553       (error "Can't open server %s" (car to-method)))
7554     (gnus-message 6 "%s to %s: %s..."
7555                   (caddr (assq action names))
7556                   (or (car select-method) to-newsgroup) articles)
7557     (while articles
7558       (setq article (pop articles))
7559       (setq
7560        art-group
7561        (cond
7562         ;; Move the article.
7563         ((eq action 'move)
7564          ;; Remove this article from future suppression.
7565          (gnus-dup-unsuppress-article article)
7566          (gnus-request-move-article
7567           article                       ; Article to move
7568           gnus-newsgroup-name           ; From newsgroup
7569           (nth 1 (gnus-find-method-for-group
7570                   gnus-newsgroup-name)) ; Server
7571           (list 'gnus-request-accept-article
7572                 to-newsgroup (list 'quote select-method)
7573                 (not articles) t)       ; Accept form
7574           (not articles)))              ; Only save nov last time
7575         ;; Copy the article.
7576         ((eq action 'copy)
7577          (save-excursion
7578            (set-buffer copy-buf)
7579            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
7580              (gnus-request-accept-article
7581               to-newsgroup select-method (not articles) t))))
7582         ;; Crosspost the article.
7583         ((eq action 'crosspost)
7584          (let ((xref (message-tokenize-header
7585                       (mail-header-xref (gnus-summary-article-header article))
7586                       " ")))
7587            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
7588                                   ":" article))
7589            (unless xref
7590              (setq xref (list (system-name))))
7591            (setq new-xref
7592                  (concat
7593                   (mapconcat 'identity
7594                              (delete "Xref:" (delete new-xref xref))
7595                              " ")
7596                   " " new-xref))
7597            (save-excursion
7598              (set-buffer copy-buf)
7599              ;; First put the article in the destination group.
7600              (gnus-request-article-this-buffer article gnus-newsgroup-name)
7601              (when (consp (setq art-group
7602                                 (gnus-request-accept-article
7603                                  to-newsgroup select-method (not articles))))
7604                (setq new-xref (concat new-xref " " (car art-group)
7605                                       ":" (cdr art-group)))
7606                ;; Now we have the new Xrefs header, so we insert
7607                ;; it and replace the new article.
7608                (nnheader-replace-header "Xref" new-xref)
7609                (gnus-request-replace-article
7610                 (cdr art-group) to-newsgroup (current-buffer))
7611                art-group))))))
7612       (cond
7613        ((not art-group)
7614         (gnus-message 1 "Couldn't %s article %s: %s"
7615                       (cadr (assq action names)) article
7616                       (nnheader-get-report (car to-method))))
7617        ((eq art-group 'junk)
7618         (when (eq action 'move)
7619           (gnus-summary-mark-article article gnus-canceled-mark)
7620           (gnus-message 4 "Deleted article %s" article)))
7621        (t
7622         (let* ((pto-group (gnus-group-prefixed-name
7623                            (car art-group) to-method))
7624                (entry
7625                 (gnus-gethash pto-group gnus-newsrc-hashtb))
7626                (info (nth 2 entry))
7627                (to-group (gnus-info-group info))
7628                to-marks)
7629           ;; Update the group that has been moved to.
7630           (when (and info
7631                      (memq action '(move copy)))
7632             (unless (member to-group to-groups)
7633               (push to-group to-groups))
7634
7635             (unless (memq article gnus-newsgroup-unreads)
7636               (push 'read to-marks)
7637               (gnus-info-set-read
7638                info (gnus-add-to-range (gnus-info-read info)
7639                                        (list (cdr art-group)))))
7640
7641             ;; See whether the article is to be put in the cache.
7642             (let ((marks (if (gnus-group-auto-expirable-p to-group)
7643                              default-marks
7644                            no-expire-marks))
7645                   (to-article (cdr art-group)))
7646
7647               ;; Enter the article into the cache in the new group,
7648               ;; if that is required.
7649               (when gnus-use-cache
7650                 (gnus-cache-possibly-enter-article
7651                  to-group to-article
7652                  (let ((header (copy-sequence
7653                                 (gnus-summary-article-header article))))
7654                    (mail-header-set-number header to-article)
7655                    header)
7656                  (memq article gnus-newsgroup-marked)
7657                  (memq article gnus-newsgroup-dormant)
7658                  (memq article gnus-newsgroup-unreads)))
7659
7660               (when gnus-preserve-marks
7661                 ;; Copy any marks over to the new group.
7662                 (when (and (equal to-group gnus-newsgroup-name)
7663                            (not (memq article gnus-newsgroup-unreads)))
7664                   ;; Mark this article as read in this group.
7665                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
7666                   (setcdr (gnus-active to-group) to-article)
7667                   (setcdr gnus-newsgroup-active to-article))
7668
7669                 (while marks
7670                   (when (memq article (symbol-value
7671                                        (intern (format "gnus-newsgroup-%s"
7672                                                        (caar marks)))))
7673                     (push (cdar marks) to-marks)
7674                     ;; If the other group is the same as this group,
7675                     ;; then we have to add the mark to the list.
7676                     (when (equal to-group gnus-newsgroup-name)
7677                       (set (intern (format "gnus-newsgroup-%s" (caar marks)))
7678                            (cons to-article
7679                                  (symbol-value
7680                                   (intern (format "gnus-newsgroup-%s"
7681                                                   (caar marks)))))))
7682                     ;; Copy the marks to other group.
7683                     (gnus-add-marked-articles
7684                      to-group (cdar marks) (list to-article) info))
7685                   (setq marks (cdr marks)))
7686
7687                 (gnus-request-set-mark to-group (list (list (list to-article)
7688                                                             'set
7689                                                             to-marks))))
7690
7691               (gnus-dribble-enter
7692                (concat "(gnus-group-set-info '"
7693                        (gnus-prin1-to-string (gnus-get-info to-group))
7694                        ")"))))
7695
7696           ;; Update the Xref header in this article to point to
7697           ;; the new crossposted article we have just created.
7698           (when (eq action 'crosspost)
7699             (save-excursion
7700               (set-buffer copy-buf)
7701               (gnus-request-article-this-buffer article gnus-newsgroup-name)
7702               (nnheader-replace-header "Xref" new-xref)
7703               (gnus-request-replace-article
7704                article gnus-newsgroup-name (current-buffer)))))
7705
7706         ;;;!!!Why is this necessary?
7707         (set-buffer gnus-summary-buffer)
7708
7709         (gnus-summary-goto-subject article)
7710         (when (eq action 'move)
7711           (gnus-summary-mark-article article gnus-canceled-mark))))
7712       (gnus-summary-remove-process-mark article))
7713     ;; Re-activate all groups that have been moved to.
7714     (while to-groups
7715       (save-excursion
7716         (set-buffer gnus-group-buffer)
7717         (when (gnus-group-goto-group (car to-groups) t)
7718           (gnus-group-get-new-news-this-group 1 t))
7719         (pop to-groups)))
7720
7721     (gnus-kill-buffer copy-buf)
7722     (gnus-summary-position-point)
7723     (gnus-set-mode-line 'summary)))
7724
7725 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
7726   "Move the current article to a different newsgroup.
7727 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7728 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7729 re-spool using this method."
7730   (interactive "P")
7731   (gnus-summary-move-article n to-newsgroup select-method 'copy))
7732
7733 (defun gnus-summary-crosspost-article (&optional n)
7734   "Crosspost the current article to some other group."
7735   (interactive "P")
7736   (gnus-summary-move-article n nil nil 'crosspost))
7737
7738 (defcustom gnus-summary-respool-default-method nil
7739   "Default method for respooling an article.
7740 If nil, use to the current newsgroup method."
7741   :type '(choice (gnus-select-method :value (nnml ""))
7742                  (const nil))
7743   :group 'gnus-summary-mail)
7744
7745 (defun gnus-summary-respool-article (&optional n method)
7746   "Respool the current article.
7747 The article will be squeezed through the mail spooling process again,
7748 which means that it will be put in some mail newsgroup or other
7749 depending on `nnmail-split-methods'.
7750 If N is a positive number, respool the N next articles.
7751 If N is a negative number, respool the N previous articles.
7752 If N is nil and any articles have been marked with the process mark,
7753 respool those articles instead.
7754
7755 Respooling can be done both from mail groups and \"real\" newsgroups.
7756 In the former case, the articles in question will be moved from the
7757 current group into whatever groups they are destined to.  In the
7758 latter case, they will be copied into the relevant groups."
7759   (interactive
7760    (list current-prefix-arg
7761          (let* ((methods (gnus-methods-using 'respool))
7762                 (methname
7763                  (symbol-name (or gnus-summary-respool-default-method
7764                                   (car (gnus-find-method-for-group
7765                                         gnus-newsgroup-name)))))
7766                 (method
7767                  (gnus-completing-read
7768                   methname "What backend do you want to use when respooling?"
7769                   methods nil t nil 'gnus-mail-method-history))
7770                 ms)
7771            (cond
7772             ((zerop (length (setq ms (gnus-servers-using-backend
7773                                       (intern method)))))
7774              (list (intern method) ""))
7775             ((= 1 (length ms))
7776              (car ms))
7777             (t
7778              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
7779                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
7780                            ms-alist))))))))
7781   (unless method
7782     (error "No method given for respooling"))
7783   (if (assoc (symbol-name
7784               (car (gnus-find-method-for-group gnus-newsgroup-name)))
7785              (gnus-methods-using 'respool))
7786       (gnus-summary-move-article n nil method)
7787     (gnus-summary-copy-article n nil method)))
7788
7789 (defun gnus-summary-import-article (file)
7790   "Import an arbitrary file into a mail newsgroup."
7791   (interactive "fImport file: ")
7792   (let ((group gnus-newsgroup-name)
7793         (now (current-time))
7794         atts lines)
7795     (unless (gnus-check-backend-function 'request-accept-article group)
7796       (error "%s does not support article importing" group))
7797     (or (file-readable-p file)
7798         (not (file-regular-p file))
7799         (error "Can't read %s" file))
7800     (save-excursion
7801       (set-buffer (gnus-get-buffer-create " *import file*"))
7802       (erase-buffer)
7803       (nnheader-insert-file-contents file)
7804       (goto-char (point-min))
7805       (unless (nnheader-article-p)
7806         ;; This doesn't look like an article, so we fudge some headers.
7807         (setq atts (file-attributes file)
7808               lines (count-lines (point-min) (point-max)))
7809         (insert "From: " (read-string "From: ") "\n"
7810                 "Subject: " (read-string "Subject: ") "\n"
7811                 "Date: " (message-make-date (nth 5 atts))
7812                 "\n"
7813                 "Message-ID: " (message-make-message-id) "\n"
7814                 "Lines: " (int-to-string lines) "\n"
7815                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
7816       (gnus-request-accept-article group nil t)
7817       (kill-buffer (current-buffer)))))
7818
7819 (defun gnus-summary-article-posted-p ()
7820   "Say whether the current (mail) article is available from news as well.
7821 This will be the case if the article has both been mailed and posted."
7822   (interactive)
7823   (let ((id (mail-header-references (gnus-summary-article-header)))
7824         (gnus-override-method (car (gnus-refer-article-methods))))
7825     (if (gnus-request-head id "")
7826         (gnus-message 2 "The current message was found on %s"
7827                       gnus-override-method)
7828       (gnus-message 2 "The current message couldn't be found on %s"
7829                     gnus-override-method)
7830       nil)))
7831
7832 (defun gnus-summary-expire-articles (&optional now)
7833   "Expire all articles that are marked as expirable in the current group."
7834   (interactive)
7835   (when (gnus-check-backend-function
7836          'request-expire-articles gnus-newsgroup-name)
7837     ;; This backend supports expiry.
7838     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
7839            (expirable (if total
7840                           (progn
7841                             ;; We need to update the info for
7842                             ;; this group for `gnus-list-of-read-articles'
7843                             ;; to give us the right answer.
7844                             (gnus-run-hooks 'gnus-exit-group-hook)
7845                             (gnus-summary-update-info)
7846                             (gnus-list-of-read-articles gnus-newsgroup-name))
7847                         (setq gnus-newsgroup-expirable
7848                               (sort gnus-newsgroup-expirable '<))))
7849            (expiry-wait (if now 'immediate
7850                           (gnus-group-find-parameter
7851                            gnus-newsgroup-name 'expiry-wait)))
7852            es)
7853       (when expirable
7854         ;; There are expirable articles in this group, so we run them
7855         ;; through the expiry process.
7856         (gnus-message 6 "Expiring articles...")
7857         (unless (gnus-check-group gnus-newsgroup-name)
7858           (error "Can't open server for %s" gnus-newsgroup-name))
7859         ;; The list of articles that weren't expired is returned.
7860         (save-excursion
7861           (if expiry-wait
7862               (let ((nnmail-expiry-wait-function nil)
7863                     (nnmail-expiry-wait expiry-wait))
7864                 (setq es (gnus-request-expire-articles
7865                           expirable gnus-newsgroup-name)))
7866             (setq es (gnus-request-expire-articles
7867                       expirable gnus-newsgroup-name))))
7868         (unless total
7869           (setq gnus-newsgroup-expirable es))
7870         ;; We go through the old list of expirable, and mark all
7871         ;; really expired articles as nonexistent.
7872         (unless (eq es expirable)       ;If nothing was expired, we don't mark.
7873           (let ((gnus-use-cache nil))
7874             (while expirable
7875               (unless (memq (car expirable) es)
7876                 (when (gnus-data-find (car expirable))
7877                   (gnus-summary-mark-article
7878                    (car expirable) gnus-canceled-mark)))
7879               (setq expirable (cdr expirable)))))
7880         (gnus-message 6 "Expiring articles...done")))))
7881
7882 (defun gnus-summary-expire-articles-now ()
7883   "Expunge all expirable articles in the current group.
7884 This means that *all* articles that are marked as expirable will be
7885 deleted forever, right now."
7886   (interactive)
7887   (or gnus-expert-user
7888       (gnus-yes-or-no-p
7889        "Are you really, really, really sure you want to delete all these messages? ")
7890       (error "Phew!"))
7891   (gnus-summary-expire-articles t))
7892
7893 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
7894 (defun gnus-summary-delete-article (&optional n)
7895   "Delete the N next (mail) articles.
7896 This command actually deletes articles.  This is not a marking
7897 command.  The article will disappear forever from your life, never to
7898 return.
7899 If N is negative, delete backwards.
7900 If N is nil and articles have been marked with the process mark,
7901 delete these instead."
7902   (interactive "P")
7903   (unless (gnus-check-backend-function 'request-expire-articles
7904                                        gnus-newsgroup-name)
7905     (error "The current newsgroup does not support article deletion"))
7906   ;; Compute the list of articles to delete.
7907   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
7908         not-deleted)
7909     (if (and gnus-novice-user
7910              (not (gnus-yes-or-no-p
7911                    (format "Do you really want to delete %s forever? "
7912                            (if (> (length articles) 1)
7913                                (format "these %s articles" (length articles))
7914                              "this article")))))
7915         ()
7916       ;; Delete the articles.
7917       (setq not-deleted (gnus-request-expire-articles
7918                          articles gnus-newsgroup-name 'force))
7919       (while articles
7920         (gnus-summary-remove-process-mark (car articles))
7921         ;; The backend might not have been able to delete the article
7922         ;; after all.
7923         (unless (memq (car articles) not-deleted)
7924           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
7925         (setq articles (cdr articles)))
7926       (when not-deleted
7927         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
7928     (gnus-summary-position-point)
7929     (gnus-set-mode-line 'summary)
7930     not-deleted))
7931
7932 (defun gnus-summary-edit-article (&optional force)
7933   "Edit the current article.
7934 This will have permanent effect only in mail groups.
7935 If FORCE is non-nil, allow editing of articles even in read-only
7936 groups."
7937   (interactive "P")
7938   (save-excursion
7939     (set-buffer gnus-summary-buffer)
7940     (let ((mail-parse-charset gnus-newsgroup-charset)
7941           (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
7942       (gnus-set-global-variables)
7943       (when (and (not force)
7944                  (gnus-group-read-only-p))
7945         (error "The current newsgroup does not support article editing"))
7946       (gnus-summary-show-article t)
7947       (gnus-article-edit-article
7948        'ignore
7949        `(lambda (no-highlight)
7950           (let ((mail-parse-charset ',gnus-newsgroup-charset)
7951                 (mail-parse-ignored-charsets
7952                  ',gnus-newsgroup-ignored-charsets))
7953             (gnus-summary-edit-article-done
7954              ,(or (mail-header-references gnus-current-headers) "")
7955              ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight)))))))
7956
7957 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
7958
7959 (defun gnus-summary-edit-article-done (&optional references read-only buffer
7960                                                  no-highlight)
7961   "Make edits to the current article permanent."
7962   (interactive)
7963   ;; Replace the article.
7964   (let ((buf (current-buffer)))
7965     (with-temp-buffer
7966       (insert-buffer-substring buf)
7967       (if (and (not read-only)
7968                (not (gnus-request-replace-article
7969                      (cdr gnus-article-current) (car gnus-article-current)
7970                      (current-buffer) t)))
7971           (error "Couldn't replace article")
7972         ;; Update the summary buffer.
7973         (if (and references
7974                  (equal (message-tokenize-header references " ")
7975                         (message-tokenize-header
7976                          (or (message-fetch-field "references") "") " ")))
7977             ;; We only have to update this line.
7978             (save-excursion
7979               (save-restriction
7980                 (message-narrow-to-head)
7981                 (let ((head (buffer-string))
7982                       header)
7983                   (with-temp-buffer
7984                     (insert (format "211 %d Article retrieved.\n"
7985                                     (cdr gnus-article-current)))
7986                     (insert head)
7987                     (insert ".\n")
7988                     (let ((nntp-server-buffer (current-buffer)))
7989                       (setq header (car (gnus-get-newsgroup-headers
7990                                          (save-excursion
7991                                            (set-buffer gnus-summary-buffer)
7992                                            gnus-newsgroup-dependencies)
7993                                          t))))
7994                     (save-excursion
7995                       (set-buffer gnus-summary-buffer)
7996                       (gnus-data-set-header
7997                        (gnus-data-find (cdr gnus-article-current))
7998                        header)
7999                       (gnus-summary-update-article-line
8000                        (cdr gnus-article-current) header))))))
8001           ;; Update threads.
8002           (set-buffer (or buffer gnus-summary-buffer))
8003           (gnus-summary-update-article (cdr gnus-article-current)))
8004         ;; Prettify the article buffer again.
8005         (unless no-highlight
8006           (save-excursion
8007             (set-buffer gnus-article-buffer)
8008             ;;;!!! Fix this -- article should be rehighlighted.
8009             ;;;(gnus-run-hooks 'gnus-article-display-hook)
8010             (set-buffer gnus-original-article-buffer)
8011             (gnus-request-article
8012              (cdr gnus-article-current)
8013              (car gnus-article-current) (current-buffer))))
8014         ;; Prettify the summary buffer line.
8015         (when (gnus-visual-p 'summary-highlight 'highlight)
8016           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
8017
8018 (defun gnus-summary-edit-wash (key)
8019   "Perform editing command KEY in the article buffer."
8020   (interactive
8021    (list
8022     (progn
8023       (message "%s" (concat (this-command-keys) "- "))
8024       (read-char))))
8025   (message "")
8026   (gnus-summary-edit-article)
8027   (execute-kbd-macro (concat (this-command-keys) key))
8028   (gnus-article-edit-done))
8029
8030 ;;; Respooling
8031
8032 (defun gnus-summary-respool-query (&optional silent trace)
8033   "Query where the respool algorithm would put this article."
8034   (interactive)
8035   (let (gnus-mark-article-hook)
8036     (gnus-summary-select-article)
8037     (save-excursion
8038       (set-buffer gnus-original-article-buffer)
8039       (save-restriction
8040         (message-narrow-to-head)
8041         (let ((groups (nnmail-article-group 'identity trace)))
8042           (unless silent
8043             (if groups
8044                 (message "This message would go to %s"
8045                          (mapconcat 'car groups ", "))
8046               (message "This message would go to no groups"))
8047             groups))))))
8048
8049 (defun gnus-summary-respool-trace ()
8050   "Trace where the respool algorithm would put this article.
8051 Display a buffer showing all fancy splitting patterns which matched."
8052   (interactive)
8053   (gnus-summary-respool-query nil t))
8054
8055 ;; Summary marking commands.
8056
8057 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
8058   "Mark articles which has the same subject as read, and then select the next.
8059 If UNMARK is positive, remove any kind of mark.
8060 If UNMARK is negative, tick articles."
8061   (interactive "P")
8062   (when unmark
8063     (setq unmark (prefix-numeric-value unmark)))
8064   (let ((count
8065          (gnus-summary-mark-same-subject
8066           (gnus-summary-article-subject) unmark)))
8067     ;; Select next unread article.  If auto-select-same mode, should
8068     ;; select the first unread article.
8069     (gnus-summary-next-article t (and gnus-auto-select-same
8070                                       (gnus-summary-article-subject)))
8071     (gnus-message 7 "%d article%s marked as %s"
8072                   count (if (= count 1) " is" "s are")
8073                   (if unmark "unread" "read"))))
8074
8075 (defun gnus-summary-kill-same-subject (&optional unmark)
8076   "Mark articles which has the same subject as read.
8077 If UNMARK is positive, remove any kind of mark.
8078 If UNMARK is negative, tick articles."
8079   (interactive "P")
8080   (when unmark
8081     (setq unmark (prefix-numeric-value unmark)))
8082   (let ((count
8083          (gnus-summary-mark-same-subject
8084           (gnus-summary-article-subject) unmark)))
8085     ;; If marked as read, go to next unread subject.
8086     (when (null unmark)
8087       ;; Go to next unread subject.
8088       (gnus-summary-next-subject 1 t))
8089     (gnus-message 7 "%d articles are marked as %s"
8090                   count (if unmark "unread" "read"))))
8091
8092 (defun gnus-summary-mark-same-subject (subject &optional unmark)
8093   "Mark articles with same SUBJECT as read, and return marked number.
8094 If optional argument UNMARK is positive, remove any kinds of marks.
8095 If optional argument UNMARK is negative, mark articles as unread instead."
8096   (let ((count 1))
8097     (save-excursion
8098       (cond
8099        ((null unmark)                   ; Mark as read.
8100         (while (and
8101                 (progn
8102                   (gnus-summary-mark-article-as-read gnus-killed-mark)
8103                   (gnus-summary-show-thread) t)
8104                 (gnus-summary-find-subject subject))
8105           (setq count (1+ count))))
8106        ((> unmark 0)                    ; Tick.
8107         (while (and
8108                 (progn
8109                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
8110                   (gnus-summary-show-thread) t)
8111                 (gnus-summary-find-subject subject))
8112           (setq count (1+ count))))
8113        (t                               ; Mark as unread.
8114         (while (and
8115                 (progn
8116                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
8117                   (gnus-summary-show-thread) t)
8118                 (gnus-summary-find-subject subject))
8119           (setq count (1+ count)))))
8120       (gnus-set-mode-line 'summary)
8121       ;; Return the number of marked articles.
8122       count)))
8123
8124 (defun gnus-summary-mark-as-processable (n &optional unmark)
8125   "Set the process mark on the next N articles.
8126 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
8127 the process mark instead.  The difference between N and the actual
8128 number of articles marked is returned."
8129   (interactive "p")
8130   (let ((backward (< n 0))
8131         (n (abs n)))
8132     (while (and
8133             (> n 0)
8134             (if unmark
8135                 (gnus-summary-remove-process-mark
8136                  (gnus-summary-article-number))
8137               (gnus-summary-set-process-mark (gnus-summary-article-number)))
8138             (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
8139       (setq n (1- n)))
8140     (when (/= 0 n)
8141       (gnus-message 7 "No more articles"))
8142     (gnus-summary-recenter)
8143     (gnus-summary-position-point)
8144     n))
8145
8146 (defun gnus-summary-unmark-as-processable (n)
8147   "Remove the process mark from the next N articles.
8148 If N is negative, unmark backward instead.  The difference between N and
8149 the actual number of articles unmarked is returned."
8150   (interactive "p")
8151   (gnus-summary-mark-as-processable n t))
8152
8153 (defun gnus-summary-unmark-all-processable ()
8154   "Remove the process mark from all articles."
8155   (interactive)
8156   (save-excursion
8157     (while gnus-newsgroup-processable
8158       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
8159   (gnus-summary-position-point))
8160
8161 (defun gnus-summary-mark-as-expirable (n)
8162   "Mark N articles forward as expirable.
8163 If N is negative, mark backward instead.  The difference between N and
8164 the actual number of articles marked is returned."
8165   (interactive "p")
8166   (gnus-summary-mark-forward n gnus-expirable-mark))
8167
8168 (defun gnus-summary-mark-article-as-replied (article)
8169   "Mark ARTICLE replied and update the summary line."
8170   (push article gnus-newsgroup-replied)
8171   (let ((buffer-read-only nil))
8172     (when (gnus-summary-goto-subject article nil t)
8173       (gnus-summary-update-secondary-mark article))))
8174
8175 (defun gnus-summary-set-bookmark (article)
8176   "Set a bookmark in current article."
8177   (interactive (list (gnus-summary-article-number)))
8178   (when (or (not (get-buffer gnus-article-buffer))
8179             (not gnus-current-article)
8180             (not gnus-article-current)
8181             (not (equal gnus-newsgroup-name (car gnus-article-current))))
8182     (error "No current article selected"))
8183   ;; Remove old bookmark, if one exists.
8184   (let ((old (assq article gnus-newsgroup-bookmarks)))
8185     (when old
8186       (setq gnus-newsgroup-bookmarks
8187             (delq old gnus-newsgroup-bookmarks))))
8188   ;; Set the new bookmark, which is on the form
8189   ;; (article-number . line-number-in-body).
8190   (push
8191    (cons article
8192          (save-excursion
8193            (set-buffer gnus-article-buffer)
8194            (count-lines
8195             (min (point)
8196                  (save-excursion
8197                    (goto-char (point-min))
8198                    (search-forward "\n\n" nil t)
8199                    (point)))
8200             (point))))
8201    gnus-newsgroup-bookmarks)
8202   (gnus-message 6 "A bookmark has been added to the current article."))
8203
8204 (defun gnus-summary-remove-bookmark (article)
8205   "Remove the bookmark from the current article."
8206   (interactive (list (gnus-summary-article-number)))
8207   ;; Remove old bookmark, if one exists.
8208   (let ((old (assq article gnus-newsgroup-bookmarks)))
8209     (if old
8210         (progn
8211           (setq gnus-newsgroup-bookmarks
8212                 (delq old gnus-newsgroup-bookmarks))
8213           (gnus-message 6 "Removed bookmark."))
8214       (gnus-message 6 "No bookmark in current article."))))
8215
8216 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8217 (defun gnus-summary-mark-as-dormant (n)
8218   "Mark N articles forward as dormant.
8219 If N is negative, mark backward instead.  The difference between N and
8220 the actual number of articles marked is returned."
8221   (interactive "p")
8222   (gnus-summary-mark-forward n gnus-dormant-mark))
8223
8224 (defun gnus-summary-set-process-mark (article)
8225   "Set the process mark on ARTICLE and update the summary line."
8226   (setq gnus-newsgroup-processable
8227         (cons article
8228               (delq article gnus-newsgroup-processable)))
8229   (when (gnus-summary-goto-subject article)
8230     (gnus-summary-show-thread)
8231     (gnus-summary-goto-subject article)
8232     (gnus-summary-update-secondary-mark article)))
8233
8234 (defun gnus-summary-remove-process-mark (article)
8235   "Remove the process mark from ARTICLE and update the summary line."
8236   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
8237   (when (gnus-summary-goto-subject article)
8238     (gnus-summary-show-thread)
8239     (gnus-summary-goto-subject article)
8240     (gnus-summary-update-secondary-mark article)))
8241
8242 (defun gnus-summary-set-saved-mark (article)
8243   "Set the process mark on ARTICLE and update the summary line."
8244   (push article gnus-newsgroup-saved)
8245   (when (gnus-summary-goto-subject article)
8246     (gnus-summary-update-secondary-mark article)))
8247
8248 (defun gnus-summary-mark-forward (n &optional mark no-expire)
8249   "Mark N articles as read forwards.
8250 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
8251 The difference between N and the actual number of articles marked is
8252 returned.
8253 Iff NO-EXPIRE, auto-expiry will be inhibited."
8254   (interactive "p")
8255   (gnus-summary-show-thread)
8256   (let ((backward (< n 0))
8257         (gnus-summary-goto-unread
8258          (and gnus-summary-goto-unread
8259               (not (eq gnus-summary-goto-unread 'never))
8260               (not (memq mark (list gnus-unread-mark
8261                                     gnus-ticked-mark gnus-dormant-mark)))))
8262         (n (abs n))
8263         (mark (or mark gnus-del-mark)))
8264     (while (and (> n 0)
8265                 (gnus-summary-mark-article nil mark no-expire)
8266                 (zerop (gnus-summary-next-subject
8267                         (if backward -1 1)
8268                         (and gnus-summary-goto-unread
8269                              (not (eq gnus-summary-goto-unread 'never)))
8270                         t)))
8271       (setq n (1- n)))
8272     (when (/= 0 n)
8273       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
8274     (gnus-summary-recenter)
8275     (gnus-summary-position-point)
8276     (gnus-set-mode-line 'summary)
8277     n))
8278
8279 (defun gnus-summary-mark-article-as-read (mark)
8280   "Mark the current article quickly as read with MARK."
8281   (let ((article (gnus-summary-article-number)))
8282     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8283     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8284     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8285     (push (cons article mark) gnus-newsgroup-reads)
8286     ;; Possibly remove from cache, if that is used.
8287     (when gnus-use-cache
8288       (gnus-cache-enter-remove-article article))
8289     ;; Allow the backend to change the mark.
8290     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8291     ;; Check for auto-expiry.
8292     (when (and gnus-newsgroup-auto-expire
8293                (memq mark gnus-auto-expirable-marks))
8294       (setq mark gnus-expirable-mark)
8295       ;; Let the backend know about the mark change.
8296       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8297       (push article gnus-newsgroup-expirable))
8298     ;; Set the mark in the buffer.
8299     (gnus-summary-update-mark mark 'unread)
8300     t))
8301
8302 (defun gnus-summary-mark-article-as-unread (mark)
8303   "Mark the current article quickly as unread with MARK."
8304   (let* ((article (gnus-summary-article-number))
8305          (old-mark (gnus-summary-article-mark article)))
8306     ;; Allow the backend to change the mark.
8307     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8308     (if (eq mark old-mark)
8309         t
8310       (if (<= article 0)
8311           (progn
8312             (gnus-error 1 "Can't mark negative article numbers")
8313             nil)
8314         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8315         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8316         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
8317         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
8318         (cond ((= mark gnus-ticked-mark)
8319                (push article gnus-newsgroup-marked))
8320               ((= mark gnus-dormant-mark)
8321                (push article gnus-newsgroup-dormant))
8322               (t
8323                (push article gnus-newsgroup-unreads)))
8324         (gnus-pull article gnus-newsgroup-reads)
8325
8326         ;; See whether the article is to be put in the cache.
8327         (and gnus-use-cache
8328              (vectorp (gnus-summary-article-header article))
8329              (save-excursion
8330                (gnus-cache-possibly-enter-article
8331                 gnus-newsgroup-name article
8332                 (gnus-summary-article-header article)
8333                 (= mark gnus-ticked-mark)
8334                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8335
8336         ;; Fix the mark.
8337         (gnus-summary-update-mark mark 'unread)
8338         t))))
8339
8340 (defun gnus-summary-mark-article (&optional article mark no-expire)
8341   "Mark ARTICLE with MARK.  MARK can be any character.
8342 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
8343 `??' (dormant) and `?E' (expirable).
8344 If MARK is nil, then the default character `?r' is used.
8345 If ARTICLE is nil, then the article on the current line will be
8346 marked.
8347 Iff NO-EXPIRE, auto-expiry will be inhibited."
8348   ;; The mark might be a string.
8349   (when (stringp mark)
8350     (setq mark (aref mark 0)))
8351   ;; If no mark is given, then we check auto-expiring.
8352   (when (null mark)
8353     (setq mark gnus-del-mark))
8354   (when (and (not no-expire)
8355              gnus-newsgroup-auto-expire
8356              (memq mark gnus-auto-expirable-marks))
8357     (setq mark gnus-expirable-mark))
8358   (let ((article (or article (gnus-summary-article-number)))
8359         (old-mark (gnus-summary-article-mark article)))
8360     ;; Allow the backend to change the mark.
8361     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8362     (if (eq mark old-mark)
8363         t
8364       (unless article
8365         (error "No article on current line"))
8366       (if (not (if (or (= mark gnus-unread-mark)
8367                        (= mark gnus-ticked-mark)
8368                        (= mark gnus-dormant-mark))
8369                    (gnus-mark-article-as-unread article mark)
8370                  (gnus-mark-article-as-read article mark)))
8371           t
8372         ;; See whether the article is to be put in the cache.
8373         (and gnus-use-cache
8374              (not (= mark gnus-canceled-mark))
8375              (vectorp (gnus-summary-article-header article))
8376              (save-excursion
8377                (gnus-cache-possibly-enter-article
8378                 gnus-newsgroup-name article
8379                 (gnus-summary-article-header article)
8380                 (= mark gnus-ticked-mark)
8381                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8382
8383         (when (gnus-summary-goto-subject article nil t)
8384           (let ((buffer-read-only nil))
8385             (gnus-summary-show-thread)
8386             ;; Fix the mark.
8387             (gnus-summary-update-mark mark 'unread)
8388             t))))))
8389
8390 (defun gnus-summary-update-secondary-mark (article)
8391   "Update the secondary (read, process, cache) mark."
8392   (gnus-summary-update-mark
8393    (cond ((memq article gnus-newsgroup-processable)
8394           gnus-process-mark)
8395          ((memq article gnus-newsgroup-cached)
8396           gnus-cached-mark)
8397          ((memq article gnus-newsgroup-replied)
8398           gnus-replied-mark)
8399          ((memq article gnus-newsgroup-saved)
8400           gnus-saved-mark)
8401          (t gnus-unread-mark))
8402    'replied)
8403   (when (gnus-visual-p 'summary-highlight 'highlight)
8404     (gnus-run-hooks 'gnus-summary-update-hook))
8405   t)
8406
8407 (defun gnus-summary-update-mark (mark type)
8408   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
8409         (buffer-read-only nil))
8410     (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
8411     (when forward
8412       (when (looking-at "\r")
8413         (incf forward))
8414       (when (<= (+ forward (point)) (point-max))
8415         ;; Go to the right position on the line.
8416         (goto-char (+ forward (point)))
8417         ;; Replace the old mark with the new mark.
8418         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
8419         ;; Optionally update the marks by some user rule.
8420         (when (eq type 'unread)
8421           (gnus-data-set-mark
8422            (gnus-data-find (gnus-summary-article-number)) mark)
8423           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
8424
8425 (defun gnus-mark-article-as-read (article &optional mark)
8426   "Enter ARTICLE in the pertinent lists and remove it from others."
8427   ;; Make the article expirable.
8428   (let ((mark (or mark gnus-del-mark)))
8429     (if (= mark gnus-expirable-mark)
8430         (push article gnus-newsgroup-expirable)
8431       (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)))
8432     ;; Remove from unread and marked lists.
8433     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8434     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8435     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8436     (push (cons article mark) gnus-newsgroup-reads)
8437     ;; Possibly remove from cache, if that is used.
8438     (when gnus-use-cache
8439       (gnus-cache-enter-remove-article article))
8440     t))
8441
8442 (defun gnus-mark-article-as-unread (article &optional mark)
8443   "Enter ARTICLE in the pertinent lists and remove it from others."
8444   (let ((mark (or mark gnus-ticked-mark)))
8445     (if (<= article 0)
8446         (progn
8447           (gnus-error 1 "Can't mark negative article numbers")
8448           nil)
8449       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
8450             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
8451             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
8452             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8453
8454       ;; Unsuppress duplicates?
8455       (when gnus-suppress-duplicates
8456         (gnus-dup-unsuppress-article article))
8457
8458       (cond ((= mark gnus-ticked-mark)
8459              (push article gnus-newsgroup-marked))
8460             ((= mark gnus-dormant-mark)
8461              (push article gnus-newsgroup-dormant))
8462             (t
8463              (push article gnus-newsgroup-unreads)))
8464       (gnus-pull article gnus-newsgroup-reads)
8465       t)))
8466
8467 (defalias 'gnus-summary-mark-as-unread-forward
8468   'gnus-summary-tick-article-forward)
8469 (make-obsolete 'gnus-summary-mark-as-unread-forward
8470                'gnus-summary-tick-article-forward)
8471 (defun gnus-summary-tick-article-forward (n)
8472   "Tick N articles forwards.
8473 If N is negative, tick backwards instead.
8474 The difference between N and the number of articles ticked is returned."
8475   (interactive "p")
8476   (gnus-summary-mark-forward n gnus-ticked-mark))
8477
8478 (defalias 'gnus-summary-mark-as-unread-backward
8479   'gnus-summary-tick-article-backward)
8480 (make-obsolete 'gnus-summary-mark-as-unread-backward
8481                'gnus-summary-tick-article-backward)
8482 (defun gnus-summary-tick-article-backward (n)
8483   "Tick N articles backwards.
8484 The difference between N and the number of articles ticked is returned."
8485   (interactive "p")
8486   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
8487
8488 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8489 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8490 (defun gnus-summary-tick-article (&optional article clear-mark)
8491   "Mark current article as unread.
8492 Optional 1st argument ARTICLE specifies article number to be marked as unread.
8493 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
8494   (interactive)
8495   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
8496                                        gnus-ticked-mark)))
8497
8498 (defun gnus-summary-mark-as-read-forward (n)
8499   "Mark N articles as read forwards.
8500 If N is negative, mark backwards instead.
8501 The difference between N and the actual number of articles marked is
8502 returned."
8503   (interactive "p")
8504   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
8505
8506 (defun gnus-summary-mark-as-read-backward (n)
8507   "Mark the N articles as read backwards.
8508 The difference between N and the actual number of articles marked is
8509 returned."
8510   (interactive "p")
8511   (gnus-summary-mark-forward
8512    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
8513
8514 (defun gnus-summary-mark-as-read (&optional article mark)
8515   "Mark current article as read.
8516 ARTICLE specifies the article to be marked as read.
8517 MARK specifies a string to be inserted at the beginning of the line."
8518   (gnus-summary-mark-article article mark))
8519
8520 (defun gnus-summary-clear-mark-forward (n)
8521   "Clear marks from N articles forward.
8522 If N is negative, clear backward instead.
8523 The difference between N and the number of marks cleared is returned."
8524   (interactive "p")
8525   (gnus-summary-mark-forward n gnus-unread-mark))
8526
8527 (defun gnus-summary-clear-mark-backward (n)
8528   "Clear marks from N articles backward.
8529 The difference between N and the number of marks cleared is returned."
8530   (interactive "p")
8531   (gnus-summary-mark-forward (- n) gnus-unread-mark))
8532
8533 (defun gnus-summary-mark-unread-as-read ()
8534   "Intended to be used by `gnus-summary-mark-article-hook'."
8535   (when (memq gnus-current-article gnus-newsgroup-unreads)
8536     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
8537
8538 (defun gnus-summary-mark-read-and-unread-as-read ()
8539   "Intended to be used by `gnus-summary-mark-article-hook'."
8540   (let ((mark (gnus-summary-article-mark)))
8541     (when (or (gnus-unread-mark-p mark)
8542               (gnus-read-mark-p mark))
8543       (gnus-summary-mark-article gnus-current-article gnus-read-mark))))
8544
8545 (defun gnus-summary-mark-region-as-read (point mark all)
8546   "Mark all unread articles between point and mark as read.
8547 If given a prefix, mark all articles between point and mark as read,
8548 even ticked and dormant ones."
8549   (interactive "r\nP")
8550   (save-excursion
8551     (let (article)
8552       (goto-char point)
8553       (beginning-of-line)
8554       (while (and
8555               (< (point) mark)
8556               (progn
8557                 (when (or all
8558                           (memq (setq article (gnus-summary-article-number))
8559                                 gnus-newsgroup-unreads))
8560                   (gnus-summary-mark-article article gnus-del-mark))
8561                 t)
8562               (gnus-summary-find-next))))))
8563
8564 (defun gnus-summary-mark-below (score mark)
8565   "Mark articles with score less than SCORE with MARK."
8566   (interactive "P\ncMark: ")
8567   (setq score (if score
8568                   (prefix-numeric-value score)
8569                 (or gnus-summary-default-score 0)))
8570   (save-excursion
8571     (set-buffer gnus-summary-buffer)
8572     (goto-char (point-min))
8573     (while
8574         (progn
8575           (and (< (gnus-summary-article-score) score)
8576                (gnus-summary-mark-article nil mark))
8577           (gnus-summary-find-next)))))
8578
8579 (defun gnus-summary-kill-below (&optional score)
8580   "Mark articles with score below SCORE as read."
8581   (interactive "P")
8582   (gnus-summary-mark-below score gnus-killed-mark))
8583
8584 (defun gnus-summary-clear-above (&optional score)
8585   "Clear all marks from articles with score above SCORE."
8586   (interactive "P")
8587   (gnus-summary-mark-above score gnus-unread-mark))
8588
8589 (defun gnus-summary-tick-above (&optional score)
8590   "Tick all articles with score above SCORE."
8591   (interactive "P")
8592   (gnus-summary-mark-above score gnus-ticked-mark))
8593
8594 (defun gnus-summary-mark-above (score mark)
8595   "Mark articles with score over SCORE with MARK."
8596   (interactive "P\ncMark: ")
8597   (setq score (if score
8598                   (prefix-numeric-value score)
8599                 (or gnus-summary-default-score 0)))
8600   (save-excursion
8601     (set-buffer gnus-summary-buffer)
8602     (goto-char (point-min))
8603     (while (and (progn
8604                   (when (> (gnus-summary-article-score) score)
8605                     (gnus-summary-mark-article nil mark))
8606                   t)
8607                 (gnus-summary-find-next)))))
8608
8609 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8610 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
8611 (defun gnus-summary-limit-include-expunged (&optional no-error)
8612   "Display all the hidden articles that were expunged for low scores."
8613   (interactive)
8614   (let ((buffer-read-only nil))
8615     (let ((scored gnus-newsgroup-scored)
8616           headers h)
8617       (while scored
8618         (unless (gnus-summary-goto-subject (caar scored))
8619           (and (setq h (gnus-summary-article-header (caar scored)))
8620                (< (cdar scored) gnus-summary-expunge-below)
8621                (push h headers)))
8622         (setq scored (cdr scored)))
8623       (if (not headers)
8624           (when (not no-error)
8625             (error "No expunged articles hidden"))
8626         (goto-char (point-min))
8627         (gnus-summary-prepare-unthreaded (nreverse headers))
8628         (goto-char (point-min))
8629         (gnus-summary-position-point)
8630         t))))
8631
8632 (defun gnus-summary-catchup (&optional all quietly to-here not-mark)
8633   "Mark all unread articles in this newsgroup as read.
8634 If prefix argument ALL is non-nil, ticked and dormant articles will
8635 also be marked as read.
8636 If QUIETLY is non-nil, no questions will be asked.
8637 If TO-HERE is non-nil, it should be a point in the buffer.  All
8638 articles before this point will be marked as read.
8639 Note that this function will only catch up the unread article
8640 in the current summary buffer limitation.
8641 The number of articles marked as read is returned."
8642   (interactive "P")
8643   (prog1
8644       (save-excursion
8645         (when (or quietly
8646                   (not gnus-interactive-catchup) ;Without confirmation?
8647                   gnus-expert-user
8648                   (gnus-y-or-n-p
8649                    (if all
8650                        "Mark absolutely all articles as read? "
8651                      "Mark all unread articles as read? ")))
8652           (if (and not-mark
8653                    (not gnus-newsgroup-adaptive)
8654                    (not gnus-newsgroup-auto-expire)
8655                    (not gnus-suppress-duplicates)
8656                    (or (not gnus-use-cache)
8657                        (eq gnus-use-cache 'passive)))
8658               (progn
8659                 (when all
8660                   (setq gnus-newsgroup-marked nil
8661                         gnus-newsgroup-dormant nil))
8662                 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable))
8663             ;; We actually mark all articles as canceled, which we
8664             ;; have to do when using auto-expiry or adaptive scoring.
8665             (gnus-summary-show-all-threads)
8666             (when (gnus-summary-first-subject (not all) t)
8667               (while (and
8668                       (if to-here (< (point) to-here) t)
8669                       (gnus-summary-mark-article-as-read gnus-catchup-mark)
8670                       (gnus-summary-find-next (not all) nil nil t))))
8671             (gnus-set-mode-line 'summary))
8672           t))
8673     (gnus-summary-position-point)))
8674
8675 (defun gnus-summary-catchup-to-here (&optional all)
8676   "Mark all unticked articles before the current one as read.
8677 If ALL is non-nil, also mark ticked and dormant articles as read."
8678   (interactive "P")
8679   (save-excursion
8680     (gnus-save-hidden-threads
8681       (let ((beg (point)))
8682         ;; We check that there are unread articles.
8683         (when (or all (gnus-summary-find-prev))
8684           (gnus-summary-catchup all t beg)))))
8685   (gnus-summary-position-point))
8686
8687 (defun gnus-summary-catchup-all (&optional quietly)
8688   "Mark all articles in this newsgroup as read."
8689   (interactive "P")
8690   (gnus-summary-catchup t quietly))
8691
8692 (defun gnus-summary-catchup-and-exit (&optional all quietly)
8693   "Mark all unread articles in this group as read, then exit.
8694 If prefix argument ALL is non-nil, all articles are marked as read."
8695   (interactive "P")
8696   (when (gnus-summary-catchup all quietly nil 'fast)
8697     ;; Select next newsgroup or exit.
8698     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
8699              (eq gnus-auto-select-next 'quietly))
8700         (gnus-summary-next-group nil)
8701       (gnus-summary-exit))))
8702
8703 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
8704   "Mark all articles in this newsgroup as read, and then exit."
8705   (interactive "P")
8706   (gnus-summary-catchup-and-exit t quietly))
8707
8708 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
8709   "Mark all articles in this group as read and select the next group.
8710 If given a prefix, mark all articles, unread as well as ticked, as
8711 read."
8712   (interactive "P")
8713   (save-excursion
8714     (gnus-summary-catchup all))
8715   (gnus-summary-next-group))
8716
8717 ;;;
8718 ;;; with article
8719 ;;;
8720
8721 (defmacro gnus-with-article (article &rest forms)
8722   "Select ARTICLE and perform FORMS in the original article buffer.
8723 Then replace the article with the result."
8724   `(progn
8725      ;; We don't want the article to be marked as read.
8726      (let (gnus-mark-article-hook)
8727        (gnus-summary-select-article t t nil ,article))
8728      (set-buffer gnus-original-article-buffer)
8729      ,@forms
8730      (if (not (gnus-check-backend-function
8731                'request-replace-article (car gnus-article-current)))
8732          (gnus-message 5 "Read-only group; not replacing")
8733        (unless (gnus-request-replace-article
8734                 ,article (car gnus-article-current)
8735                 (current-buffer) t)
8736          (error "Couldn't replace article")))
8737      ;; The cache and backlog have to be flushed somewhat.
8738      (when gnus-keep-backlog
8739        (gnus-backlog-remove-article
8740         (car gnus-article-current) (cdr gnus-article-current)))
8741      (when gnus-use-cache
8742        (gnus-cache-update-article
8743         (car gnus-article-current) (cdr gnus-article-current)))))
8744
8745 (put 'gnus-with-article 'lisp-indent-function 1)
8746 (put 'gnus-with-article 'edebug-form-spec '(form body))
8747
8748 ;; Thread-based commands.
8749
8750 (defun gnus-summary-articles-in-thread (&optional article)
8751   "Return a list of all articles in the current thread.
8752 If ARTICLE is non-nil, return all articles in the thread that starts
8753 with that article."
8754   (let* ((article (or article (gnus-summary-article-number)))
8755          (data (gnus-data-find-list article))
8756          (top-level (gnus-data-level (car data)))
8757          (top-subject
8758           (cond ((null gnus-thread-operation-ignore-subject)
8759                  (gnus-simplify-subject-re
8760                   (mail-header-subject (gnus-data-header (car data)))))
8761                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
8762                  (gnus-simplify-subject-fuzzy
8763                   (mail-header-subject (gnus-data-header (car data)))))
8764                 (t nil)))
8765          (end-point (save-excursion
8766                       (if (gnus-summary-go-to-next-thread)
8767                           (point) (point-max))))
8768          articles)
8769     (while (and data
8770                 (< (gnus-data-pos (car data)) end-point))
8771       (when (or (not top-subject)
8772                 (string= top-subject
8773                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
8774                              (gnus-simplify-subject-fuzzy
8775                               (mail-header-subject
8776                                (gnus-data-header (car data))))
8777                            (gnus-simplify-subject-re
8778                             (mail-header-subject
8779                              (gnus-data-header (car data)))))))
8780         (push (gnus-data-number (car data)) articles))
8781       (unless (and (setq data (cdr data))
8782                    (> (gnus-data-level (car data)) top-level))
8783         (setq data nil)))
8784     ;; Return the list of articles.
8785     (nreverse articles)))
8786
8787 (defun gnus-summary-rethread-current ()
8788   "Rethread the thread the current article is part of."
8789   (interactive)
8790   (let* ((gnus-show-threads t)
8791          (article (gnus-summary-article-number))
8792          (id (mail-header-id (gnus-summary-article-header)))
8793          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
8794     (unless id
8795       (error "No article on the current line"))
8796     (gnus-rebuild-thread id)
8797     (gnus-summary-goto-subject article)))
8798
8799 (defun gnus-summary-reparent-thread ()
8800   "Make the current article child of the marked (or previous) article.
8801
8802 Note that the re-threading will only work if `gnus-thread-ignore-subject'
8803 is non-nil or the Subject: of both articles are the same."
8804   (interactive)
8805   (unless (not (gnus-group-read-only-p))
8806     (error "The current newsgroup does not support article editing"))
8807   (unless (<= (length gnus-newsgroup-processable) 1)
8808     (error "No more than one article may be marked"))
8809   (save-window-excursion
8810     (let ((gnus-article-buffer " *reparent*")
8811           (current-article (gnus-summary-article-number))
8812           ;; First grab the marked article, otherwise one line up.
8813           (parent-article (if (not (null gnus-newsgroup-processable))
8814                               (car gnus-newsgroup-processable)
8815                             (save-excursion
8816                               (if (eq (forward-line -1) 0)
8817                                   (gnus-summary-article-number)
8818                                 (error "Beginning of summary buffer"))))))
8819       (unless (not (eq current-article parent-article))
8820         (error "An article may not be self-referential"))
8821       (let ((message-id (mail-header-id
8822                          (gnus-summary-article-header parent-article))))
8823         (unless (and message-id (not (equal message-id "")))
8824           (error "No message-id in desired parent"))
8825         (gnus-with-article current-article
8826           (goto-char (point-min))
8827           (if (re-search-forward "^References: " nil t)
8828               (progn
8829                 (re-search-forward "^[^ \t]" nil t)
8830                 (forward-line -1)
8831                 (end-of-line)
8832                 (insert " " message-id))
8833             (insert "References: " message-id "\n")))
8834         (set-buffer gnus-summary-buffer)
8835         (gnus-summary-unmark-all-processable)
8836         (gnus-summary-update-article current-article)
8837         (gnus-summary-rethread-current)
8838         (gnus-message 3 "Article %d is now the child of article %d"
8839                       current-article parent-article)))))
8840
8841 (defun gnus-summary-toggle-threads (&optional arg)
8842   "Toggle showing conversation threads.
8843 If ARG is positive number, turn showing conversation threads on."
8844   (interactive "P")
8845   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
8846     (setq gnus-show-threads
8847           (if (null arg) (not gnus-show-threads)
8848             (> (prefix-numeric-value arg) 0)))
8849     (gnus-summary-prepare)
8850     (gnus-summary-goto-subject current)
8851     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
8852     (gnus-summary-position-point)))
8853
8854 (defun gnus-summary-show-all-threads ()
8855   "Show all threads."
8856   (interactive)
8857   (save-excursion
8858     (let ((buffer-read-only nil))
8859       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
8860   (gnus-summary-position-point))
8861
8862 (defun gnus-summary-show-thread ()
8863   "Show thread subtrees.
8864 Returns nil if no thread was there to be shown."
8865   (interactive)
8866   (let ((buffer-read-only nil)
8867         (orig (point))
8868         ;; first goto end then to beg, to have point at beg after let
8869         (end (progn (end-of-line) (point)))
8870         (beg (progn (beginning-of-line) (point))))
8871     (prog1
8872         ;; Any hidden lines here?
8873         (search-forward "\r" end t)
8874       (subst-char-in-region beg end ?\^M ?\n t)
8875       (goto-char orig)
8876       (gnus-summary-position-point))))
8877
8878 (defun gnus-summary-hide-all-threads ()
8879   "Hide all thread subtrees."
8880   (interactive)
8881   (save-excursion
8882     (goto-char (point-min))
8883     (gnus-summary-hide-thread)
8884     (while (zerop (gnus-summary-next-thread 1 t))
8885       (gnus-summary-hide-thread)))
8886   (gnus-summary-position-point))
8887
8888 (defun gnus-summary-hide-thread ()
8889   "Hide thread subtrees.
8890 Returns nil if no threads were there to be hidden."
8891   (interactive)
8892   (let ((buffer-read-only nil)
8893         (start (point))
8894         (article (gnus-summary-article-number)))
8895     (goto-char start)
8896     ;; Go forward until either the buffer ends or the subthread
8897     ;; ends.
8898     (when (and (not (eobp))
8899                (or (zerop (gnus-summary-next-thread 1 t))
8900                    (goto-char (point-max))))
8901       (prog1
8902           (if (and (> (point) start)
8903                    (search-backward "\n" start t))
8904               (progn
8905                 (subst-char-in-region start (point) ?\n ?\^M)
8906                 (gnus-summary-goto-subject article))
8907             (goto-char start)
8908             nil)))))
8909
8910 (defun gnus-summary-go-to-next-thread (&optional previous)
8911   "Go to the same level (or less) next thread.
8912 If PREVIOUS is non-nil, go to previous thread instead.
8913 Return the article number moved to, or nil if moving was impossible."
8914   (let ((level (gnus-summary-thread-level))
8915         (way (if previous -1 1))
8916         (beg (point)))
8917     (forward-line way)
8918     (while (and (not (eobp))
8919                 (< level (gnus-summary-thread-level)))
8920       (forward-line way))
8921     (if (eobp)
8922         (progn
8923           (goto-char beg)
8924           nil)
8925       (setq beg (point))
8926       (prog1
8927           (gnus-summary-article-number)
8928         (goto-char beg)))))
8929
8930 (defun gnus-summary-next-thread (n &optional silent)
8931   "Go to the same level next N'th thread.
8932 If N is negative, search backward instead.
8933 Returns the difference between N and the number of skips actually
8934 done.
8935
8936 If SILENT, don't output messages."
8937   (interactive "p")
8938   (let ((backward (< n 0))
8939         (n (abs n)))
8940     (while (and (> n 0)
8941                 (gnus-summary-go-to-next-thread backward))
8942       (decf n))
8943     (unless silent
8944       (gnus-summary-position-point))
8945     (when (and (not silent) (/= 0 n))
8946       (gnus-message 7 "No more threads"))
8947     n))
8948
8949 (defun gnus-summary-prev-thread (n)
8950   "Go to the same level previous N'th thread.
8951 Returns the difference between N and the number of skips actually
8952 done."
8953   (interactive "p")
8954   (gnus-summary-next-thread (- n)))
8955
8956 (defun gnus-summary-go-down-thread ()
8957   "Go down one level in the current thread."
8958   (let ((children (gnus-summary-article-children)))
8959     (when children
8960       (gnus-summary-goto-subject (car children)))))
8961
8962 (defun gnus-summary-go-up-thread ()
8963   "Go up one level in the current thread."
8964   (let ((parent (gnus-summary-article-parent)))
8965     (when parent
8966       (gnus-summary-goto-subject parent))))
8967
8968 (defun gnus-summary-down-thread (n)
8969   "Go down thread N steps.
8970 If N is negative, go up instead.
8971 Returns the difference between N and how many steps down that were
8972 taken."
8973   (interactive "p")
8974   (let ((up (< n 0))
8975         (n (abs n)))
8976     (while (and (> n 0)
8977                 (if up (gnus-summary-go-up-thread)
8978                   (gnus-summary-go-down-thread)))
8979       (setq n (1- n)))
8980     (gnus-summary-position-point)
8981     (when (/= 0 n)
8982       (gnus-message 7 "Can't go further"))
8983     n))
8984
8985 (defun gnus-summary-up-thread (n)
8986   "Go up thread N steps.
8987 If N is negative, go up instead.
8988 Returns the difference between N and how many steps down that were
8989 taken."
8990   (interactive "p")
8991   (gnus-summary-down-thread (- n)))
8992
8993 (defun gnus-summary-top-thread ()
8994   "Go to the top of the thread."
8995   (interactive)
8996   (while (gnus-summary-go-up-thread))
8997   (gnus-summary-article-number))
8998
8999 (defun gnus-summary-kill-thread (&optional unmark)
9000   "Mark articles under current thread as read.
9001 If the prefix argument is positive, remove any kinds of marks.
9002 If the prefix argument is negative, tick articles instead."
9003   (interactive "P")
9004   (when unmark
9005     (setq unmark (prefix-numeric-value unmark)))
9006   (let ((articles (gnus-summary-articles-in-thread)))
9007     (save-excursion
9008       ;; Expand the thread.
9009       (gnus-summary-show-thread)
9010       ;; Mark all the articles.
9011       (while articles
9012         (gnus-summary-goto-subject (car articles))
9013         (cond ((null unmark)
9014                (gnus-summary-mark-article-as-read gnus-killed-mark))
9015               ((> unmark 0)
9016                (gnus-summary-mark-article-as-unread gnus-unread-mark))
9017               (t
9018                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
9019         (setq articles (cdr articles))))
9020     ;; Hide killed subtrees.
9021     (and (null unmark)
9022          gnus-thread-hide-killed
9023          (gnus-summary-hide-thread))
9024     ;; If marked as read, go to next unread subject.
9025     (when (null unmark)
9026       ;; Go to next unread subject.
9027       (gnus-summary-next-subject 1 t)))
9028   (gnus-set-mode-line 'summary))
9029
9030 ;; Summary sorting commands
9031
9032 (defun gnus-summary-sort-by-number (&optional reverse)
9033   "Sort the summary buffer by article number.
9034 Argument REVERSE means reverse order."
9035   (interactive "P")
9036   (gnus-summary-sort 'number reverse))
9037
9038 (defun gnus-summary-sort-by-author (&optional reverse)
9039   "Sort the summary buffer by author name alphabetically.
9040 If `case-fold-search' is non-nil, case of letters is ignored.
9041 Argument REVERSE means reverse order."
9042   (interactive "P")
9043   (gnus-summary-sort 'author reverse))
9044
9045 (defun gnus-summary-sort-by-subject (&optional reverse)
9046   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
9047 If `case-fold-search' is non-nil, case of letters is ignored.
9048 Argument REVERSE means reverse order."
9049   (interactive "P")
9050   (gnus-summary-sort 'subject reverse))
9051
9052 (defun gnus-summary-sort-by-date (&optional reverse)
9053   "Sort the summary buffer by date.
9054 Argument REVERSE means reverse order."
9055   (interactive "P")
9056   (gnus-summary-sort 'date reverse))
9057
9058 (defun gnus-summary-sort-by-score (&optional reverse)
9059   "Sort the summary buffer by score.
9060 Argument REVERSE means reverse order."
9061   (interactive "P")
9062   (gnus-summary-sort 'score reverse))
9063
9064 (defun gnus-summary-sort-by-lines (&optional reverse)
9065   "Sort the summary buffer by the number of lines.
9066 Argument REVERSE means reverse order."
9067   (interactive "P")
9068   (gnus-summary-sort 'lines reverse))
9069
9070 (defun gnus-summary-sort-by-chars (&optional reverse)
9071   "Sort the summary buffer by article length.
9072 Argument REVERSE means reverse order."
9073   (interactive "P")
9074   (gnus-summary-sort 'chars reverse))
9075
9076 (defun gnus-summary-sort (predicate reverse)
9077   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
9078   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
9079          (article (intern (format "gnus-article-sort-by-%s" predicate)))
9080          (gnus-thread-sort-functions
9081           (if (not reverse)
9082               thread
9083             `(lambda (t1 t2)
9084                (,thread t2 t1))))
9085          (gnus-article-sort-functions
9086           (if (not reverse)
9087               article
9088             `(lambda (t1 t2)
9089                (,article t2 t1))))
9090          (buffer-read-only)
9091          (gnus-summary-prepare-hook nil))
9092     ;; We do the sorting by regenerating the threads.
9093     (gnus-summary-prepare)
9094     ;; Hide subthreads if needed.
9095     (when (and gnus-show-threads gnus-thread-hide-subtree)
9096       (gnus-summary-hide-all-threads))))
9097
9098 ;; Summary saving commands.
9099
9100 (defun gnus-summary-save-article (&optional n not-saved)
9101   "Save the current article using the default saver function.
9102 If N is a positive number, save the N next articles.
9103 If N is a negative number, save the N previous articles.
9104 If N is nil and any articles have been marked with the process mark,
9105 save those articles instead.
9106 The variable `gnus-default-article-saver' specifies the saver function."
9107   (interactive "P")
9108   (let* ((articles (gnus-summary-work-articles n))
9109          (save-buffer (save-excursion
9110                         (nnheader-set-temp-buffer " *Gnus Save*")))
9111          (num (length articles))
9112          header file)
9113     (dolist (article articles)
9114       (setq header (gnus-summary-article-header article))
9115       (if (not (vectorp header))
9116           ;; This is a pseudo-article.
9117           (if (assq 'name header)
9118               (gnus-copy-file (cdr (assq 'name header)))
9119             (gnus-message 1 "Article %d is unsaveable" article))
9120         ;; This is a real article.
9121         (save-window-excursion
9122           (gnus-summary-select-article t nil nil article))
9123         (save-excursion
9124           (set-buffer save-buffer)
9125           (erase-buffer)
9126           (insert-buffer-substring gnus-original-article-buffer))
9127         (setq file (gnus-article-save save-buffer file num))
9128         (gnus-summary-remove-process-mark article)
9129         (unless not-saved
9130           (gnus-summary-set-saved-mark article))))
9131     (gnus-kill-buffer save-buffer)
9132     (gnus-summary-position-point)
9133     (gnus-set-mode-line 'summary)
9134     n))
9135
9136 (defun gnus-summary-pipe-output (&optional arg)
9137   "Pipe the current article to a subprocess.
9138 If N is a positive number, pipe the N next articles.
9139 If N is a negative number, pipe the N previous articles.
9140 If N is nil and any articles have been marked with the process mark,
9141 pipe those articles instead."
9142   (interactive "P")
9143   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
9144     (gnus-summary-save-article arg t))
9145   (gnus-configure-windows 'pipe))
9146
9147 (defun gnus-summary-save-article-mail (&optional arg)
9148   "Append the current article to an mail file.
9149 If N is a positive number, save the N next articles.
9150 If N is a negative number, save the N previous articles.
9151 If N is nil and any articles have been marked with the process mark,
9152 save those articles instead."
9153   (interactive "P")
9154   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
9155     (gnus-summary-save-article arg)))
9156
9157 (defun gnus-summary-save-article-rmail (&optional arg)
9158   "Append the current article to an rmail file.
9159 If N is a positive number, save the N next articles.
9160 If N is a negative number, save the N previous articles.
9161 If N is nil and any articles have been marked with the process mark,
9162 save those articles instead."
9163   (interactive "P")
9164   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
9165     (gnus-summary-save-article arg)))
9166
9167 (defun gnus-summary-save-article-file (&optional arg)
9168   "Append the current article to a file.
9169 If N is a positive number, save the N next articles.
9170 If N is a negative number, save the N previous articles.
9171 If N is nil and any articles have been marked with the process mark,
9172 save those articles instead."
9173   (interactive "P")
9174   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
9175     (gnus-summary-save-article arg)))
9176
9177 (defun gnus-summary-write-article-file (&optional arg)
9178   "Write the current article to a file, deleting the previous file.
9179 If N is a positive number, save the N next articles.
9180 If N is a negative number, save the N previous articles.
9181 If N is nil and any articles have been marked with the process mark,
9182 save those articles instead."
9183   (interactive "P")
9184   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
9185     (gnus-summary-save-article arg)))
9186
9187 (defun gnus-summary-save-article-body-file (&optional arg)
9188   "Append the current article body to a file.
9189 If N is a positive number, save the N next articles.
9190 If N is a negative number, save the N previous articles.
9191 If N is nil and any articles have been marked with the process mark,
9192 save those articles instead."
9193   (interactive "P")
9194   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
9195     (gnus-summary-save-article arg)))
9196
9197 (defun gnus-summary-pipe-message (program)
9198   "Pipe the current article through PROGRAM."
9199   (interactive "sProgram: ")
9200   (gnus-summary-select-article)
9201   (let ((mail-header-separator ""))
9202     (gnus-eval-in-buffer-window gnus-article-buffer
9203       (save-restriction
9204         (widen)
9205         (let ((start (window-start))
9206               buffer-read-only)
9207           (message-pipe-buffer-body program)
9208           (set-window-start (get-buffer-window (current-buffer)) start))))))
9209
9210 (defun gnus-get-split-value (methods)
9211   "Return a value based on the split METHODS."
9212   (let (split-name method result match)
9213     (when methods
9214       (save-excursion
9215         (set-buffer gnus-original-article-buffer)
9216         (save-restriction
9217           (nnheader-narrow-to-headers)
9218           (while methods
9219             (goto-char (point-min))
9220             (setq method (pop methods))
9221             (setq match (car method))
9222             (when (cond
9223                    ((stringp match)
9224                     ;; Regular expression.
9225                     (ignore-errors
9226                       (re-search-forward match nil t)))
9227                    ((gnus-functionp match)
9228                     ;; Function.
9229                     (save-restriction
9230                       (widen)
9231                       (setq result (funcall match gnus-newsgroup-name))))
9232                    ((consp match)
9233                     ;; Form.
9234                     (save-restriction
9235                       (widen)
9236                       (setq result (eval match)))))
9237               (setq split-name (append (cdr method) split-name))
9238               (cond ((stringp result)
9239                      (push (expand-file-name
9240                             result gnus-article-save-directory)
9241                            split-name))
9242                     ((consp result)
9243                      (setq split-name (append result split-name)))))))))
9244     (nreverse split-name)))
9245
9246 (defun gnus-valid-move-group-p (group)
9247   (and (boundp group)
9248        (symbol-name group)
9249        (symbol-value group)
9250        (gnus-get-function (gnus-find-method-for-group
9251                            (symbol-name group)) 'request-accept-article t)))
9252
9253 (defun gnus-read-move-group-name (prompt default articles prefix)
9254   "Read a group name."
9255   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
9256          (minibuffer-confirm-incomplete nil) ; XEmacs
9257          (prom
9258           (format "%s %s to:"
9259                   prompt
9260                   (if (> (length articles) 1)
9261                       (format "these %d articles" (length articles))
9262                     "this article")))
9263          (to-newsgroup
9264           (cond
9265            ((null split-name)
9266             (gnus-completing-read default prom
9267                                   gnus-active-hashtb
9268                                   'gnus-valid-move-group-p
9269                                   nil prefix
9270                                   'gnus-group-history))
9271            ((= 1 (length split-name))
9272             (gnus-completing-read (car split-name) prom
9273                                   gnus-active-hashtb
9274                                   'gnus-valid-move-group-p
9275                                   nil nil
9276                                   'gnus-group-history))
9277            (t
9278             (gnus-completing-read nil prom
9279                                   (mapcar (lambda (el) (list el))
9280                                           (nreverse split-name))
9281                                   nil nil nil
9282                                   'gnus-group-history))))
9283          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
9284     (when to-newsgroup
9285       (if (or (string= to-newsgroup "")
9286               (string= to-newsgroup prefix))
9287           (setq to-newsgroup default))
9288       (unless to-newsgroup
9289         (error "No group name entered"))
9290       (or (gnus-active to-newsgroup)
9291           (gnus-activate-group to-newsgroup nil nil to-method)
9292           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
9293                                      to-newsgroup))
9294               (or (and (gnus-request-create-group to-newsgroup to-method)
9295                        (gnus-activate-group
9296                         to-newsgroup nil nil to-method)
9297                        (gnus-subscribe-group to-newsgroup))
9298                   (error "Couldn't create group %s" to-newsgroup)))
9299           (error "No such group: %s" to-newsgroup)))
9300     to-newsgroup))
9301
9302 (defun gnus-summary-save-parts (type dir n &optional reverse)
9303   "Save parts matching TYPE to DIR.
9304 If REVERSE, save parts that do not match TYPE."
9305   (interactive
9306    (list (read-string "Save parts of type: " "image/.*")
9307          (read-file-name "Save to directory: " nil nil t)
9308          current-prefix-arg))
9309   (gnus-summary-iterate n
9310     (let ((gnus-display-mime-function nil)
9311           (gnus-inhibit-treatment t))
9312       (gnus-summary-select-article))
9313     (save-excursion
9314       (set-buffer gnus-article-buffer)
9315       (let ((handles (or (mm-dissect-buffer) (mm-uu-dissect))))
9316         (when handles
9317           (gnus-summary-save-parts-1 type dir handles reverse)
9318           (mm-destroy-parts handles))))))
9319
9320 (defun gnus-summary-save-parts-1 (type dir handle reverse)
9321   (if (stringp (car handle))
9322       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
9323               (cdr handle))
9324     (when (if reverse
9325               (not (string-match type (mm-handle-media-type handle)))
9326             (string-match type (mm-handle-media-type handle)))
9327       (let ((file (expand-file-name
9328                    (file-name-nondirectory
9329                     (or
9330                      (mail-content-type-get
9331                       (mm-handle-disposition handle) 'filename)
9332                      (concat gnus-newsgroup-name
9333                              "." (number-to-string
9334                                   (cdr gnus-article-current)))))
9335                    dir)))
9336         (unless (file-exists-p file)
9337           (mm-save-part-to-file handle file))))))
9338
9339 ;; Summary extract commands
9340
9341 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
9342   (let ((buffer-read-only nil)
9343         (article (gnus-summary-article-number))
9344         after-article b e)
9345     (unless (gnus-summary-goto-subject article)
9346       (error "No such article: %d" article))
9347     (gnus-summary-position-point)
9348     ;; If all commands are to be bunched up on one line, we collect
9349     ;; them here.
9350     (unless gnus-view-pseudos-separately
9351       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
9352             files action)
9353         (while ps
9354           (setq action (cdr (assq 'action (car ps))))
9355           (setq files (list (cdr (assq 'name (car ps)))))
9356           (while (and ps (cdr ps)
9357                       (string= (or action "1")
9358                                (or (cdr (assq 'action (cadr ps))) "2")))
9359             (push (cdr (assq 'name (cadr ps))) files)
9360             (setcdr ps (cddr ps)))
9361           (when files
9362             (when (not (string-match "%s" action))
9363               (push " " files))
9364             (push " " files)
9365             (when (assq 'execute (car ps))
9366               (setcdr (assq 'execute (car ps))
9367                       (funcall (if (string-match "%s" action)
9368                                    'format 'concat)
9369                                action
9370                                (mapconcat
9371                                 (lambda (f)
9372                                   (if (equal f " ")
9373                                       f
9374                                     (gnus-quote-arg-for-sh-or-csh f)))
9375                                 files " ")))))
9376           (setq ps (cdr ps)))))
9377     (if (and gnus-view-pseudos (not not-view))
9378         (while pslist
9379           (when (assq 'execute (car pslist))
9380             (gnus-execute-command (cdr (assq 'execute (car pslist)))
9381                                   (eq gnus-view-pseudos 'not-confirm)))
9382           (setq pslist (cdr pslist)))
9383       (save-excursion
9384         (while pslist
9385           (setq after-article (or (cdr (assq 'article (car pslist)))
9386                                   (gnus-summary-article-number)))
9387           (gnus-summary-goto-subject after-article)
9388           (forward-line 1)
9389           (setq b (point))
9390           (insert "    " (file-name-nondirectory
9391                           (cdr (assq 'name (car pslist))))
9392                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
9393           (setq e (point))
9394           (forward-line -1)             ; back to `b'
9395           (gnus-add-text-properties
9396            b (1- e) (list 'gnus-number gnus-reffed-article-number
9397                           gnus-mouse-face-prop gnus-mouse-face))
9398           (gnus-data-enter
9399            after-article gnus-reffed-article-number
9400            gnus-unread-mark b (car pslist) 0 (- e b))
9401           (push gnus-reffed-article-number gnus-newsgroup-unreads)
9402           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
9403           (setq pslist (cdr pslist)))))))
9404
9405 (defun gnus-pseudos< (p1 p2)
9406   (let ((c1 (cdr (assq 'action p1)))
9407         (c2 (cdr (assq 'action p2))))
9408     (and c1 c2 (string< c1 c2))))
9409
9410 (defun gnus-request-pseudo-article (props)
9411   (cond ((assq 'execute props)
9412          (gnus-execute-command (cdr (assq 'execute props)))))
9413   (let ((gnus-current-article (gnus-summary-article-number)))
9414     (gnus-run-hooks 'gnus-mark-article-hook)))
9415
9416 (defun gnus-execute-command (command &optional automatic)
9417   (save-excursion
9418     (gnus-article-setup-buffer)
9419     (set-buffer gnus-article-buffer)
9420     (setq buffer-read-only nil)
9421     (let ((command (if automatic command
9422                      (read-string "Command: " (cons command 0)))))
9423       (erase-buffer)
9424       (insert "$ " command "\n\n")
9425       (if gnus-view-pseudo-asynchronously
9426           (start-process "gnus-execute" (current-buffer) shell-file-name
9427                          shell-command-switch command)
9428         (call-process shell-file-name nil t nil
9429                       shell-command-switch command)))))
9430
9431 ;; Summary kill commands.
9432
9433 (defun gnus-summary-edit-global-kill (article)
9434   "Edit the \"global\" kill file."
9435   (interactive (list (gnus-summary-article-number)))
9436   (gnus-group-edit-global-kill article))
9437
9438 (defun gnus-summary-edit-local-kill ()
9439   "Edit a local kill file applied to the current newsgroup."
9440   (interactive)
9441   (setq gnus-current-headers (gnus-summary-article-header))
9442   (gnus-group-edit-local-kill
9443    (gnus-summary-article-number) gnus-newsgroup-name))
9444
9445 ;;; Header reading.
9446
9447 (defun gnus-read-header (id &optional header)
9448   "Read the headers of article ID and enter them into the Gnus system."
9449   (let ((group gnus-newsgroup-name)
9450         (gnus-override-method
9451          (or
9452           gnus-override-method
9453           (and (gnus-news-group-p gnus-newsgroup-name)
9454                (car (gnus-refer-article-methods)))))
9455         where)
9456     ;; First we check to see whether the header in question is already
9457     ;; fetched.
9458     (if (stringp id)
9459         ;; This is a Message-ID.
9460         (setq header (or header (gnus-id-to-header id)))
9461       ;; This is an article number.
9462       (setq header (or header (gnus-summary-article-header id))))
9463     (if (and header
9464              (not (gnus-summary-article-sparse-p (mail-header-number header))))
9465         ;; We have found the header.
9466         header
9467       ;; If this is a sparse article, we have to nix out its
9468       ;; previous entry in the thread hashtb.
9469       (when (and header
9470                  (gnus-summary-article-sparse-p (mail-header-number header)))
9471         (let* ((parent (gnus-parent-id (mail-header-references header)))
9472                (thread (and parent (gnus-id-to-thread parent))))
9473           (when thread
9474             (delq (assq header thread) thread))))
9475       ;; We have to really fetch the header to this article.
9476       (save-excursion
9477         (set-buffer nntp-server-buffer)
9478         (when (setq where (gnus-request-head id group))
9479           (nnheader-fold-continuation-lines)
9480           (goto-char (point-max))
9481           (insert ".\n")
9482           (goto-char (point-min))
9483           (insert "211 ")
9484           (princ (cond
9485                   ((numberp id) id)
9486                   ((cdr where) (cdr where))
9487                   (header (mail-header-number header))
9488                   (t gnus-reffed-article-number))
9489                  (current-buffer))
9490           (insert " Article retrieved.\n"))
9491         (if (or (not where)
9492                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
9493             ()                          ; Malformed head.
9494           (unless (gnus-summary-article-sparse-p (mail-header-number header))
9495             (when (and (stringp id)
9496                        (not (string= (gnus-group-real-name group)
9497                                      (car where))))
9498               ;; If we fetched by Message-ID and the article came
9499               ;; from a different group, we fudge some bogus article
9500               ;; numbers for this article.
9501               (mail-header-set-number header gnus-reffed-article-number))
9502             (save-excursion
9503               (set-buffer gnus-summary-buffer)
9504               (decf gnus-reffed-article-number)
9505               (gnus-remove-header (mail-header-number header))
9506               (push header gnus-newsgroup-headers)
9507               (setq gnus-current-headers header)
9508               (push (mail-header-number header) gnus-newsgroup-limit)))
9509           header)))))
9510
9511 (defun gnus-remove-header (number)
9512   "Remove header NUMBER from `gnus-newsgroup-headers'."
9513   (if (and gnus-newsgroup-headers
9514            (= number (mail-header-number (car gnus-newsgroup-headers))))
9515       (pop gnus-newsgroup-headers)
9516     (let ((headers gnus-newsgroup-headers))
9517       (while (and (cdr headers)
9518                   (not (= number (mail-header-number (cadr headers)))))
9519         (pop headers))
9520       (when (cdr headers)
9521         (setcdr headers (cddr headers))))))
9522
9523 ;;;
9524 ;;; summary highlights
9525 ;;;
9526
9527 (defun gnus-highlight-selected-summary ()
9528   "Highlight selected article in summary buffer."
9529   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
9530   (when gnus-summary-selected-face
9531     (save-excursion
9532       (let* ((beg (progn (beginning-of-line) (point)))
9533              (end (progn (end-of-line) (point)))
9534              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
9535              (from (if (get-text-property beg gnus-mouse-face-prop)
9536                        beg
9537                      (or (next-single-property-change
9538                           beg gnus-mouse-face-prop nil end)
9539                          beg)))
9540              (to
9541               (if (= from end)
9542                   (- from 2)
9543                 (or (next-single-property-change
9544                      from gnus-mouse-face-prop nil end)
9545                     end))))
9546         ;; If no mouse-face prop on line we will have to = from = end,
9547         ;; so we highlight the entire line instead.
9548         (when (= (+ to 2) from)
9549           (setq from beg)
9550           (setq to end))
9551         (if gnus-newsgroup-selected-overlay
9552             ;; Move old overlay.
9553             (gnus-move-overlay
9554              gnus-newsgroup-selected-overlay from to (current-buffer))
9555           ;; Create new overlay.
9556           (gnus-overlay-put
9557            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
9558            'face gnus-summary-selected-face))))))
9559
9560 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>.
9561 (defun gnus-summary-highlight-line ()
9562   "Highlight current line according to `gnus-summary-highlight'."
9563   (let* ((list gnus-summary-highlight)
9564          (p (point))
9565          (end (progn (end-of-line) (point)))
9566          ;; now find out where the line starts and leave point there.
9567          (beg (progn (beginning-of-line) (point)))
9568          (article (gnus-summary-article-number))
9569          (score (or (cdr (assq (or article gnus-current-article)
9570                                gnus-newsgroup-scored))
9571                     gnus-summary-default-score 0))
9572          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
9573          (inhibit-read-only t))
9574     ;; Eval the cars of the lists until we find a match.
9575     (let ((default gnus-summary-default-score))
9576       (while (and list
9577                   (not (eval (caar list))))
9578         (setq list (cdr list))))
9579     (let ((face (cdar list)))
9580       (unless (eq face (get-text-property beg 'face))
9581         (gnus-put-text-property-excluding-characters-with-faces
9582          beg end 'face
9583          (setq face (if (boundp face) (symbol-value face) face)))
9584         (when gnus-summary-highlight-line-function
9585           (funcall gnus-summary-highlight-line-function article face))))
9586     (goto-char p)))
9587
9588 (defun gnus-update-read-articles (group unread &optional compute)
9589   "Update the list of read articles in GROUP."
9590   (let* ((active (or gnus-newsgroup-active (gnus-active group)))
9591          (entry (gnus-gethash group gnus-newsrc-hashtb))
9592          (info (nth 2 entry))
9593          (prev 1)
9594          (unread (sort (copy-sequence unread) '<))
9595          read)
9596     (if (or (not info) (not active))
9597         ;; There is no info on this group if it was, in fact,
9598         ;; killed.  Gnus stores no information on killed groups, so
9599         ;; there's nothing to be done.
9600         ;; One could store the information somewhere temporarily,
9601         ;; perhaps...  Hmmm...
9602         ()
9603       ;; Remove any negative articles numbers.
9604       (while (and unread (< (car unread) 0))
9605         (setq unread (cdr unread)))
9606       ;; Remove any expired article numbers
9607       (while (and unread (< (car unread) (car active)))
9608         (setq unread (cdr unread)))
9609       ;; Compute the ranges of read articles by looking at the list of
9610       ;; unread articles.
9611       (while unread
9612         (when (/= (car unread) prev)
9613           (push (if (= prev (1- (car unread))) prev
9614                   (cons prev (1- (car unread))))
9615                 read))
9616         (setq prev (1+ (car unread)))
9617         (setq unread (cdr unread)))
9618       (when (<= prev (cdr active))
9619         (push (cons prev (cdr active)) read))
9620       (setq read (if (> (length read) 1) (nreverse read) read))
9621       (if compute
9622           read
9623         (save-excursion
9624           (set-buffer gnus-group-buffer)
9625           (gnus-undo-register
9626             `(progn
9627                (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
9628                (gnus-info-set-read ',info ',(gnus-info-read info))
9629                (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
9630                (gnus-group-update-group ,group t))))
9631         ;; Propagate the read marks to the backend.
9632         (if (gnus-check-backend-function 'request-set-mark group)
9633             (let ((del (gnus-remove-from-range (gnus-info-read info) read))
9634                   (add (gnus-remove-from-range read (gnus-info-read info))))
9635               (when (or add del)
9636                 (unless (gnus-check-group group)
9637                   (error "Can't open server for %s" group))
9638                 (gnus-request-set-mark
9639                  group (delq nil (list (if add (list add 'add '(read)))
9640                                        (if del (list del 'del '(read)))))))))
9641         ;; Enter this list into the group info.
9642         (gnus-info-set-read info read)
9643         ;; Set the number of unread articles in gnus-newsrc-hashtb.
9644         (gnus-get-unread-articles-in-group info (gnus-active group))
9645         t))))
9646
9647 (defun gnus-offer-save-summaries ()
9648   "Offer to save all active summary buffers."
9649   (save-excursion
9650     (let ((buflist (buffer-list))
9651           buffers bufname)
9652       ;; Go through all buffers and find all summaries.
9653       (while buflist
9654         (and (setq bufname (buffer-name (car buflist)))
9655              (string-match "Summary" bufname)
9656              (save-excursion
9657                (set-buffer bufname)
9658                ;; We check that this is, indeed, a summary buffer.
9659                (and (eq major-mode 'gnus-summary-mode)
9660                     ;; Also make sure this isn't bogus.
9661                     gnus-newsgroup-prepared
9662                     ;; Also make sure that this isn't a dead summary buffer.
9663                     (not gnus-dead-summary-mode)))
9664              (push bufname buffers))
9665         (setq buflist (cdr buflist)))
9666       ;; Go through all these summary buffers and offer to save them.
9667       (when buffers
9668         (map-y-or-n-p
9669          "Update summary buffer %s? "
9670          (lambda (buf)
9671            (switch-to-buffer buf)
9672            (gnus-summary-exit))
9673          buffers)))))
9674
9675
9676 ;;; @ for mime-partial
9677 ;;;
9678
9679 (defun gnus-request-partial-message ()
9680   (save-excursion
9681     (let ((number (gnus-summary-article-number))
9682           (group gnus-newsgroup-name)
9683           (mother gnus-article-buffer))
9684       (set-buffer (get-buffer-create " *Partial Article*"))
9685       (erase-buffer)
9686       (setq mime-preview-buffer mother)
9687       (gnus-request-article-this-buffer number group)
9688       (mime-parse-buffer)
9689       )))
9690
9691 (autoload 'mime-combine-message/partial-pieces-automatically
9692   "mime-partial"
9693   "Internal method to combine message/partial messages automatically.")
9694
9695 (mime-add-condition
9696  'action '((type . message)(subtype . partial)
9697            (major-mode . gnus-original-article-mode)
9698            (method . mime-combine-message/partial-pieces-automatically)
9699            (summary-buffer-exp . gnus-summary-buffer)
9700            (request-partial-message-method . gnus-request-partial-message)
9701            ))
9702
9703
9704 ;;; @ for message/rfc822
9705 ;;;
9706
9707 (defun gnus-mime-extract-message/rfc822 (entity situation)
9708   (let (group article num cwin swin cur)
9709     (with-temp-buffer
9710       (mime-insert-entity-content entity)
9711       (setq group (or (cdr (assq 'group situation))
9712                       (completing-read "Group: "
9713                                        gnus-active-hashtb
9714                                        nil
9715                                        (gnus-read-active-file-p)
9716                                        gnus-newsgroup-name))
9717             article (gnus-request-accept-article group)))
9718     (when (and (consp article)
9719                (numberp (setq article (cdr article))))
9720       (setq num (1+ (or (cdr (assq 'number situation)) 0))
9721             cwin (get-buffer-window (current-buffer) t))
9722       (save-window-excursion
9723         (if (setq swin (get-buffer-window gnus-summary-buffer t))
9724             (select-window swin)
9725           (set-buffer gnus-summary-buffer))
9726         (setq cur gnus-current-article)
9727         (forward-line num)
9728         (let (gnus-show-threads)
9729           (gnus-summary-goto-subject article t))
9730         (gnus-summary-clear-mark-forward 1)
9731         (gnus-summary-goto-subject cur))
9732       (when (and cwin (window-frame cwin))
9733         (select-frame (window-frame cwin)))
9734       (when (boundp 'mime-acting-situation-to-override)
9735         (set-alist 'mime-acting-situation-to-override
9736                    'group
9737                    group)
9738         (set-alist 'mime-acting-situation-to-override
9739                    'after-method
9740                    `(progn
9741                       (save-current-buffer
9742                         (set-buffer gnus-group-buffer)
9743                         (gnus-activate-group ,group))
9744                       (gnus-summary-goto-article ,cur
9745                                                  gnus-show-all-headers)))
9746         (set-alist 'mime-acting-situation-to-override
9747                    'number num)))))
9748
9749 (mime-add-condition
9750  'action '((type . message)(subtype . rfc822)
9751            (major-mode . gnus-original-article-mode)
9752            (method . gnus-mime-extract-message/rfc822)
9753            (mode . "extract")
9754            ))
9755
9756 (mime-add-condition
9757  'action '((type . message)(subtype . news)
9758            (major-mode . gnus-original-article-mode)
9759            (method . gnus-mime-extract-message/rfc822)
9760            (mode . "extract")
9761            ))
9762
9763 (defun gnus-mime-extract-multipart (entity situation)
9764   (let ((children (mime-entity-children entity))
9765         mime-acting-situation-to-override
9766         f)
9767     (while children
9768       (mime-play-entity (car children)
9769                         (cons (assq 'mode situation)
9770                               mime-acting-situation-to-override))
9771       (setq children (cdr children)))
9772     (if (setq f (cdr (assq 'after-method
9773                            mime-acting-situation-to-override)))
9774         (eval f)
9775       )))
9776
9777 (mime-add-condition
9778  'action '((type . multipart)
9779            (method . gnus-mime-extract-multipart)
9780            (mode . "extract")
9781            )
9782  'with-default)
9783
9784
9785 ;;; @ end
9786 ;;;
9787
9788 (defun gnus-summary-setup-default-charset ()
9789   "Setup newsgroup default charset."
9790   (if (equal gnus-newsgroup-name "nndraft:drafts")
9791       (setq gnus-newsgroup-charset nil)
9792     (let* ((name (and gnus-newsgroup-name
9793                       (gnus-group-real-name gnus-newsgroup-name)))
9794            (ignored-charsets
9795             (or gnus-newsgroup-ephemeral-ignored-charsets
9796                 (append
9797                  (and gnus-newsgroup-name
9798                       (or (gnus-group-find-parameter gnus-newsgroup-name
9799                                                      'ignored-charsets t)
9800                           (let ((alist gnus-group-ignored-charsets-alist)
9801                                 elem (charsets nil))
9802                             (while (setq elem (pop alist))
9803                               (when (and name
9804                                          (string-match (car elem) name))
9805                                 (setq alist nil
9806                                       charsets (cdr elem))))
9807                             charsets)))
9808                  gnus-newsgroup-ignored-charsets))))
9809       (setq gnus-newsgroup-charset
9810             (or gnus-newsgroup-ephemeral-charset
9811                 (and gnus-newsgroup-name
9812                      (or (gnus-group-find-parameter gnus-newsgroup-name 'charset)
9813                          (let ((alist gnus-group-charset-alist)
9814                                elem charset)
9815                            (while (setq elem (pop alist))
9816                              (when (and name
9817                                         (string-match (car elem) name))
9818                                (setq alist nil
9819                                      charset (cadr elem))))
9820                            charset)))
9821                 gnus-default-charset))
9822       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
9823            ignored-charsets))))
9824
9825 ;;;
9826 ;;; Mime Commands
9827 ;;;
9828
9829 (defun gnus-summary-display-buttonized (&optional show-all-parts)
9830   "Display the current article buffer fully MIME-buttonized.
9831 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
9832 treated as multipart/mixed."
9833   (interactive "P")
9834   (require 'gnus-art)
9835   (let ((gnus-unbuttonized-mime-types nil)
9836         (gnus-mime-display-multipart-as-mixed show-all-parts))
9837     (gnus-summary-show-article)))
9838
9839 (defun gnus-summary-repair-multipart (article)
9840   "Add a Content-Type header to a multipart article without one."
9841   (interactive (list (gnus-summary-article-number)))
9842   (gnus-with-article article
9843     (message-narrow-to-head)
9844     (goto-char (point-max))
9845     (widen)
9846     (when (search-forward "\n--" nil t)
9847       (let ((separator (buffer-substring (point) (gnus-point-at-eol))))
9848         (message-narrow-to-head)
9849         (message-remove-header "Mime-Version")
9850         (message-remove-header "Content-Type")
9851         (goto-char (point-max))
9852         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
9853                         separator))
9854         (insert "Mime-Version: 1.0\n")
9855         (widen))))
9856   (let (gnus-mark-article-hook)
9857     (gnus-summary-select-article t t nil article)))
9858
9859 (defun gnus-summary-toggle-display-buttonized ()
9860   "Toggle the buttonizing of the article buffer."
9861   (interactive)
9862   (require 'gnus-art)
9863   (if (setq gnus-inhibit-mime-unbuttonizing
9864             (not gnus-inhibit-mime-unbuttonizing))
9865       (let ((gnus-unbuttonized-mime-types nil))
9866         (gnus-summary-show-article))
9867     (gnus-summary-show-article)))
9868
9869 ;;;
9870 ;;; Intelli-mouse commmands
9871 ;;;
9872
9873 (defun gnus-wheel-summary-scroll (event)
9874   (interactive "e")
9875   (let ((amount (if (memq 'shift (event-modifiers event))
9876                     (car gnus-wheel-scroll-amount)
9877                   (cdr gnus-wheel-scroll-amount)))
9878         (direction (- (* (static-if (featurep 'xemacs)
9879                              (event-button event)
9880                            (cond ((eq 'mouse-4 (event-basic-type event))
9881                                   4)
9882                                  ((eq 'mouse-5 (event-basic-type event))
9883                                   5)))
9884                          2) 9))
9885         edge)
9886     (gnus-summary-scroll-up (* amount direction))
9887     (when (gnus-eval-in-buffer-window gnus-article-buffer
9888             (save-restriction
9889               (widen)
9890               (and (if (< 0 direction)
9891                        (gnus-article-next-page 0)
9892                      (gnus-article-prev-page 0)
9893                      (bobp))
9894                    (if (setq edge (get-text-property
9895                                    (point-min) 'gnus-wheel-edge))
9896                        (setq edge (* edge direction))
9897                      (setq edge -1))
9898                    (or (plusp edge)
9899                        (let ((buffer-read-only nil)
9900                              (inhibit-read-only t))
9901                          (put-text-property (point-min) (point-max)
9902                                             'gnus-wheel-edge direction)
9903                          nil))
9904                    (or (> edge gnus-wheel-edge-resistance)
9905                        (let ((buffer-read-only nil)
9906                              (inhibit-read-only t))
9907                          (put-text-property (point-min) (point-max)
9908                                             'gnus-wheel-edge
9909                                             (* (1+ edge) direction))
9910                          nil))
9911                    (eq last-command 'gnus-wheel-summary-scroll))))
9912       (gnus-summary-next-article nil nil (minusp direction)))))
9913
9914 (defun gnus-wheel-install ()
9915   "Enable mouse wheel support on summary window."
9916   (when gnus-use-wheel
9917     (let ((keys
9918            '([(mouse-4)] [(shift mouse-4)] [(mouse-5)] [(shift mouse-5)])))
9919       (dolist (key keys)
9920         (define-key gnus-summary-mode-map key
9921           'gnus-wheel-summary-scroll)))))
9922
9923 (add-hook 'gnus-summary-mode-hook 'gnus-wheel-install)
9924
9925 ;;;
9926 ;;; Traditional PGP commmands
9927 ;;;
9928
9929 (defun gnus-summary-decrypt-article (&optional force)
9930   "Decrypt the current article in traditional PGP way.
9931 This will have permanent effect only in mail groups.
9932 If FORCE is non-nil, allow editing of articles even in read-only
9933 groups."
9934   (interactive "P")
9935   (gnus-summary-select-article t)
9936   (gnus-eval-in-buffer-window gnus-article-buffer
9937     (save-excursion
9938       (save-restriction
9939         (widen)
9940         (goto-char (point-min))
9941         (unless (re-search-forward (car pgg-armor-header-lines) nil t)
9942           (error "Not a traditional PGP message!"))
9943         (let ((armor-start (match-beginning 0)))
9944           (if (and (pgg-decrypt-region armor-start (point-max))
9945                    (or force (not (gnus-group-read-only-p))))
9946               (let ((inhibit-read-only t)
9947                     buffer-read-only)
9948                 (delete-region armor-start
9949                                (progn
9950                                  (re-search-forward "^-+END PGP" nil t)
9951                                  (beginning-of-line 2)
9952                                  (point)))
9953                 (insert-buffer-substring pgg-output-buffer))))))))
9954
9955 (defun gnus-summary-verify-article ()
9956   "Verify the current article in traditional PGP way."
9957   (interactive)
9958   (save-excursion
9959     (set-buffer gnus-original-article-buffer)
9960     (goto-char (point-min))
9961     (unless (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE" nil t)
9962       (error "Not a traditional PGP message!"))
9963     (re-search-forward "^-+END PGP" nil t)
9964     (beginning-of-line 2)
9965     (call-interactively (function pgg-verify-region))))
9966
9967 ;;;
9968 ;;; Generic summary marking commands
9969 ;;;
9970
9971 (defvar gnus-summary-marking-alist
9972   '((read gnus-del-mark "d")
9973     (unread gnus-unread-mark "u")
9974     (ticked gnus-ticked-mark "!")
9975     (dormant gnus-dormant-mark "?")
9976     (expirable gnus-expirable-mark "e"))
9977   "An alist of names/marks/keystrokes.")
9978
9979 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
9980 (defvar gnus-summary-mark-map)
9981
9982 (defun gnus-summary-make-all-marking-commands ()
9983   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
9984   (dolist (elem gnus-summary-marking-alist)
9985     (apply 'gnus-summary-make-marking-command elem)))
9986
9987 (defun gnus-summary-make-marking-command (name mark keystroke)
9988   (let ((map (make-sparse-keymap)))
9989     (define-key gnus-summary-generic-mark-map keystroke map)
9990     (dolist (lway `((next "next" next nil "n")
9991                     (next-unread "next unread" next t "N")
9992                     (prev "previous" prev nil "p")
9993                     (prev-unread "previous unread" prev t "P")
9994                     (nomove "" nil nil ,keystroke)))
9995       (let ((func (gnus-summary-make-marking-command-1
9996                    mark (car lway) lway name)))
9997         (setq func (eval func))
9998         (define-key map (nth 4 lway) func)))))
9999
10000 (defun gnus-summary-make-marking-command-1 (mark way lway name)
10001   `(defun ,(intern
10002             (format "gnus-summary-put-mark-as-%s%s"
10003                     name (if (eq way 'nomove)
10004                              ""
10005                            (concat "-" (symbol-name way)))))
10006      (n)
10007      ,(format
10008        "Mark the current article as %s%s.
10009 If N, the prefix, then repeat N times.
10010 If N is negative, move in reverse order.
10011 The difference between N and the actual number of articles marked is
10012 returned."
10013        name (car (cdr lway)))
10014      (interactive "p")
10015      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
10016
10017 (defun gnus-summary-generic-mark (n mark move unread)
10018   "Mark N articles with MARK."
10019   (unless (eq major-mode 'gnus-summary-mode)
10020     (error "This command can only be used in the summary buffer"))
10021   (gnus-summary-show-thread)
10022   (let ((nummove
10023          (cond
10024           ((eq move 'next) 1)
10025           ((eq move 'prev) -1)
10026           (t 0))))
10027     (if (zerop nummove)
10028         (setq n 1)
10029       (when (< n 0)
10030         (setq n (abs n)
10031               nummove (* -1 nummove))))
10032     (while (and (> n 0)
10033                 (gnus-summary-mark-article nil mark)
10034                 (zerop (gnus-summary-next-subject nummove unread t)))
10035       (setq n (1- n)))
10036     (when (/= 0 n)
10037       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
10038     (gnus-summary-recenter)
10039     (gnus-summary-position-point)
10040     (gnus-set-mode-line 'summary)
10041     n))
10042
10043 (gnus-summary-make-all-marking-commands)
10044
10045 (gnus-ems-redefine)
10046
10047 (provide 'gnus-sum)
10048
10049 (run-hooks 'gnus-sum-load-hook)
10050
10051 ;;; gnus-sum.el ends here