Synch with Gnus.
[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   (save-excursion
2446     (let (point buffer-read-only)
2447       (while (setq point (pop config))
2448         (when (and (< point (point-max))
2449                    (goto-char point)
2450                    (eq (char-after) ?\n))
2451           (subst-char-in-region point (1+ point) ?\n ?\r))))))
2452
2453 ;; Various summary mode internalish functions.
2454
2455 (defun gnus-mouse-pick-article (e)
2456   (interactive "e")
2457   (mouse-set-point e)
2458   (gnus-summary-next-page nil t))
2459
2460 (defun gnus-summary-set-display-table ()
2461   "Change the display table.
2462 Odd characters have a tendency to mess
2463 up nicely formatted displays - we make all possible glyphs
2464 display only a single character."
2465
2466   ;; We start from the standard display table, if any.
2467   (let ((table (or (copy-sequence standard-display-table)
2468                    (make-display-table)))
2469         (i 32))
2470     ;; Nix out all the control chars...
2471     (while (>= (setq i (1- i)) 0)
2472       (aset table i [??]))
2473     ;; ... but not newline and cr, of course.  (cr is necessary for the
2474     ;; selective display).
2475     (aset table ?\n nil)
2476     (aset table ?\r nil)
2477     ;; We keep TAB as well.
2478     (aset table ?\t nil)
2479     ;; We nix out any glyphs over 126 that are not set already.
2480     (let ((i 256))
2481       (while (>= (setq i (1- i)) 127)
2482         ;; Only modify if the entry is nil.
2483         (unless (aref table i)
2484           (aset table i [??]))))
2485     (setq buffer-display-table table)))
2486
2487 (defun gnus-summary-setup-buffer (group)
2488   "Initialize summary buffer."
2489   (let ((buffer (concat "*Summary " group "*")))
2490     (if (get-buffer buffer)
2491         (progn
2492           (set-buffer buffer)
2493           (setq gnus-summary-buffer (current-buffer))
2494           (not gnus-newsgroup-prepared))
2495       ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
2496       (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
2497       (gnus-summary-mode group)
2498       (when gnus-carpal
2499         (gnus-carpal-setup-buffer 'summary))
2500       (unless gnus-single-article-buffer
2501         (make-local-variable 'gnus-article-buffer)
2502         (make-local-variable 'gnus-article-current)
2503         (make-local-variable 'gnus-original-article-buffer))
2504       (setq gnus-newsgroup-name group)
2505       t)))
2506
2507 (defun gnus-set-global-variables ()
2508   "Set the global equivalents of the buffer-local variables.
2509 They are set to the latest values they had.  These reflect the summary
2510 buffer that was in action when the last article was fetched."
2511   (when (eq major-mode 'gnus-summary-mode)
2512     (setq gnus-summary-buffer (current-buffer))
2513     (let ((name gnus-newsgroup-name)
2514           (marked gnus-newsgroup-marked)
2515           (unread gnus-newsgroup-unreads)
2516           (headers gnus-current-headers)
2517           (data gnus-newsgroup-data)
2518           (summary gnus-summary-buffer)
2519           (article-buffer gnus-article-buffer)
2520           (original gnus-original-article-buffer)
2521           (gac gnus-article-current)
2522           (reffed gnus-reffed-article-number)
2523           (score-file gnus-current-score-file)
2524           (default-charset gnus-newsgroup-charset))
2525       (save-excursion
2526         (set-buffer gnus-group-buffer)
2527         (setq gnus-newsgroup-name name
2528               gnus-newsgroup-marked marked
2529               gnus-newsgroup-unreads unread
2530               gnus-current-headers headers
2531               gnus-newsgroup-data data
2532               gnus-article-current gac
2533               gnus-summary-buffer summary
2534               gnus-article-buffer article-buffer
2535               gnus-original-article-buffer original
2536               gnus-reffed-article-number reffed
2537               gnus-current-score-file score-file
2538               gnus-newsgroup-charset default-charset)
2539         ;; The article buffer also has local variables.
2540         (when (gnus-buffer-live-p gnus-article-buffer)
2541           (set-buffer gnus-article-buffer)
2542           (setq gnus-summary-buffer summary))))))
2543
2544 (defun gnus-summary-article-unread-p (article)
2545   "Say whether ARTICLE is unread or not."
2546   (memq article gnus-newsgroup-unreads))
2547
2548 (defun gnus-summary-first-article-p (&optional article)
2549   "Return whether ARTICLE is the first article in the buffer."
2550   (if (not (setq article (or article (gnus-summary-article-number))))
2551       nil
2552     (eq article (caar gnus-newsgroup-data))))
2553
2554 (defun gnus-summary-last-article-p (&optional article)
2555   "Return whether ARTICLE is the last article in the buffer."
2556   (if (not (setq article (or article (gnus-summary-article-number))))
2557       ;; All non-existent numbers are the last article.  :-)
2558       t
2559     (not (cdr (gnus-data-find-list article)))))
2560
2561 (defun gnus-make-thread-indent-array ()
2562   (let ((n 200))
2563     (unless (and gnus-thread-indent-array
2564                  (= gnus-thread-indent-level gnus-thread-indent-array-level))
2565       (setq gnus-thread-indent-array (make-vector 201 "")
2566             gnus-thread-indent-array-level gnus-thread-indent-level)
2567       (while (>= n 0)
2568         (aset gnus-thread-indent-array n
2569               (make-string (* n gnus-thread-indent-level) ? ))
2570         (setq n (1- n))))))
2571
2572 (defun gnus-update-summary-mark-positions ()
2573   "Compute where the summary marks are to go."
2574   (save-excursion
2575     (when (gnus-buffer-exists-p gnus-summary-buffer)
2576       (set-buffer gnus-summary-buffer))
2577     (let ((gnus-replied-mark 129)
2578           (gnus-score-below-mark 130)
2579           (gnus-score-over-mark 130)
2580           (gnus-download-mark 131)
2581           (spec gnus-summary-line-format-spec)
2582           gnus-visual pos)
2583       (save-excursion
2584         (gnus-set-work-buffer)
2585         (let ((gnus-summary-line-format-spec spec)
2586               (gnus-newsgroup-downloadable '((0 . t))))
2587           (gnus-summary-insert-line
2588            (make-full-mail-header 0 "" "nobody" "" "" "" 0 0 "" nil)
2589            0 nil 128 t nil "" nil 1)
2590           (goto-char (point-min))
2591           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
2592                                              (- (point) 2)))))
2593           (goto-char (point-min))
2594           (push (cons 'replied (and (search-forward "\201" nil t)
2595                                     (- (point) 2)))
2596                 pos)
2597           (goto-char (point-min))
2598           (push (cons 'score (and (search-forward "\202" nil t) (- (point) 2)))
2599                 pos)
2600           (goto-char (point-min))
2601           (push (cons 'download
2602                       (and (search-forward "\203" nil t) (- (point) 2)))
2603                 pos)))
2604       (setq gnus-summary-mark-positions pos))))
2605
2606 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
2607   "Insert a dummy root in the summary buffer."
2608   (beginning-of-line)
2609   (gnus-add-text-properties
2610    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
2611    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
2612
2613 (defun gnus-summary-from-or-to-or-newsgroups (header)
2614   (let ((to (cdr (assq 'To (mail-header-extra header))))
2615         (newsgroups (cdr (assq 'Newsgroups (mail-header-extra header))))
2616         (default-mime-charset (with-current-buffer gnus-summary-buffer
2617                                 default-mime-charset)))
2618     (cond
2619      ((and to
2620            gnus-ignored-from-addresses
2621            (string-match gnus-ignored-from-addresses
2622                          (mail-header-from header)))
2623       (concat "-> "
2624               (or (car (funcall gnus-extract-address-components
2625                                 (funcall
2626                                  gnus-decode-encoded-word-function to)))
2627                   (funcall gnus-decode-encoded-word-function to))))
2628      ((and newsgroups
2629            gnus-ignored-from-addresses
2630            (string-match gnus-ignored-from-addresses
2631                          (mail-header-from header)))
2632       (concat "=> " newsgroups))
2633      (t
2634       (or (car (funcall gnus-extract-address-components
2635                         (mail-header-from header)))
2636           (mail-header-from header))))))
2637
2638 (defun gnus-summary-insert-line (gnus-tmp-header
2639                                  gnus-tmp-level gnus-tmp-current
2640                                  gnus-tmp-unread gnus-tmp-replied
2641                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
2642                                  &optional gnus-tmp-dummy gnus-tmp-score
2643                                  gnus-tmp-process)
2644   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
2645          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
2646          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
2647          (gnus-tmp-score-char
2648           (if (or (null gnus-summary-default-score)
2649                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
2650                       gnus-summary-zcore-fuzz))
2651               ?  ;Whitespace
2652             (if (< gnus-tmp-score gnus-summary-default-score)
2653                 gnus-score-below-mark gnus-score-over-mark)))
2654          (gnus-tmp-replied
2655           (cond (gnus-tmp-process gnus-process-mark)
2656                 ((memq gnus-tmp-current gnus-newsgroup-cached)
2657                  gnus-cached-mark)
2658                 (gnus-tmp-replied gnus-replied-mark)
2659                 ((memq gnus-tmp-current gnus-newsgroup-saved)
2660                  gnus-saved-mark)
2661                 (t gnus-unread-mark)))
2662          (gnus-tmp-from (mail-header-from gnus-tmp-header))
2663          (gnus-tmp-name
2664           (cond
2665            ((string-match "<[^>]+> *$" gnus-tmp-from)
2666             (let ((beg (match-beginning 0)))
2667               (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from)
2668                        (substring gnus-tmp-from (1+ (match-beginning 0))
2669                                   (1- (match-end 0))))
2670                   (substring gnus-tmp-from 0 beg))))
2671            ((string-match "(.+)" gnus-tmp-from)
2672             (substring gnus-tmp-from
2673                        (1+ (match-beginning 0)) (1- (match-end 0))))
2674            (t gnus-tmp-from)))
2675          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
2676          (gnus-tmp-number (mail-header-number gnus-tmp-header))
2677          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
2678          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
2679          (buffer-read-only nil))
2680     (when (string= gnus-tmp-name "")
2681       (setq gnus-tmp-name gnus-tmp-from))
2682     (unless (numberp gnus-tmp-lines)
2683       (setq gnus-tmp-lines 0))
2684     (gnus-put-text-property-excluding-characters-with-faces
2685      (point)
2686      (progn (eval gnus-summary-line-format-spec) (point))
2687      'gnus-number gnus-tmp-number)
2688     (when (gnus-visual-p 'summary-highlight 'highlight)
2689       (forward-line -1)
2690       (gnus-run-hooks 'gnus-summary-update-hook)
2691       (forward-line 1))))
2692
2693 (defun gnus-summary-update-line (&optional dont-update)
2694   "Update summary line after change."
2695   (when (and gnus-summary-default-score
2696              (not gnus-summary-inhibit-highlight))
2697     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
2698            (article (gnus-summary-article-number))
2699            (score (gnus-summary-article-score article)))
2700       (unless dont-update
2701         (if (and gnus-summary-mark-below
2702                  (< (gnus-summary-article-score)
2703                     gnus-summary-mark-below))
2704             ;; This article has a low score, so we mark it as read.
2705             (when (memq article gnus-newsgroup-unreads)
2706               (gnus-summary-mark-article-as-read gnus-low-score-mark))
2707           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
2708             ;; This article was previously marked as read on account
2709             ;; of a low score, but now it has risen, so we mark it as
2710             ;; unread.
2711             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
2712         (gnus-summary-update-mark
2713          (if (or (null gnus-summary-default-score)
2714                  (<= (abs (- score gnus-summary-default-score))
2715                      gnus-summary-zcore-fuzz))
2716              ?  ;Whitespace
2717            (if (< score gnus-summary-default-score)
2718                gnus-score-below-mark gnus-score-over-mark))
2719          'score))
2720       ;; Do visual highlighting.
2721       (when (gnus-visual-p 'summary-highlight 'highlight)
2722         (gnus-run-hooks 'gnus-summary-update-hook)))))
2723
2724 (defvar gnus-tmp-new-adopts nil)
2725
2726 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
2727   "Return the number of articles in THREAD.
2728 This may be 0 in some cases -- if none of the articles in
2729 the thread are to be displayed."
2730   (let* ((number
2731           ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
2732           (cond
2733            ((not (listp thread))
2734             1)
2735            ((and (consp thread) (cdr thread))
2736             (apply
2737              '+ 1 (mapcar
2738                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
2739            ((null thread)
2740             1)
2741            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
2742             1)
2743            (t 0))))
2744     (when (and level (zerop level) gnus-tmp-new-adopts)
2745       (incf number
2746             (apply '+ (mapcar
2747                        'gnus-summary-number-of-articles-in-thread
2748                        gnus-tmp-new-adopts))))
2749     (if char
2750         (if (> number 1) gnus-not-empty-thread-mark
2751           gnus-empty-thread-mark)
2752       number)))
2753
2754 (defun gnus-summary-set-local-parameters (group)
2755   "Go through the local params of GROUP and set all variable specs in that list."
2756   (let ((params (gnus-group-find-parameter group))
2757         elem)
2758     (while params
2759       (setq elem (car params)
2760             params (cdr params))
2761       (and (consp elem)                 ; Has to be a cons.
2762            (consp (cdr elem))           ; The cdr has to be a list.
2763            (symbolp (car elem))         ; Has to be a symbol in there.
2764            (not (memq (car elem) '(quit-config))) ; Ignore quit-config.
2765            (ignore-errors               ; So we set it.
2766              (make-local-variable (car elem))
2767              (set (car elem) (eval (nth 1 elem))))))))
2768
2769 (defun gnus-summary-read-group (group &optional show-all no-article
2770                                       kill-buffer no-display backward
2771                                       select-articles)
2772   "Start reading news in newsgroup GROUP.
2773 If SHOW-ALL is non-nil, already read articles are also listed.
2774 If NO-ARTICLE is non-nil, no article is selected initially.
2775 If NO-DISPLAY, don't generate a summary buffer."
2776   (let (result)
2777     (while (and group
2778                 (null (setq result
2779                             (let ((gnus-auto-select-next nil))
2780                               (or (gnus-summary-read-group-1
2781                                    group show-all no-article
2782                                    kill-buffer no-display
2783                                    select-articles)
2784                                   (setq show-all nil
2785                                         select-articles nil)))))
2786                 (eq gnus-auto-select-next 'quietly))
2787       (set-buffer gnus-group-buffer)
2788       ;; The entry function called above goes to the next
2789       ;; group automatically, so we go two groups back
2790       ;; if we are searching for the previous group.
2791       (when backward
2792         (gnus-group-prev-unread-group 2))
2793       (if (not (equal group (gnus-group-group-name)))
2794           (setq group (gnus-group-group-name))
2795         (setq group nil)))
2796     result))
2797
2798 (defun gnus-summary-jump-to-other-group (group &optional show-all)
2799   "Directly jump to the other GROUP from summary buffer.
2800 If SHOW-ALL is non-nil, already read articles are also listed."
2801   (interactive
2802    (if (eq gnus-summary-buffer (current-buffer))
2803        (list (completing-read
2804               "Group: " gnus-active-hashtb nil t
2805               (when (and gnus-newsgroup-name
2806                          (string-match "[.:][^.:]+$" gnus-newsgroup-name))
2807                 (substring gnus-newsgroup-name 0 (1+ (match-beginning 0))))
2808               'gnus-group-history)
2809              current-prefix-arg)
2810      (error "%s must be invoked from a gnus summary buffer." this-command)))
2811   (unless (or (zerop (length group))
2812               (and gnus-newsgroup-name
2813                    (string-equal gnus-newsgroup-name group)))
2814     (gnus-summary-exit)
2815     (gnus-summary-read-group group show-all
2816                              gnus-dont-select-after-jump-to-other-group)))
2817
2818 (defun gnus-summary-read-group-1 (group show-all no-article
2819                                         kill-buffer no-display
2820                                         &optional select-articles)
2821   ;; Killed foreign groups can't be entered.
2822   (when (and (not (gnus-group-native-p group))
2823              (not (gnus-gethash group gnus-newsrc-hashtb)))
2824     (error "Dead non-native groups can't be entered"))
2825   (gnus-message 5 "Retrieving newsgroup: %s..." group)
2826   (let* ((new-group (gnus-summary-setup-buffer group))
2827          (quit-config (gnus-group-quit-config group))
2828          (did-select (and new-group (gnus-select-newsgroup
2829                                      group show-all select-articles))))
2830     (cond
2831      ;; This summary buffer exists already, so we just select it.
2832      ((not new-group)
2833       (gnus-set-global-variables)
2834       (when kill-buffer
2835         (gnus-kill-or-deaden-summary kill-buffer))
2836       (gnus-configure-windows 'summary 'force)
2837       (gnus-set-mode-line 'summary)
2838       (gnus-summary-position-point)
2839       (message "")
2840       t)
2841      ;; We couldn't select this group.
2842      ((null did-select)
2843       (when (and (eq major-mode 'gnus-summary-mode)
2844                  (not (equal (current-buffer) kill-buffer)))
2845         (kill-buffer (current-buffer))
2846         (if (not quit-config)
2847             (progn
2848               ;; Update the info -- marks might need to be removed,
2849               ;; for instance.
2850               (gnus-summary-update-info)
2851               (set-buffer gnus-group-buffer)
2852               (gnus-group-jump-to-group group)
2853               (gnus-group-next-unread-group 1))
2854           (gnus-handle-ephemeral-exit quit-config)))
2855       (gnus-message 3 "Can't select group")
2856       nil)
2857      ;; The user did a `C-g' while prompting for number of articles,
2858      ;; so we exit this group.
2859      ((eq did-select 'quit)
2860       (and (eq major-mode 'gnus-summary-mode)
2861            (not (equal (current-buffer) kill-buffer))
2862            (kill-buffer (current-buffer)))
2863       (when kill-buffer
2864         (gnus-kill-or-deaden-summary kill-buffer))
2865       (if (not quit-config)
2866           (progn
2867             (set-buffer gnus-group-buffer)
2868             (gnus-group-jump-to-group group)
2869             (gnus-group-next-unread-group 1)
2870             (gnus-configure-windows 'group 'force))
2871         (gnus-handle-ephemeral-exit quit-config))
2872       ;; Finally signal the quit.
2873       (signal 'quit nil))
2874      ;; The group was successfully selected.
2875      (t
2876       (gnus-set-global-variables)
2877       ;; Save the active value in effect when the group was entered.
2878       (setq gnus-newsgroup-active
2879             (gnus-copy-sequence
2880              (gnus-active gnus-newsgroup-name)))
2881       ;; You can change the summary buffer in some way with this hook.
2882       (gnus-run-hooks 'gnus-select-group-hook)
2883       ;; Set any local variables in the group parameters.
2884       (gnus-summary-set-local-parameters gnus-newsgroup-name)
2885       (gnus-update-format-specifications
2886        nil 'summary 'summary-mode 'summary-dummy)
2887       (gnus-update-summary-mark-positions)
2888       ;; Do score processing.
2889       (when gnus-use-scoring
2890         (gnus-possibly-score-headers))
2891       ;; Check whether to fill in the gaps in the threads.
2892       (when gnus-build-sparse-threads
2893         (gnus-build-sparse-threads))
2894       ;; Find the initial limit.
2895       (if gnus-show-threads
2896           (if show-all
2897               (let ((gnus-newsgroup-dormant nil))
2898                 (gnus-summary-initial-limit show-all))
2899             (gnus-summary-initial-limit show-all))
2900         ;; When untreaded, all articles are always shown.
2901         (setq gnus-newsgroup-limit
2902               (mapcar
2903                (lambda (header) (mail-header-number header))
2904                gnus-newsgroup-headers)))
2905       ;; Generate the summary buffer.
2906       (unless no-display
2907         (gnus-summary-prepare))
2908       (when gnus-use-trees
2909         (gnus-tree-open group)
2910         (setq gnus-summary-highlight-line-function
2911               'gnus-tree-highlight-article))
2912       ;; If the summary buffer is empty, but there are some low-scored
2913       ;; articles or some excluded dormants, we include these in the
2914       ;; buffer.
2915       (when (and (zerop (buffer-size))
2916                  (not no-display))
2917         (cond (gnus-newsgroup-dormant
2918                (gnus-summary-limit-include-dormant))
2919               ((and gnus-newsgroup-scored show-all)
2920                (gnus-summary-limit-include-expunged t))))
2921       ;; Function `gnus-apply-kill-file' must be called in this hook.
2922       (gnus-run-hooks 'gnus-apply-kill-hook)
2923       (if (and (zerop (buffer-size))
2924                (not no-display))
2925           (progn
2926             ;; This newsgroup is empty.
2927             (gnus-summary-catchup-and-exit nil t)
2928             (gnus-message 6 "No unread news")
2929             (when kill-buffer
2930               (gnus-kill-or-deaden-summary kill-buffer))
2931             ;; Return nil from this function.
2932             nil)
2933         ;; Hide conversation thread subtrees.  We cannot do this in
2934         ;; gnus-summary-prepare-hook since kill processing may not
2935         ;; work with hidden articles.
2936         (and gnus-show-threads
2937              gnus-thread-hide-subtree
2938              (gnus-summary-hide-all-threads))
2939         (when kill-buffer
2940           (gnus-kill-or-deaden-summary kill-buffer))
2941         ;; Show first unread article if requested.
2942         (if (and (not no-article)
2943                  (not no-display)
2944                  gnus-newsgroup-unreads
2945                  gnus-auto-select-first)
2946             (progn
2947               (gnus-configure-windows 'summary)
2948               (cond
2949                ((eq gnus-auto-select-first 'best)
2950                 (gnus-summary-best-unread-article))
2951                ((eq gnus-auto-select-first t)
2952                 (gnus-summary-first-unread-article))
2953                ((gnus-functionp gnus-auto-select-first)
2954                 (funcall gnus-auto-select-first))))
2955           ;; Don't select any articles, just move point to the first
2956           ;; article in the group.
2957           (goto-char (point-min))
2958           (gnus-summary-position-point)
2959           (gnus-configure-windows 'summary 'force)
2960           (gnus-set-mode-line 'summary))
2961         (when (get-buffer-window gnus-group-buffer t)
2962           ;; Gotta use windows, because recenter does weird stuff if
2963           ;; the current buffer ain't the displayed window.
2964           (let ((owin (selected-window)))
2965             (select-window (get-buffer-window gnus-group-buffer t))
2966             (when (gnus-group-goto-group group)
2967               (recenter))
2968             (select-window owin)))
2969         ;; Mark this buffer as "prepared".
2970         (setq gnus-newsgroup-prepared t)
2971         (gnus-run-hooks 'gnus-summary-prepared-hook)
2972         t)))))
2973
2974 (defun gnus-summary-prepare ()
2975   "Generate the summary buffer."
2976   (interactive)
2977   (let ((buffer-read-only nil))
2978     (erase-buffer)
2979     (setq gnus-newsgroup-data nil
2980           gnus-newsgroup-data-reverse nil)
2981     (gnus-run-hooks 'gnus-summary-generate-hook)
2982     ;; Generate the buffer, either with threads or without.
2983     (when gnus-newsgroup-headers
2984       (gnus-summary-prepare-threads
2985        (if gnus-show-threads
2986            (gnus-sort-gathered-threads
2987             (funcall gnus-summary-thread-gathering-function
2988                      (gnus-sort-threads
2989                       (gnus-cut-threads (gnus-make-threads)))))
2990          ;; Unthreaded display.
2991          (gnus-sort-articles gnus-newsgroup-headers))))
2992     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
2993     ;; Call hooks for modifying summary buffer.
2994     (goto-char (point-min))
2995     (gnus-run-hooks 'gnus-summary-prepare-hook)))
2996
2997 (defsubst gnus-general-simplify-subject (subject)
2998   "Simply subject by the same rules as gnus-gather-threads-by-subject."
2999   (setq subject
3000         (cond
3001          ;; Truncate the subject.
3002          (gnus-simplify-subject-functions
3003           (gnus-map-function gnus-simplify-subject-functions subject))
3004          ((numberp gnus-summary-gather-subject-limit)
3005           (setq subject (gnus-simplify-subject-re subject))
3006           (if (> (length subject) gnus-summary-gather-subject-limit)
3007               (substring subject 0 gnus-summary-gather-subject-limit)
3008             subject))
3009          ;; Fuzzily simplify it.
3010          ((eq 'fuzzy gnus-summary-gather-subject-limit)
3011           (gnus-simplify-subject-fuzzy subject))
3012          ;; Just remove the leading "Re:".
3013          (t
3014           (gnus-simplify-subject-re subject))))
3015
3016   (if (and gnus-summary-gather-exclude-subject
3017            (string-match gnus-summary-gather-exclude-subject subject))
3018       nil                               ; This article shouldn't be gathered
3019     subject))
3020
3021 (defun gnus-summary-simplify-subject-query ()
3022   "Query where the respool algorithm would put this article."
3023   (interactive)
3024   (gnus-summary-select-article)
3025   (message "%s"
3026            (gnus-general-simplify-subject (gnus-summary-article-subject))))
3027
3028 (defun gnus-gather-threads-by-subject (threads)
3029   "Gather threads by looking at Subject headers."
3030   (if (not gnus-summary-make-false-root)
3031       threads
3032     (let ((hashtb (gnus-make-hashtable 1024))
3033           (prev threads)
3034           (result threads)
3035           subject hthread whole-subject)
3036       (while threads
3037         (setq subject (gnus-general-simplify-subject
3038                        (setq whole-subject (mail-header-subject
3039                                             (caar threads)))))
3040         (when subject
3041           (if (setq hthread (gnus-gethash subject hashtb))
3042               (progn
3043                 ;; We enter a dummy root into the thread, if we
3044                 ;; haven't done that already.
3045                 (unless (stringp (caar hthread))
3046                   (setcar hthread (list whole-subject (car hthread))))
3047                 ;; We add this new gathered thread to this gathered
3048                 ;; thread.
3049                 (setcdr (car hthread)
3050                         (nconc (cdar hthread) (list (car threads))))
3051                 ;; Remove it from the list of threads.
3052                 (setcdr prev (cdr threads))
3053                 (setq threads prev))
3054             ;; Enter this thread into the hash table.
3055             (gnus-sethash subject threads hashtb)))
3056         (setq prev threads)
3057         (setq threads (cdr threads)))
3058       result)))
3059
3060 (defun gnus-gather-threads-by-references (threads)
3061   "Gather threads by looking at References headers."
3062   (let ((idhashtb (gnus-make-hashtable 1024))
3063         (thhashtb (gnus-make-hashtable 1024))
3064         (prev threads)
3065         (result threads)
3066         ids references id gthread gid entered ref)
3067     (while threads
3068       (when (setq references (mail-header-references (caar threads)))
3069         (setq id (mail-header-id (caar threads))
3070               ids (gnus-split-references references)
3071               entered nil)
3072         (while (setq ref (pop ids))
3073           (setq ids (delete ref ids))
3074           (if (not (setq gid (gnus-gethash ref idhashtb)))
3075               (progn
3076                 (gnus-sethash ref id idhashtb)
3077                 (gnus-sethash id threads thhashtb))
3078             (setq gthread (gnus-gethash gid thhashtb))
3079             (unless entered
3080               ;; We enter a dummy root into the thread, if we
3081               ;; haven't done that already.
3082               (unless (stringp (caar gthread))
3083                 (setcar gthread (list (mail-header-subject (caar gthread))
3084                                       (car gthread))))
3085               ;; We add this new gathered thread to this gathered
3086               ;; thread.
3087               (setcdr (car gthread)
3088                       (nconc (cdar gthread) (list (car threads)))))
3089             ;; Add it into the thread hash table.
3090             (gnus-sethash id gthread thhashtb)
3091             (setq entered t)
3092             ;; Remove it from the list of threads.
3093             (setcdr prev (cdr threads))
3094             (setq threads prev))))
3095       (setq prev threads)
3096       (setq threads (cdr threads)))
3097     result))
3098
3099 (defun gnus-sort-gathered-threads (threads)
3100   "Sort subtreads inside each gathered thread by article number."
3101   (let ((result threads))
3102     (while threads
3103       (when (stringp (caar threads))
3104         (setcdr (car threads)
3105                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3106       (setq threads (cdr threads)))
3107     result))
3108
3109 (defun gnus-thread-loop-p (root thread)
3110   "Say whether ROOT is in THREAD."
3111   (let ((stack (list thread))
3112         (infloop 0)
3113         th)
3114     (while (setq thread (pop stack))
3115       (setq th (cdr thread))
3116       (while (and th
3117                   (not (eq (caar th) root)))
3118         (pop th))
3119       (if th
3120           ;; We have found a loop.
3121           (let (ref-dep)
3122             (setcdr thread (delq (car th) (cdr thread)))
3123             (if (boundp (setq ref-dep (intern "none"
3124                                               gnus-newsgroup-dependencies)))
3125                 (setcdr (symbol-value ref-dep)
3126                         (nconc (cdr (symbol-value ref-dep))
3127                                (list (car th))))
3128               (set ref-dep (list nil (car th))))
3129             (setq infloop 1
3130                   stack nil))
3131         ;; Push all the subthreads onto the stack.
3132         (push (cdr thread) stack)))
3133     infloop))
3134
3135 (defun gnus-make-threads ()
3136   "Go through the dependency hashtb and find the roots.  Return all threads."
3137   (let (threads)
3138     (while (catch 'infloop
3139              (mapatoms
3140               (lambda (refs)
3141                 ;; Deal with self-referencing References loops.
3142                 (when (and (car (symbol-value refs))
3143                            (not (zerop
3144                                  (apply
3145                                   '+
3146                                   (mapcar
3147                                    (lambda (thread)
3148                                      (gnus-thread-loop-p
3149                                       (car (symbol-value refs)) thread))
3150                                    (cdr (symbol-value refs)))))))
3151                   (setq threads nil)
3152                   (throw 'infloop t))
3153                 (unless (car (symbol-value refs))
3154                   ;; These threads do not refer back to any other articles,
3155                   ;; so they're roots.
3156                   (setq threads (append (cdr (symbol-value refs)) threads))))
3157               gnus-newsgroup-dependencies)))
3158     threads))
3159
3160 ;; Build the thread tree.
3161 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3162   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3163
3164 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3165 if it was already present.
3166
3167 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3168 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3169 Message-IDs will be renamed be renamed to a unique Message-ID before
3170 being entered.
3171
3172 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3173   (let* ((id (mail-header-id header))
3174          (id-dep (and id (intern id dependencies)))
3175          ref ref-dep ref-header)
3176     ;; Enter this `header' in the `dependencies' table.
3177     (cond
3178      ((not id-dep)
3179       (setq header nil))
3180      ;; The first two cases do the normal part: enter a new `header'
3181      ;; in the `dependencies' table.
3182      ((not (boundp id-dep))
3183       (set id-dep (list header)))
3184      ((null (car (symbol-value id-dep)))
3185       (setcar (symbol-value id-dep) header))
3186
3187      ;; From here the `header' was already present in the
3188      ;; `dependencies' table.
3189      (force-new
3190       ;; Overrides an existing entry;
3191       ;; just set the header part of the entry.
3192       (setcar (symbol-value id-dep) header))
3193
3194      ;; Renames the existing `header' to a unique Message-ID.
3195      ((not gnus-summary-ignore-duplicates)
3196       ;; An article with this Message-ID has already been seen.
3197       ;; We rename the Message-ID.
3198       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3199            (list header))
3200       (mail-header-set-id header id))
3201
3202      ;; The last case ignores an existing entry, except it adds any
3203      ;; additional Xrefs (in case the two articles came from different
3204      ;; servers.
3205      ;; Also sets `header' to `nil' meaning that the `dependencies'
3206      ;; table was *not* modified.
3207      (t
3208       (mail-header-set-xref
3209        (car (symbol-value id-dep))
3210        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3211                    "")
3212                (or (mail-header-xref header) "")))
3213       (setq header nil)))
3214
3215     (when header
3216       ;; First check if that we are not creating a References loop.
3217       (setq ref (gnus-parent-id (mail-header-references header)))
3218       (while (and ref
3219                   (setq ref-dep (intern-soft ref dependencies))
3220                   (boundp ref-dep)
3221                   (setq ref-header (car (symbol-value ref-dep))))
3222         (if (string= id ref)
3223             ;; Yuk!  This is a reference loop.  Make the article be a
3224             ;; root article.
3225             (progn
3226               (mail-header-set-references (car (symbol-value id-dep)) "none")
3227               (setq ref nil))
3228           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3229       (setq ref (gnus-parent-id (mail-header-references header)))
3230       (setq ref-dep (intern (or ref "none") dependencies))
3231       (if (boundp ref-dep)
3232           (setcdr (symbol-value ref-dep)
3233                   (nconc (cdr (symbol-value ref-dep))
3234                          (list (symbol-value id-dep))))
3235         (set ref-dep (list nil (symbol-value id-dep)))))
3236     header))
3237
3238 (defun gnus-build-sparse-threads ()
3239   (let ((headers gnus-newsgroup-headers)
3240         (mail-parse-charset gnus-newsgroup-charset)
3241         (gnus-summary-ignore-duplicates t)
3242         header references generation relations
3243         subject child end new-child date)
3244     ;; First we create an alist of generations/relations, where
3245     ;; generations is how much we trust the relation, and the relation
3246     ;; is parent/child.
3247     (gnus-message 7 "Making sparse threads...")
3248     (save-excursion
3249       (nnheader-set-temp-buffer " *gnus sparse threads*")
3250       (while (setq header (pop headers))
3251         (when (and (setq references (mail-header-references header))
3252                    (not (string= references "")))
3253           (insert references)
3254           (setq child (mail-header-id header)
3255                 subject (mail-header-subject header)
3256                 date (mail-header-date header)
3257                 generation 0)
3258           (while (search-backward ">" nil t)
3259             (setq end (1+ (point)))
3260             (when (search-backward "<" nil t)
3261               (setq new-child (buffer-substring (point) end))
3262               (push (list (incf generation)
3263                           child (setq child new-child)
3264                           subject date)
3265                     relations)))
3266           (when child
3267             (push (list (1+ generation) child nil subject) relations))
3268           (erase-buffer)))
3269       (kill-buffer (current-buffer)))
3270     ;; Sort over trustworthiness.
3271     (mapcar
3272      (lambda (relation)
3273        (when (gnus-dependencies-add-header
3274               (make-full-mail-header
3275                gnus-reffed-article-number
3276                (nth 3 relation) "" (or (nth 4 relation) "")
3277                (nth 1 relation)
3278                (or (nth 2 relation) "") 0 0 "")
3279               gnus-newsgroup-dependencies nil)
3280          (push gnus-reffed-article-number gnus-newsgroup-limit)
3281          (push gnus-reffed-article-number gnus-newsgroup-sparse)
3282          (push (cons gnus-reffed-article-number gnus-sparse-mark)
3283                gnus-newsgroup-reads)
3284          (decf gnus-reffed-article-number)))
3285      (sort relations 'car-less-than-car))
3286     (gnus-message 7 "Making sparse threads...done")))
3287
3288 (defun gnus-build-old-threads ()
3289   ;; Look at all the articles that refer back to old articles, and
3290   ;; fetch the headers for the articles that aren't there.  This will
3291   ;; build complete threads - if the roots haven't been expired by the
3292   ;; server, that is.
3293   (let ((mail-parse-charset gnus-newsgroup-charset)
3294         id heads)
3295     (mapatoms
3296      (lambda (refs)
3297        (when (not (car (symbol-value refs)))
3298          (setq heads (cdr (symbol-value refs)))
3299          (while heads
3300            (if (memq (mail-header-number (caar heads))
3301                      gnus-newsgroup-dormant)
3302                (setq heads (cdr heads))
3303              (setq id (symbol-name refs))
3304              (while (and (setq id (gnus-build-get-header id))
3305                          (not (car (gnus-id-to-thread id)))))
3306              (setq heads nil)))))
3307      gnus-newsgroup-dependencies)))
3308
3309 ;; This function has to be called with point after the article number
3310 ;; on the beginning of the line.
3311 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
3312   (let ((eol (gnus-point-at-eol))
3313         (buffer (current-buffer))
3314         header)
3315
3316     ;; overview: [num subject from date id refs chars lines misc]
3317     (unless (eobp)
3318       (forward-char))
3319
3320     (setq header
3321           (make-full-mail-header
3322            number                               ; number
3323            (nnheader-nov-field)                 ; subject
3324            (nnheader-nov-field)                 ; from
3325            (nnheader-nov-field)                 ; date
3326            (nnheader-nov-read-message-id)       ; id
3327            (nnheader-nov-field)                 ; refs
3328            (nnheader-nov-read-integer)          ; chars
3329            (nnheader-nov-read-integer)          ; lines
3330            (unless (eobp)
3331              (nnheader-nov-field))              ; misc
3332            (nnheader-nov-parse-extra)))         ; extra
3333
3334     (when gnus-alter-header-function
3335       (funcall gnus-alter-header-function header))
3336     (gnus-dependencies-add-header header dependencies force-new)))
3337
3338 (defun gnus-build-get-header (id)
3339   "Look through the buffer of NOV lines and find the header to ID.
3340 Enter this line into the dependencies hash table, and return
3341 the id of the parent article (if any)."
3342   (let ((deps gnus-newsgroup-dependencies)
3343         found header)
3344     (prog1
3345         (save-excursion
3346           (set-buffer nntp-server-buffer)
3347           (let ((case-fold-search nil))
3348             (goto-char (point-min))
3349             (while (and (not found)
3350                         (search-forward id nil t))
3351               (beginning-of-line)
3352               (setq found (looking-at
3353                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
3354                                    (regexp-quote id))))
3355               (or found (beginning-of-line 2)))
3356             (when found
3357               (beginning-of-line)
3358               (and
3359                (setq header (gnus-nov-parse-line
3360                              (read (current-buffer)) deps))
3361                (gnus-parent-id (mail-header-references header))))))
3362       (when header
3363         (let ((number (mail-header-number header)))
3364           (push number gnus-newsgroup-limit)
3365           (push header gnus-newsgroup-headers)
3366           (if (memq number gnus-newsgroup-unselected)
3367               (progn
3368                 (push number gnus-newsgroup-unreads)
3369                 (setq gnus-newsgroup-unselected
3370                       (delq number gnus-newsgroup-unselected)))
3371             (push number gnus-newsgroup-ancient)))))))
3372
3373 (defun gnus-build-all-threads ()
3374   "Read all the headers."
3375   (let ((gnus-summary-ignore-duplicates t)
3376         (mail-parse-charset gnus-newsgroup-charset)
3377         (dependencies gnus-newsgroup-dependencies)
3378         header article)
3379     (save-excursion
3380       (set-buffer nntp-server-buffer)
3381       (let ((case-fold-search nil))
3382         (goto-char (point-min))
3383         (while (not (eobp))
3384           (ignore-errors
3385             (setq article (read (current-buffer))
3386                   header (gnus-nov-parse-line article dependencies)))
3387           (when header
3388             (save-excursion
3389               (set-buffer gnus-summary-buffer)
3390               (push header gnus-newsgroup-headers)
3391               (if (memq (setq article (mail-header-number header))
3392                         gnus-newsgroup-unselected)
3393                   (progn
3394                     (push article gnus-newsgroup-unreads)
3395                     (setq gnus-newsgroup-unselected
3396                           (delq article gnus-newsgroup-unselected)))
3397                 (push article gnus-newsgroup-ancient)))
3398             (forward-line 1)))))))
3399
3400 (defun gnus-summary-update-article-line (article header)
3401   "Update the line for ARTICLE using HEADERS."
3402   (let* ((id (mail-header-id header))
3403          (thread (gnus-id-to-thread id)))
3404     (unless thread
3405       (error "Article in no thread"))
3406     ;; Update the thread.
3407     (setcar thread header)
3408     (gnus-summary-goto-subject article)
3409     (let* ((datal (gnus-data-find-list article))
3410            (data (car datal))
3411            (length (when (cdr datal)
3412                      (- (gnus-data-pos data)
3413                         (gnus-data-pos (cadr datal)))))
3414            (buffer-read-only nil)
3415            (level (gnus-summary-thread-level)))
3416       (gnus-delete-line)
3417       (gnus-summary-insert-line
3418        header level nil (gnus-article-mark article)
3419        (memq article gnus-newsgroup-replied)
3420        (memq article gnus-newsgroup-expirable)
3421        ;; Only insert the Subject string when it's different
3422        ;; from the previous Subject string.
3423        (if (and
3424             gnus-show-threads
3425             (gnus-subject-equal
3426              (condition-case ()
3427                  (mail-header-subject
3428                   (gnus-data-header
3429                    (cadr
3430                     (gnus-data-find-list
3431                      article
3432                      (gnus-data-list t)))))
3433                ;; Error on the side of excessive subjects.
3434                (error ""))
3435              (mail-header-subject header)))
3436            ""
3437          (mail-header-subject header))
3438        nil (cdr (assq article gnus-newsgroup-scored))
3439        (memq article gnus-newsgroup-processable))
3440       (when length
3441         (gnus-data-update-list
3442          (cdr datal) (- length (- (gnus-data-pos data) (point))))))))
3443
3444 (defun gnus-summary-update-article (article &optional iheader)
3445   "Update ARTICLE in the summary buffer."
3446   (set-buffer gnus-summary-buffer)
3447   (let* ((header (gnus-summary-article-header article))
3448          (id (mail-header-id header))
3449          (data (gnus-data-find article))
3450          (thread (gnus-id-to-thread id))
3451          (references (mail-header-references header))
3452          (parent
3453           (gnus-id-to-thread
3454            (or (gnus-parent-id
3455                 (when (and references
3456                            (not (equal "" references)))
3457                   references))
3458                "none")))
3459          (buffer-read-only nil)
3460          (old (car thread)))
3461     (when thread
3462       (unless iheader
3463         (setcar thread nil)
3464         (when parent
3465           (delq thread parent)))
3466       (if (gnus-summary-insert-subject id header)
3467           ;; Set the (possibly) new article number in the data structure.
3468           (gnus-data-set-number data (gnus-id-to-article id))
3469         (setcar thread old)
3470         nil))))
3471
3472 (defun gnus-rebuild-thread (id &optional line)
3473   "Rebuild the thread containing ID.
3474 If LINE, insert the rebuilt thread starting on line LINE."
3475   (let ((buffer-read-only nil)
3476         old-pos current thread data)
3477     (if (not gnus-show-threads)
3478         (setq thread (list (car (gnus-id-to-thread id))))
3479       ;; Get the thread this article is part of.
3480       (setq thread (gnus-remove-thread id)))
3481     (setq old-pos (gnus-point-at-bol))
3482     (setq current (save-excursion
3483                     (and (zerop (forward-line -1))
3484                          (gnus-summary-article-number))))
3485     ;; If this is a gathered thread, we have to go some re-gathering.
3486     (when (stringp (car thread))
3487       (let ((subject (car thread))
3488             roots thr)
3489         (setq thread (cdr thread))
3490         (while thread
3491           (unless (memq (setq thr (gnus-id-to-thread
3492                                    (gnus-root-id
3493                                     (mail-header-id (caar thread)))))
3494                         roots)
3495             (push thr roots))
3496           (setq thread (cdr thread)))
3497         ;; We now have all (unique) roots.
3498         (if (= (length roots) 1)
3499             ;; All the loose roots are now one solid root.
3500             (setq thread (car roots))
3501           (setq thread (cons subject (gnus-sort-threads roots))))))
3502     (let (threads)
3503       ;; We then insert this thread into the summary buffer.
3504       (when line
3505         (goto-char (point-min))
3506         (forward-line (1- line)))
3507       (let (gnus-newsgroup-data gnus-newsgroup-threads)
3508         (if gnus-show-threads
3509             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
3510           (gnus-summary-prepare-unthreaded thread))
3511         (setq data (nreverse gnus-newsgroup-data))
3512         (setq threads gnus-newsgroup-threads))
3513       ;; We splice the new data into the data structure.
3514       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
3515       ;;!!! then we want to insert at the beginning of the buffer.
3516       ;;!!! That happens to be true with Gnus now, but that may
3517       ;;!!! change in the future.  Perhaps.
3518       (gnus-data-enter-list
3519        (if line nil current) data (- (point) old-pos))
3520       (setq gnus-newsgroup-threads
3521             (nconc threads gnus-newsgroup-threads))
3522       (gnus-data-compute-positions))))
3523
3524 (defun gnus-number-to-header (number)
3525   "Return the header for article NUMBER."
3526   (let ((headers gnus-newsgroup-headers))
3527     (while (and headers
3528                 (not (= number (mail-header-number (car headers)))))
3529       (pop headers))
3530     (when headers
3531       (car headers))))
3532
3533 (defun gnus-parent-headers (in-headers &optional generation)
3534   "Return the headers of the GENERATIONeth parent of HEADERS."
3535   (unless generation
3536     (setq generation 1))
3537   (let ((parent t)
3538         (headers in-headers)
3539         references)
3540     (while (and parent
3541                 (not (zerop generation))
3542                 (setq references (mail-header-references headers)))
3543       (setq headers (if (and references
3544                              (setq parent (gnus-parent-id references)))
3545                         (car (gnus-id-to-thread parent))
3546                       nil))
3547       (decf generation))
3548     (and (not (eq headers in-headers))
3549          headers)))
3550
3551 (defun gnus-id-to-thread (id)
3552   "Return the (sub-)thread where ID appears."
3553   (gnus-gethash id gnus-newsgroup-dependencies))
3554
3555 (defun gnus-id-to-article (id)
3556   "Return the article number of ID."
3557   (let ((thread (gnus-id-to-thread id)))
3558     (when (and thread
3559                (car thread))
3560       (mail-header-number (car thread)))))
3561
3562 (defun gnus-id-to-header (id)
3563   "Return the article headers of ID."
3564   (car (gnus-id-to-thread id)))
3565
3566 (defun gnus-article-displayed-root-p (article)
3567   "Say whether ARTICLE is a root(ish) article."
3568   (let ((level (gnus-summary-thread-level article))
3569         (refs (mail-header-references  (gnus-summary-article-header article)))
3570         particle)
3571     (cond
3572      ((null level) nil)
3573      ((zerop level) t)
3574      ((null refs) t)
3575      ((null (gnus-parent-id refs)) t)
3576      ((and (= 1 level)
3577            (null (setq particle (gnus-id-to-article
3578                                  (gnus-parent-id refs))))
3579            (null (gnus-summary-thread-level particle)))))))
3580
3581 (defun gnus-root-id (id)
3582   "Return the id of the root of the thread where ID appears."
3583   (let (last-id prev)
3584     (while (and id (setq prev (car (gnus-id-to-thread id))))
3585       (setq last-id id
3586             id (gnus-parent-id (mail-header-references prev))))
3587     last-id))
3588
3589 (defun gnus-articles-in-thread (thread)
3590   "Return the list of articles in THREAD."
3591   (cons (mail-header-number (car thread))
3592         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
3593
3594 (defun gnus-remove-thread (id &optional dont-remove)
3595   "Remove the thread that has ID in it."
3596   (let (headers thread last-id)
3597     ;; First go up in this thread until we find the root.
3598     (setq last-id (gnus-root-id id)
3599           headers (message-flatten-list (gnus-id-to-thread last-id)))
3600     ;; We have now found the real root of this thread.  It might have
3601     ;; been gathered into some loose thread, so we have to search
3602     ;; through the threads to find the thread we wanted.
3603     (let ((threads gnus-newsgroup-threads)
3604           sub)
3605       (while threads
3606         (setq sub (car threads))
3607         (if (stringp (car sub))
3608             ;; This is a gathered thread, so we look at the roots
3609             ;; below it to find whether this article is in this
3610             ;; gathered root.
3611             (progn
3612               (setq sub (cdr sub))
3613               (while sub
3614                 (when (member (caar sub) headers)
3615                   (setq thread (car threads)
3616                         threads nil
3617                         sub nil))
3618                 (setq sub (cdr sub))))
3619           ;; It's an ordinary thread, so we check it.
3620           (when (eq (car sub) (car headers))
3621             (setq thread sub
3622                   threads nil)))
3623         (setq threads (cdr threads)))
3624       ;; If this article is in no thread, then it's a root.
3625       (if thread
3626           (unless dont-remove
3627             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
3628         (setq thread (gnus-id-to-thread last-id)))
3629       (when thread
3630         (prog1
3631             thread                      ; We return this thread.
3632           (unless dont-remove
3633             (if (stringp (car thread))
3634                 (progn
3635                   ;; If we use dummy roots, then we have to remove the
3636                   ;; dummy root as well.
3637                   (when (eq gnus-summary-make-false-root 'dummy)
3638                     ;; We go to the dummy root by going to
3639                     ;; the first sub-"thread", and then one line up.
3640                     (gnus-summary-goto-article
3641                      (mail-header-number (caadr thread)))
3642                     (forward-line -1)
3643                     (gnus-delete-line)
3644                     (gnus-data-compute-positions))
3645                   (setq thread (cdr thread))
3646                   (while thread
3647                     (gnus-remove-thread-1 (car thread))
3648                     (setq thread (cdr thread))))
3649               (gnus-remove-thread-1 thread))))))))
3650
3651 (defun gnus-remove-thread-1 (thread)
3652   "Remove the thread THREAD recursively."
3653   (let ((number (mail-header-number (pop thread)))
3654         d)
3655     (setq thread (reverse thread))
3656     (while thread
3657       (gnus-remove-thread-1 (pop thread)))
3658     (when (setq d (gnus-data-find number))
3659       (goto-char (gnus-data-pos d))
3660       (gnus-summary-show-thread)
3661       (gnus-data-remove
3662        number
3663        (- (gnus-point-at-bol)
3664           (prog1
3665               (1+ (gnus-point-at-eol))
3666             (gnus-delete-line)))))))
3667
3668 (defun gnus-sort-threads (threads)
3669   "Sort THREADS."
3670   (if (not gnus-thread-sort-functions)
3671       threads
3672     (gnus-message 8 "Sorting threads...")
3673     (prog1
3674         (sort threads (gnus-make-sort-function gnus-thread-sort-functions))
3675       (gnus-message 8 "Sorting threads...done"))))
3676
3677 (defun gnus-sort-articles (articles)
3678   "Sort ARTICLES."
3679   (when gnus-article-sort-functions
3680     (gnus-message 7 "Sorting articles...")
3681     (prog1
3682         (setq gnus-newsgroup-headers
3683               (sort articles (gnus-make-sort-function
3684                               gnus-article-sort-functions)))
3685       (gnus-message 7 "Sorting articles...done"))))
3686
3687 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
3688 (defmacro gnus-thread-header (thread)
3689   "Return header of first article in THREAD.
3690 Note that THREAD must never, ever be anything else than a variable -
3691 using some other form will lead to serious barfage."
3692   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
3693   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
3694   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
3695         (vector thread) 2))
3696
3697 (defsubst gnus-article-sort-by-number (h1 h2)
3698   "Sort articles by article number."
3699   (< (mail-header-number h1)
3700      (mail-header-number h2)))
3701
3702 (defun gnus-thread-sort-by-number (h1 h2)
3703   "Sort threads by root article number."
3704   (gnus-article-sort-by-number
3705    (gnus-thread-header h1) (gnus-thread-header h2)))
3706
3707 (defsubst gnus-article-sort-by-lines (h1 h2)
3708   "Sort articles by article Lines header."
3709   (< (mail-header-lines h1)
3710      (mail-header-lines h2)))
3711
3712 (defun gnus-thread-sort-by-lines (h1 h2)
3713   "Sort threads by root article Lines header."
3714   (gnus-article-sort-by-lines
3715    (gnus-thread-header h1) (gnus-thread-header h2)))
3716
3717 (defsubst gnus-article-sort-by-chars (h1 h2)
3718   "Sort articles by octet length."
3719   (< (mail-header-chars h1)
3720      (mail-header-chars h2)))
3721
3722 (defun gnus-thread-sort-by-chars (h1 h2)
3723   "Sort threads by root article octet length."
3724   (gnus-article-sort-by-chars
3725    (gnus-thread-header h1) (gnus-thread-header h2)))
3726
3727 (defsubst gnus-article-sort-by-author (h1 h2)
3728   "Sort articles by root author."
3729   (string-lessp
3730    (let ((addr (car (mime-entity-read-field h1 'From))))
3731      (or (std11-full-name-string addr)
3732          (std11-address-string addr)
3733          ""))
3734    (let ((addr (car (mime-entity-read-field h2 'From))))
3735      (or (std11-full-name-string addr)
3736          (std11-address-string addr)
3737          ""))
3738    ))
3739
3740 (defun gnus-thread-sort-by-author (h1 h2)
3741   "Sort threads by root author."
3742   (gnus-article-sort-by-author
3743    (gnus-thread-header h1)  (gnus-thread-header h2)))
3744
3745 (defsubst gnus-article-sort-by-subject (h1 h2)
3746   "Sort articles by root subject."
3747   (string-lessp
3748    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
3749    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
3750
3751 (defun gnus-thread-sort-by-subject (h1 h2)
3752   "Sort threads by root subject."
3753   (gnus-article-sort-by-subject
3754    (gnus-thread-header h1) (gnus-thread-header h2)))
3755
3756 (defsubst gnus-article-sort-by-date (h1 h2)
3757   "Sort articles by root article date."
3758   (time-less-p
3759    (gnus-date-get-time (mail-header-date h1))
3760    (gnus-date-get-time (mail-header-date h2))))
3761
3762 (defun gnus-thread-sort-by-date (h1 h2)
3763   "Sort threads by root article date."
3764   (gnus-article-sort-by-date
3765    (gnus-thread-header h1) (gnus-thread-header h2)))
3766
3767 (defsubst gnus-article-sort-by-score (h1 h2)
3768   "Sort articles by root article score.
3769 Unscored articles will be counted as having a score of zero."
3770   (> (or (cdr (assq (mail-header-number h1)
3771                     gnus-newsgroup-scored))
3772          gnus-summary-default-score 0)
3773      (or (cdr (assq (mail-header-number h2)
3774                     gnus-newsgroup-scored))
3775          gnus-summary-default-score 0)))
3776
3777 (defun gnus-thread-sort-by-score (h1 h2)
3778   "Sort threads by root article score."
3779   (gnus-article-sort-by-score
3780    (gnus-thread-header h1) (gnus-thread-header h2)))
3781
3782 (defun gnus-thread-sort-by-total-score (h1 h2)
3783   "Sort threads by the sum of all scores in the thread.
3784 Unscored articles will be counted as having a score of zero."
3785   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
3786
3787 (defun gnus-thread-total-score (thread)
3788   ;; This function find the total score of THREAD.
3789   (cond ((null thread)
3790          0)
3791         ((consp thread)
3792          (if (stringp (car thread))
3793              (apply gnus-thread-score-function 0
3794                     (mapcar 'gnus-thread-total-score-1 (cdr thread)))
3795            (gnus-thread-total-score-1 thread)))
3796         (t
3797          (gnus-thread-total-score-1 (list thread)))))
3798
3799 (defun gnus-thread-total-score-1 (root)
3800   ;; This function find the total score of the thread below ROOT.
3801   (setq root (car root))
3802   (apply gnus-thread-score-function
3803          (or (append
3804               (mapcar 'gnus-thread-total-score
3805                       (cdr (gnus-id-to-thread (mail-header-id root))))
3806               (when (> (mail-header-number root) 0)
3807                 (list (or (cdr (assq (mail-header-number root)
3808                                      gnus-newsgroup-scored))
3809                           gnus-summary-default-score 0))))
3810              (list gnus-summary-default-score)
3811              '(0))))
3812
3813 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
3814 (defvar gnus-tmp-prev-subject nil)
3815 (defvar gnus-tmp-false-parent nil)
3816 (defvar gnus-tmp-root-expunged nil)
3817 (defvar gnus-tmp-dummy-line nil)
3818
3819 (defvar gnus-tmp-header)
3820 (defun gnus-extra-header (type &optional header)
3821   "Return the extra header of TYPE."
3822   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
3823       ""))
3824
3825 (defun gnus-summary-prepare-threads (threads)
3826   "Prepare summary buffer from THREADS and indentation LEVEL.
3827 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
3828 or a straight list of headers."
3829   (gnus-message 7 "Generating summary...")
3830
3831   (setq gnus-newsgroup-threads threads)
3832   (beginning-of-line)
3833
3834   (let ((gnus-tmp-level 0)
3835         (default-score (or gnus-summary-default-score 0))
3836         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
3837         thread number subject stack state gnus-tmp-gathered beg-match
3838         new-roots gnus-tmp-new-adopts thread-end
3839         gnus-tmp-header gnus-tmp-unread
3840         gnus-tmp-replied gnus-tmp-subject-or-nil
3841         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
3842         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
3843         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket)
3844
3845     (setq gnus-tmp-prev-subject nil)
3846
3847     (if (vectorp (car threads))
3848         ;; If this is a straight (sic) list of headers, then a
3849         ;; threaded summary display isn't required, so we just create
3850         ;; an unthreaded one.
3851         (gnus-summary-prepare-unthreaded threads)
3852
3853       ;; Do the threaded display.
3854
3855       (while (or threads stack gnus-tmp-new-adopts new-roots)
3856
3857         (if (and (= gnus-tmp-level 0)
3858                  (or (not stack)
3859                      (= (caar stack) 0))
3860                  (not gnus-tmp-false-parent)
3861                  (or gnus-tmp-new-adopts new-roots))
3862             (if gnus-tmp-new-adopts
3863                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
3864                       thread (list (car gnus-tmp-new-adopts))
3865                       gnus-tmp-header (caar thread)
3866                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
3867               (when new-roots
3868                 (setq thread (list (car new-roots))
3869                       gnus-tmp-header (caar thread)
3870                       new-roots (cdr new-roots))))
3871
3872           (if threads
3873               ;; If there are some threads, we do them before the
3874               ;; threads on the stack.
3875               (setq thread threads
3876                     gnus-tmp-header (caar thread))
3877             ;; There were no current threads, so we pop something off
3878             ;; the stack.
3879             (setq state (car stack)
3880                   gnus-tmp-level (car state)
3881                   thread (cdr state)
3882                   stack (cdr stack)
3883                   gnus-tmp-header (caar thread))))
3884
3885         (setq gnus-tmp-false-parent nil)
3886         (setq gnus-tmp-root-expunged nil)
3887         (setq thread-end nil)
3888
3889         (if (stringp gnus-tmp-header)
3890             ;; The header is a dummy root.
3891             (cond
3892              ((eq gnus-summary-make-false-root 'adopt)
3893               ;; We let the first article adopt the rest.
3894               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
3895                                                (cddar thread)))
3896               (setq gnus-tmp-gathered
3897                     (nconc (mapcar
3898                             (lambda (h) (mail-header-number (car h)))
3899                             (cddar thread))
3900                            gnus-tmp-gathered))
3901               (setq thread (cons (list (caar thread)
3902                                        (cadar thread))
3903                                  (cdr thread)))
3904               (setq gnus-tmp-level -1
3905                     gnus-tmp-false-parent t))
3906              ((eq gnus-summary-make-false-root 'empty)
3907               ;; We print adopted articles with empty subject fields.
3908               (setq gnus-tmp-gathered
3909                     (nconc (mapcar
3910                             (lambda (h) (mail-header-number (car h)))
3911                             (cddar thread))
3912                            gnus-tmp-gathered))
3913               (setq gnus-tmp-level -1))
3914              ((eq gnus-summary-make-false-root 'dummy)
3915               ;; We remember that we probably want to output a dummy
3916               ;; root.
3917               (setq gnus-tmp-dummy-line gnus-tmp-header)
3918               (setq gnus-tmp-prev-subject gnus-tmp-header))
3919              (t
3920               ;; We do not make a root for the gathered
3921               ;; sub-threads at all.
3922               (setq gnus-tmp-level -1)))
3923
3924           (setq number (mail-header-number gnus-tmp-header)
3925                 subject (mail-header-subject gnus-tmp-header))
3926
3927           (cond
3928            ;; If the thread has changed subject, we might want to make
3929            ;; this subthread into a root.
3930            ((and (null gnus-thread-ignore-subject)
3931                  (not (zerop gnus-tmp-level))
3932                  gnus-tmp-prev-subject
3933                  (not (inline
3934                         (gnus-subject-equal gnus-tmp-prev-subject subject))))
3935             (setq new-roots (nconc new-roots (list (car thread)))
3936                   thread-end t
3937                   gnus-tmp-header nil))
3938            ;; If the article lies outside the current limit,
3939            ;; then we do not display it.
3940            ((not (memq number gnus-newsgroup-limit))
3941             (setq gnus-tmp-gathered
3942                   (nconc (mapcar
3943                           (lambda (h) (mail-header-number (car h)))
3944                           (cdar thread))
3945                          gnus-tmp-gathered))
3946             (setq gnus-tmp-new-adopts (if (cdar thread)
3947                                           (append gnus-tmp-new-adopts
3948                                                   (cdar thread))
3949                                         gnus-tmp-new-adopts)
3950                   thread-end t
3951                   gnus-tmp-header nil)
3952             (when (zerop gnus-tmp-level)
3953               (setq gnus-tmp-root-expunged t)))
3954            ;; Perhaps this article is to be marked as read?
3955            ((and gnus-summary-mark-below
3956                  (< (or (cdr (assq number gnus-newsgroup-scored))
3957                         default-score)
3958                     gnus-summary-mark-below)
3959                  ;; Don't touch sparse articles.
3960                  (not (gnus-summary-article-sparse-p number))
3961                  (not (gnus-summary-article-ancient-p number)))
3962             (setq gnus-newsgroup-unreads
3963                   (delq number gnus-newsgroup-unreads))
3964             (if gnus-newsgroup-auto-expire
3965                 (push number gnus-newsgroup-expirable)
3966               (push (cons number gnus-low-score-mark)
3967                     gnus-newsgroup-reads))))
3968
3969           (when gnus-tmp-header
3970             ;; We may have an old dummy line to output before this
3971             ;; article.
3972             (when (and gnus-tmp-dummy-line
3973                        (gnus-subject-equal
3974                         gnus-tmp-dummy-line
3975                         (mail-header-subject gnus-tmp-header)))
3976               (gnus-summary-insert-dummy-line
3977                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
3978               (setq gnus-tmp-dummy-line nil))
3979
3980             ;; Compute the mark.
3981             (setq gnus-tmp-unread (gnus-article-mark number))
3982
3983             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
3984                                   gnus-tmp-header gnus-tmp-level)
3985                   gnus-newsgroup-data)
3986
3987             ;; Actually insert the line.
3988             (setq
3989              gnus-tmp-subject-or-nil
3990              (cond
3991               ((and gnus-thread-ignore-subject
3992                     gnus-tmp-prev-subject
3993                     (not (inline (gnus-subject-equal
3994                                   gnus-tmp-prev-subject subject))))
3995                subject)
3996               ((zerop gnus-tmp-level)
3997                (if (and (eq gnus-summary-make-false-root 'empty)
3998                         (memq number gnus-tmp-gathered)
3999                         gnus-tmp-prev-subject
4000                         (inline (gnus-subject-equal
4001                                  gnus-tmp-prev-subject subject)))
4002                    gnus-summary-same-subject
4003                  subject))
4004               (t gnus-summary-same-subject)))
4005             (if (and (eq gnus-summary-make-false-root 'adopt)
4006                      (= gnus-tmp-level 1)
4007                      (memq number gnus-tmp-gathered))
4008                 (setq gnus-tmp-opening-bracket ?\<
4009                       gnus-tmp-closing-bracket ?\>)
4010               (setq gnus-tmp-opening-bracket ?\[
4011                     gnus-tmp-closing-bracket ?\]))
4012             (setq
4013              gnus-tmp-indentation
4014              (aref gnus-thread-indent-array gnus-tmp-level)
4015              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4016              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4017                                 gnus-summary-default-score 0)
4018              gnus-tmp-score-char
4019              (if (or (null gnus-summary-default-score)
4020                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4021                          gnus-summary-zcore-fuzz))
4022                  ?  ;Whitespace
4023                (if (< gnus-tmp-score gnus-summary-default-score)
4024                    gnus-score-below-mark gnus-score-over-mark))
4025              gnus-tmp-replied
4026              (cond ((memq number gnus-newsgroup-processable)
4027                     gnus-process-mark)
4028                    ((memq number gnus-newsgroup-cached)
4029                     gnus-cached-mark)
4030                    ((memq number gnus-newsgroup-replied)
4031                     gnus-replied-mark)
4032                    ((memq number gnus-newsgroup-saved)
4033                     gnus-saved-mark)
4034                    (t gnus-unread-mark))
4035              gnus-tmp-from (mail-header-from gnus-tmp-header)
4036              gnus-tmp-name
4037              (cond
4038               ((string-match "<[^>]+> *$" gnus-tmp-from)
4039                (setq beg-match (match-beginning 0))
4040                (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from)
4041                         (substring gnus-tmp-from (1+ (match-beginning 0))
4042                                    (1- (match-end 0))))
4043                    (substring gnus-tmp-from 0 beg-match)))
4044               ((string-match "(.+)" gnus-tmp-from)
4045                (substring gnus-tmp-from
4046                           (1+ (match-beginning 0)) (1- (match-end 0))))
4047               (t gnus-tmp-from)))
4048             (when (string= gnus-tmp-name "")
4049               (setq gnus-tmp-name gnus-tmp-from))
4050             (unless (numberp gnus-tmp-lines)
4051               (setq gnus-tmp-lines 0))
4052             (gnus-put-text-property
4053              (point)
4054              (progn (eval gnus-summary-line-format-spec) (point))
4055              'gnus-number number)
4056             (when gnus-visual-p
4057               (forward-line -1)
4058               (gnus-run-hooks 'gnus-summary-update-hook)
4059               (forward-line 1))
4060
4061             (setq gnus-tmp-prev-subject subject)))
4062
4063         (when (nth 1 thread)
4064           (push (cons (max 0 gnus-tmp-level) (nthcdr 1 thread)) stack))
4065         (incf gnus-tmp-level)
4066         (setq threads (if thread-end nil (cdar thread)))
4067         (unless threads
4068           (setq gnus-tmp-level 0)))))
4069   (gnus-message 7 "Generating summary...done"))
4070
4071 (defun gnus-summary-prepare-unthreaded (headers)
4072   "Generate an unthreaded summary buffer based on HEADERS."
4073   (let (header number mark)
4074
4075     (beginning-of-line)
4076
4077     (while headers
4078       ;; We may have to root out some bad articles...
4079       (when (memq (setq number (mail-header-number
4080                                 (setq header (pop headers))))
4081                   gnus-newsgroup-limit)
4082         ;; Mark article as read when it has a low score.
4083         (when (and gnus-summary-mark-below
4084                    (< (or (cdr (assq number gnus-newsgroup-scored))
4085                           gnus-summary-default-score 0)
4086                       gnus-summary-mark-below)
4087                    (not (gnus-summary-article-ancient-p number)))
4088           (setq gnus-newsgroup-unreads
4089                 (delq number gnus-newsgroup-unreads))
4090           (if gnus-newsgroup-auto-expire
4091               (push number gnus-newsgroup-expirable)
4092             (push (cons number gnus-low-score-mark)
4093                   gnus-newsgroup-reads)))
4094
4095         (setq mark (gnus-article-mark number))
4096         (push (gnus-data-make number mark (1+ (point)) header 0)
4097               gnus-newsgroup-data)
4098         (gnus-summary-insert-line
4099          header 0 number
4100          mark (memq number gnus-newsgroup-replied)
4101          (memq number gnus-newsgroup-expirable)
4102          (mail-header-subject header) nil
4103          (cdr (assq number gnus-newsgroup-scored))
4104          (memq number gnus-newsgroup-processable))))))
4105
4106 (defun gnus-summary-remove-list-identifiers ()
4107   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
4108   (let ((regexp (if (stringp gnus-list-identifiers)
4109                     gnus-list-identifiers
4110                   (mapconcat 'identity gnus-list-identifiers " *\\|"))))
4111     (dolist (header gnus-newsgroup-headers)
4112       (when (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp
4113                                   " *\\)\\)+\\(Re: +\\)?\\)")
4114                           (mail-header-subject header))
4115         (mail-header-set-subject
4116          header (concat (substring (mail-header-subject header)
4117                                    0 (match-beginning 1))
4118                         (or
4119                          (match-string 3 (mail-header-subject header))
4120                          (match-string 5 (mail-header-subject header)))
4121                         (substring (mail-header-subject header)
4122                                    (match-end 1))))))))
4123
4124 (defun gnus-select-newsgroup (group &optional read-all select-articles)
4125   "Select newsgroup GROUP.
4126 If READ-ALL is non-nil, all articles in the group are selected.
4127 If SELECT-ARTICLES, only select those articles from GROUP."
4128   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4129          ;;!!! Dirty hack; should be removed.
4130          (gnus-summary-ignore-duplicates
4131           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
4132               t
4133             gnus-summary-ignore-duplicates))
4134          (info (nth 2 entry))
4135          articles fetched-articles cached)
4136
4137     (unless (gnus-check-server
4138              (setq gnus-current-select-method
4139                    (gnus-find-method-for-group group)))
4140       (error "Couldn't open server"))
4141
4142     (or (and entry (not (eq (car entry) t))) ; Either it's active...
4143         (gnus-activate-group group)     ; Or we can activate it...
4144         (progn                          ; Or we bug out.
4145           (when (equal major-mode 'gnus-summary-mode)
4146             (kill-buffer (current-buffer)))
4147           (error "Couldn't request group %s: %s"
4148                  group (gnus-status-message group))))
4149
4150     (unless (gnus-request-group group t)
4151       (when (equal major-mode 'gnus-summary-mode)
4152         (kill-buffer (current-buffer)))
4153       (error "Couldn't request group %s: %s"
4154              group (gnus-status-message group)))
4155
4156     (setq gnus-newsgroup-name group)
4157     (setq gnus-newsgroup-unselected nil)
4158     (setq gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
4159     (gnus-summary-setup-default-charset)
4160
4161     ;; Adjust and set lists of article marks.
4162     (when info
4163       (gnus-adjust-marked-articles info))
4164
4165     ;; Kludge to avoid having cached articles nixed out in virtual groups.
4166     (setq cached
4167           (if (gnus-virtual-group-p group)
4168               gnus-newsgroup-cached
4169             (gnus-cache-articles-in-group group)))
4170
4171     (setq gnus-newsgroup-unreads
4172           (gnus-set-difference
4173            (gnus-set-difference gnus-newsgroup-unreads gnus-newsgroup-marked)
4174            gnus-newsgroup-dormant))
4175
4176     (setq gnus-newsgroup-processable nil)
4177
4178     (gnus-update-read-articles group gnus-newsgroup-unreads)
4179
4180     (if (setq articles select-articles)
4181         (setq gnus-newsgroup-unselected
4182               (gnus-sorted-intersection
4183                gnus-newsgroup-unreads
4184                (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4185       (setq articles (gnus-articles-to-read group read-all)))
4186
4187     (cond
4188      ((null articles)
4189       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
4190       'quit)
4191      ((eq articles 0) nil)
4192      (t
4193       ;; Init the dependencies hash table.
4194       (setq gnus-newsgroup-dependencies
4195             (gnus-make-hashtable (length articles)))
4196       (gnus-set-global-variables)
4197       ;; Retrieve the headers and read them in.
4198       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
4199       (setq gnus-newsgroup-headers
4200             (gnus-retrieve-parsed-headers
4201              articles gnus-newsgroup-name
4202              ;; We might want to fetch old headers, but
4203              ;; not if there is only 1 article.
4204              (and (or (and (not (eq gnus-fetch-old-headers 'some))
4205                            (not (numberp gnus-fetch-old-headers)))
4206                       (> (length articles) 1))
4207                   gnus-fetch-old-headers)))
4208       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name)
4209
4210       ;; Suppress duplicates?
4211       (when gnus-suppress-duplicates
4212         (gnus-dup-suppress-articles))
4213
4214       ;; Set the initial limit.
4215       (setq gnus-newsgroup-limit (copy-sequence articles))
4216       ;; Remove canceled articles from the list of unread articles.
4217       (setq gnus-newsgroup-unreads
4218             (gnus-set-sorted-intersection
4219              gnus-newsgroup-unreads
4220              (setq fetched-articles
4221                    (mapcar (lambda (headers) (mail-header-number headers))
4222                            gnus-newsgroup-headers))))
4223       ;; Removed marked articles that do not exist.
4224       (gnus-update-missing-marks
4225        (gnus-sorted-complement fetched-articles articles))
4226
4227       ;; Kludge to avoid having cached articles nixed out in virtual groups.
4228       (when cached
4229         (setq gnus-newsgroup-cached cached))
4230
4231       ;; We might want to build some more threads first.
4232       (when (and gnus-fetch-old-headers
4233                  (eq gnus-headers-retrieved-by 'nov))
4234         (if (eq gnus-fetch-old-headers 'invisible)
4235             (gnus-build-all-threads)
4236           (gnus-build-old-threads)))
4237       ;; Let the Gnus agent mark articles as read.
4238       (when gnus-agent
4239         (gnus-agent-get-undownloaded-list))
4240       ;; Remove list identifiers from subject
4241       (when gnus-list-identifiers
4242         (gnus-summary-remove-list-identifiers))
4243       ;; Check whether auto-expire is to be done in this group.
4244       (setq gnus-newsgroup-auto-expire
4245             (gnus-group-auto-expirable-p group))
4246       ;; Set up the article buffer now, if necessary.
4247       (unless gnus-single-article-buffer
4248         (gnus-article-setup-buffer))
4249       ;; First and last article in this newsgroup.
4250       (when gnus-newsgroup-headers
4251         (setq gnus-newsgroup-begin
4252               (mail-header-number (car gnus-newsgroup-headers))
4253               gnus-newsgroup-end
4254               (mail-header-number
4255                (gnus-last-element gnus-newsgroup-headers))))
4256       ;; GROUP is successfully selected.
4257       (or gnus-newsgroup-headers t)))))
4258
4259 (defun gnus-articles-to-read (group &optional read-all)
4260   "Find out what articles the user wants to read."
4261   (let* ((articles
4262           ;; Select all articles if `read-all' is non-nil, or if there
4263           ;; are no unread articles.
4264           (if (or read-all
4265                   (and (zerop (length gnus-newsgroup-marked))
4266                        (zerop (length gnus-newsgroup-unreads)))
4267                   (eq (gnus-group-find-parameter group 'display)
4268                       'all))
4269               (or
4270                (gnus-uncompress-range (gnus-active group))
4271                (gnus-cache-articles-in-group group))
4272             (sort (append gnus-newsgroup-dormant gnus-newsgroup-marked
4273                           (copy-sequence gnus-newsgroup-unreads))
4274                   '<)))
4275          (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
4276          (scored (length scored-list))
4277          (number (length articles))
4278          (marked (+ (length gnus-newsgroup-marked)
4279                     (length gnus-newsgroup-dormant)))
4280          (select
4281           (cond
4282            ((numberp read-all)
4283             read-all)
4284            (t
4285             (condition-case ()
4286                 (cond
4287                  ((and (or (<= scored marked) (= scored number))
4288                        (natnump gnus-large-newsgroup)
4289                        (> number gnus-large-newsgroup))
4290                   (let* ((cursor-in-echo-area nil)
4291                          (input (read-from-minibuffer
4292                                  (format
4293                                   "How many articles from %s (max %d): "
4294                                   (gnus-limit-string gnus-newsgroup-name 35)
4295                                   number)
4296                                  (cons (number-to-string gnus-large-newsgroup)
4297                                        0))))
4298                     (if (string-match "^[ \t]*$" input)
4299                         number
4300                       input)))
4301                  ((and (> scored marked) (< scored number)
4302                        (> (- scored number) 20))
4303                   (let ((input
4304                          (read-string
4305                           (format "%s %s (%d scored, %d total): "
4306                                   "How many articles from"
4307                                   group scored number))))
4308                     (if (string-match "^[ \t]*$" input)
4309                         number input)))
4310                  (t number))
4311               (quit nil))))))
4312     (setq select (if (stringp select) (string-to-number select) select))
4313     (if (or (null select) (zerop select))
4314         select
4315       (if (and (not (zerop scored)) (<= (abs select) scored))
4316           (progn
4317             (setq articles (sort scored-list '<))
4318             (setq number (length articles)))
4319         (setq articles (copy-sequence articles)))
4320
4321       (when (< (abs select) number)
4322         (if (< select 0)
4323             ;; Select the N oldest articles.
4324             (setcdr (nthcdr (1- (abs select)) articles) nil)
4325           ;; Select the N most recent articles.
4326           (setq articles (nthcdr (- number select) articles))))
4327       (setq gnus-newsgroup-unselected
4328             (gnus-sorted-intersection
4329              gnus-newsgroup-unreads
4330              (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4331       (when gnus-alter-articles-to-read-function
4332         (setq gnus-newsgroup-unreads
4333               (sort
4334                (funcall gnus-alter-articles-to-read-function
4335                         gnus-newsgroup-name gnus-newsgroup-unreads)
4336                '<)))
4337       articles)))
4338
4339 (defun gnus-killed-articles (killed articles)
4340   (let (out)
4341     (while articles
4342       (when (inline (gnus-member-of-range (car articles) killed))
4343         (push (car articles) out))
4344       (setq articles (cdr articles)))
4345     out))
4346
4347 (defun gnus-uncompress-marks (marks)
4348   "Uncompress the mark ranges in MARKS."
4349   (let ((uncompressed '(score bookmark))
4350         out)
4351     (while marks
4352       (if (memq (caar marks) uncompressed)
4353           (push (car marks) out)
4354         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
4355       (setq marks (cdr marks)))
4356     out))
4357
4358 (defun gnus-adjust-marked-articles (info)
4359   "Set all article lists and remove all marks that are no longer valid."
4360   (let* ((marked-lists (gnus-info-marks info))
4361          (active (gnus-active (gnus-info-group info)))
4362          (min (car active))
4363          (max (cdr active))
4364          (types gnus-article-mark-lists)
4365          (uncompressed '(score bookmark killed))
4366          marks var articles article mark)
4367
4368     (while marked-lists
4369       (setq marks (pop marked-lists))
4370       (set (setq var (intern (format "gnus-newsgroup-%s"
4371                                      (car (rassq (setq mark (car marks))
4372                                                  types)))))
4373            (if (memq (car marks) uncompressed) (cdr marks)
4374              (gnus-uncompress-range (cdr marks))))
4375
4376       (setq articles (symbol-value var))
4377
4378       ;; All articles have to be subsets of the active articles.
4379       (cond
4380        ;; Adjust "simple" lists.
4381        ((memq mark '(tick dormant expire reply save))
4382         (while articles
4383           (when (or (< (setq article (pop articles)) min) (> article max))
4384             (set var (delq article (symbol-value var))))))
4385        ;; Adjust assocs.
4386        ((memq mark uncompressed)
4387         (when (not (listp (cdr (symbol-value var))))
4388           (set var (list (symbol-value var))))
4389         (when (not (listp (cdr articles)))
4390           (setq articles (list articles)))
4391         (while articles
4392           (when (or (not (consp (setq article (pop articles))))
4393                     (< (car article) min)
4394                     (> (car article) max))
4395             (set var (delq article (symbol-value var))))))))))
4396
4397 (defun gnus-update-missing-marks (missing)
4398   "Go through the list of MISSING articles and remove them from the mark lists."
4399   (when missing
4400     (let ((types gnus-article-mark-lists)
4401           var m)
4402       ;; Go through all types.
4403       (while types
4404         (setq var (intern (format "gnus-newsgroup-%s" (car (pop types)))))
4405         (when (symbol-value var)
4406           ;; This list has articles.  So we delete all missing articles
4407           ;; from it.
4408           (setq m missing)
4409           (while m
4410             (set var (delq (pop m) (symbol-value var)))))))))
4411
4412 (defun gnus-update-marks ()
4413   "Enter the various lists of marked articles into the newsgroup info list."
4414   (let ((types gnus-article-mark-lists)
4415         (info (gnus-get-info gnus-newsgroup-name))
4416         (uncompressed '(score bookmark killed))
4417         type list newmarked symbol delta-marks)
4418     (when info
4419       ;; Add all marks lists to the list of marks lists.
4420       (while (setq type (pop types))
4421         (setq list (symbol-value
4422                     (setq symbol
4423                           (intern (format "gnus-newsgroup-%s"
4424                                           (car type))))))
4425
4426         (when list
4427           ;; Get rid of the entries of the articles that have the
4428           ;; default score.
4429           (when (and (eq (cdr type) 'score)
4430                      gnus-save-score
4431                      list)
4432             (let* ((arts list)
4433                    (prev (cons nil list))
4434                    (all prev))
4435               (while arts
4436                 (if (or (not (consp (car arts)))
4437                         (= (cdar arts) gnus-summary-default-score))
4438                     (setcdr prev (cdr arts))
4439                   (setq prev arts))
4440                 (setq arts (cdr arts)))
4441               (setq list (cdr all)))))
4442
4443         (unless (memq (cdr type) uncompressed)
4444           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
4445
4446         (when (gnus-check-backend-function
4447                'request-set-mark gnus-newsgroup-name)
4448           ;; propagate flags to server, with the following exceptions:
4449           ;; uncompressed:s are not proper flags (they are cons cells)
4450           ;; cache is a internal gnus flag
4451           ;; download are local to one gnus installation (well)
4452           ;; unsend are for nndraft groups only
4453           ;; xxx: generality of this?  this suits nnimap anyway
4454           (unless (memq (cdr type) (append '(cache download unsend)
4455                                            uncompressed))
4456             (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
4457                    (del (gnus-remove-from-range (gnus-copy-sequence old) list))
4458                    (add (gnus-remove-from-range
4459                          (gnus-copy-sequence list) old)))
4460               (when add
4461                 (push (list add 'add (list (cdr type))) delta-marks))
4462               (when del
4463                 (push (list del 'del (list (cdr type))) delta-marks)))))
4464
4465         (when list
4466           (push (cons (cdr type) list) newmarked)))
4467
4468       (when delta-marks
4469         (unless (gnus-check-group gnus-newsgroup-name)
4470           (error "Can't open server for %s" gnus-newsgroup-name))
4471         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
4472
4473       ;; Enter these new marks into the info of the group.
4474       (if (nthcdr 3 info)
4475           (setcar (nthcdr 3 info) newmarked)
4476         ;; Add the marks lists to the end of the info.
4477         (when newmarked
4478           (setcdr (nthcdr 2 info) (list newmarked))))
4479
4480       ;; Cut off the end of the info if there's nothing else there.
4481       (let ((i 5))
4482         (while (and (> i 2)
4483                     (not (nth i info)))
4484           (when (nthcdr (decf i) info)
4485             (setcdr (nthcdr i info) nil)))))))
4486
4487 (defun gnus-set-mode-line (where)
4488   "Set the mode line of the article or summary buffers.
4489 If WHERE is `summary', the summary mode line format will be used."
4490   ;; Is this mode line one we keep updated?
4491   (when (and (memq where gnus-updated-mode-lines)
4492              (symbol-value
4493               (intern (format "gnus-%s-mode-line-format-spec" where))))
4494     (let (mode-string)
4495       (save-excursion
4496         ;; We evaluate this in the summary buffer since these
4497         ;; variables are buffer-local to that buffer.
4498         (set-buffer gnus-summary-buffer)
4499         ;; We bind all these variables that are used in the `eval' form
4500         ;; below.
4501         (let* ((mformat (symbol-value
4502                          (intern
4503                           (format "gnus-%s-mode-line-format-spec" where))))
4504                (gnus-tmp-group-name (gnus-group-name-decode
4505                                      gnus-newsgroup-name
4506                                      (gnus-group-name-charset
4507                                       nil
4508                                       gnus-newsgroup-name)))
4509                (gnus-tmp-article-number (or gnus-current-article 0))
4510                (gnus-tmp-unread gnus-newsgroup-unreads)
4511                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
4512                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
4513                (gnus-tmp-unread-and-unselected
4514                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
4515                             (zerop gnus-tmp-unselected))
4516                        "")
4517                       ((zerop gnus-tmp-unselected)
4518                        (format "{%d more}" gnus-tmp-unread-and-unticked))
4519                       (t (format "{%d(+%d) more}"
4520                                  gnus-tmp-unread-and-unticked
4521                                  gnus-tmp-unselected))))
4522                (gnus-tmp-subject
4523                 (if (and gnus-current-headers
4524                          (vectorp gnus-current-headers))
4525                     (gnus-mode-string-quote
4526                      (mail-header-subject gnus-current-headers))
4527                   ""))
4528                bufname-length max-len
4529                gnus-tmp-header);; passed as argument to any user-format-funcs
4530           (setq mode-string (eval mformat))
4531           (setq bufname-length (if (string-match "%b" mode-string)
4532                                    (- (length
4533                                        (buffer-name
4534                                         (if (eq where 'summary)
4535                                             nil
4536                                           (get-buffer gnus-article-buffer))))
4537                                       2)
4538                                  0))
4539           (setq max-len (max 4 (if gnus-mode-non-string-length
4540                                    (- (window-width)
4541                                       gnus-mode-non-string-length
4542                                       bufname-length)
4543                                  (length mode-string))))
4544           ;; We might have to chop a bit of the string off...
4545           (when (> (length mode-string) max-len)
4546             (setq mode-string
4547                   (concat (gnus-truncate-string mode-string (- max-len 3))
4548                           "...")))
4549           ;; Pad the mode string a bit.
4550           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
4551       ;; Update the mode line.
4552       (setq mode-line-buffer-identification
4553             (gnus-mode-line-buffer-identification (list mode-string)))
4554       (set-buffer-modified-p t))))
4555
4556 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
4557   "Go through the HEADERS list and add all Xrefs to a hash table.
4558 The resulting hash table is returned, or nil if no Xrefs were found."
4559   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
4560          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
4561          (xref-hashtb (gnus-make-hashtable))
4562          start group entry number xrefs header)
4563     (while headers
4564       (setq header (pop headers))
4565       (when (and (setq xrefs (mail-header-xref header))
4566                  (not (memq (setq number (mail-header-number header))
4567                             unreads)))
4568         (setq start 0)
4569         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
4570           (setq start (match-end 0))
4571           (setq group (if prefix
4572                           (concat prefix (substring xrefs (match-beginning 1)
4573                                                     (match-end 1)))
4574                         (substring xrefs (match-beginning 1) (match-end 1))))
4575           (setq number
4576                 (string-to-int (substring xrefs (match-beginning 2)
4577                                           (match-end 2))))
4578           (if (setq entry (gnus-gethash group xref-hashtb))
4579               (setcdr entry (cons number (cdr entry)))
4580             (gnus-sethash group (cons number nil) xref-hashtb)))))
4581     (and start xref-hashtb)))
4582
4583 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
4584   "Look through all the headers and mark the Xrefs as read."
4585   (let ((virtual (gnus-virtual-group-p from-newsgroup))
4586         name entry info xref-hashtb idlist method nth4)
4587     (save-excursion
4588       (set-buffer gnus-group-buffer)
4589       (when (setq xref-hashtb
4590                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
4591         (mapatoms
4592          (lambda (group)
4593            (unless (string= from-newsgroup (setq name (symbol-name group)))
4594              (setq idlist (symbol-value group))
4595              ;; Dead groups are not updated.
4596              (and (prog1
4597                       (setq entry (gnus-gethash name gnus-newsrc-hashtb)
4598                             info (nth 2 entry))
4599                     (when (stringp (setq nth4 (gnus-info-method info)))
4600                       (setq nth4 (gnus-server-to-method nth4))))
4601                   ;; Only do the xrefs if the group has the same
4602                   ;; select method as the group we have just read.
4603                   (or (gnus-methods-equal-p
4604                        nth4 (gnus-find-method-for-group from-newsgroup))
4605                       virtual
4606                       (equal nth4 (setq method (gnus-find-method-for-group
4607                                                 from-newsgroup)))
4608                       (and (equal (car nth4) (car method))
4609                            (equal (nth 1 nth4) (nth 1 method))))
4610                   gnus-use-cross-reference
4611                   (or (not (eq gnus-use-cross-reference t))
4612                       virtual
4613                       ;; Only do cross-references on subscribed
4614                       ;; groups, if that is what is wanted.
4615                       (<= (gnus-info-level info) gnus-level-subscribed))
4616                   (gnus-group-make-articles-read name idlist))))
4617          xref-hashtb)))))
4618
4619 (defun gnus-compute-read-articles (group articles)
4620   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4621          (info (nth 2 entry))
4622          (active (gnus-active group))
4623          ninfo)
4624     (when entry
4625       ;; First peel off all invalid article numbers.
4626       (when active
4627         (let ((ids articles)
4628               id first)
4629           (while (setq id (pop ids))
4630             (when (and first (> id (cdr active)))
4631               ;; We'll end up in this situation in one particular
4632               ;; obscure situation.  If you re-scan a group and get
4633               ;; a new article that is cross-posted to a different
4634               ;; group that has not been re-scanned, you might get
4635               ;; crossposted article that has a higher number than
4636               ;; Gnus believes possible.  So we re-activate this
4637               ;; group as well.  This might mean doing the
4638               ;; crossposting thingy will *increase* the number
4639               ;; of articles in some groups.  Tsk, tsk.
4640               (setq active (or (gnus-activate-group group) active)))
4641             (when (or (> id (cdr active))
4642                       (< id (car active)))
4643               (setq articles (delq id articles))))))
4644       ;; If the read list is nil, we init it.
4645       (if (and active
4646                (null (gnus-info-read info))
4647                (> (car active) 1))
4648           (setq ninfo (cons 1 (1- (car active))))
4649         (setq ninfo (gnus-info-read info)))
4650       ;; Then we add the read articles to the range.
4651       (gnus-add-to-range
4652        ninfo (setq articles (sort articles '<))))))
4653
4654 (defun gnus-group-make-articles-read (group articles)
4655   "Update the info of GROUP to say that ARTICLES are read."
4656   (let* ((num 0)
4657          (entry (gnus-gethash group gnus-newsrc-hashtb))
4658          (info (nth 2 entry))
4659          (active (gnus-active group))
4660          range)
4661     (when entry
4662       (setq range (gnus-compute-read-articles group articles))
4663       (save-excursion
4664         (set-buffer gnus-group-buffer)
4665         (gnus-undo-register
4666           `(progn
4667              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
4668              (gnus-info-set-read ',info ',(gnus-info-read info))
4669              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
4670              (gnus-group-update-group ,group t))))
4671       ;; Add the read articles to the range.
4672       (gnus-info-set-read info range)
4673       ;; Then we have to re-compute how many unread
4674       ;; articles there are in this group.
4675       (when active
4676         (cond
4677          ((not range)
4678           (setq num (- (1+ (cdr active)) (car active))))
4679          ((not (listp (cdr range)))
4680           (setq num (- (cdr active) (- (1+ (cdr range))
4681                                        (car range)))))
4682          (t
4683           (while range
4684             (if (numberp (car range))
4685                 (setq num (1+ num))
4686               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
4687             (setq range (cdr range)))
4688           (setq num (- (cdr active) num))))
4689         ;; Update the number of unread articles.
4690         (setcar entry num)
4691         ;; Update the group buffer.
4692         (gnus-group-update-group group t)))))
4693
4694 (defvar gnus-newsgroup-none-id 0)
4695
4696 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
4697   (let ((cur nntp-server-buffer)
4698         (dependencies
4699          (or dependencies
4700              (save-excursion (set-buffer gnus-summary-buffer)
4701                              gnus-newsgroup-dependencies)))
4702         headers id end ref
4703         (mail-parse-charset gnus-newsgroup-charset)
4704         (mail-parse-ignored-charsets
4705          (save-excursion (condition-case nil
4706                              (set-buffer gnus-summary-buffer)
4707                            (error))
4708                          gnus-newsgroup-ignored-charsets)))
4709     (save-excursion
4710       (set-buffer nntp-server-buffer)
4711       ;; Translate all TAB characters into SPACE characters.
4712       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
4713       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4714       (gnus-run-hooks 'gnus-parse-headers-hook)
4715       (let ((case-fold-search t)
4716             in-reply-to header p lines chars ctype)
4717         (goto-char (point-min))
4718         ;; Search to the beginning of the next header.  Error messages
4719         ;; do not begin with 2 or 3.
4720         (while (re-search-forward "^[23][0-9]+ " nil t)
4721           (setq id nil
4722                 ref nil)
4723           ;; This implementation of this function, with nine
4724           ;; search-forwards instead of the one re-search-forward and
4725           ;; a case (which basically was the old function) is actually
4726           ;; about twice as fast, even though it looks messier.  You
4727           ;; can't have everything, I guess.  Speed and elegance
4728           ;; doesn't always go hand in hand.
4729           (setq
4730            header
4731            (make-full-mail-header
4732             ;; Number.
4733             (prog1
4734                 (read cur)
4735               (end-of-line)
4736               (setq p (point))
4737               (narrow-to-region (point)
4738                                 (or (and (search-forward "\n.\n" nil t)
4739                                          (- (point) 2))
4740                                     (point))))
4741             ;; Subject.
4742             (progn
4743               (goto-char p)
4744               (if (search-forward "\nsubject: " nil t)
4745                   (buffer-substring (match-end 0) (std11-field-end))
4746                 "(none)"))
4747             ;; From.
4748             (progn
4749               (goto-char p)
4750               (if (search-forward "\nfrom: " nil t)
4751                   (buffer-substring (match-end 0) (std11-field-end))
4752                 "(nobody)"))
4753             ;; Date.
4754             (progn
4755               (goto-char p)
4756               (if (search-forward "\ndate: " nil t)
4757                   (buffer-substring (match-end 0) (std11-field-end))
4758                 ""))
4759             ;; Message-ID.
4760             (progn
4761               (goto-char p)
4762               (setq id (if (re-search-forward
4763                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
4764                            ;; We do it this way to make sure the Message-ID
4765                            ;; is (somewhat) syntactically valid.
4766                            (buffer-substring (match-beginning 1)
4767                                              (match-end 1))
4768                          ;; If there was no message-id, we just fake one
4769                          ;; to make subsequent routines simpler.
4770                          (nnheader-generate-fake-message-id))))
4771             ;; References.
4772             (progn
4773               (goto-char p)
4774               (if (search-forward "\nreferences: " nil t)
4775                   (progn
4776                     (setq end (point))
4777                     (prog1
4778                         (buffer-substring (match-end 0) (std11-field-end))
4779                       (setq ref
4780                             (buffer-substring
4781                              (progn
4782                                ;; (end-of-line)
4783                                (search-backward ">" end t)
4784                                (1+ (point)))
4785                              (progn
4786                                (search-backward "<" end t)
4787                                (point))))))
4788                 ;; Get the references from the in-reply-to header if there
4789                 ;; were no references and the in-reply-to header looks
4790                 ;; promising.
4791                 (if (and (search-forward "\nin-reply-to: " nil t)
4792                          (setq in-reply-to
4793                                (buffer-substring (match-end 0)
4794                                                  (std11-field-end)))
4795                          (string-match "<[^>]+>" in-reply-to))
4796                     (let (ref2)
4797                       (setq ref (substring in-reply-to (match-beginning 0)
4798                                            (match-end 0)))
4799                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
4800                         (setq ref2 (substring in-reply-to (match-beginning 0)
4801                                               (match-end 0)))
4802                         (when (> (length ref2) (length ref))
4803                           (setq ref ref2)))
4804                       ref)
4805                   (setq ref nil))))
4806             ;; Chars.
4807             (progn
4808               (goto-char p)
4809               (if (search-forward "\nchars: " nil t)
4810                   (if (numberp (setq chars (ignore-errors (read cur))))
4811                       chars 0)
4812                 0))
4813             ;; Lines.
4814             (progn
4815               (goto-char p)
4816               (if (search-forward "\nlines: " nil t)
4817                   (if (numberp (setq lines (ignore-errors (read cur))))
4818                       lines 0)
4819                 0))
4820             ;; Xref.
4821             (progn
4822               (goto-char p)
4823               (and (search-forward "\nxref: " nil t)
4824                    (buffer-substring (match-end 0) (std11-field-end))))
4825             ;; Extra.
4826             (when gnus-extra-headers
4827               (let ((extra gnus-extra-headers)
4828                     out)
4829                 (while extra
4830                   (goto-char p)
4831                   (when (search-forward
4832                          (concat "\n" (symbol-name (car extra)) ": ") nil t)
4833                     (push (cons (car extra)
4834                                 (buffer-substring (match-end 0)
4835                                                   (std11-field-end)))
4836                           out))
4837                   (pop extra))
4838                 out))))
4839           (goto-char p)
4840           (if (and (search-forward "\ncontent-type: " nil t)
4841                    (setq ctype
4842                          (buffer-substring (match-end 0) (std11-field-end))))
4843               (mime-entity-set-content-type-internal
4844                header (mime-parse-Content-Type ctype)))
4845           (when (equal id ref)
4846             (setq ref nil))
4847
4848           (when gnus-alter-header-function
4849             (funcall gnus-alter-header-function header)
4850             (setq id (mail-header-id header)
4851                   ref (gnus-parent-id (mail-header-references header))))
4852
4853           (when (setq header
4854                       (gnus-dependencies-add-header
4855                        header dependencies force-new))
4856             (push header headers))
4857           (goto-char (point-max))
4858           (widen))
4859         (nreverse headers)))))
4860
4861 ;; Goes through the xover lines and returns a list of vectors
4862 (defun gnus-get-newsgroup-headers-xover (sequence &optional
4863                                                   force-new dependencies
4864                                                   group also-fetch-heads)
4865   "Parse the news overview data in the server buffer.
4866 Return a list of headers that match SEQUENCE (see
4867 `nntp-retrieve-headers')."
4868   ;; Get the Xref when the users reads the articles since most/some
4869   ;; NNTP servers do not include Xrefs when using XOVER.
4870   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
4871   (let ((mail-parse-charset gnus-newsgroup-charset)
4872         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
4873         (cur nntp-server-buffer)
4874         (dependencies (or dependencies gnus-newsgroup-dependencies))
4875         number headers header)
4876     (save-excursion
4877       (set-buffer nntp-server-buffer)
4878       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4879       ;; Allow the user to mangle the headers before parsing them.
4880       (gnus-run-hooks 'gnus-parse-headers-hook)
4881       (goto-char (point-min))
4882       (while (not (eobp))
4883         (condition-case ()
4884             (while (and sequence (not (eobp)))
4885               (setq number (read cur))
4886               (while (and sequence
4887                           (< (car sequence) number))
4888                 (setq sequence (cdr sequence)))
4889               (and sequence
4890                    (eq number (car sequence))
4891                    (progn
4892                      (setq sequence (cdr sequence))
4893                      (setq header (inline
4894                                     (gnus-nov-parse-line
4895                                      number dependencies force-new))))
4896                    (push header headers))
4897               (forward-line 1))
4898           (error
4899            (gnus-error 4 "Strange nov line (%d)"
4900                        (count-lines (point-min) (point)))))
4901         (forward-line 1))
4902       ;; A common bug in inn is that if you have posted an article and
4903       ;; then retrieves the active file, it will answer correctly --
4904       ;; the new article is included.  However, a NOV entry for the
4905       ;; article may not have been generated yet, so this may fail.
4906       ;; We work around this problem by retrieving the last few
4907       ;; headers using HEAD.
4908       (if (or (not also-fetch-heads)
4909               (not sequence))
4910           ;; We (probably) got all the headers.
4911           (nreverse headers)
4912         (let ((gnus-nov-is-evil t))
4913           (nconc
4914            (nreverse headers)
4915            (gnus-retrieve-parsed-headers sequence group)
4916            ))))))
4917
4918 (defun gnus-article-get-xrefs ()
4919   "Fill in the Xref value in `gnus-current-headers', if necessary.
4920 This is meant to be called in `gnus-article-internal-prepare-hook'."
4921   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
4922                                  gnus-current-headers)))
4923     (or (not gnus-use-cross-reference)
4924         (not headers)
4925         (and (mail-header-xref headers)
4926              (not (string= (mail-header-xref headers) "")))
4927         (let ((case-fold-search t)
4928               xref)
4929           (save-restriction
4930             (nnheader-narrow-to-headers)
4931             (goto-char (point-min))
4932             (when (or (and (not (eobp))
4933                            (eq (downcase (char-after)) ?x)
4934                            (looking-at "Xref:"))
4935                       (search-forward "\nXref:" nil t))
4936               (goto-char (1+ (match-end 0)))
4937               (setq xref (buffer-substring (point)
4938                                            (progn (end-of-line) (point))))
4939               (mail-header-set-xref headers xref)))))))
4940
4941 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
4942   "Find article ID and insert the summary line for that article.
4943 OLD-HEADER can either be a header or a line number to insert
4944 the subject line on."
4945   (let* ((line (and (numberp old-header) old-header))
4946          (old-header (and (vectorp old-header) old-header))
4947          (header (cond ((and old-header use-old-header)
4948                         old-header)
4949                        ((and (numberp id)
4950                              (gnus-number-to-header id))
4951                         (gnus-number-to-header id))
4952                        (t
4953                         (gnus-read-header id))))
4954          (number (and (numberp id) id))
4955          d)
4956     (when header
4957       ;; Rebuild the thread that this article is part of and go to the
4958       ;; article we have fetched.
4959       (when (and (not gnus-show-threads)
4960                  old-header)
4961         (when (and number
4962                    (setq d (gnus-data-find (mail-header-number old-header))))
4963           (goto-char (gnus-data-pos d))
4964           (gnus-data-remove
4965            number
4966            (- (gnus-point-at-bol)
4967               (prog1
4968                   (1+ (gnus-point-at-eol))
4969                 (gnus-delete-line))))))
4970       (when old-header
4971         (mail-header-set-number header (mail-header-number old-header)))
4972       (setq gnus-newsgroup-sparse
4973             (delq (setq number (mail-header-number header))
4974                   gnus-newsgroup-sparse))
4975       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
4976       (push number gnus-newsgroup-limit)
4977       (gnus-rebuild-thread (mail-header-id header) line)
4978       (gnus-summary-goto-subject number nil t))
4979     (when (and (numberp number)
4980                (> number 0))
4981       ;; We have to update the boundaries even if we can't fetch the
4982       ;; article if ID is a number -- so that the next `P' or `N'
4983       ;; command will fetch the previous (or next) article even
4984       ;; if the one we tried to fetch this time has been canceled.
4985       (when (> number gnus-newsgroup-end)
4986         (setq gnus-newsgroup-end number))
4987       (when (< number gnus-newsgroup-begin)
4988         (setq gnus-newsgroup-begin number))
4989       (setq gnus-newsgroup-unselected
4990             (delq number gnus-newsgroup-unselected)))
4991     ;; Report back a success?
4992     (and header (mail-header-number header))))
4993
4994 ;;; Process/prefix in the summary buffer
4995
4996 (defun gnus-summary-work-articles (n)
4997   "Return a list of articles to be worked upon.
4998 The prefix argument, the list of process marked articles, and the
4999 current article will be taken into consideration."
5000   (save-excursion
5001     (set-buffer gnus-summary-buffer)
5002     (cond
5003      (n
5004       ;; A numerical prefix has been given.
5005       (setq n (prefix-numeric-value n))
5006       (let ((backward (< n 0))
5007             (n (abs (prefix-numeric-value n)))
5008             articles article)
5009         (save-excursion
5010           (while
5011               (and (> n 0)
5012                    (push (setq article (gnus-summary-article-number))
5013                          articles)
5014                    (if backward
5015                        (gnus-summary-find-prev nil article)
5016                      (gnus-summary-find-next nil article)))
5017             (decf n)))
5018         (nreverse articles)))
5019      ((and (gnus-region-active-p) (mark))
5020       (message "region active")
5021       ;; Work on the region between point and mark.
5022       (let ((max (max (point) (mark)))
5023             articles article)
5024         (save-excursion
5025           (goto-char (min (point) (mark)))
5026           (while
5027               (and
5028                (push (setq article (gnus-summary-article-number)) articles)
5029                (gnus-summary-find-next nil article)
5030                (< (point) max)))
5031           (nreverse articles))))
5032      (gnus-newsgroup-processable
5033       ;; There are process-marked articles present.
5034       ;; Save current state.
5035       (gnus-summary-save-process-mark)
5036       ;; Return the list.
5037       (reverse gnus-newsgroup-processable))
5038      (t
5039       ;; Just return the current article.
5040       (list (gnus-summary-article-number))))))
5041
5042 (defmacro gnus-summary-iterate (arg &rest forms)
5043   "Iterate over the process/prefixed articles and do FORMS.
5044 ARG is the interactive prefix given to the command.  FORMS will be
5045 executed with point over the summary line of the articles."
5046   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
5047     `(let ((,articles (gnus-summary-work-articles ,arg)))
5048        (while ,articles
5049          (gnus-summary-goto-subject (car ,articles))
5050          ,@forms
5051          (pop ,articles)))))
5052
5053 (put 'gnus-summary-iterate 'lisp-indent-function 1)
5054 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
5055
5056 (defun gnus-summary-save-process-mark ()
5057   "Push the current set of process marked articles on the stack."
5058   (interactive)
5059   (push (copy-sequence gnus-newsgroup-processable)
5060         gnus-newsgroup-process-stack))
5061
5062 (defun gnus-summary-kill-process-mark ()
5063   "Push the current set of process marked articles on the stack and unmark."
5064   (interactive)
5065   (gnus-summary-save-process-mark)
5066   (gnus-summary-unmark-all-processable))
5067
5068 (defun gnus-summary-yank-process-mark ()
5069   "Pop the last process mark state off the stack and restore it."
5070   (interactive)
5071   (unless gnus-newsgroup-process-stack
5072     (error "Empty mark stack"))
5073   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
5074
5075 (defun gnus-summary-process-mark-set (set)
5076   "Make SET into the current process marked articles."
5077   (gnus-summary-unmark-all-processable)
5078   (while set
5079     (gnus-summary-set-process-mark (pop set))))
5080
5081 ;;; Searching and stuff
5082
5083 (defun gnus-summary-search-group (&optional backward use-level)
5084   "Search for next unread newsgroup.
5085 If optional argument BACKWARD is non-nil, search backward instead."
5086   (save-excursion
5087     (set-buffer gnus-group-buffer)
5088     (when (gnus-group-search-forward
5089            backward nil (if use-level (gnus-group-group-level) nil))
5090       (gnus-group-group-name))))
5091
5092 (defun gnus-summary-best-group (&optional exclude-group)
5093   "Find the name of the best unread group.
5094 If EXCLUDE-GROUP, do not go to this group."
5095   (save-excursion
5096     (set-buffer gnus-group-buffer)
5097     (save-excursion
5098       (gnus-group-best-unread-group exclude-group))))
5099
5100 (defun gnus-summary-find-next (&optional unread article backward undownloaded)
5101   (if backward (gnus-summary-find-prev)
5102     (let* ((dummy (gnus-summary-article-intangible-p))
5103            (article (or article (gnus-summary-article-number)))
5104            (arts (gnus-data-find-list article))
5105            result)
5106       (when (and (not dummy)
5107                  (or (not gnus-summary-check-current)
5108                      (not unread)
5109                      (not (gnus-data-unread-p (car arts)))))
5110         (setq arts (cdr arts)))
5111       (when (setq result
5112                   (if unread
5113                       (progn
5114                         (while arts
5115                           (when (or (and undownloaded
5116                                          (eq gnus-undownloaded-mark
5117                                              (gnus-data-mark (car arts))))
5118                                     (gnus-data-unread-p (car arts)))
5119                             (setq result (car arts)
5120                                   arts nil))
5121                           (setq arts (cdr arts)))
5122                         result)
5123                     (car arts)))
5124         (goto-char (gnus-data-pos result))
5125         (gnus-data-number result)))))
5126
5127 (defun gnus-summary-find-prev (&optional unread article)
5128   (let* ((eobp (eobp))
5129          (article (or article (gnus-summary-article-number)))
5130          (arts (gnus-data-find-list article (gnus-data-list 'rev)))
5131          result)
5132     (when (and (not eobp)
5133                (or (not gnus-summary-check-current)
5134                    (not unread)
5135                    (not (gnus-data-unread-p (car arts)))))
5136       (setq arts (cdr arts)))
5137     (when (setq result
5138                 (if unread
5139                     (progn
5140                       (while arts
5141                         (when (gnus-data-unread-p (car arts))
5142                           (setq result (car arts)
5143                                 arts nil))
5144                         (setq arts (cdr arts)))
5145                       result)
5146                   (car arts)))
5147       (goto-char (gnus-data-pos result))
5148       (gnus-data-number result))))
5149
5150 (defun gnus-summary-find-subject (subject &optional unread backward article)
5151   (let* ((simp-subject (gnus-simplify-subject-fully subject))
5152          (article (or article (gnus-summary-article-number)))
5153          (articles (gnus-data-list backward))
5154          (arts (gnus-data-find-list article articles))
5155          result)
5156     (when (or (not gnus-summary-check-current)
5157               (not unread)
5158               (not (gnus-data-unread-p (car arts))))
5159       (setq arts (cdr arts)))
5160     (while arts
5161       (and (or (not unread)
5162                (gnus-data-unread-p (car arts)))
5163            (vectorp (gnus-data-header (car arts)))
5164            (gnus-subject-equal
5165             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
5166            (setq result (car arts)
5167                  arts nil))
5168       (setq arts (cdr arts)))
5169     (and result
5170          (goto-char (gnus-data-pos result))
5171          (gnus-data-number result))))
5172
5173 (defun gnus-summary-search-forward (&optional unread subject backward)
5174   "Search forward for an article.
5175 If UNREAD, look for unread articles.  If SUBJECT, look for
5176 articles with that subject.  If BACKWARD, search backward instead."
5177   (cond (subject (gnus-summary-find-subject subject unread backward))
5178         (backward (gnus-summary-find-prev unread))
5179         (t (gnus-summary-find-next unread))))
5180
5181 (defun gnus-recenter (&optional n)
5182   "Center point in window and redisplay frame.
5183 Also do horizontal recentering."
5184   (interactive "P")
5185   (when (and gnus-auto-center-summary
5186              (not (eq gnus-auto-center-summary 'vertical)))
5187     (gnus-horizontal-recenter))
5188   (recenter n))
5189
5190 (defun gnus-summary-recenter ()
5191   "Center point in the summary window.
5192 If `gnus-auto-center-summary' is nil, or the article buffer isn't
5193 displayed, no centering will be performed."
5194   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
5195   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
5196   (interactive)
5197   (let* ((top (cond ((< (window-height) 4) 0)
5198                     ((< (window-height) 7) 1)
5199                     (t (if (numberp gnus-auto-center-summary)
5200                            gnus-auto-center-summary
5201                          2))))
5202          (height (1- (window-height)))
5203          (bottom (save-excursion (goto-char (point-max))
5204                                  (forward-line (- height))
5205                                  (point)))
5206          (window (get-buffer-window (current-buffer))))
5207     ;; The user has to want it.
5208     (when gnus-auto-center-summary
5209       (when (get-buffer-window gnus-article-buffer)
5210         ;; Only do recentering when the article buffer is displayed,
5211         ;; Set the window start to either `bottom', which is the biggest
5212         ;; possible valid number, or the second line from the top,
5213         ;; whichever is the least.
5214         (set-window-start
5215          window (min bottom (save-excursion
5216                               (forward-line (- top)) (point)))
5217          t))
5218       ;; Do horizontal recentering while we're at it.
5219       (when (and (get-buffer-window (current-buffer) t)
5220                  (not (eq gnus-auto-center-summary 'vertical)))
5221         (let ((selected (selected-window)))
5222           (select-window (get-buffer-window (current-buffer) t))
5223           (gnus-summary-position-point)
5224           (gnus-horizontal-recenter)
5225           (select-window selected))))))
5226
5227 (defun gnus-summary-jump-to-group (newsgroup)
5228   "Move point to NEWSGROUP in group mode buffer."
5229   ;; Keep update point of group mode buffer if visible.
5230   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
5231       (save-window-excursion
5232         ;; Take care of tree window mode.
5233         (when (get-buffer-window gnus-group-buffer)
5234           (pop-to-buffer gnus-group-buffer))
5235         (gnus-group-jump-to-group newsgroup))
5236     (save-excursion
5237       ;; Take care of tree window mode.
5238       (if (get-buffer-window gnus-group-buffer)
5239           (pop-to-buffer gnus-group-buffer)
5240         (set-buffer gnus-group-buffer))
5241       (gnus-group-jump-to-group newsgroup))))
5242
5243 ;; This function returns a list of article numbers based on the
5244 ;; difference between the ranges of read articles in this group and
5245 ;; the range of active articles.
5246 (defun gnus-list-of-unread-articles (group)
5247   (let* ((read (gnus-info-read (gnus-get-info group)))
5248          (active (or (gnus-active group) (gnus-activate-group group)))
5249          (last (cdr active))
5250          first nlast unread)
5251     ;; If none are read, then all are unread.
5252     (if (not read)
5253         (setq first (car active))
5254       ;; If the range of read articles is a single range, then the
5255       ;; first unread article is the article after the last read
5256       ;; article.  Sounds logical, doesn't it?
5257       (if (and (not (listp (cdr read)))
5258                (or (< (car read) (car active))
5259                    (progn (setq read (list read))
5260                           nil)))
5261           (setq first (max (car active) (1+ (cdr read))))
5262         ;; `read' is a list of ranges.
5263         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
5264                                   (caar read)))
5265                   1)
5266           (setq first (car active)))
5267         (while read
5268           (when first
5269             (while (< first nlast)
5270               (push first unread)
5271               (setq first (1+ first))))
5272           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
5273           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
5274           (setq read (cdr read)))))
5275     ;; And add the last unread articles.
5276     (while (<= first last)
5277       (push first unread)
5278       (setq first (1+ first)))
5279     ;; Return the list of unread articles.
5280     (delq 0 (nreverse unread))))
5281
5282 (defun gnus-list-of-read-articles (group)
5283   "Return a list of unread, unticked and non-dormant articles."
5284   (let* ((info (gnus-get-info group))
5285          (marked (gnus-info-marks info))
5286          (active (gnus-active group)))
5287     (and info active
5288          (gnus-set-difference
5289           (gnus-sorted-complement
5290            (gnus-uncompress-range active)
5291            (gnus-list-of-unread-articles group))
5292           (append
5293            (gnus-uncompress-range (cdr (assq 'dormant marked)))
5294            (gnus-uncompress-range (cdr (assq 'tick marked))))))))
5295
5296 ;; Various summary commands
5297
5298 (defun gnus-summary-select-article-buffer ()
5299   "Reconfigure windows to show article buffer."
5300   (interactive)
5301   (if (not (gnus-buffer-live-p gnus-article-buffer))
5302       (error "There is no article buffer for this summary buffer")
5303     (gnus-configure-windows 'article)
5304     (select-window (get-buffer-window gnus-article-buffer))))
5305
5306 (defun gnus-summary-universal-argument (arg)
5307   "Perform any operation on all articles that are process/prefixed."
5308   (interactive "P")
5309   (let ((articles (gnus-summary-work-articles arg))
5310         func article)
5311     (if (eq
5312          (setq
5313           func
5314           (key-binding
5315            (read-key-sequence
5316             (substitute-command-keys
5317              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
5318          'undefined)
5319         (gnus-error 1 "Undefined key")
5320       (save-excursion
5321         (while articles
5322           (gnus-summary-goto-subject (setq article (pop articles)))
5323           (let (gnus-newsgroup-processable)
5324             (command-execute func))
5325           (gnus-summary-remove-process-mark article)))))
5326   (gnus-summary-position-point))
5327
5328 (defun gnus-summary-toggle-truncation (&optional arg)
5329   "Toggle truncation of summary lines.
5330 With arg, turn line truncation on iff arg is positive."
5331   (interactive "P")
5332   (setq truncate-lines
5333         (if (null arg) (not truncate-lines)
5334           (> (prefix-numeric-value arg) 0)))
5335   (redraw-display))
5336
5337 (defun gnus-summary-reselect-current-group (&optional all rescan)
5338   "Exit and then reselect the current newsgroup.
5339 The prefix argument ALL means to select all articles."
5340   (interactive "P")
5341   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
5342     (error "Ephemeral groups can't be reselected"))
5343   (let ((current-subject (gnus-summary-article-number))
5344         (group gnus-newsgroup-name))
5345     (setq gnus-newsgroup-begin nil)
5346     (gnus-summary-exit)
5347     ;; We have to adjust the point of group mode buffer because
5348     ;; point was moved to the next unread newsgroup by exiting.
5349     (gnus-summary-jump-to-group group)
5350     (when rescan
5351       (save-excursion
5352         (save-window-excursion
5353           ;; Don't show group contents.
5354           (set-window-start (selected-window) (point-max))
5355           (gnus-group-get-new-news-this-group 1))))
5356     (gnus-group-read-group all t)
5357     (gnus-summary-goto-subject current-subject nil t)))
5358
5359 (defun gnus-summary-rescan-group (&optional all)
5360   "Exit the newsgroup, ask for new articles, and select the newsgroup."
5361   (interactive "P")
5362   (gnus-summary-reselect-current-group all t))
5363
5364 (defun gnus-summary-update-info (&optional non-destructive)
5365   (save-excursion
5366     (let ((group gnus-newsgroup-name))
5367       (when group
5368         (when gnus-newsgroup-kill-headers
5369           (setq gnus-newsgroup-killed
5370                 (gnus-compress-sequence
5371                  (nconc
5372                   (gnus-set-sorted-intersection
5373                    (gnus-uncompress-range gnus-newsgroup-killed)
5374                    (setq gnus-newsgroup-unselected
5375                          (sort gnus-newsgroup-unselected '<)))
5376                   (setq gnus-newsgroup-unreads
5377                         (sort gnus-newsgroup-unreads '<)))
5378                  t)))
5379         (unless (listp (cdr gnus-newsgroup-killed))
5380           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
5381         (let ((headers gnus-newsgroup-headers))
5382           ;; Set the new ranges of read articles.
5383           (save-excursion
5384             (set-buffer gnus-group-buffer)
5385             (gnus-undo-force-boundary))
5386           (gnus-update-read-articles
5387            group (append gnus-newsgroup-unreads gnus-newsgroup-unselected))
5388           ;; Set the current article marks.
5389           (let ((gnus-newsgroup-scored
5390                  (if (and (not gnus-save-score)
5391                           (not non-destructive))
5392                      nil
5393                    gnus-newsgroup-scored)))
5394             (save-excursion
5395               (gnus-update-marks)))
5396           ;; Do the cross-ref thing.
5397           (when gnus-use-cross-reference
5398             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
5399           ;; Do not switch windows but change the buffer to work.
5400           (set-buffer gnus-group-buffer)
5401           (unless (gnus-ephemeral-group-p group)
5402             (gnus-group-update-group group)))))))
5403
5404 (defun gnus-summary-save-newsrc (&optional force)
5405   "Save the current number of read/marked articles in the dribble buffer.
5406 The dribble buffer will then be saved.
5407 If FORCE (the prefix), also save the .newsrc file(s)."
5408   (interactive "P")
5409   (gnus-summary-update-info t)
5410   (if force
5411       (gnus-save-newsrc-file)
5412     (gnus-dribble-save)))
5413
5414 (defun gnus-summary-exit (&optional temporary)
5415   "Exit reading current newsgroup, and then return to group selection mode.
5416 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
5417   (interactive)
5418   (gnus-set-global-variables)
5419   (gnus-kill-save-kill-buffer)
5420   (gnus-async-halt-prefetch)
5421   (let* ((group gnus-newsgroup-name)
5422          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
5423          (mode major-mode)
5424          (group-point nil)
5425          (buf (current-buffer)))
5426     (unless quit-config
5427       ;; Do adaptive scoring, and possibly save score files.
5428       (when gnus-newsgroup-adaptive
5429         (gnus-score-adaptive))
5430       (when gnus-use-scoring
5431         (gnus-score-save)))
5432     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
5433     ;; If we have several article buffers, we kill them at exit.
5434     (unless gnus-single-article-buffer
5435       (gnus-kill-buffer gnus-original-article-buffer)
5436       (setq gnus-article-current nil))
5437     (when gnus-use-cache
5438       (gnus-cache-possibly-remove-articles)
5439       (gnus-cache-save-buffers))
5440     (gnus-async-prefetch-remove-group group)
5441     (when gnus-suppress-duplicates
5442       (gnus-dup-enter-articles))
5443     (when gnus-use-trees
5444       (gnus-tree-close group))
5445     (when gnus-use-cache
5446       (gnus-cache-write-active))
5447     ;; Remove entries for this group.
5448     (nnmail-purge-split-history (gnus-group-real-name group))
5449     ;; Make all changes in this group permanent.
5450     (unless quit-config
5451       (gnus-run-hooks 'gnus-exit-group-hook)
5452       (gnus-summary-update-info))
5453     (gnus-close-group group)
5454     ;; Make sure where we were, and go to next newsgroup.
5455     (set-buffer gnus-group-buffer)
5456     (unless quit-config
5457       (gnus-group-jump-to-group group))
5458     (gnus-run-hooks 'gnus-summary-exit-hook)
5459     (unless (or quit-config
5460                 ;; If this group has disappeared from the summary
5461                 ;; buffer, don't skip forwards.
5462                 (not (string= group (gnus-group-group-name))))
5463       (gnus-group-next-unread-group 1))
5464     (setq group-point (point))
5465     (if temporary
5466         nil                             ;Nothing to do.
5467       ;; If we have several article buffers, we kill them at exit.
5468       (unless gnus-single-article-buffer
5469         (gnus-kill-buffer gnus-article-buffer)
5470         (gnus-kill-buffer gnus-original-article-buffer)
5471         (setq gnus-article-current nil))
5472       (set-buffer buf)
5473       (if (not gnus-kill-summary-on-exit)
5474           (gnus-deaden-summary)
5475         ;; We set all buffer-local variables to nil.  It is unclear why
5476         ;; this is needed, but if we don't, buffer-local variables are
5477         ;; not garbage-collected, it seems.  This would the lead to en
5478         ;; ever-growing Emacs.
5479         (gnus-summary-clear-local-variables)
5480         (when (get-buffer gnus-article-buffer)
5481           (bury-buffer gnus-article-buffer))
5482         ;; We clear the global counterparts of the buffer-local
5483         ;; variables as well, just to be on the safe side.
5484         (set-buffer gnus-group-buffer)
5485         (gnus-summary-clear-local-variables)
5486         ;; Return to group mode buffer.
5487         (when (eq mode 'gnus-summary-mode)
5488           (gnus-kill-buffer buf)))
5489       (setq gnus-current-select-method gnus-select-method)
5490       (pop-to-buffer gnus-group-buffer)
5491       (if (not quit-config)
5492           (progn
5493             (goto-char group-point)
5494             (gnus-configure-windows 'group 'force)
5495             (unless (pos-visible-in-window-p)
5496               (forward-line (/ (static-if (featurep 'xemacs)
5497                                    (window-displayed-height)
5498                                  (1- (window-height)))
5499                                -2))
5500               (set-window-start (selected-window) (point))
5501               (goto-char group-point)))
5502         (gnus-handle-ephemeral-exit quit-config))
5503       ;; Clear the current group name.
5504       (unless quit-config
5505         (setq gnus-newsgroup-name nil)))))
5506
5507 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
5508 (defun gnus-summary-exit-no-update (&optional no-questions)
5509   "Quit reading current newsgroup without updating read article info."
5510   (interactive)
5511   (let* ((group gnus-newsgroup-name)
5512          (quit-config (gnus-group-quit-config group)))
5513     (when (or no-questions
5514               gnus-expert-user
5515               (gnus-y-or-n-p "Discard changes to this group and exit? "))
5516       (gnus-async-halt-prefetch)
5517       (mapcar 'funcall
5518               (delq 'gnus-summary-expire-articles
5519                     (copy-sequence gnus-summary-prepare-exit-hook)))
5520       ;; If we have several article buffers, we kill them at exit.
5521       (unless gnus-single-article-buffer
5522         (gnus-kill-buffer gnus-article-buffer)
5523         (gnus-kill-buffer gnus-original-article-buffer)
5524         (setq gnus-article-current nil))
5525       (if (not gnus-kill-summary-on-exit)
5526           (gnus-deaden-summary)
5527         (gnus-close-group group)
5528         (gnus-summary-clear-local-variables)
5529         (set-buffer gnus-group-buffer)
5530         (gnus-summary-clear-local-variables)
5531         (when (get-buffer gnus-summary-buffer)
5532           (kill-buffer gnus-summary-buffer)))
5533       (unless gnus-single-article-buffer
5534         (setq gnus-article-current nil))
5535       (when gnus-use-trees
5536         (gnus-tree-close group))
5537       (gnus-async-prefetch-remove-group group)
5538       (when (get-buffer gnus-article-buffer)
5539         (bury-buffer gnus-article-buffer))
5540       ;; Return to the group buffer.
5541       (gnus-configure-windows 'group 'force)
5542       ;; Clear the current group name.
5543       (setq gnus-newsgroup-name nil)
5544       (when (equal (gnus-group-group-name) group)
5545         (gnus-group-next-unread-group 1))
5546       (when quit-config
5547         (gnus-handle-ephemeral-exit quit-config)))))
5548
5549 (defun gnus-handle-ephemeral-exit (quit-config)
5550   "Handle movement when leaving an ephemeral group.
5551 The state which existed when entering the ephemeral is reset."
5552   (if (not (buffer-name (car quit-config)))
5553       (gnus-configure-windows 'group 'force)
5554     (set-buffer (car quit-config))
5555     (cond ((eq major-mode 'gnus-summary-mode)
5556            (gnus-set-global-variables))
5557           ((eq major-mode 'gnus-article-mode)
5558            (save-excursion
5559              ;; The `gnus-summary-buffer' variable may point
5560              ;; to the old summary buffer when using a single
5561              ;; article buffer.
5562              (unless (gnus-buffer-live-p gnus-summary-buffer)
5563                (set-buffer gnus-group-buffer))
5564              (set-buffer gnus-summary-buffer)
5565              (gnus-set-global-variables))))
5566     (if (or (eq (cdr quit-config) 'article)
5567             (eq (cdr quit-config) 'pick))
5568         (progn
5569           ;; The current article may be from the ephemeral group
5570           ;; thus it is best that we reload this article
5571           (gnus-summary-show-article)
5572           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
5573               (gnus-configure-windows 'pick 'force)
5574             (gnus-configure-windows (cdr quit-config) 'force)))
5575       (gnus-configure-windows (cdr quit-config) 'force))
5576     (when (eq major-mode 'gnus-summary-mode)
5577       (gnus-summary-next-subject 1 nil t)
5578       (gnus-summary-recenter)
5579       (gnus-summary-position-point))))
5580
5581 (defun gnus-summary-preview-mime-message ()
5582   "MIME decode and play this message."
5583   (interactive)
5584   (let ((gnus-break-pages nil)
5585         (gnus-show-mime t))
5586     (gnus-summary-select-article gnus-show-all-headers t))
5587   (select-window (get-buffer-window gnus-article-buffer)))
5588
5589 ;;; Dead summaries.
5590
5591 (defvar gnus-dead-summary-mode-map nil)
5592
5593 (unless gnus-dead-summary-mode-map
5594   (setq gnus-dead-summary-mode-map (make-keymap))
5595   (suppress-keymap gnus-dead-summary-mode-map)
5596   (substitute-key-definition
5597    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
5598   (let ((keys '("\C-d" "\r" "\177" [delete])))
5599     (while keys
5600       (define-key gnus-dead-summary-mode-map
5601         (pop keys) 'gnus-summary-wake-up-the-dead))))
5602
5603 (defvar gnus-dead-summary-mode nil
5604   "Minor mode for Gnus summary buffers.")
5605
5606 (defun gnus-dead-summary-mode (&optional arg)
5607   "Minor mode for Gnus summary buffers."
5608   (interactive "P")
5609   (when (eq major-mode 'gnus-summary-mode)
5610     (make-local-variable 'gnus-dead-summary-mode)
5611     (setq gnus-dead-summary-mode
5612           (if (null arg) (not gnus-dead-summary-mode)
5613             (> (prefix-numeric-value arg) 0)))
5614     (when gnus-dead-summary-mode
5615       (gnus-add-minor-mode
5616        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
5617
5618 (defun gnus-deaden-summary ()
5619   "Make the current summary buffer into a dead summary buffer."
5620   ;; Kill any previous dead summary buffer.
5621   (when (and gnus-dead-summary
5622              (buffer-name gnus-dead-summary))
5623     (save-excursion
5624       (set-buffer gnus-dead-summary)
5625       (when gnus-dead-summary-mode
5626         (kill-buffer (current-buffer)))))
5627   ;; Make this the current dead summary.
5628   (setq gnus-dead-summary (current-buffer))
5629   (gnus-dead-summary-mode 1)
5630   (let ((name (buffer-name)))
5631     (when (string-match "Summary" name)
5632       (rename-buffer
5633        (concat (substring name 0 (match-beginning 0)) "Dead "
5634                (substring name (match-beginning 0)))
5635        t)
5636       (bury-buffer))))
5637
5638 (defun gnus-kill-or-deaden-summary (buffer)
5639   "Kill or deaden the summary BUFFER."
5640   (save-excursion
5641     (when (and (buffer-name buffer)
5642                (not gnus-single-article-buffer))
5643       (save-excursion
5644         (set-buffer buffer)
5645         (gnus-kill-buffer gnus-article-buffer)
5646         (gnus-kill-buffer gnus-original-article-buffer)))
5647     (cond (gnus-kill-summary-on-exit
5648            (when (and gnus-use-trees
5649                       (gnus-buffer-exists-p buffer))
5650              (save-excursion
5651                (set-buffer buffer)
5652                (gnus-tree-close gnus-newsgroup-name)))
5653            (gnus-kill-buffer buffer))
5654           ((gnus-buffer-exists-p buffer)
5655            (save-excursion
5656              (set-buffer buffer)
5657              (gnus-deaden-summary))))))
5658
5659 (defun gnus-summary-wake-up-the-dead (&rest args)
5660   "Wake up the dead summary buffer."
5661   (interactive)
5662   (gnus-dead-summary-mode -1)
5663   (let ((name (buffer-name)))
5664     (when (string-match "Dead " name)
5665       (rename-buffer
5666        (concat (substring name 0 (match-beginning 0))
5667                (substring name (match-end 0)))
5668        t)))
5669   (gnus-message 3 "This dead summary is now alive again"))
5670
5671 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
5672 (defun gnus-summary-fetch-faq (&optional faq-dir)
5673   "Fetch the FAQ for the current group.
5674 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
5675 in."
5676   (interactive
5677    (list
5678     (when current-prefix-arg
5679       (completing-read
5680        "Faq dir: " (and (listp gnus-group-faq-directory)
5681                         (mapcar (lambda (file) (list file))
5682                                 gnus-group-faq-directory))))))
5683   (let (gnus-faq-buffer)
5684     (when (setq gnus-faq-buffer
5685                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
5686       (gnus-configure-windows 'summary-faq))))
5687
5688 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
5689 (defun gnus-summary-describe-group (&optional force)
5690   "Describe the current newsgroup."
5691   (interactive "P")
5692   (gnus-group-describe-group force gnus-newsgroup-name))
5693
5694 (defun gnus-summary-describe-briefly ()
5695   "Describe summary mode commands briefly."
5696   (interactive)
5697   (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")))
5698
5699 ;; Walking around group mode buffer from summary mode.
5700
5701 (defun gnus-summary-next-group (&optional no-article target-group backward)
5702   "Exit current newsgroup and then select next unread newsgroup.
5703 If prefix argument NO-ARTICLE is non-nil, no article is selected
5704 initially.  If NEXT-GROUP, go to this group.  If BACKWARD, go to
5705 previous group instead."
5706   (interactive "P")
5707   ;; Stop pre-fetching.
5708   (gnus-async-halt-prefetch)
5709   (let ((current-group gnus-newsgroup-name)
5710         (current-buffer (current-buffer))
5711         entered)
5712     ;; First we semi-exit this group to update Xrefs and all variables.
5713     ;; We can't do a real exit, because the window conf must remain
5714     ;; the same in case the user is prompted for info, and we don't
5715     ;; want the window conf to change before that...
5716     (gnus-summary-exit t)
5717     (while (not entered)
5718       ;; Then we find what group we are supposed to enter.
5719       (set-buffer gnus-group-buffer)
5720       (gnus-group-jump-to-group current-group)
5721       (setq target-group
5722             (or target-group
5723                 (if (eq gnus-keep-same-level 'best)
5724                     (gnus-summary-best-group gnus-newsgroup-name)
5725                   (gnus-summary-search-group backward gnus-keep-same-level))))
5726       (if (not target-group)
5727           ;; There are no further groups, so we return to the group
5728           ;; buffer.
5729           (progn
5730             (gnus-message 5 "Returning to the group buffer")
5731             (setq entered t)
5732             (when (gnus-buffer-live-p current-buffer)
5733               (set-buffer current-buffer)
5734               (gnus-summary-exit))
5735             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
5736         ;; We try to enter the target group.
5737         (gnus-group-jump-to-group target-group)
5738         (let ((unreads (gnus-group-group-unread)))
5739           (if (and (or (eq t unreads)
5740                        (and unreads (not (zerop unreads))))
5741                    (gnus-summary-read-group
5742                     target-group nil no-article
5743                     (and (buffer-name current-buffer) current-buffer)
5744                     nil backward))
5745               (setq entered t)
5746             (setq current-group target-group
5747                   target-group nil)))))))
5748
5749 (defun gnus-summary-prev-group (&optional no-article)
5750   "Exit current newsgroup and then select previous unread newsgroup.
5751 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
5752   (interactive "P")
5753   (gnus-summary-next-group no-article nil t))
5754
5755 ;; Walking around summary lines.
5756
5757 (defun gnus-summary-first-subject (&optional unread undownloaded)
5758   "Go to the first unread subject.
5759 If UNREAD is non-nil, go to the first unread article.
5760 Returns the article selected or nil if there are no unread articles."
5761   (interactive "P")
5762   (prog1
5763       (cond
5764        ;; Empty summary.
5765        ((null gnus-newsgroup-data)
5766         (gnus-message 3 "No articles in the group")
5767         nil)
5768        ;; Pick the first article.
5769        ((not unread)
5770         (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
5771         (gnus-data-number (car gnus-newsgroup-data)))
5772        ;; No unread articles.
5773        ((null gnus-newsgroup-unreads)
5774         (gnus-message 3 "No more unread articles")
5775         nil)
5776        ;; Find the first unread article.
5777        (t
5778         (let ((data gnus-newsgroup-data))
5779           (while (and data
5780                       (and (not (and undownloaded
5781                                      (eq gnus-undownloaded-mark
5782                                          (gnus-data-mark (car data)))))
5783                            (not (gnus-data-unread-p (car data)))))
5784             (setq data (cdr data)))
5785           (when data
5786             (goto-char (gnus-data-pos (car data)))
5787             (gnus-data-number (car data))))))
5788     (gnus-summary-position-point)))
5789
5790 (defun gnus-summary-next-subject (n &optional unread dont-display)
5791   "Go to next N'th summary line.
5792 If N is negative, go to the previous N'th subject line.
5793 If UNREAD is non-nil, only unread articles are selected.
5794 The difference between N and the actual number of steps taken is
5795 returned."
5796   (interactive "p")
5797   (let ((backward (< n 0))
5798         (n (abs n)))
5799     (while (and (> n 0)
5800                 (if backward
5801                     (gnus-summary-find-prev unread)
5802                   (gnus-summary-find-next unread)))
5803       (unless (zerop (setq n (1- n)))
5804         (gnus-summary-show-thread)))
5805     (when (/= 0 n)
5806       (gnus-message 7 "No more%s articles"
5807                     (if unread " unread" "")))
5808     (unless dont-display
5809       (gnus-summary-recenter)
5810       (gnus-summary-position-point))
5811     n))
5812
5813 (defun gnus-summary-next-unread-subject (n)
5814   "Go to next N'th unread summary line."
5815   (interactive "p")
5816   (gnus-summary-next-subject n t))
5817
5818 (defun gnus-summary-prev-subject (n &optional unread)
5819   "Go to previous N'th summary line.
5820 If optional argument UNREAD is non-nil, only unread article is selected."
5821   (interactive "p")
5822   (gnus-summary-next-subject (- n) unread))
5823
5824 (defun gnus-summary-prev-unread-subject (n)
5825   "Go to previous N'th unread summary line."
5826   (interactive "p")
5827   (gnus-summary-next-subject (- n) t))
5828
5829 (defun gnus-summary-goto-subject (article &optional force silent)
5830   "Go the subject line of ARTICLE.
5831 If FORCE, also allow jumping to articles not currently shown."
5832   (interactive "nArticle number: ")
5833   (let ((b (point))
5834         (data (gnus-data-find article)))
5835     ;; We read in the article if we have to.
5836     (and (not data)
5837          force
5838          (gnus-summary-insert-subject
5839           article
5840           (if (or (numberp force) (vectorp force)) force)
5841           t)
5842          (setq data (gnus-data-find article)))
5843     (goto-char b)
5844     (if (not data)
5845         (progn
5846           (unless silent
5847             (gnus-message 3 "Can't find article %d" article))
5848           nil)
5849       (goto-char (gnus-data-pos data))
5850       (gnus-summary-position-point)
5851       article)))
5852
5853 ;; Walking around summary lines with displaying articles.
5854
5855 (defun gnus-summary-expand-window (&optional arg)
5856   "Make the summary buffer take up the entire Emacs frame.
5857 Given a prefix, will force an `article' buffer configuration."
5858   (interactive "P")
5859   (if arg
5860       (gnus-configure-windows 'article 'force)
5861     (gnus-configure-windows 'summary 'force)))
5862
5863 (defun gnus-summary-display-article (article &optional all-header)
5864   "Display ARTICLE in article buffer."
5865   (gnus-set-global-variables)
5866   (if (null article)
5867       nil
5868     (prog1
5869         (if gnus-summary-display-article-function
5870             (funcall gnus-summary-display-article-function article all-header)
5871           (gnus-article-prepare article all-header))
5872       (with-current-buffer gnus-article-buffer
5873         (set (make-local-variable 'gnus-summary-search-article-matched-data)
5874              nil))
5875       (gnus-run-hooks 'gnus-select-article-hook)
5876       (when (and gnus-current-article
5877                  (not (zerop gnus-current-article)))
5878         (gnus-summary-goto-subject gnus-current-article))
5879       (gnus-summary-recenter)
5880       (when (and gnus-use-trees gnus-show-threads)
5881         (gnus-possibly-generate-tree article)
5882         (gnus-highlight-selected-tree article))
5883       ;; Successfully display article.
5884       (gnus-article-set-window-start
5885        (cdr (assq article gnus-newsgroup-bookmarks))))))
5886
5887 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
5888   "Select the current article.
5889 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
5890 non-nil, the article will be re-fetched even if it already present in
5891 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
5892 be displayed."
5893   ;; Make sure we are in the summary buffer to work around bbdb bug.
5894   (unless (eq major-mode 'gnus-summary-mode)
5895     (set-buffer gnus-summary-buffer))
5896   (let ((article (or article (gnus-summary-article-number)))
5897         (all-headers (not (not all-headers))) ;Must be T or NIL.
5898         gnus-summary-display-article-function)
5899     (and (not pseudo)
5900          (gnus-summary-article-pseudo-p article)
5901          (error "This is a pseudo-article"))
5902     (save-excursion
5903       (set-buffer gnus-summary-buffer)
5904       (if (or (and gnus-single-article-buffer
5905                    (or (null gnus-current-article)
5906                        (null gnus-article-current)
5907                        (null (get-buffer gnus-article-buffer))
5908                        (not (eq article (cdr gnus-article-current)))
5909                        (not (equal (car gnus-article-current)
5910                                    gnus-newsgroup-name))))
5911               (and (not gnus-single-article-buffer)
5912                    (or (null gnus-current-article)
5913                        (not (eq gnus-current-article article))))
5914               force)
5915           ;; The requested article is different from the current article.
5916           (progn
5917             (gnus-summary-display-article article all-headers)
5918             (when (or all-headers gnus-show-all-headers)
5919               (gnus-article-show-all-headers))
5920             (gnus-article-set-window-start
5921              (cdr (assq article gnus-newsgroup-bookmarks)))
5922             article)
5923         (when (or all-headers gnus-show-all-headers)
5924           (gnus-article-show-all-headers))
5925         'old))))
5926
5927 (defun gnus-summary-set-current-mark (&optional current-mark)
5928   "Obsolete function."
5929   nil)
5930
5931 (defun gnus-summary-next-article (&optional unread subject backward push)
5932   "Select the next article.
5933 If UNREAD, only unread articles are selected.
5934 If SUBJECT, only articles with SUBJECT are selected.
5935 If BACKWARD, the previous article is selected instead of the next."
5936   (interactive "P")
5937   (cond
5938    ;; Is there such an article?
5939    ((and (gnus-summary-search-forward unread subject backward)
5940          (or (gnus-summary-display-article (gnus-summary-article-number))
5941              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
5942     (gnus-summary-position-point))
5943    ;; If not, we try the first unread, if that is wanted.
5944    ((and subject
5945          gnus-auto-select-same
5946          (gnus-summary-first-unread-article))
5947     (gnus-summary-position-point)
5948     (gnus-message 6 "Wrapped"))
5949    ;; Try to get next/previous article not displayed in this group.
5950    ((and gnus-auto-extend-newsgroup
5951          (not unread) (not subject))
5952     (gnus-summary-goto-article
5953      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
5954      nil (count-lines (point-min) (point))))
5955    ;; Go to next/previous group.
5956    (t
5957     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
5958       (gnus-summary-jump-to-group gnus-newsgroup-name))
5959     (let ((cmd last-command-char)
5960           (point
5961            (save-excursion
5962              (set-buffer gnus-group-buffer)
5963              (point)))
5964           (group
5965            (if (eq gnus-keep-same-level 'best)
5966                (gnus-summary-best-group gnus-newsgroup-name)
5967              (gnus-summary-search-group backward gnus-keep-same-level))))
5968       ;; For some reason, the group window gets selected.  We change
5969       ;; it back.
5970       (select-window (get-buffer-window (current-buffer)))
5971       ;; Select next unread newsgroup automagically.
5972       (cond
5973        ((or (not gnus-auto-select-next)
5974             (not cmd))
5975         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
5976        ((or (eq gnus-auto-select-next 'quietly)
5977             (and (eq gnus-auto-select-next 'slightly-quietly)
5978                  push)
5979             (and (eq gnus-auto-select-next 'almost-quietly)
5980                  (gnus-summary-last-article-p)))
5981         ;; Select quietly.
5982         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
5983             (gnus-summary-exit)
5984           (gnus-message 7 "No more%s articles (%s)..."
5985                         (if unread " unread" "")
5986                         (if group (concat "selecting " group)
5987                           "exiting"))
5988           (gnus-summary-next-group nil group backward)))
5989        (t
5990         (when (gnus-key-press-event-p last-input-event)
5991           (gnus-summary-walk-group-buffer
5992            gnus-newsgroup-name cmd unread backward point))))))))
5993
5994 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
5995   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
5996                       (?\C-p (gnus-group-prev-unread-group 1))))
5997         (cursor-in-echo-area t)
5998         keve key group ended)
5999     (save-excursion
6000       (set-buffer gnus-group-buffer)
6001       (goto-char start)
6002       (setq group
6003             (if (eq gnus-keep-same-level 'best)
6004                 (gnus-summary-best-group gnus-newsgroup-name)
6005               (gnus-summary-search-group backward gnus-keep-same-level))))
6006     (while (not ended)
6007       (gnus-message
6008        5 "No more%s articles%s" (if unread " unread" "")
6009        (if (and group
6010                 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
6011            (format " (Type %s for %s [%s])"
6012                    (single-key-description cmd) group
6013                    (car (gnus-gethash group gnus-newsrc-hashtb)))
6014          (format " (Type %s to exit %s)"
6015                  (single-key-description cmd)
6016                  gnus-newsgroup-name)))
6017       ;; Confirm auto selection.
6018       (setq key (car (setq keve (gnus-read-event-char))))
6019       (setq ended t)
6020       (cond
6021        ((assq key keystrokes)
6022         (let ((obuf (current-buffer)))
6023           (switch-to-buffer gnus-group-buffer)
6024           (when group
6025             (gnus-group-jump-to-group group))
6026           (eval (cadr (assq key keystrokes)))
6027           (setq group (gnus-group-group-name))
6028           (switch-to-buffer obuf))
6029         (setq ended nil))
6030        ((equal key cmd)
6031         (if (or (not group)
6032                 (gnus-ephemeral-group-p gnus-newsgroup-name))
6033             (gnus-summary-exit)
6034           (gnus-summary-next-group nil group backward)))
6035        (t
6036         (push (cdr keve) unread-command-events))))))
6037
6038 (defun gnus-summary-next-unread-article ()
6039   "Select unread article after current one."
6040   (interactive)
6041   (gnus-summary-next-article
6042    (or (not (eq gnus-summary-goto-unread 'never))
6043        (gnus-summary-last-article-p (gnus-summary-article-number)))
6044    (and gnus-auto-select-same
6045         (gnus-summary-article-subject))))
6046
6047 (defun gnus-summary-prev-article (&optional unread subject)
6048   "Select the article after the current one.
6049 If UNREAD is non-nil, only unread articles are selected."
6050   (interactive "P")
6051   (gnus-summary-next-article unread subject t))
6052
6053 (defun gnus-summary-prev-unread-article ()
6054   "Select unread article before current one."
6055   (interactive)
6056   (gnus-summary-prev-article
6057    (or (not (eq gnus-summary-goto-unread 'never))
6058        (gnus-summary-first-article-p (gnus-summary-article-number)))
6059    (and gnus-auto-select-same
6060         (gnus-summary-article-subject))))
6061
6062 (defun gnus-summary-next-page (&optional lines circular)
6063   "Show next page of the selected article.
6064 If at the end of the current article, select the next article.
6065 LINES says how many lines should be scrolled up.
6066
6067 If CIRCULAR is non-nil, go to the start of the article instead of
6068 selecting the next article when reaching the end of the current
6069 article."
6070   (interactive "P")
6071   (setq gnus-summary-buffer (current-buffer))
6072   (gnus-set-global-variables)
6073   (let ((article (gnus-summary-article-number))
6074         (article-window (get-buffer-window gnus-article-buffer t))
6075         endp)
6076     ;; If the buffer is empty, we have no article.
6077     (unless article
6078       (error "No article to select"))
6079     (gnus-configure-windows 'article)
6080     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
6081         (if (and (eq gnus-summary-goto-unread 'never)
6082                  (not (gnus-summary-last-article-p article)))
6083             (gnus-summary-next-article)
6084           (gnus-summary-next-unread-article))
6085       (if (or (null gnus-current-article)
6086               (null gnus-article-current)
6087               (/= article (cdr gnus-article-current))
6088               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6089           ;; Selected subject is different from current article's.
6090           (gnus-summary-display-article article)
6091         (when article-window
6092           (gnus-eval-in-buffer-window gnus-article-buffer
6093             (setq endp (gnus-article-next-page lines)))
6094           (when endp
6095             (cond (circular
6096                    (gnus-summary-beginning-of-article))
6097                   (lines
6098                    (gnus-message 3 "End of message"))
6099                   ((null lines)
6100                    (if (and (eq gnus-summary-goto-unread 'never)
6101                             (not (gnus-summary-last-article-p article)))
6102                        (gnus-summary-next-article)
6103                      (gnus-summary-next-unread-article))))))))
6104     (gnus-summary-recenter)
6105     (gnus-summary-position-point)))
6106
6107 (defun gnus-summary-prev-page (&optional lines move)
6108   "Show previous page of selected article.
6109 Argument LINES specifies lines to be scrolled down.
6110 If MOVE, move to the previous unread article if point is at
6111 the beginning of the buffer."
6112   (interactive "P")
6113   (let ((article (gnus-summary-article-number))
6114         (article-window (get-buffer-window gnus-article-buffer t))
6115         endp)
6116     (gnus-configure-windows 'article)
6117     (if (or (null gnus-current-article)
6118             (null gnus-article-current)
6119             (/= article (cdr gnus-article-current))
6120             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6121         ;; Selected subject is different from current article's.
6122         (gnus-summary-display-article article)
6123       (gnus-summary-recenter)
6124       (when article-window
6125         (gnus-eval-in-buffer-window gnus-article-buffer
6126           (setq endp (gnus-article-prev-page lines)))
6127         (when (and move endp)
6128           (cond (lines
6129                  (gnus-message 3 "Beginning of message"))
6130                 ((null lines)
6131                  (if (and (eq gnus-summary-goto-unread 'never)
6132                           (not (gnus-summary-first-article-p article)))
6133                      (gnus-summary-prev-article)
6134                    (gnus-summary-prev-unread-article))))))))
6135   (gnus-summary-position-point))
6136
6137 (defun gnus-summary-prev-page-or-article (&optional lines)
6138   "Show previous page of selected article.
6139 Argument LINES specifies lines to be scrolled down.
6140 If at the beginning of the article, go to the next article."
6141   (interactive "P")
6142   (gnus-summary-prev-page lines t))
6143
6144 (defun gnus-summary-scroll-up (lines)
6145   "Scroll up (or down) one line current article.
6146 Argument LINES specifies lines to be scrolled up (or down if negative)."
6147   (interactive "p")
6148   (gnus-configure-windows 'article)
6149   (gnus-summary-show-thread)
6150   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
6151     (gnus-eval-in-buffer-window gnus-article-buffer
6152       (cond ((> lines 0)
6153              (when (gnus-article-next-page lines)
6154                (gnus-message 3 "End of message")))
6155             ((< lines 0)
6156              (gnus-article-prev-page (- lines))))))
6157   (gnus-summary-recenter)
6158   (gnus-summary-position-point))
6159
6160 (defun gnus-summary-scroll-down (lines)
6161   "Scroll down (or up) one line current article.
6162 Argument LINES specifies lines to be scrolled down (or up if negative)."
6163   (interactive "p")
6164   (gnus-summary-scroll-up (- lines)))
6165
6166 (defun gnus-summary-next-same-subject ()
6167   "Select next article which has the same subject as current one."
6168   (interactive)
6169   (gnus-summary-next-article nil (gnus-summary-article-subject)))
6170
6171 (defun gnus-summary-prev-same-subject ()
6172   "Select previous article which has the same subject as current one."
6173   (interactive)
6174   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
6175
6176 (defun gnus-summary-next-unread-same-subject ()
6177   "Select next unread article which has the same subject as current one."
6178   (interactive)
6179   (gnus-summary-next-article t (gnus-summary-article-subject)))
6180
6181 (defun gnus-summary-prev-unread-same-subject ()
6182   "Select previous unread article which has the same subject as current one."
6183   (interactive)
6184   (gnus-summary-prev-article t (gnus-summary-article-subject)))
6185
6186 (defun gnus-summary-first-unread-article ()
6187   "Select the first unread article.
6188 Return nil if there are no unread articles."
6189   (interactive)
6190   (prog1
6191       (when (gnus-summary-first-subject t)
6192         (gnus-summary-show-thread)
6193         (gnus-summary-first-subject t)
6194         (gnus-summary-display-article (gnus-summary-article-number)))
6195     (gnus-summary-position-point)))
6196
6197 (defun gnus-summary-first-unread-subject ()
6198   "Place the point on the subject line of the first unread article.
6199 Return nil if there are no unread articles."
6200   (interactive)
6201   (prog1
6202       (when (gnus-summary-first-subject t)
6203         (gnus-summary-show-thread)
6204         (gnus-summary-first-subject t))
6205     (gnus-summary-position-point)))
6206
6207 (defun gnus-summary-first-article ()
6208   "Select the first article.
6209 Return nil if there are no articles."
6210   (interactive)
6211   (prog1
6212       (when (gnus-summary-first-subject)
6213         (gnus-summary-show-thread)
6214         (gnus-summary-first-subject)
6215         (gnus-summary-display-article (gnus-summary-article-number)))
6216     (gnus-summary-position-point)))
6217
6218 (defun gnus-summary-best-unread-article ()
6219   "Select the unread article with the highest score."
6220   (interactive)
6221   (let ((best -1000000)
6222         (data gnus-newsgroup-data)
6223         article score)
6224     (while data
6225       (and (gnus-data-unread-p (car data))
6226            (> (setq score
6227                     (gnus-summary-article-score (gnus-data-number (car data))))
6228               best)
6229            (setq best score
6230                  article (gnus-data-number (car data))))
6231       (setq data (cdr data)))
6232     (prog1
6233         (if article
6234             (gnus-summary-goto-article article)
6235           (error "No unread articles"))
6236       (gnus-summary-position-point))))
6237
6238 (defun gnus-summary-last-subject ()
6239   "Go to the last displayed subject line in the group."
6240   (let ((article (gnus-data-number (car (gnus-data-list t)))))
6241     (when article
6242       (gnus-summary-goto-subject article))))
6243
6244 (defun gnus-summary-goto-article (article &optional all-headers force)
6245   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
6246 If ALL-HEADERS is non-nil, no header lines are hidden.
6247 If FORCE, go to the article even if it isn't displayed.  If FORCE
6248 is a number, it is the line the article is to be displayed on."
6249   (interactive
6250    (list
6251     (completing-read
6252      "Article number or Message-ID: "
6253      (mapcar (lambda (number) (list (int-to-string number)))
6254              gnus-newsgroup-limit))
6255     current-prefix-arg
6256     t))
6257   (prog1
6258       (if (and (stringp article)
6259                (string-match "@" article))
6260           (gnus-summary-refer-article article)
6261         (when (stringp article)
6262           (setq article (string-to-number article)))
6263         (if (gnus-summary-goto-subject article force)
6264             (gnus-summary-display-article article all-headers)
6265           (gnus-message 4 "Couldn't go to article %s" article) nil))
6266     (gnus-summary-position-point)))
6267
6268 (defun gnus-summary-goto-last-article ()
6269   "Go to the previously read article."
6270   (interactive)
6271   (prog1
6272       (when gnus-last-article
6273         (gnus-summary-goto-article gnus-last-article nil t))
6274     (gnus-summary-position-point)))
6275
6276 (defun gnus-summary-pop-article (number)
6277   "Pop one article off the history and go to the previous.
6278 NUMBER articles will be popped off."
6279   (interactive "p")
6280   (let (to)
6281     (setq gnus-newsgroup-history
6282           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
6283     (if to
6284         (gnus-summary-goto-article (car to) nil t)
6285       (error "Article history empty")))
6286   (gnus-summary-position-point))
6287
6288 ;; Summary commands and functions for limiting the summary buffer.
6289
6290 (defun gnus-summary-limit-to-articles (n)
6291   "Limit the summary buffer to the next N articles.
6292 If not given a prefix, use the process marked articles instead."
6293   (interactive "P")
6294   (prog1
6295       (let ((articles (gnus-summary-work-articles n)))
6296         (setq gnus-newsgroup-processable nil)
6297         (gnus-summary-limit articles))
6298     (gnus-summary-position-point)))
6299
6300 (defun gnus-summary-pop-limit (&optional total)
6301   "Restore the previous limit.
6302 If given a prefix, remove all limits."
6303   (interactive "P")
6304   (when total
6305     (setq gnus-newsgroup-limits
6306           (list (mapcar (lambda (h) (mail-header-number h))
6307                         gnus-newsgroup-headers))))
6308   (unless gnus-newsgroup-limits
6309     (error "No limit to pop"))
6310   (prog1
6311       (gnus-summary-limit nil 'pop)
6312     (gnus-summary-position-point)))
6313
6314 (defun gnus-summary-limit-to-subject (subject &optional header)
6315   "Limit the summary buffer to articles that have subjects that match a regexp."
6316   (interactive "sLimit to subject (regexp): ")
6317   (unless header
6318     (setq header "subject"))
6319   (when (not (equal "" subject))
6320     (prog1
6321         (let ((articles (gnus-summary-find-matching
6322                          (or header "subject") subject 'all)))
6323           (unless articles
6324             (error "Found no matches for \"%s\"" subject))
6325           (gnus-summary-limit articles))
6326       (gnus-summary-position-point))))
6327
6328 (defun gnus-summary-limit-to-author (from)
6329   "Limit the summary buffer to articles that have authors that match a regexp."
6330   (interactive "sLimit to author (regexp): ")
6331   (gnus-summary-limit-to-subject from "from"))
6332
6333 (defun gnus-summary-limit-to-age (age &optional younger-p)
6334   "Limit the summary buffer to articles that are older than (or equal) AGE days.
6335 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
6336 articles that are younger than AGE days."
6337   (interactive
6338    (let ((younger current-prefix-arg)
6339          (days-got nil)
6340          days)
6341      (while (not days-got)
6342        (setq days (if younger
6343                       (read-string "Limit to articles within (in days): ")
6344                     (read-string "Limit to articles old than (in days): ")))
6345        (when (> (length days) 0)
6346          (setq days (read days)))
6347        (if (numberp days)
6348            (setq days-got t)
6349          (message "Please enter a number.")
6350          (sleep-for 1)))
6351      (list days younger)))
6352   (prog1
6353       (let ((data gnus-newsgroup-data)
6354             (cutoff (days-to-time age))
6355             articles d date is-younger)
6356         (while (setq d (pop data))
6357           (when (and (vectorp (gnus-data-header d))
6358                      (setq date (mail-header-date (gnus-data-header d))))
6359             (setq is-younger (time-less-p
6360                               (time-since (condition-case ()
6361                                               (date-to-time date)
6362                                             (error '(0 0))))
6363                               cutoff))
6364             (when (if younger-p
6365                       is-younger
6366                     (not is-younger))
6367               (push (gnus-data-number d) articles))))
6368         (gnus-summary-limit (nreverse articles)))
6369     (gnus-summary-position-point)))
6370
6371 (defun gnus-summary-limit-to-extra (header regexp)
6372   "Limit the summary buffer to articles that match an 'extra' header."
6373   (interactive
6374    (let ((header
6375           (intern
6376            (gnus-completing-read
6377             (symbol-name (car gnus-extra-headers))
6378             "Limit extra header:"
6379             (mapcar (lambda (x)
6380                       (cons (symbol-name x) x))
6381                     gnus-extra-headers)
6382             nil
6383             t))))
6384      (list header
6385            (read-string (format "Limit to header %s (regexp): " header)))))
6386   (when (not (equal "" regexp))
6387     (prog1
6388         (let ((articles (gnus-summary-find-matching
6389                          (cons 'extra header) regexp 'all)))
6390           (unless articles
6391             (error "Found no matches for \"%s\"" regexp))
6392           (gnus-summary-limit articles))
6393       (gnus-summary-position-point))))
6394
6395 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6396 (make-obsolete
6397  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6398
6399 (defun gnus-summary-limit-to-unread (&optional all)
6400   "Limit the summary buffer to articles that are not marked as read.
6401 If ALL is non-nil, limit strictly to unread articles."
6402   (interactive "P")
6403   (if all
6404       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
6405     (gnus-summary-limit-to-marks
6406      ;; Concat all the marks that say that an article is read and have
6407      ;; those removed.
6408      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
6409            gnus-killed-mark gnus-kill-file-mark
6410            gnus-low-score-mark gnus-expirable-mark
6411            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
6412            gnus-duplicate-mark gnus-souped-mark)
6413      'reverse)))
6414
6415 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
6416 (make-obsolete 'gnus-summary-delete-marked-with
6417                'gnus-summary-limit-exlude-marks)
6418
6419 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
6420   "Exclude articles that are marked with MARKS (e.g. \"DK\").
6421 If REVERSE, limit the summary buffer to articles that are marked
6422 with MARKS.  MARKS can either be a string of marks or a list of marks.
6423 Returns how many articles were removed."
6424   (interactive "sMarks: ")
6425   (gnus-summary-limit-to-marks marks t))
6426
6427 (defun gnus-summary-limit-to-marks (marks &optional reverse)
6428   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
6429 If REVERSE (the prefix), limit the summary buffer to articles that are
6430 not marked with MARKS.  MARKS can either be a string of marks or a
6431 list of marks.
6432 Returns how many articles were removed."
6433   (interactive "sMarks: \nP")
6434   (prog1
6435       (let ((data gnus-newsgroup-data)
6436             (marks (if (listp marks) marks
6437                      (append marks nil))) ; Transform to list.
6438             articles)
6439         (while data
6440           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
6441                   (memq (gnus-data-mark (car data)) marks))
6442             (push (gnus-data-number (car data)) articles))
6443           (setq data (cdr data)))
6444         (gnus-summary-limit articles))
6445     (gnus-summary-position-point)))
6446
6447 (defun gnus-summary-limit-to-score (&optional score)
6448   "Limit to articles with score at or above SCORE."
6449   (interactive "P")
6450   (setq score (if score
6451                   (prefix-numeric-value score)
6452                 (or gnus-summary-default-score 0)))
6453   (let ((data gnus-newsgroup-data)
6454         articles)
6455     (while data
6456       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
6457                 score)
6458         (push (gnus-data-number (car data)) articles))
6459       (setq data (cdr data)))
6460     (prog1
6461         (gnus-summary-limit articles)
6462       (gnus-summary-position-point))))
6463
6464 (defun gnus-summary-limit-include-thread (id)
6465   "Display all the hidden articles that in the current thread."
6466   (interactive (list (mail-header-id (gnus-summary-article-header))))
6467   (let ((articles (gnus-articles-in-thread
6468                    (gnus-id-to-thread (gnus-root-id id)))))
6469     (prog1
6470         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
6471       (gnus-summary-position-point))))
6472
6473 (defun gnus-summary-limit-include-dormant ()
6474   "Display all the hidden articles that are marked as dormant.
6475 Note that this command only works on a subset of the articles currently
6476 fetched for this group."
6477   (interactive)
6478   (unless gnus-newsgroup-dormant
6479     (error "There are no dormant articles in this group"))
6480   (prog1
6481       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
6482     (gnus-summary-position-point)))
6483
6484 (defun gnus-summary-limit-exclude-dormant ()
6485   "Hide all dormant articles."
6486   (interactive)
6487   (prog1
6488       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
6489     (gnus-summary-position-point)))
6490
6491 (defun gnus-summary-limit-exclude-childless-dormant ()
6492   "Hide all dormant articles that have no children."
6493   (interactive)
6494   (let ((data (gnus-data-list t))
6495         articles d children)
6496     ;; Find all articles that are either not dormant or have
6497     ;; children.
6498     (while (setq d (pop data))
6499       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
6500                 (and (setq children
6501                            (gnus-article-children (gnus-data-number d)))
6502                      (let (found)
6503                        (while children
6504                          (when (memq (car children) articles)
6505                            (setq children nil
6506                                  found t))
6507                          (pop children))
6508                        found)))
6509         (push (gnus-data-number d) articles)))
6510     ;; Do the limiting.
6511     (prog1
6512         (gnus-summary-limit articles)
6513       (gnus-summary-position-point))))
6514
6515 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
6516   "Mark all unread excluded articles as read.
6517 If ALL, mark even excluded ticked and dormants as read."
6518   (interactive "P")
6519   (let ((articles (gnus-sorted-complement
6520                    (sort
6521                     (mapcar (lambda (h) (mail-header-number h))
6522                             gnus-newsgroup-headers)
6523                     '<)
6524                    (sort gnus-newsgroup-limit '<)))
6525         article)
6526     (setq gnus-newsgroup-unreads
6527           (gnus-intersection gnus-newsgroup-unreads gnus-newsgroup-limit))
6528     (if all
6529         (setq gnus-newsgroup-dormant nil
6530               gnus-newsgroup-marked nil
6531               gnus-newsgroup-reads
6532               (nconc
6533                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
6534                gnus-newsgroup-reads))
6535       (while (setq article (pop articles))
6536         (unless (or (memq article gnus-newsgroup-dormant)
6537                     (memq article gnus-newsgroup-marked))
6538           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
6539
6540 (defun gnus-summary-limit (articles &optional pop)
6541   (if pop
6542       ;; We pop the previous limit off the stack and use that.
6543       (setq articles (car gnus-newsgroup-limits)
6544             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
6545     ;; We use the new limit, so we push the old limit on the stack.
6546     (push gnus-newsgroup-limit gnus-newsgroup-limits))
6547   ;; Set the limit.
6548   (setq gnus-newsgroup-limit articles)
6549   (let ((total (length gnus-newsgroup-data))
6550         (data (gnus-data-find-list (gnus-summary-article-number)))
6551         (gnus-summary-mark-below nil)   ; Inhibit this.
6552         found)
6553     ;; This will do all the work of generating the new summary buffer
6554     ;; according to the new limit.
6555     (gnus-summary-prepare)
6556     ;; Hide any threads, possibly.
6557     (and gnus-show-threads
6558          gnus-thread-hide-subtree
6559          (gnus-summary-hide-all-threads))
6560     ;; Try to return to the article you were at, or one in the
6561     ;; neighborhood.
6562     (when data
6563       ;; We try to find some article after the current one.
6564       (while data
6565         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
6566           (setq data nil
6567                 found t))
6568         (setq data (cdr data))))
6569     (unless found
6570       ;; If there is no data, that means that we were after the last
6571       ;; article.  The same goes when we can't find any articles
6572       ;; after the current one.
6573       (goto-char (point-max))
6574       (gnus-summary-find-prev))
6575     (gnus-set-mode-line 'summary)
6576     ;; We return how many articles were removed from the summary
6577     ;; buffer as a result of the new limit.
6578     (- total (length gnus-newsgroup-data))))
6579
6580 (defsubst gnus-invisible-cut-children (threads)
6581   (let ((num 0))
6582     (while threads
6583       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
6584         (incf num))
6585       (pop threads))
6586     (< num 2)))
6587
6588 (defsubst gnus-cut-thread (thread)
6589   "Go forwards in the thread until we find an article that we want to display."
6590   (when (or (eq gnus-fetch-old-headers 'some)
6591             (eq gnus-fetch-old-headers 'invisible)
6592             (numberp gnus-fetch-old-headers)
6593             (eq gnus-build-sparse-threads 'some)
6594             (eq gnus-build-sparse-threads 'more))
6595     ;; Deal with old-fetched headers and sparse threads.
6596     (while (and
6597             thread
6598             (or
6599              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
6600              (gnus-summary-article-ancient-p
6601               (mail-header-number (car thread))))
6602             (if (or (<= (length (cdr thread)) 1)
6603                     (eq gnus-fetch-old-headers 'invisible))
6604                 (setq gnus-newsgroup-limit
6605                       (delq (mail-header-number (car thread))
6606                             gnus-newsgroup-limit)
6607                       thread (cadr thread))
6608               (when (gnus-invisible-cut-children (cdr thread))
6609                 (let ((th (cdr thread)))
6610                   (while th
6611                     (if (memq (mail-header-number (caar th))
6612                               gnus-newsgroup-limit)
6613                         (setq thread (car th)
6614                               th nil)
6615                       (setq th (cdr th))))))))))
6616   thread)
6617
6618 (defun gnus-cut-threads (threads)
6619   "Cut off all uninteresting articles from the beginning of threads."
6620   (when (or (eq gnus-fetch-old-headers 'some)
6621             (eq gnus-fetch-old-headers 'invisible)
6622             (numberp gnus-fetch-old-headers)
6623             (eq gnus-build-sparse-threads 'some)
6624             (eq gnus-build-sparse-threads 'more))
6625     (let ((th threads))
6626       (while th
6627         (setcar th (gnus-cut-thread (car th)))
6628         (setq th (cdr th)))))
6629   ;; Remove nixed out threads.
6630   (delq nil threads))
6631
6632 (defun gnus-summary-initial-limit (&optional show-if-empty)
6633   "Figure out what the initial limit is supposed to be on group entry.
6634 This entails weeding out unwanted dormants, low-scored articles,
6635 fetch-old-headers verbiage, and so on."
6636   ;; Most groups have nothing to remove.
6637   (if (or gnus-inhibit-limiting
6638           (and (null gnus-newsgroup-dormant)
6639                (not (eq gnus-fetch-old-headers 'some))
6640                (not (numberp gnus-fetch-old-headers))
6641                (not (eq gnus-fetch-old-headers 'invisible))
6642                (null gnus-summary-expunge-below)
6643                (not (eq gnus-build-sparse-threads 'some))
6644                (not (eq gnus-build-sparse-threads 'more))
6645                (null gnus-thread-expunge-below)
6646                (not gnus-use-nocem)))
6647       ()                                ; Do nothing.
6648     (push gnus-newsgroup-limit gnus-newsgroup-limits)
6649     (setq gnus-newsgroup-limit nil)
6650     (mapatoms
6651      (lambda (node)
6652        (unless (car (symbol-value node))
6653          ;; These threads have no parents -- they are roots.
6654          (let ((nodes (cdr (symbol-value node)))
6655                thread)
6656            (while nodes
6657              (if (and gnus-thread-expunge-below
6658                       (< (gnus-thread-total-score (car nodes))
6659                          gnus-thread-expunge-below))
6660                  (gnus-expunge-thread (pop nodes))
6661                (setq thread (pop nodes))
6662                (gnus-summary-limit-children thread))))))
6663      gnus-newsgroup-dependencies)
6664     ;; If this limitation resulted in an empty group, we might
6665     ;; pop the previous limit and use it instead.
6666     (when (and (not gnus-newsgroup-limit)
6667                show-if-empty)
6668       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
6669     gnus-newsgroup-limit))
6670
6671 (defun gnus-summary-limit-children (thread)
6672   "Return 1 if this subthread is visible and 0 if it is not."
6673   ;; First we get the number of visible children to this thread.  This
6674   ;; is done by recursing down the thread using this function, so this
6675   ;; will really go down to a leaf article first, before slowly
6676   ;; working its way up towards the root.
6677   (when thread
6678     (let ((children
6679            (if (cdr thread)
6680                (apply '+ (mapcar 'gnus-summary-limit-children
6681                                  (cdr thread)))
6682              0))
6683           (number (mail-header-number (car thread)))
6684           score)
6685       (if (and
6686            (not (memq number gnus-newsgroup-marked))
6687            (or
6688             ;; If this article is dormant and has absolutely no visible
6689             ;; children, then this article isn't visible.
6690             (and (memq number gnus-newsgroup-dormant)
6691                  (zerop children))
6692             ;; If this is "fetch-old-headered" and there is no
6693             ;; visible children, then we don't want this article.
6694             (and (or (eq gnus-fetch-old-headers 'some)
6695                      (numberp gnus-fetch-old-headers))
6696                  (gnus-summary-article-ancient-p number)
6697                  (zerop children))
6698             ;; If this is "fetch-old-headered" and `invisible', then
6699             ;; we don't want this article.
6700             (and (eq gnus-fetch-old-headers 'invisible)
6701                  (gnus-summary-article-ancient-p number))
6702             ;; If this is a sparsely inserted article with no children,
6703             ;; we don't want it.
6704             (and (eq gnus-build-sparse-threads 'some)
6705                  (gnus-summary-article-sparse-p number)
6706                  (zerop children))
6707             ;; If we use expunging, and this article is really
6708             ;; low-scored, then we don't want this article.
6709             (when (and gnus-summary-expunge-below
6710                        (< (setq score
6711                                 (or (cdr (assq number gnus-newsgroup-scored))
6712                                     gnus-summary-default-score))
6713                           gnus-summary-expunge-below))
6714               ;; We increase the expunge-tally here, but that has
6715               ;; nothing to do with the limits, really.
6716               (incf gnus-newsgroup-expunged-tally)
6717               ;; We also mark as read here, if that's wanted.
6718               (when (and gnus-summary-mark-below
6719                          (< score gnus-summary-mark-below))
6720                 (setq gnus-newsgroup-unreads
6721                       (delq number gnus-newsgroup-unreads))
6722                 (if gnus-newsgroup-auto-expire
6723                     (push number gnus-newsgroup-expirable)
6724                   (push (cons number gnus-low-score-mark)
6725                         gnus-newsgroup-reads)))
6726               t)
6727             ;; Check NoCeM things.
6728             (if (and gnus-use-nocem
6729                      (gnus-nocem-unwanted-article-p
6730                       (mail-header-id (car thread))))
6731                 (progn
6732                   (setq gnus-newsgroup-unreads
6733                         (delq number gnus-newsgroup-unreads))
6734                   t))))
6735           ;; Nope, invisible article.
6736           0
6737         ;; Ok, this article is to be visible, so we add it to the limit
6738         ;; and return 1.
6739         (push number gnus-newsgroup-limit)
6740         1))))
6741
6742 (defun gnus-expunge-thread (thread)
6743   "Mark all articles in THREAD as read."
6744   (let* ((number (mail-header-number (car thread))))
6745     (incf gnus-newsgroup-expunged-tally)
6746     ;; We also mark as read here, if that's wanted.
6747     (setq gnus-newsgroup-unreads
6748           (delq number gnus-newsgroup-unreads))
6749     (if gnus-newsgroup-auto-expire
6750         (push number gnus-newsgroup-expirable)
6751       (push (cons number gnus-low-score-mark)
6752             gnus-newsgroup-reads)))
6753   ;; Go recursively through all subthreads.
6754   (mapcar 'gnus-expunge-thread (cdr thread)))
6755
6756 ;; Summary article oriented commands
6757
6758 (defun gnus-summary-refer-parent-article (n)
6759   "Refer parent article N times.
6760 If N is negative, go to ancestor -N instead.
6761 The difference between N and the number of articles fetched is returned."
6762   (interactive "p")
6763   (let ((skip 1)
6764         error header ref)
6765     (when (not (natnump n))
6766       (setq skip (abs n)
6767             n 1))
6768     (while (and (> n 0)
6769                 (not error))
6770       (setq header (gnus-summary-article-header))
6771       (if (and (eq (mail-header-number header)
6772                    (cdr gnus-article-current))
6773                (equal gnus-newsgroup-name
6774                       (car gnus-article-current)))
6775           ;; If we try to find the parent of the currently
6776           ;; displayed article, then we take a look at the actual
6777           ;; References header, since this is slightly more
6778           ;; reliable than the References field we got from the
6779           ;; server.
6780           (save-excursion
6781             (set-buffer gnus-original-article-buffer)
6782             (nnheader-narrow-to-headers)
6783             (unless (setq ref (message-fetch-field "references"))
6784               (setq ref (message-fetch-field "in-reply-to")))
6785             (widen))
6786         (setq ref
6787               ;; It's not the current article, so we take a bet on
6788               ;; the value we got from the server.
6789               (mail-header-references header)))
6790       (if (and ref
6791                (not (equal ref "")))
6792           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
6793             (gnus-message 1 "Couldn't find parent"))
6794         (gnus-message 1 "No references in article %d"
6795                       (gnus-summary-article-number))
6796         (setq error t))
6797       (decf n))
6798     (gnus-summary-position-point)
6799     n))
6800
6801 (defun gnus-summary-refer-references ()
6802   "Fetch all articles mentioned in the References header.
6803 Return the number of articles fetched."
6804   (interactive)
6805   (let ((ref (mail-header-references (gnus-summary-article-header)))
6806         (current (gnus-summary-article-number))
6807         (n 0))
6808     (if (or (not ref)
6809             (equal ref ""))
6810         (error "No References in the current article")
6811       ;; For each Message-ID in the References header...
6812       (while (string-match "<[^>]*>" ref)
6813         (incf n)
6814         ;; ... fetch that article.
6815         (gnus-summary-refer-article
6816          (prog1 (match-string 0 ref)
6817            (setq ref (substring ref (match-end 0))))))
6818       (gnus-summary-goto-subject current)
6819       (gnus-summary-position-point)
6820       n)))
6821
6822 (defun gnus-summary-refer-thread (&optional limit)
6823   "Fetch all articles in the current thread.
6824 If LIMIT (the numerical prefix), fetch that many old headers instead
6825 of what's specified by the `gnus-refer-thread-limit' variable."
6826   (interactive "P")
6827   (let ((id (mail-header-id (gnus-summary-article-header)))
6828         (limit (if limit (prefix-numeric-value limit)
6829                  gnus-refer-thread-limit)))
6830     ;; We want to fetch LIMIT *old* headers, but we also have to
6831     ;; re-fetch all the headers in the current buffer, because many of
6832     ;; them may be undisplayed.  So we adjust LIMIT.
6833     (when (numberp limit)
6834       (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin)))
6835     (unless (eq gnus-fetch-old-headers 'invisible)
6836       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
6837       ;; Retrieve the headers and read them in.
6838       (if (eq (gnus-retrieve-headers
6839                (list gnus-newsgroup-end) gnus-newsgroup-name limit)
6840               'nov)
6841           (gnus-build-all-threads)
6842         (error "Can't fetch thread from backends that don't support NOV"))
6843       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
6844     (gnus-summary-limit-include-thread id)))
6845
6846 (defun gnus-summary-refer-article (message-id)
6847   "Fetch an article specified by MESSAGE-ID."
6848   (interactive "sMessage-ID: ")
6849   (when (and (stringp message-id)
6850              (not (zerop (length message-id))))
6851     ;; Construct the correct Message-ID if necessary.
6852     ;; Suggested by tale@pawl.rpi.edu.
6853     (unless (string-match "^<" message-id)
6854       (setq message-id (concat "<" message-id)))
6855     (unless (string-match ">$" message-id)
6856       (setq message-id (concat message-id ">")))
6857     (let* ((header (gnus-id-to-header message-id))
6858            (sparse (and header
6859                         (gnus-summary-article-sparse-p
6860                          (mail-header-number header))
6861                         (memq (mail-header-number header)
6862                               gnus-newsgroup-limit)))
6863            number)
6864       (cond
6865        ;; If the article is present in the buffer we just go to it.
6866        ((and header
6867              (or (not (gnus-summary-article-sparse-p
6868                        (mail-header-number header)))
6869                  sparse))
6870         (prog1
6871             (gnus-summary-goto-article
6872              (mail-header-number header) nil t)
6873           (when sparse
6874             (gnus-summary-update-article (mail-header-number header)))))
6875        (t
6876         ;; We fetch the article.
6877         (catch 'found
6878           (dolist (gnus-override-method (gnus-refer-article-methods))
6879             (gnus-check-server gnus-override-method)
6880             ;; Fetch the header, and display the article.
6881             (when (setq number (gnus-summary-insert-subject message-id))
6882               (gnus-summary-select-article nil nil nil number)
6883               (throw 'found t)))
6884           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
6885
6886 (defun gnus-refer-article-methods ()
6887   "Return a list of referrable methods."
6888   (cond
6889    ;; No method, so we default to current and native.
6890    ((null gnus-refer-article-method)
6891     (list gnus-current-select-method gnus-select-method))
6892    ;; Current.
6893    ((eq 'current gnus-refer-article-method)
6894     (list gnus-current-select-method))
6895    ;; List of select methods.
6896    ((not (stringp (cadr gnus-refer-article-method)))
6897     (let (out)
6898       (dolist (method gnus-refer-article-method)
6899         (push (if (eq 'current method)
6900                   gnus-current-select-method
6901                 method)
6902               out))
6903       (nreverse out)))
6904    ;; One single select method.
6905    (t
6906     (list gnus-refer-article-method))))
6907
6908 (defun gnus-summary-edit-parameters ()
6909   "Edit the group parameters of the current group."
6910   (interactive)
6911   (gnus-group-edit-group gnus-newsgroup-name 'params))
6912
6913 (defun gnus-summary-customize-parameters ()
6914   "Customize the group parameters of the current group."
6915   (interactive)
6916   (gnus-group-customize gnus-newsgroup-name))
6917
6918 (defun gnus-summary-enter-digest-group (&optional force)
6919   "Enter an nndoc group based on the current article.
6920 If FORCE, force a digest interpretation.  If not, try
6921 to guess what the document format is."
6922   (interactive "P")
6923   (let ((conf gnus-current-window-configuration))
6924     (save-excursion
6925       (gnus-summary-select-article))
6926     (setq gnus-current-window-configuration conf)
6927     (let* ((name (format "%s-%d"
6928                          (gnus-group-prefixed-name
6929                           gnus-newsgroup-name (list 'nndoc ""))
6930                          (save-excursion
6931                            (set-buffer gnus-summary-buffer)
6932                            gnus-current-article)))
6933            (ogroup gnus-newsgroup-name)
6934            (params (append (gnus-info-params (gnus-get-info ogroup))
6935                            (list (cons 'to-group ogroup))
6936                            (list (cons 'save-article-group ogroup))))
6937            (case-fold-search t)
6938            (buf (current-buffer))
6939            dig to-address)
6940       (save-excursion
6941         (set-buffer gnus-original-article-buffer)
6942         ;; Have the digest group inherit the main mail address of
6943         ;; the parent article.
6944         (when (setq to-address (or (message-fetch-field "reply-to")
6945                                    (message-fetch-field "from")))
6946           (setq params (append (list (cons 'to-address to-address)))))
6947         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
6948         (insert-buffer-substring gnus-original-article-buffer)
6949         ;; Remove lines that may lead nndoc to misinterpret the
6950         ;; document type.
6951         (narrow-to-region
6952          (goto-char (point-min))
6953          (or (search-forward "\n\n" nil t) (point)))
6954         (goto-char (point-min))
6955         (delete-matching-lines "^Path:\\|^From ")
6956         (widen))
6957       (unwind-protect
6958           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
6959                     (gnus-newsgroup-ephemeral-ignored-charsets
6960                      gnus-newsgroup-ignored-charsets))
6961                 (gnus-group-read-ephemeral-group
6962                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
6963                               (nndoc-article-type
6964                                ,(if force 'mbox 'guess))) t))
6965               ;; Make all postings to this group go to the parent group.
6966               (nconc (gnus-info-params (gnus-get-info name))
6967                      params)
6968             ;; Couldn't select this doc group.
6969             (switch-to-buffer buf)
6970             (gnus-set-global-variables)
6971             (gnus-configure-windows 'summary)
6972             (gnus-message 3 "Article couldn't be entered?"))
6973         (kill-buffer dig)))))
6974
6975 (defun gnus-summary-read-document (n)
6976   "Open a new group based on the current article(s).
6977 This will allow you to read digests and other similar
6978 documents as newsgroups.
6979 Obeys the standard process/prefix convention."
6980   (interactive "P")
6981   (let* ((articles (gnus-summary-work-articles n))
6982          (ogroup gnus-newsgroup-name)
6983          (params (append (gnus-info-params (gnus-get-info ogroup))
6984                          (list (cons 'to-group ogroup))))
6985          article group egroup groups vgroup)
6986     (while (setq article (pop articles))
6987       (setq group (format "%s-%d" gnus-newsgroup-name article))
6988       (gnus-summary-remove-process-mark article)
6989       (when (gnus-summary-display-article article)
6990         (save-excursion
6991           (with-temp-buffer
6992             (insert-buffer-substring gnus-original-article-buffer)
6993             ;; Remove some headers that may lead nndoc to make
6994             ;; the wrong guess.
6995             (message-narrow-to-head)
6996             (goto-char (point-min))
6997             (delete-matching-lines "^\\(Path\\):\\|^From ")
6998             (widen)
6999             (if (setq egroup
7000                       (gnus-group-read-ephemeral-group
7001                        group `(nndoc ,group (nndoc-address ,(current-buffer))
7002                                      (nndoc-article-type guess))
7003                        t nil t))
7004                 (progn
7005                   ;; Make all postings to this group go to the parent group.
7006                   (nconc (gnus-info-params (gnus-get-info egroup))
7007                          params)
7008                   (push egroup groups))
7009               ;; Couldn't select this doc group.
7010               (gnus-error 3 "Article couldn't be entered"))))))
7011     ;; Now we have selected all the documents.
7012     (cond
7013      ((not groups)
7014       (error "None of the articles could be interpreted as documents"))
7015      ((gnus-group-read-ephemeral-group
7016        (setq vgroup (format
7017                      "nnvirtual:%s-%s" gnus-newsgroup-name
7018                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
7019        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
7020        t
7021        (cons (current-buffer) 'summary)))
7022      (t
7023       (error "Couldn't select virtual nndoc group")))))
7024
7025 (defun gnus-summary-isearch-article (&optional regexp-p)
7026   "Do incremental search forward on the current article.
7027 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
7028   (interactive "P")
7029   (let* ((gnus-inhibit-treatment t)
7030          (old (gnus-summary-select-article)))
7031     (gnus-configure-windows 'article)
7032     (gnus-eval-in-buffer-window gnus-article-buffer
7033       (save-restriction
7034         (widen)
7035         (when (eq 'old old)
7036           (gnus-article-show-all-headers))
7037         (goto-char (point-min))
7038         (isearch-forward regexp-p)))))
7039
7040 (defun gnus-summary-search-article-forward (regexp &optional backward)
7041   "Search for an article containing REGEXP forward.
7042 If BACKWARD, search backward instead."
7043   (interactive
7044    (list (read-string
7045           (format "Search article %s (regexp%s): "
7046                   (if current-prefix-arg "backward" "forward")
7047                   (if gnus-last-search-regexp
7048                       (concat ", default " gnus-last-search-regexp)
7049                     "")))
7050          current-prefix-arg))
7051   (if (string-equal regexp "")
7052       (setq regexp (or gnus-last-search-regexp ""))
7053     (setq gnus-last-search-regexp regexp))
7054   (if (gnus-summary-search-article regexp backward)
7055       (gnus-summary-show-thread)
7056     (error "Search failed: \"%s\"" regexp)))
7057
7058 (defun gnus-summary-search-article-backward (regexp)
7059   "Search for an article containing REGEXP backward."
7060   (interactive
7061    (list (read-string
7062           (format "Search article backward (regexp%s): "
7063                   (if gnus-last-search-regexp
7064                       (concat ", default " gnus-last-search-regexp)
7065                     "")))))
7066   (gnus-summary-search-article-forward regexp 'backward))
7067
7068 (eval-when-compile
7069   (defmacro gnus-summary-search-article-position-point (regexp backward)
7070     "Dehighlight the last matched text and goto the beginning position."
7071     (` (if (and gnus-summary-search-article-matched-data
7072                 (let ((text (caddr gnus-summary-search-article-matched-data))
7073                       (inhibit-read-only t)
7074                       buffer-read-only)
7075                   (delete-region
7076                    (goto-char (car gnus-summary-search-article-matched-data))
7077                    (cadr gnus-summary-search-article-matched-data))
7078                   (insert text)
7079                   (string-match (, regexp) text)))
7080            (if (, backward) (beginning-of-line) (end-of-line))
7081          (goto-char (if (, backward) (point-max) (point-min))))))
7082
7083   (defmacro gnus-summary-search-article-highlight-goto-x-face (opoint)
7084     "Place point where X-Face image is displayed."
7085     (if (featurep 'xemacs)
7086         (` (let ((end (if (search-forward "\n\n" nil t)
7087                           (goto-char (1- (point)))
7088                         (point-min)))
7089                  extent)
7090              (or (search-backward "\n\n" nil t) (goto-char (point-min)))
7091              (unless (and (re-search-forward "^From:" end t)
7092                           (setq extent (extent-at (point)))
7093                           (extent-begin-glyph extent))
7094                (goto-char (, opoint)))))
7095       (` (let ((end (if (search-forward "\n\n" nil t)
7096                         (goto-char (1- (point)))
7097                       (point-min))))
7098            (goto-char
7099             (or (text-property-any (or (search-backward "\n\n" nil t)
7100                                        (point-min))
7101                                    end 'x-face-mule-bitmap-image t)
7102                 (, opoint)))))))
7103
7104   (defmacro gnus-summary-search-article-highlight-matched-text
7105     (backward treated x-face)
7106     "Highlight matched text in the function `gnus-summary-search-article'."
7107     (` (let ((start (set-marker (make-marker) (match-beginning 0)))
7108              (end (set-marker (make-marker) (match-end 0)))
7109              (inhibit-read-only t)
7110              buffer-read-only)
7111          (unless treated
7112            (let ((,@
7113                   (let ((items (mapcar 'car gnus-treatment-function-alist)))
7114                     (mapcar
7115                      (lambda (item) (setq items (delq item items)))
7116                      '(gnus-treat-buttonize
7117                        gnus-treat-fill-article
7118                        gnus-treat-fill-long-lines
7119                        gnus-treat-emphasize
7120                        gnus-treat-highlight-headers
7121                        gnus-treat-highlight-citation
7122                        gnus-treat-highlight-signature
7123                        gnus-treat-overstrike
7124                        gnus-treat-display-xface
7125                        gnus-treat-buttonize-head
7126                        gnus-treat-decode-article-as-default-mime-charset))
7127                     (static-if (featurep 'xemacs)
7128                         items
7129                       (cons '(x-face-mule-delete-x-face-field
7130                               (quote never))
7131                             items))))
7132                  (gnus-treat-display-xface
7133                   (when (, x-face) gnus-treat-display-xface)))
7134              (gnus-article-prepare-mime-display)))
7135          (goto-char (if (, backward) start end))
7136          (when (, x-face)
7137            (gnus-summary-search-article-highlight-goto-x-face (point)))
7138          (setq gnus-summary-search-article-matched-data
7139                (list start end (buffer-substring start end)))
7140          (unless (eq start end);; matched text has been deleted. :-<
7141            (put-text-property start end 'face
7142                               (or (find-face 'isearch)
7143                                   'secondary-selection))))))
7144   )
7145
7146 (defun gnus-summary-search-article (regexp &optional backward)
7147   "Search for an article containing REGEXP.
7148 Optional argument BACKWARD means do search for backward.
7149 `gnus-select-article-hook' is not called during the search."
7150   ;; We have to require this here to make sure that the following
7151   ;; dynamic binding isn't shadowed by autoloading.
7152   (require 'gnus-async)
7153   (require 'gnus-art)
7154   (let ((gnus-select-article-hook nil)  ;Disable hook.
7155         (gnus-article-display-hook nil)
7156         (gnus-article-prepare-hook nil)
7157         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
7158         (gnus-use-article-prefetch nil)
7159         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
7160         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
7161         (sum (current-buffer))
7162         (found nil)
7163         point treated)
7164     (gnus-save-hidden-threads
7165       (static-if (featurep 'xemacs)
7166           (let ((gnus-inhibit-treatment t))
7167             (setq treated (eq 'old (gnus-summary-select-article)))
7168             (when (and treated
7169                        (not (and (gnus-buffer-live-p gnus-article-buffer)
7170                                  (window-live-p (get-buffer-window
7171                                                  gnus-article-buffer t)))))
7172               (gnus-summary-select-article nil t)
7173               (setq treated nil)))
7174         (let ((gnus-inhibit-treatment t)
7175               (x-face-mule-delete-x-face-field 'never))
7176           (setq treated (eq 'old (gnus-summary-select-article)))
7177           (when (and treated
7178                      (not
7179                       (and (gnus-buffer-live-p gnus-article-buffer)
7180                            (window-live-p (get-buffer-window
7181                                            gnus-article-buffer t))
7182                            (or (not (string-match "^\\^X-Face:" regexp))
7183                                (with-current-buffer gnus-article-buffer
7184                                  gnus-summary-search-article-matched-data)))))
7185             (gnus-summary-select-article nil t)
7186             (setq treated nil))))
7187       (set-buffer gnus-article-buffer)
7188       (widen)
7189       (if treated
7190           (progn
7191             (gnus-article-show-all-headers)
7192             (gnus-summary-search-article-position-point regexp backward))
7193         (goto-char (if backward (point-max) (point-min))))
7194       (while (not found)
7195         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
7196         (if (if backward
7197                 (re-search-backward regexp nil t)
7198               (re-search-forward regexp nil t))
7199             ;; We found the regexp.
7200             (progn
7201               (gnus-summary-search-article-highlight-matched-text
7202                backward treated (string-match "^\\^X-Face:" regexp))
7203               (setq found 'found)
7204               (forward-line
7205                (/ (- 2 (window-height
7206                         (get-buffer-window gnus-article-buffer t)))
7207                   2))
7208               (set-window-start
7209                (get-buffer-window (current-buffer))
7210                (point))
7211               (set-buffer sum)
7212               (setq point (point)))
7213           ;; We didn't find it, so we go to the next article.
7214           (set-buffer sum)
7215           (setq found 'not)
7216           (while (eq found 'not)
7217             (if (not (if backward (gnus-summary-find-prev)
7218                        (gnus-summary-find-next)))
7219                 ;; No more articles.
7220                 (setq found t)
7221               ;; Select the next article and adjust point.
7222               (unless (gnus-summary-article-sparse-p
7223                        (gnus-summary-article-number))
7224                 (setq found nil)
7225                 (let ((gnus-inhibit-treatment t))
7226                   (gnus-summary-select-article))
7227                 (setq treated nil)
7228                 (set-buffer gnus-article-buffer)
7229                 (widen)
7230                 (goto-char (if backward (point-max) (point-min))))))))
7231       (gnus-message 7 ""))
7232     ;; Return whether we found the regexp.
7233     (when (eq found 'found)
7234       (goto-char point)
7235       (gnus-summary-show-thread)
7236       (gnus-summary-goto-subject gnus-current-article)
7237       (gnus-summary-position-point)
7238       t)))
7239
7240 (defun gnus-summary-find-matching (header regexp &optional backward unread
7241                                           not-case-fold)
7242   "Return a list of all articles that match REGEXP on HEADER.
7243 The search stars on the current article and goes forwards unless
7244 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
7245 If UNREAD is non-nil, only unread articles will
7246 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
7247 in the comparisons."
7248   (let ((data (if (eq backward 'all) gnus-newsgroup-data
7249                 (gnus-data-find-list
7250                  (gnus-summary-article-number) (gnus-data-list backward))))
7251         (case-fold-search (not not-case-fold))
7252         articles d func)
7253     (if (consp header)
7254         (if (eq (car header) 'extra)
7255             (setq func
7256                   `(lambda (h)
7257                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
7258                          "")))
7259           (error "%s is an invalid header" header))
7260       (unless (fboundp (intern (concat "mail-header-" header)))
7261         (error "%s is not a valid header" header))
7262       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
7263     (while data
7264       (setq d (car data))
7265       (and (or (not unread)             ; We want all articles...
7266                (gnus-data-unread-p d))  ; Or just unreads.
7267            (vectorp (gnus-data-header d)) ; It's not a pseudo.
7268            (string-match regexp (funcall func (gnus-data-header d))) ; Match.
7269            (push (gnus-data-number d) articles)) ; Success!
7270       (setq data (cdr data)))
7271     (nreverse articles)))
7272
7273 (defun gnus-summary-execute-command (header regexp command &optional backward)
7274   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
7275 If HEADER is an empty string (or nil), the match is done on the entire
7276 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
7277   (interactive
7278    (list (let ((completion-ignore-case t))
7279            (completing-read
7280             "Header name: "
7281             (mapcar (lambda (string) (list string))
7282                     '("Number" "Subject" "From" "Lines" "Date"
7283                       "Message-ID" "Xref" "References" "Body"))
7284             nil 'require-match))
7285          (read-string "Regexp: ")
7286          (read-key-sequence "Command: ")
7287          current-prefix-arg))
7288   (when (equal header "Body")
7289     (setq header ""))
7290   ;; Hidden thread subtrees must be searched as well.
7291   (gnus-summary-show-all-threads)
7292   ;; We don't want to change current point nor window configuration.
7293   (save-excursion
7294     (save-window-excursion
7295       (gnus-message 6 "Executing %s..." (key-description command))
7296       ;; We'd like to execute COMMAND interactively so as to give arguments.
7297       (gnus-execute header regexp
7298                     `(call-interactively ',(key-binding command))
7299                     backward)
7300       (gnus-message 6 "Executing %s...done" (key-description command)))))
7301
7302 (defun gnus-summary-beginning-of-article ()
7303   "Scroll the article back to the beginning."
7304   (interactive)
7305   (gnus-summary-select-article)
7306   (gnus-configure-windows 'article)
7307   (gnus-eval-in-buffer-window gnus-article-buffer
7308     (widen)
7309     (goto-char (point-min))
7310     (when gnus-page-broken
7311       (gnus-narrow-to-page))))
7312
7313 (defun gnus-summary-end-of-article ()
7314   "Scroll to the end of the article."
7315   (interactive)
7316   (gnus-summary-select-article)
7317   (gnus-configure-windows 'article)
7318   (gnus-eval-in-buffer-window gnus-article-buffer
7319     (widen)
7320     (goto-char (point-max))
7321     (recenter -3)
7322     (when gnus-page-broken
7323       (gnus-narrow-to-page))))
7324
7325 (defun gnus-summary-print-article (&optional filename n)
7326   "Generate and print a PostScript image of the N next (mail) articles.
7327
7328 If N is negative, print the N previous articles.  If N is nil and articles
7329 have been marked with the process mark, print these instead.
7330
7331 If the optional first argument FILENAME is nil, send the image to the
7332 printer.  If FILENAME is a string, save the PostScript image in a file with
7333 that name.  If FILENAME is a number, prompt the user for the name of the file
7334 to save in."
7335   (interactive (list (ps-print-preprint current-prefix-arg)
7336                      current-prefix-arg))
7337   (dolist (article (gnus-summary-work-articles n))
7338     (gnus-summary-select-article nil nil 'pseudo article)
7339     (gnus-eval-in-buffer-window gnus-article-buffer
7340       (let ((buffer (generate-new-buffer " *print*")))
7341         (unwind-protect
7342             (progn
7343               (copy-to-buffer buffer (point-min) (point-max))
7344               (set-buffer buffer)
7345               (gnus-article-delete-invisible-text)
7346               (let ((ps-left-header
7347                      (list
7348                       (concat "("
7349                               (mail-header-subject gnus-current-headers) ")")
7350                       (concat "("
7351                               (mail-header-from gnus-current-headers) ")")))
7352                     (ps-right-header
7353                      (list
7354                       "/pagenumberstring load"
7355                       (concat "("
7356                               (mail-header-date gnus-current-headers) ")"))))
7357                 (gnus-run-hooks 'gnus-ps-print-hook)
7358                 (save-excursion
7359                   (ps-print-buffer-with-faces filename))))
7360           (kill-buffer buffer))))))
7361
7362 (defun gnus-summary-show-article (&optional arg)
7363   "Force re-fetching of the current article.
7364 If ARG (the prefix) is a number, show the article with the charset
7365 defined in `gnus-summary-show-article-charset-alist', or the charset
7366 inputed.
7367 If ARG (the prefix) is non-nil and not a number, show the raw article
7368 without any article massaging functions being run."
7369   (interactive "P")
7370   (cond
7371    ((numberp arg)
7372     (let ((gnus-newsgroup-charset
7373            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
7374                (read-coding-system "Charset: ")))
7375           (gnus-newsgroup-ignored-charsets 'gnus-all))
7376       (gnus-summary-select-article nil 'force)))
7377    ((not arg)
7378     ;; Select the article the normal way.
7379     (gnus-summary-select-article nil 'force))
7380    (t
7381     ;; We have to require this here to make sure that the following
7382     ;; dynamic binding isn't shadowed by autoloading.
7383     (require 'gnus-async)
7384     (require 'gnus-art)
7385     ;; Bind the article treatment functions to nil.
7386     (let ((gnus-have-all-headers t)
7387           gnus-article-display-hook
7388           gnus-article-prepare-hook
7389           gnus-article-decode-hook
7390           gnus-break-pages
7391           gnus-show-mime)
7392       (gnus-summary-select-article nil 'force))))
7393   (gnus-summary-goto-subject gnus-current-article)
7394   (gnus-summary-position-point))
7395
7396 (defun gnus-summary-verbose-headers (&optional arg)
7397   "Toggle permanent full header display.
7398 If ARG is a positive number, turn header display on.
7399 If ARG is a negative number, turn header display off."
7400   (interactive "P")
7401   (setq gnus-show-all-headers
7402         (cond ((or (not (numberp arg))
7403                    (zerop arg))
7404                (not gnus-show-all-headers))
7405               ((natnump arg)
7406                t)))
7407   (gnus-summary-show-article))
7408
7409 (defun gnus-summary-toggle-header (&optional arg)
7410   "Show the headers if they are hidden, or hide them if they are shown.
7411 If ARG is a positive number, show the entire header.
7412 If ARG is a negative number, hide the unwanted header lines."
7413   (interactive "P")
7414   (save-excursion
7415     (set-buffer gnus-article-buffer)
7416     (save-restriction
7417       (let* ((buffer-read-only nil)
7418              (inhibit-point-motion-hooks t)
7419              hidden e)
7420         (setq hidden
7421               (if (numberp arg)
7422                   (>= arg 0)
7423                 (save-restriction
7424                   (article-narrow-to-head)
7425                   (gnus-article-hidden-text-p 'headers))))
7426         (goto-char (point-min))
7427         (when (search-forward "\n\n" nil t)
7428           (delete-region (point-min) (1- (point))))
7429         (goto-char (point-min))
7430         (save-excursion
7431           (set-buffer gnus-original-article-buffer)
7432           (goto-char (point-min))
7433           (setq e (1- (or (search-forward "\n\n" nil t) (point-max)))))
7434         (insert-buffer-substring gnus-original-article-buffer 1 e)
7435         (save-restriction
7436           (narrow-to-region (point-min) (point))
7437           (article-decode-encoded-words)
7438           (if  hidden
7439               (let ((gnus-treat-hide-headers nil)
7440                     (gnus-treat-hide-boring-headers nil))
7441                 (setq gnus-article-wash-types
7442                       (delq 'headers gnus-article-wash-types))
7443                 (gnus-treat-article 'head))
7444             (gnus-treat-article 'head)))
7445         (gnus-set-mode-line 'article)))))
7446
7447 (defun gnus-summary-show-all-headers ()
7448   "Make all header lines visible."
7449   (interactive)
7450   (gnus-article-show-all-headers))
7451
7452 (defun gnus-summary-toggle-mime (&optional arg)
7453   "Toggle MIME processing.
7454 If ARG is a positive number, turn MIME processing on."
7455   (interactive "P")
7456   (setq gnus-show-mime
7457         (if (null arg)
7458             (not gnus-show-mime)
7459           (> (prefix-numeric-value arg) 0)))
7460   (gnus-summary-select-article t 'force))
7461
7462 (defun gnus-summary-caesar-message (&optional arg)
7463   "Caesar rotate the current article by 13.
7464 The numerical prefix specifies how many places to rotate each letter
7465 forward."
7466   (interactive "P")
7467   (gnus-summary-select-article)
7468   (let ((mail-header-separator ""))
7469     (gnus-eval-in-buffer-window gnus-article-buffer
7470       (save-restriction
7471         (widen)
7472         (let ((start (window-start))
7473               buffer-read-only)
7474           (message-caesar-buffer-body arg)
7475           (set-window-start (get-buffer-window (current-buffer)) start))))))
7476
7477 (defun gnus-summary-stop-page-breaking ()
7478   "Stop page breaking in the current article."
7479   (interactive)
7480   (gnus-summary-select-article)
7481   (gnus-eval-in-buffer-window gnus-article-buffer
7482     (widen)
7483     (when (gnus-visual-p 'page-marker)
7484       (let ((buffer-read-only nil))
7485         (gnus-remove-text-with-property 'gnus-prev)
7486         (gnus-remove-text-with-property 'gnus-next))
7487       (setq gnus-page-broken nil))))
7488
7489 (defun gnus-summary-move-article (&optional n to-newsgroup
7490                                             select-method action)
7491   "Move the current article to a different newsgroup.
7492 If N is a positive number, move the N next articles.
7493 If N is a negative number, move the N previous articles.
7494 If N is nil and any articles have been marked with the process mark,
7495 move those articles instead.
7496 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7497 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7498 re-spool using this method.
7499
7500 For this function to work, both the current newsgroup and the
7501 newsgroup that you want to move to have to support the `request-move'
7502 and `request-accept' functions.
7503
7504 ACTION can be either `move' (the default), `crosspost' or `copy'."
7505   (interactive "P")
7506   (unless action
7507     (setq action 'move))
7508   ;; Disable marking as read.
7509   (let (gnus-mark-article-hook)
7510     (save-window-excursion
7511       (gnus-summary-select-article)))
7512   ;; Check whether the source group supports the required functions.
7513   (cond ((and (eq action 'move)
7514               (not (gnus-check-backend-function
7515                     'request-move-article gnus-newsgroup-name)))
7516          (error "The current group does not support article moving"))
7517         ((and (eq action 'crosspost)
7518               (not (gnus-check-backend-function
7519                     'request-replace-article gnus-newsgroup-name)))
7520          (error "The current group does not support article editing")))
7521   (let ((articles (gnus-summary-work-articles n))
7522         (prefix (if (gnus-check-backend-function
7523                     'request-move-article gnus-newsgroup-name)
7524                     (gnus-group-real-prefix gnus-newsgroup-name)
7525                   ""))
7526         (names '((move "Move" "Moving")
7527                  (copy "Copy" "Copying")
7528                  (crosspost "Crosspost" "Crossposting")))
7529         (copy-buf (save-excursion
7530                     (nnheader-set-temp-buffer " *copy article*")))
7531         (default-marks gnus-article-mark-lists)
7532         (no-expire-marks (delete '(expirable . expire)
7533                                  (copy-sequence gnus-article-mark-lists)))
7534         art-group to-method new-xref article to-groups)
7535     (unless (assq action names)
7536       (error "Unknown action %s" action))
7537     ;; Read the newsgroup name.
7538     (when (and (not to-newsgroup)
7539                (not select-method))
7540       (setq to-newsgroup
7541             (gnus-read-move-group-name
7542              (cadr (assq action names))
7543              (symbol-value (intern (format "gnus-current-%s-group" action)))
7544              articles prefix))
7545       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
7546     (setq to-method (or select-method
7547                         (gnus-server-to-method
7548                          (gnus-group-method to-newsgroup))))
7549     ;; Check the method we are to move this article to...
7550     (unless (gnus-check-backend-function
7551              'request-accept-article (car to-method))
7552       (error "%s does not support article copying" (car to-method)))
7553     (unless (gnus-check-server to-method)
7554       (error "Can't open server %s" (car to-method)))
7555     (gnus-message 6 "%s to %s: %s..."
7556                   (caddr (assq action names))
7557                   (or (car select-method) to-newsgroup) articles)
7558     (while articles
7559       (setq article (pop articles))
7560       (setq
7561        art-group
7562        (cond
7563         ;; Move the article.
7564         ((eq action 'move)
7565          ;; Remove this article from future suppression.
7566          (gnus-dup-unsuppress-article article)
7567          (gnus-request-move-article
7568           article                       ; Article to move
7569           gnus-newsgroup-name           ; From newsgroup
7570           (nth 1 (gnus-find-method-for-group
7571                   gnus-newsgroup-name)) ; Server
7572           (list 'gnus-request-accept-article
7573                 to-newsgroup (list 'quote select-method)
7574                 (not articles) t)       ; Accept form
7575           (not articles)))              ; Only save nov last time
7576         ;; Copy the article.
7577         ((eq action 'copy)
7578          (save-excursion
7579            (set-buffer copy-buf)
7580            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
7581              (gnus-request-accept-article
7582               to-newsgroup select-method (not articles) t))))
7583         ;; Crosspost the article.
7584         ((eq action 'crosspost)
7585          (let ((xref (message-tokenize-header
7586                       (mail-header-xref (gnus-summary-article-header article))
7587                       " ")))
7588            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
7589                                   ":" article))
7590            (unless xref
7591              (setq xref (list (system-name))))
7592            (setq new-xref
7593                  (concat
7594                   (mapconcat 'identity
7595                              (delete "Xref:" (delete new-xref xref))
7596                              " ")
7597                   " " new-xref))
7598            (save-excursion
7599              (set-buffer copy-buf)
7600              ;; First put the article in the destination group.
7601              (gnus-request-article-this-buffer article gnus-newsgroup-name)
7602              (when (consp (setq art-group
7603                                 (gnus-request-accept-article
7604                                  to-newsgroup select-method (not articles))))
7605                (setq new-xref (concat new-xref " " (car art-group)
7606                                       ":" (cdr art-group)))
7607                ;; Now we have the new Xrefs header, so we insert
7608                ;; it and replace the new article.
7609                (nnheader-replace-header "Xref" new-xref)
7610                (gnus-request-replace-article
7611                 (cdr art-group) to-newsgroup (current-buffer))
7612                art-group))))))
7613       (cond
7614        ((not art-group)
7615         (gnus-message 1 "Couldn't %s article %s: %s"
7616                       (cadr (assq action names)) article
7617                       (nnheader-get-report (car to-method))))
7618        ((eq art-group 'junk)
7619         (when (eq action 'move)
7620           (gnus-summary-mark-article article gnus-canceled-mark)
7621           (gnus-message 4 "Deleted article %s" article)))
7622        (t
7623         (let* ((pto-group (gnus-group-prefixed-name
7624                            (car art-group) to-method))
7625                (entry
7626                 (gnus-gethash pto-group gnus-newsrc-hashtb))
7627                (info (nth 2 entry))
7628                (to-group (gnus-info-group info))
7629                to-marks)
7630           ;; Update the group that has been moved to.
7631           (when (and info
7632                      (memq action '(move copy)))
7633             (unless (member to-group to-groups)
7634               (push to-group to-groups))
7635
7636             (unless (memq article gnus-newsgroup-unreads)
7637               (push 'read to-marks)
7638               (gnus-info-set-read
7639                info (gnus-add-to-range (gnus-info-read info)
7640                                        (list (cdr art-group)))))
7641
7642             ;; See whether the article is to be put in the cache.
7643             (let ((marks (if (gnus-group-auto-expirable-p to-group)
7644                              default-marks
7645                            no-expire-marks))
7646                   (to-article (cdr art-group)))
7647
7648               ;; Enter the article into the cache in the new group,
7649               ;; if that is required.
7650               (when gnus-use-cache
7651                 (gnus-cache-possibly-enter-article
7652                  to-group to-article
7653                  (let ((header (copy-sequence
7654                                 (gnus-summary-article-header article))))
7655                    (mail-header-set-number header to-article)
7656                    header)
7657                  (memq article gnus-newsgroup-marked)
7658                  (memq article gnus-newsgroup-dormant)
7659                  (memq article gnus-newsgroup-unreads)))
7660
7661               (when gnus-preserve-marks
7662                 ;; Copy any marks over to the new group.
7663                 (when (and (equal to-group gnus-newsgroup-name)
7664                            (not (memq article gnus-newsgroup-unreads)))
7665                   ;; Mark this article as read in this group.
7666                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
7667                   (setcdr (gnus-active to-group) to-article)
7668                   (setcdr gnus-newsgroup-active to-article))
7669
7670                 (while marks
7671                   (when (memq article (symbol-value
7672                                        (intern (format "gnus-newsgroup-%s"
7673                                                        (caar marks)))))
7674                     (push (cdar marks) to-marks)
7675                     ;; If the other group is the same as this group,
7676                     ;; then we have to add the mark to the list.
7677                     (when (equal to-group gnus-newsgroup-name)
7678                       (set (intern (format "gnus-newsgroup-%s" (caar marks)))
7679                            (cons to-article
7680                                  (symbol-value
7681                                   (intern (format "gnus-newsgroup-%s"
7682                                                   (caar marks)))))))
7683                     ;; Copy the marks to other group.
7684                     (gnus-add-marked-articles
7685                      to-group (cdar marks) (list to-article) info))
7686                   (setq marks (cdr marks)))
7687
7688                 (gnus-request-set-mark to-group (list (list (list to-article)
7689                                                             'set
7690                                                             to-marks))))
7691
7692               (gnus-dribble-enter
7693                (concat "(gnus-group-set-info '"
7694                        (gnus-prin1-to-string (gnus-get-info to-group))
7695                        ")"))))
7696
7697           ;; Update the Xref header in this article to point to
7698           ;; the new crossposted article we have just created.
7699           (when (eq action 'crosspost)
7700             (save-excursion
7701               (set-buffer copy-buf)
7702               (gnus-request-article-this-buffer article gnus-newsgroup-name)
7703               (nnheader-replace-header "Xref" new-xref)
7704               (gnus-request-replace-article
7705                article gnus-newsgroup-name (current-buffer)))))
7706
7707         ;;;!!!Why is this necessary?
7708         (set-buffer gnus-summary-buffer)
7709
7710         (gnus-summary-goto-subject article)
7711         (when (eq action 'move)
7712           (gnus-summary-mark-article article gnus-canceled-mark))))
7713       (gnus-summary-remove-process-mark article))
7714     ;; Re-activate all groups that have been moved to.
7715     (while to-groups
7716       (save-excursion
7717         (set-buffer gnus-group-buffer)
7718         (when (gnus-group-goto-group (car to-groups) t)
7719           (gnus-group-get-new-news-this-group 1 t))
7720         (pop to-groups)))
7721
7722     (gnus-kill-buffer copy-buf)
7723     (gnus-summary-position-point)
7724     (gnus-set-mode-line 'summary)))
7725
7726 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
7727   "Move the current article to a different newsgroup.
7728 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7729 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7730 re-spool using this method."
7731   (interactive "P")
7732   (gnus-summary-move-article n to-newsgroup select-method 'copy))
7733
7734 (defun gnus-summary-crosspost-article (&optional n)
7735   "Crosspost the current article to some other group."
7736   (interactive "P")
7737   (gnus-summary-move-article n nil nil 'crosspost))
7738
7739 (defcustom gnus-summary-respool-default-method nil
7740   "Default method for respooling an article.
7741 If nil, use to the current newsgroup method."
7742   :type '(choice (gnus-select-method :value (nnml ""))
7743                  (const nil))
7744   :group 'gnus-summary-mail)
7745
7746 (defun gnus-summary-respool-article (&optional n method)
7747   "Respool the current article.
7748 The article will be squeezed through the mail spooling process again,
7749 which means that it will be put in some mail newsgroup or other
7750 depending on `nnmail-split-methods'.
7751 If N is a positive number, respool the N next articles.
7752 If N is a negative number, respool the N previous articles.
7753 If N is nil and any articles have been marked with the process mark,
7754 respool those articles instead.
7755
7756 Respooling can be done both from mail groups and \"real\" newsgroups.
7757 In the former case, the articles in question will be moved from the
7758 current group into whatever groups they are destined to.  In the
7759 latter case, they will be copied into the relevant groups."
7760   (interactive
7761    (list current-prefix-arg
7762          (let* ((methods (gnus-methods-using 'respool))
7763                 (methname
7764                  (symbol-name (or gnus-summary-respool-default-method
7765                                   (car (gnus-find-method-for-group
7766                                         gnus-newsgroup-name)))))
7767                 (method
7768                  (gnus-completing-read
7769                   methname "What backend do you want to use when respooling?"
7770                   methods nil t nil 'gnus-mail-method-history))
7771                 ms)
7772            (cond
7773             ((zerop (length (setq ms (gnus-servers-using-backend
7774                                       (intern method)))))
7775              (list (intern method) ""))
7776             ((= 1 (length ms))
7777              (car ms))
7778             (t
7779              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
7780                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
7781                            ms-alist))))))))
7782   (unless method
7783     (error "No method given for respooling"))
7784   (if (assoc (symbol-name
7785               (car (gnus-find-method-for-group gnus-newsgroup-name)))
7786              (gnus-methods-using 'respool))
7787       (gnus-summary-move-article n nil method)
7788     (gnus-summary-copy-article n nil method)))
7789
7790 (defun gnus-summary-import-article (file)
7791   "Import an arbitrary file into a mail newsgroup."
7792   (interactive "fImport file: ")
7793   (let ((group gnus-newsgroup-name)
7794         (now (current-time))
7795         atts lines)
7796     (unless (gnus-check-backend-function 'request-accept-article group)
7797       (error "%s does not support article importing" group))
7798     (or (file-readable-p file)
7799         (not (file-regular-p file))
7800         (error "Can't read %s" file))
7801     (save-excursion
7802       (set-buffer (gnus-get-buffer-create " *import file*"))
7803       (erase-buffer)
7804       (nnheader-insert-file-contents file)
7805       (goto-char (point-min))
7806       (unless (nnheader-article-p)
7807         ;; This doesn't look like an article, so we fudge some headers.
7808         (setq atts (file-attributes file)
7809               lines (count-lines (point-min) (point-max)))
7810         (insert "From: " (read-string "From: ") "\n"
7811                 "Subject: " (read-string "Subject: ") "\n"
7812                 "Date: " (message-make-date (nth 5 atts))
7813                 "\n"
7814                 "Message-ID: " (message-make-message-id) "\n"
7815                 "Lines: " (int-to-string lines) "\n"
7816                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
7817       (gnus-request-accept-article group nil t)
7818       (kill-buffer (current-buffer)))))
7819
7820 (defun gnus-summary-article-posted-p ()
7821   "Say whether the current (mail) article is available from news as well.
7822 This will be the case if the article has both been mailed and posted."
7823   (interactive)
7824   (let ((id (mail-header-references (gnus-summary-article-header)))
7825         (gnus-override-method (car (gnus-refer-article-methods))))
7826     (if (gnus-request-head id "")
7827         (gnus-message 2 "The current message was found on %s"
7828                       gnus-override-method)
7829       (gnus-message 2 "The current message couldn't be found on %s"
7830                     gnus-override-method)
7831       nil)))
7832
7833 (defun gnus-summary-expire-articles (&optional now)
7834   "Expire all articles that are marked as expirable in the current group."
7835   (interactive)
7836   (when (gnus-check-backend-function
7837          'request-expire-articles gnus-newsgroup-name)
7838     ;; This backend supports expiry.
7839     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
7840            (expirable (if total
7841                           (progn
7842                             ;; We need to update the info for
7843                             ;; this group for `gnus-list-of-read-articles'
7844                             ;; to give us the right answer.
7845                             (gnus-run-hooks 'gnus-exit-group-hook)
7846                             (gnus-summary-update-info)
7847                             (gnus-list-of-read-articles gnus-newsgroup-name))
7848                         (setq gnus-newsgroup-expirable
7849                               (sort gnus-newsgroup-expirable '<))))
7850            (expiry-wait (if now 'immediate
7851                           (gnus-group-find-parameter
7852                            gnus-newsgroup-name 'expiry-wait)))
7853            (nnmail-expiry-target
7854             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
7855                 nnmail-expiry-target))
7856            es)
7857       (when expirable
7858         ;; There are expirable articles in this group, so we run them
7859         ;; through the expiry process.
7860         (gnus-message 6 "Expiring articles...")
7861         (unless (gnus-check-group gnus-newsgroup-name)
7862           (error "Can't open server for %s" gnus-newsgroup-name))
7863         ;; The list of articles that weren't expired is returned.
7864         (save-excursion
7865           (if expiry-wait
7866               (let ((nnmail-expiry-wait-function nil)
7867                     (nnmail-expiry-wait expiry-wait))
7868                 (setq es (gnus-request-expire-articles
7869                           expirable gnus-newsgroup-name)))
7870             (setq es (gnus-request-expire-articles
7871                       expirable gnus-newsgroup-name))))
7872         (unless total
7873           (setq gnus-newsgroup-expirable es))
7874         ;; We go through the old list of expirable, and mark all
7875         ;; really expired articles as nonexistent.
7876         (unless (eq es expirable)       ;If nothing was expired, we don't mark.
7877           (let ((gnus-use-cache nil))
7878             (while expirable
7879               (unless (memq (car expirable) es)
7880                 (when (gnus-data-find (car expirable))
7881                   (gnus-summary-mark-article
7882                    (car expirable) gnus-canceled-mark)))
7883               (setq expirable (cdr expirable)))))
7884         (gnus-message 6 "Expiring articles...done")))))
7885
7886 (defun gnus-summary-expire-articles-now ()
7887   "Expunge all expirable articles in the current group.
7888 This means that *all* articles that are marked as expirable will be
7889 deleted forever, right now."
7890   (interactive)
7891   (or gnus-expert-user
7892       (gnus-yes-or-no-p
7893        "Are you really, really, really sure you want to delete all these messages? ")
7894       (error "Phew!"))
7895   (gnus-summary-expire-articles t))
7896
7897 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
7898 (defun gnus-summary-delete-article (&optional n)
7899   "Delete the N next (mail) articles.
7900 This command actually deletes articles.  This is not a marking
7901 command.  The article will disappear forever from your life, never to
7902 return.
7903 If N is negative, delete backwards.
7904 If N is nil and articles have been marked with the process mark,
7905 delete these instead."
7906   (interactive "P")
7907   (unless (gnus-check-backend-function 'request-expire-articles
7908                                        gnus-newsgroup-name)
7909     (error "The current newsgroup does not support article deletion"))
7910   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
7911     (error "Couldn't open server"))
7912   ;; Compute the list of articles to delete.
7913   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
7914         not-deleted)
7915     (if (and gnus-novice-user
7916              (not (gnus-yes-or-no-p
7917                    (format "Do you really want to delete %s forever? "
7918                            (if (> (length articles) 1)
7919                                (format "these %s articles" (length articles))
7920                              "this article")))))
7921         ()
7922       ;; Delete the articles.
7923       (setq not-deleted (gnus-request-expire-articles
7924                          articles gnus-newsgroup-name 'force))
7925       (while articles
7926         (gnus-summary-remove-process-mark (car articles))
7927         ;; The backend might not have been able to delete the article
7928         ;; after all.
7929         (unless (memq (car articles) not-deleted)
7930           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
7931         (setq articles (cdr articles)))
7932       (when not-deleted
7933         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
7934     (gnus-summary-position-point)
7935     (gnus-set-mode-line 'summary)
7936     not-deleted))
7937
7938 (defun gnus-summary-edit-article (&optional force)
7939   "Edit the current article.
7940 This will have permanent effect only in mail groups.
7941 If FORCE is non-nil, allow editing of articles even in read-only
7942 groups."
7943   (interactive "P")
7944   (save-excursion
7945     (set-buffer gnus-summary-buffer)
7946     (let ((mail-parse-charset gnus-newsgroup-charset)
7947           (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
7948       (gnus-set-global-variables)
7949       (when (and (not force)
7950                  (gnus-group-read-only-p))
7951         (error "The current newsgroup does not support article editing"))
7952       (gnus-summary-show-article t)
7953       (gnus-article-edit-article
7954        'ignore
7955        `(lambda (no-highlight)
7956           (let ((mail-parse-charset ',gnus-newsgroup-charset)
7957                 (mail-parse-ignored-charsets
7958                  ',gnus-newsgroup-ignored-charsets))
7959             (gnus-summary-edit-article-done
7960              ,(or (mail-header-references gnus-current-headers) "")
7961              ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight)))))))
7962
7963 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
7964
7965 (defun gnus-summary-edit-article-done (&optional references read-only buffer
7966                                                  no-highlight)
7967   "Make edits to the current article permanent."
7968   (interactive)
7969   ;; Replace the article.
7970   (let ((buf (current-buffer)))
7971     (with-temp-buffer
7972       (insert-buffer-substring buf)
7973       (if (and (not read-only)
7974                (not (gnus-request-replace-article
7975                      (cdr gnus-article-current) (car gnus-article-current)
7976                      (current-buffer) t)))
7977           (error "Couldn't replace article")
7978         ;; Update the summary buffer.
7979         (if (and references
7980                  (equal (message-tokenize-header references " ")
7981                         (message-tokenize-header
7982                          (or (message-fetch-field "references") "") " ")))
7983             ;; We only have to update this line.
7984             (save-excursion
7985               (save-restriction
7986                 (message-narrow-to-head)
7987                 (let ((head (buffer-string))
7988                       header)
7989                   (with-temp-buffer
7990                     (insert (format "211 %d Article retrieved.\n"
7991                                     (cdr gnus-article-current)))
7992                     (insert head)
7993                     (insert ".\n")
7994                     (let ((nntp-server-buffer (current-buffer)))
7995                       (setq header (car (gnus-get-newsgroup-headers
7996                                          (save-excursion
7997                                            (set-buffer gnus-summary-buffer)
7998                                            gnus-newsgroup-dependencies)
7999                                          t))))
8000                     (save-excursion
8001                       (set-buffer gnus-summary-buffer)
8002                       (gnus-data-set-header
8003                        (gnus-data-find (cdr gnus-article-current))
8004                        header)
8005                       (gnus-summary-update-article-line
8006                        (cdr gnus-article-current) header))))))
8007           ;; Update threads.
8008           (set-buffer (or buffer gnus-summary-buffer))
8009           (gnus-summary-update-article (cdr gnus-article-current)))
8010         ;; Prettify the article buffer again.
8011         (unless no-highlight
8012           (save-excursion
8013             (set-buffer gnus-article-buffer)
8014             ;;;!!! Fix this -- article should be rehighlighted.
8015             ;;;(gnus-run-hooks 'gnus-article-display-hook)
8016             (set-buffer gnus-original-article-buffer)
8017             (gnus-request-article
8018              (cdr gnus-article-current)
8019              (car gnus-article-current) (current-buffer))))
8020         ;; Prettify the summary buffer line.
8021         (when (gnus-visual-p 'summary-highlight 'highlight)
8022           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
8023
8024 (defun gnus-summary-edit-wash (key)
8025   "Perform editing command KEY in the article buffer."
8026   (interactive
8027    (list
8028     (progn
8029       (message "%s" (concat (this-command-keys) "- "))
8030       (read-char))))
8031   (message "")
8032   (gnus-summary-edit-article)
8033   (execute-kbd-macro (concat (this-command-keys) key))
8034   (gnus-article-edit-done))
8035
8036 ;;; Respooling
8037
8038 (defun gnus-summary-respool-query (&optional silent trace)
8039   "Query where the respool algorithm would put this article."
8040   (interactive)
8041   (let (gnus-mark-article-hook)
8042     (gnus-summary-select-article)
8043     (save-excursion
8044       (set-buffer gnus-original-article-buffer)
8045       (save-restriction
8046         (message-narrow-to-head)
8047         (let ((groups (nnmail-article-group 'identity trace)))
8048           (unless silent
8049             (if groups
8050                 (message "This message would go to %s"
8051                          (mapconcat 'car groups ", "))
8052               (message "This message would go to no groups"))
8053             groups))))))
8054
8055 (defun gnus-summary-respool-trace ()
8056   "Trace where the respool algorithm would put this article.
8057 Display a buffer showing all fancy splitting patterns which matched."
8058   (interactive)
8059   (gnus-summary-respool-query nil t))
8060
8061 ;; Summary marking commands.
8062
8063 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
8064   "Mark articles which has the same subject as read, and then select the next.
8065 If UNMARK is positive, remove any kind of mark.
8066 If UNMARK is negative, tick articles."
8067   (interactive "P")
8068   (when unmark
8069     (setq unmark (prefix-numeric-value unmark)))
8070   (let ((count
8071          (gnus-summary-mark-same-subject
8072           (gnus-summary-article-subject) unmark)))
8073     ;; Select next unread article.  If auto-select-same mode, should
8074     ;; select the first unread article.
8075     (gnus-summary-next-article t (and gnus-auto-select-same
8076                                       (gnus-summary-article-subject)))
8077     (gnus-message 7 "%d article%s marked as %s"
8078                   count (if (= count 1) " is" "s are")
8079                   (if unmark "unread" "read"))))
8080
8081 (defun gnus-summary-kill-same-subject (&optional unmark)
8082   "Mark articles which has the same subject as read.
8083 If UNMARK is positive, remove any kind of mark.
8084 If UNMARK is negative, tick articles."
8085   (interactive "P")
8086   (when unmark
8087     (setq unmark (prefix-numeric-value unmark)))
8088   (let ((count
8089          (gnus-summary-mark-same-subject
8090           (gnus-summary-article-subject) unmark)))
8091     ;; If marked as read, go to next unread subject.
8092     (when (null unmark)
8093       ;; Go to next unread subject.
8094       (gnus-summary-next-subject 1 t))
8095     (gnus-message 7 "%d articles are marked as %s"
8096                   count (if unmark "unread" "read"))))
8097
8098 (defun gnus-summary-mark-same-subject (subject &optional unmark)
8099   "Mark articles with same SUBJECT as read, and return marked number.
8100 If optional argument UNMARK is positive, remove any kinds of marks.
8101 If optional argument UNMARK is negative, mark articles as unread instead."
8102   (let ((count 1))
8103     (save-excursion
8104       (cond
8105        ((null unmark)                   ; Mark as read.
8106         (while (and
8107                 (progn
8108                   (gnus-summary-mark-article-as-read gnus-killed-mark)
8109                   (gnus-summary-show-thread) t)
8110                 (gnus-summary-find-subject subject))
8111           (setq count (1+ count))))
8112        ((> unmark 0)                    ; Tick.
8113         (while (and
8114                 (progn
8115                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
8116                   (gnus-summary-show-thread) t)
8117                 (gnus-summary-find-subject subject))
8118           (setq count (1+ count))))
8119        (t                               ; Mark as unread.
8120         (while (and
8121                 (progn
8122                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
8123                   (gnus-summary-show-thread) t)
8124                 (gnus-summary-find-subject subject))
8125           (setq count (1+ count)))))
8126       (gnus-set-mode-line 'summary)
8127       ;; Return the number of marked articles.
8128       count)))
8129
8130 (defun gnus-summary-mark-as-processable (n &optional unmark)
8131   "Set the process mark on the next N articles.
8132 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
8133 the process mark instead.  The difference between N and the actual
8134 number of articles marked is returned."
8135   (interactive "p")
8136   (let ((backward (< n 0))
8137         (n (abs n)))
8138     (while (and
8139             (> n 0)
8140             (if unmark
8141                 (gnus-summary-remove-process-mark
8142                  (gnus-summary-article-number))
8143               (gnus-summary-set-process-mark (gnus-summary-article-number)))
8144             (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
8145       (setq n (1- n)))
8146     (when (/= 0 n)
8147       (gnus-message 7 "No more articles"))
8148     (gnus-summary-recenter)
8149     (gnus-summary-position-point)
8150     n))
8151
8152 (defun gnus-summary-unmark-as-processable (n)
8153   "Remove the process mark from the next N articles.
8154 If N is negative, unmark backward instead.  The difference between N and
8155 the actual number of articles unmarked is returned."
8156   (interactive "p")
8157   (gnus-summary-mark-as-processable n t))
8158
8159 (defun gnus-summary-unmark-all-processable ()
8160   "Remove the process mark from all articles."
8161   (interactive)
8162   (save-excursion
8163     (while gnus-newsgroup-processable
8164       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
8165   (gnus-summary-position-point))
8166
8167 (defun gnus-summary-mark-as-expirable (n)
8168   "Mark N articles forward as expirable.
8169 If N is negative, mark backward instead.  The difference between N and
8170 the actual number of articles marked is returned."
8171   (interactive "p")
8172   (gnus-summary-mark-forward n gnus-expirable-mark))
8173
8174 (defun gnus-summary-mark-article-as-replied (article)
8175   "Mark ARTICLE replied and update the summary line."
8176   (push article gnus-newsgroup-replied)
8177   (let ((buffer-read-only nil))
8178     (when (gnus-summary-goto-subject article nil t)
8179       (gnus-summary-update-secondary-mark article))))
8180
8181 (defun gnus-summary-set-bookmark (article)
8182   "Set a bookmark in current article."
8183   (interactive (list (gnus-summary-article-number)))
8184   (when (or (not (get-buffer gnus-article-buffer))
8185             (not gnus-current-article)
8186             (not gnus-article-current)
8187             (not (equal gnus-newsgroup-name (car gnus-article-current))))
8188     (error "No current article selected"))
8189   ;; Remove old bookmark, if one exists.
8190   (let ((old (assq article gnus-newsgroup-bookmarks)))
8191     (when old
8192       (setq gnus-newsgroup-bookmarks
8193             (delq old gnus-newsgroup-bookmarks))))
8194   ;; Set the new bookmark, which is on the form
8195   ;; (article-number . line-number-in-body).
8196   (push
8197    (cons article
8198          (save-excursion
8199            (set-buffer gnus-article-buffer)
8200            (count-lines
8201             (min (point)
8202                  (save-excursion
8203                    (goto-char (point-min))
8204                    (search-forward "\n\n" nil t)
8205                    (point)))
8206             (point))))
8207    gnus-newsgroup-bookmarks)
8208   (gnus-message 6 "A bookmark has been added to the current article."))
8209
8210 (defun gnus-summary-remove-bookmark (article)
8211   "Remove the bookmark from the current article."
8212   (interactive (list (gnus-summary-article-number)))
8213   ;; Remove old bookmark, if one exists.
8214   (let ((old (assq article gnus-newsgroup-bookmarks)))
8215     (if old
8216         (progn
8217           (setq gnus-newsgroup-bookmarks
8218                 (delq old gnus-newsgroup-bookmarks))
8219           (gnus-message 6 "Removed bookmark."))
8220       (gnus-message 6 "No bookmark in current article."))))
8221
8222 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8223 (defun gnus-summary-mark-as-dormant (n)
8224   "Mark N articles forward as dormant.
8225 If N is negative, mark backward instead.  The difference between N and
8226 the actual number of articles marked is returned."
8227   (interactive "p")
8228   (gnus-summary-mark-forward n gnus-dormant-mark))
8229
8230 (defun gnus-summary-set-process-mark (article)
8231   "Set the process mark on ARTICLE and update the summary line."
8232   (setq gnus-newsgroup-processable
8233         (cons article
8234               (delq article gnus-newsgroup-processable)))
8235   (when (gnus-summary-goto-subject article)
8236     (gnus-summary-show-thread)
8237     (gnus-summary-goto-subject article)
8238     (gnus-summary-update-secondary-mark article)))
8239
8240 (defun gnus-summary-remove-process-mark (article)
8241   "Remove the process mark from ARTICLE and update the summary line."
8242   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
8243   (when (gnus-summary-goto-subject article)
8244     (gnus-summary-show-thread)
8245     (gnus-summary-goto-subject article)
8246     (gnus-summary-update-secondary-mark article)))
8247
8248 (defun gnus-summary-set-saved-mark (article)
8249   "Set the process mark on ARTICLE and update the summary line."
8250   (push article gnus-newsgroup-saved)
8251   (when (gnus-summary-goto-subject article)
8252     (gnus-summary-update-secondary-mark article)))
8253
8254 (defun gnus-summary-mark-forward (n &optional mark no-expire)
8255   "Mark N articles as read forwards.
8256 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
8257 The difference between N and the actual number of articles marked is
8258 returned.
8259 Iff NO-EXPIRE, auto-expiry will be inhibited."
8260   (interactive "p")
8261   (gnus-summary-show-thread)
8262   (let ((backward (< n 0))
8263         (gnus-summary-goto-unread
8264          (and gnus-summary-goto-unread
8265               (not (eq gnus-summary-goto-unread 'never))
8266               (not (memq mark (list gnus-unread-mark
8267                                     gnus-ticked-mark gnus-dormant-mark)))))
8268         (n (abs n))
8269         (mark (or mark gnus-del-mark)))
8270     (while (and (> n 0)
8271                 (gnus-summary-mark-article nil mark no-expire)
8272                 (zerop (gnus-summary-next-subject
8273                         (if backward -1 1)
8274                         (and gnus-summary-goto-unread
8275                              (not (eq gnus-summary-goto-unread 'never)))
8276                         t)))
8277       (setq n (1- n)))
8278     (when (/= 0 n)
8279       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
8280     (gnus-summary-recenter)
8281     (gnus-summary-position-point)
8282     (gnus-set-mode-line 'summary)
8283     n))
8284
8285 (defun gnus-summary-mark-article-as-read (mark)
8286   "Mark the current article quickly as read with MARK."
8287   (let ((article (gnus-summary-article-number)))
8288     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8289     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8290     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8291     (push (cons article mark) gnus-newsgroup-reads)
8292     ;; Possibly remove from cache, if that is used.
8293     (when gnus-use-cache
8294       (gnus-cache-enter-remove-article article))
8295     ;; Allow the backend to change the mark.
8296     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8297     ;; Check for auto-expiry.
8298     (when (and gnus-newsgroup-auto-expire
8299                (memq mark gnus-auto-expirable-marks))
8300       (setq mark gnus-expirable-mark)
8301       ;; Let the backend know about the mark change.
8302       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8303       (push article gnus-newsgroup-expirable))
8304     ;; Set the mark in the buffer.
8305     (gnus-summary-update-mark mark 'unread)
8306     t))
8307
8308 (defun gnus-summary-mark-article-as-unread (mark)
8309   "Mark the current article quickly as unread with MARK."
8310   (let* ((article (gnus-summary-article-number))
8311          (old-mark (gnus-summary-article-mark article)))
8312     ;; Allow the backend to change the mark.
8313     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8314     (if (eq mark old-mark)
8315         t
8316       (if (<= article 0)
8317           (progn
8318             (gnus-error 1 "Can't mark negative article numbers")
8319             nil)
8320         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8321         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8322         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
8323         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
8324         (cond ((= mark gnus-ticked-mark)
8325                (push article gnus-newsgroup-marked))
8326               ((= mark gnus-dormant-mark)
8327                (push article gnus-newsgroup-dormant))
8328               (t
8329                (push article gnus-newsgroup-unreads)))
8330         (gnus-pull article gnus-newsgroup-reads)
8331
8332         ;; See whether the article is to be put in the cache.
8333         (and gnus-use-cache
8334              (vectorp (gnus-summary-article-header article))
8335              (save-excursion
8336                (gnus-cache-possibly-enter-article
8337                 gnus-newsgroup-name article
8338                 (gnus-summary-article-header article)
8339                 (= mark gnus-ticked-mark)
8340                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8341
8342         ;; Fix the mark.
8343         (gnus-summary-update-mark mark 'unread)
8344         t))))
8345
8346 (defun gnus-summary-mark-article (&optional article mark no-expire)
8347   "Mark ARTICLE with MARK.  MARK can be any character.
8348 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
8349 `??' (dormant) and `?E' (expirable).
8350 If MARK is nil, then the default character `?r' is used.
8351 If ARTICLE is nil, then the article on the current line will be
8352 marked.
8353 Iff NO-EXPIRE, auto-expiry will be inhibited."
8354   ;; The mark might be a string.
8355   (when (stringp mark)
8356     (setq mark (aref mark 0)))
8357   ;; If no mark is given, then we check auto-expiring.
8358   (when (null mark)
8359     (setq mark gnus-del-mark))
8360   (when (and (not no-expire)
8361              gnus-newsgroup-auto-expire
8362              (memq mark gnus-auto-expirable-marks))
8363     (setq mark gnus-expirable-mark))
8364   (let ((article (or article (gnus-summary-article-number)))
8365         (old-mark (gnus-summary-article-mark article)))
8366     ;; Allow the backend to change the mark.
8367     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8368     (if (eq mark old-mark)
8369         t
8370       (unless article
8371         (error "No article on current line"))
8372       (if (not (if (or (= mark gnus-unread-mark)
8373                        (= mark gnus-ticked-mark)
8374                        (= mark gnus-dormant-mark))
8375                    (gnus-mark-article-as-unread article mark)
8376                  (gnus-mark-article-as-read article mark)))
8377           t
8378         ;; See whether the article is to be put in the cache.
8379         (and gnus-use-cache
8380              (not (= mark gnus-canceled-mark))
8381              (vectorp (gnus-summary-article-header article))
8382              (save-excursion
8383                (gnus-cache-possibly-enter-article
8384                 gnus-newsgroup-name article
8385                 (gnus-summary-article-header article)
8386                 (= mark gnus-ticked-mark)
8387                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8388
8389         (when (gnus-summary-goto-subject article nil t)
8390           (let ((buffer-read-only nil))
8391             (gnus-summary-show-thread)
8392             ;; Fix the mark.
8393             (gnus-summary-update-mark mark 'unread)
8394             t))))))
8395
8396 (defun gnus-summary-update-secondary-mark (article)
8397   "Update the secondary (read, process, cache) mark."
8398   (gnus-summary-update-mark
8399    (cond ((memq article gnus-newsgroup-processable)
8400           gnus-process-mark)
8401          ((memq article gnus-newsgroup-cached)
8402           gnus-cached-mark)
8403          ((memq article gnus-newsgroup-replied)
8404           gnus-replied-mark)
8405          ((memq article gnus-newsgroup-saved)
8406           gnus-saved-mark)
8407          (t gnus-unread-mark))
8408    'replied)
8409   (when (gnus-visual-p 'summary-highlight 'highlight)
8410     (gnus-run-hooks 'gnus-summary-update-hook))
8411   t)
8412
8413 (defun gnus-summary-update-mark (mark type)
8414   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
8415         (buffer-read-only nil))
8416     (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
8417     (when forward
8418       (when (looking-at "\r")
8419         (incf forward))
8420       (when (<= (+ forward (point)) (point-max))
8421         ;; Go to the right position on the line.
8422         (goto-char (+ forward (point)))
8423         ;; Replace the old mark with the new mark.
8424         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
8425         ;; Optionally update the marks by some user rule.
8426         (when (eq type 'unread)
8427           (gnus-data-set-mark
8428            (gnus-data-find (gnus-summary-article-number)) mark)
8429           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
8430
8431 (defun gnus-mark-article-as-read (article &optional mark)
8432   "Enter ARTICLE in the pertinent lists and remove it from others."
8433   ;; Make the article expirable.
8434   (let ((mark (or mark gnus-del-mark)))
8435     (if (= mark gnus-expirable-mark)
8436         (push article gnus-newsgroup-expirable)
8437       (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)))
8438     ;; Remove from unread and marked lists.
8439     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8440     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8441     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8442     (push (cons article mark) gnus-newsgroup-reads)
8443     ;; Possibly remove from cache, if that is used.
8444     (when gnus-use-cache
8445       (gnus-cache-enter-remove-article article))
8446     t))
8447
8448 (defun gnus-mark-article-as-unread (article &optional mark)
8449   "Enter ARTICLE in the pertinent lists and remove it from others."
8450   (let ((mark (or mark gnus-ticked-mark)))
8451     (if (<= article 0)
8452         (progn
8453           (gnus-error 1 "Can't mark negative article numbers")
8454           nil)
8455       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
8456             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
8457             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
8458             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8459
8460       ;; Unsuppress duplicates?
8461       (when gnus-suppress-duplicates
8462         (gnus-dup-unsuppress-article article))
8463
8464       (cond ((= mark gnus-ticked-mark)
8465              (push article gnus-newsgroup-marked))
8466             ((= mark gnus-dormant-mark)
8467              (push article gnus-newsgroup-dormant))
8468             (t
8469              (push article gnus-newsgroup-unreads)))
8470       (gnus-pull article gnus-newsgroup-reads)
8471       t)))
8472
8473 (defalias 'gnus-summary-mark-as-unread-forward
8474   'gnus-summary-tick-article-forward)
8475 (make-obsolete 'gnus-summary-mark-as-unread-forward
8476                'gnus-summary-tick-article-forward)
8477 (defun gnus-summary-tick-article-forward (n)
8478   "Tick N articles forwards.
8479 If N is negative, tick backwards instead.
8480 The difference between N and the number of articles ticked is returned."
8481   (interactive "p")
8482   (gnus-summary-mark-forward n gnus-ticked-mark))
8483
8484 (defalias 'gnus-summary-mark-as-unread-backward
8485   'gnus-summary-tick-article-backward)
8486 (make-obsolete 'gnus-summary-mark-as-unread-backward
8487                'gnus-summary-tick-article-backward)
8488 (defun gnus-summary-tick-article-backward (n)
8489   "Tick N articles backwards.
8490 The difference between N and the number of articles ticked is returned."
8491   (interactive "p")
8492   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
8493
8494 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8495 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8496 (defun gnus-summary-tick-article (&optional article clear-mark)
8497   "Mark current article as unread.
8498 Optional 1st argument ARTICLE specifies article number to be marked as unread.
8499 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
8500   (interactive)
8501   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
8502                                        gnus-ticked-mark)))
8503
8504 (defun gnus-summary-mark-as-read-forward (n)
8505   "Mark N articles as read forwards.
8506 If N is negative, mark backwards instead.
8507 The difference between N and the actual number of articles marked is
8508 returned."
8509   (interactive "p")
8510   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
8511
8512 (defun gnus-summary-mark-as-read-backward (n)
8513   "Mark the N articles as read backwards.
8514 The difference between N and the actual number of articles marked is
8515 returned."
8516   (interactive "p")
8517   (gnus-summary-mark-forward
8518    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
8519
8520 (defun gnus-summary-mark-as-read (&optional article mark)
8521   "Mark current article as read.
8522 ARTICLE specifies the article to be marked as read.
8523 MARK specifies a string to be inserted at the beginning of the line."
8524   (gnus-summary-mark-article article mark))
8525
8526 (defun gnus-summary-clear-mark-forward (n)
8527   "Clear marks from N articles forward.
8528 If N is negative, clear backward instead.
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-clear-mark-backward (n)
8534   "Clear marks from N articles backward.
8535 The difference between N and the number of marks cleared is returned."
8536   (interactive "p")
8537   (gnus-summary-mark-forward (- n) gnus-unread-mark))
8538
8539 (defun gnus-summary-mark-unread-as-read ()
8540   "Intended to be used by `gnus-summary-mark-article-hook'."
8541   (when (memq gnus-current-article gnus-newsgroup-unreads)
8542     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
8543
8544 (defun gnus-summary-mark-read-and-unread-as-read ()
8545   "Intended to be used by `gnus-summary-mark-article-hook'."
8546   (let ((mark (gnus-summary-article-mark)))
8547     (when (or (gnus-unread-mark-p mark)
8548               (gnus-read-mark-p mark))
8549       (gnus-summary-mark-article gnus-current-article gnus-read-mark))))
8550
8551 (defun gnus-summary-mark-region-as-read (point mark all)
8552   "Mark all unread articles between point and mark as read.
8553 If given a prefix, mark all articles between point and mark as read,
8554 even ticked and dormant ones."
8555   (interactive "r\nP")
8556   (save-excursion
8557     (let (article)
8558       (goto-char point)
8559       (beginning-of-line)
8560       (while (and
8561               (< (point) mark)
8562               (progn
8563                 (when (or all
8564                           (memq (setq article (gnus-summary-article-number))
8565                                 gnus-newsgroup-unreads))
8566                   (gnus-summary-mark-article article gnus-del-mark))
8567                 t)
8568               (gnus-summary-find-next))))))
8569
8570 (defun gnus-summary-mark-below (score mark)
8571   "Mark articles with score less than SCORE with MARK."
8572   (interactive "P\ncMark: ")
8573   (setq score (if score
8574                   (prefix-numeric-value score)
8575                 (or gnus-summary-default-score 0)))
8576   (save-excursion
8577     (set-buffer gnus-summary-buffer)
8578     (goto-char (point-min))
8579     (while
8580         (progn
8581           (and (< (gnus-summary-article-score) score)
8582                (gnus-summary-mark-article nil mark))
8583           (gnus-summary-find-next)))))
8584
8585 (defun gnus-summary-kill-below (&optional score)
8586   "Mark articles with score below SCORE as read."
8587   (interactive "P")
8588   (gnus-summary-mark-below score gnus-killed-mark))
8589
8590 (defun gnus-summary-clear-above (&optional score)
8591   "Clear all marks from articles with score above SCORE."
8592   (interactive "P")
8593   (gnus-summary-mark-above score gnus-unread-mark))
8594
8595 (defun gnus-summary-tick-above (&optional score)
8596   "Tick all articles with score above SCORE."
8597   (interactive "P")
8598   (gnus-summary-mark-above score gnus-ticked-mark))
8599
8600 (defun gnus-summary-mark-above (score mark)
8601   "Mark articles with score over SCORE with MARK."
8602   (interactive "P\ncMark: ")
8603   (setq score (if score
8604                   (prefix-numeric-value score)
8605                 (or gnus-summary-default-score 0)))
8606   (save-excursion
8607     (set-buffer gnus-summary-buffer)
8608     (goto-char (point-min))
8609     (while (and (progn
8610                   (when (> (gnus-summary-article-score) score)
8611                     (gnus-summary-mark-article nil mark))
8612                   t)
8613                 (gnus-summary-find-next)))))
8614
8615 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8616 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
8617 (defun gnus-summary-limit-include-expunged (&optional no-error)
8618   "Display all the hidden articles that were expunged for low scores."
8619   (interactive)
8620   (let ((buffer-read-only nil))
8621     (let ((scored gnus-newsgroup-scored)
8622           headers h)
8623       (while scored
8624         (unless (gnus-summary-goto-subject (caar scored))
8625           (and (setq h (gnus-summary-article-header (caar scored)))
8626                (< (cdar scored) gnus-summary-expunge-below)
8627                (push h headers)))
8628         (setq scored (cdr scored)))
8629       (if (not headers)
8630           (when (not no-error)
8631             (error "No expunged articles hidden"))
8632         (goto-char (point-min))
8633         (gnus-summary-prepare-unthreaded (nreverse headers))
8634         (goto-char (point-min))
8635         (gnus-summary-position-point)
8636         t))))
8637
8638 (defun gnus-summary-catchup (&optional all quietly to-here not-mark)
8639   "Mark all unread articles in this newsgroup as read.
8640 If prefix argument ALL is non-nil, ticked and dormant articles will
8641 also be marked as read.
8642 If QUIETLY is non-nil, no questions will be asked.
8643 If TO-HERE is non-nil, it should be a point in the buffer.  All
8644 articles before this point will be marked as read.
8645 Note that this function will only catch up the unread article
8646 in the current summary buffer limitation.
8647 The number of articles marked as read is returned."
8648   (interactive "P")
8649   (prog1
8650       (save-excursion
8651         (when (or quietly
8652                   (not gnus-interactive-catchup) ;Without confirmation?
8653                   gnus-expert-user
8654                   (gnus-y-or-n-p
8655                    (if all
8656                        "Mark absolutely all articles as read? "
8657                      "Mark all unread articles as read? ")))
8658           (if (and not-mark
8659                    (not gnus-newsgroup-adaptive)
8660                    (not gnus-newsgroup-auto-expire)
8661                    (not gnus-suppress-duplicates)
8662                    (or (not gnus-use-cache)
8663                        (eq gnus-use-cache 'passive)))
8664               (progn
8665                 (when all
8666                   (setq gnus-newsgroup-marked nil
8667                         gnus-newsgroup-dormant nil))
8668                 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable))
8669             ;; We actually mark all articles as canceled, which we
8670             ;; have to do when using auto-expiry or adaptive scoring.
8671             (gnus-summary-show-all-threads)
8672             (when (gnus-summary-first-subject (not all) t)
8673               (while (and
8674                       (if to-here (< (point) to-here) t)
8675                       (gnus-summary-mark-article-as-read gnus-catchup-mark)
8676                       (gnus-summary-find-next (not all) nil nil t))))
8677             (gnus-set-mode-line 'summary))
8678           t))
8679     (gnus-summary-position-point)))
8680
8681 (defun gnus-summary-catchup-to-here (&optional all)
8682   "Mark all unticked articles before the current one as read.
8683 If ALL is non-nil, also mark ticked and dormant articles as read."
8684   (interactive "P")
8685   (save-excursion
8686     (gnus-save-hidden-threads
8687       (let ((beg (point)))
8688         ;; We check that there are unread articles.
8689         (when (or all (gnus-summary-find-prev))
8690           (gnus-summary-catchup all t beg)))))
8691   (gnus-summary-position-point))
8692
8693 (defun gnus-summary-catchup-all (&optional quietly)
8694   "Mark all articles in this newsgroup as read."
8695   (interactive "P")
8696   (gnus-summary-catchup t quietly))
8697
8698 (defun gnus-summary-catchup-and-exit (&optional all quietly)
8699   "Mark all unread articles in this group as read, then exit.
8700 If prefix argument ALL is non-nil, all articles are marked as read."
8701   (interactive "P")
8702   (when (gnus-summary-catchup all quietly nil 'fast)
8703     ;; Select next newsgroup or exit.
8704     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
8705              (eq gnus-auto-select-next 'quietly))
8706         (gnus-summary-next-group nil)
8707       (gnus-summary-exit))))
8708
8709 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
8710   "Mark all articles in this newsgroup as read, and then exit."
8711   (interactive "P")
8712   (gnus-summary-catchup-and-exit t quietly))
8713
8714 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
8715   "Mark all articles in this group as read and select the next group.
8716 If given a prefix, mark all articles, unread as well as ticked, as
8717 read."
8718   (interactive "P")
8719   (save-excursion
8720     (gnus-summary-catchup all))
8721   (gnus-summary-next-group))
8722
8723 ;;;
8724 ;;; with article
8725 ;;;
8726
8727 (defmacro gnus-with-article (article &rest forms)
8728   "Select ARTICLE and perform FORMS in the original article buffer.
8729 Then replace the article with the result."
8730   `(progn
8731      ;; We don't want the article to be marked as read.
8732      (let (gnus-mark-article-hook)
8733        (gnus-summary-select-article t t nil ,article))
8734      (set-buffer gnus-original-article-buffer)
8735      ,@forms
8736      (if (not (gnus-check-backend-function
8737                'request-replace-article (car gnus-article-current)))
8738          (gnus-message 5 "Read-only group; not replacing")
8739        (unless (gnus-request-replace-article
8740                 ,article (car gnus-article-current)
8741                 (current-buffer) t)
8742          (error "Couldn't replace article")))
8743      ;; The cache and backlog have to be flushed somewhat.
8744      (when gnus-keep-backlog
8745        (gnus-backlog-remove-article
8746         (car gnus-article-current) (cdr gnus-article-current)))
8747      (when gnus-use-cache
8748        (gnus-cache-update-article
8749         (car gnus-article-current) (cdr gnus-article-current)))))
8750
8751 (put 'gnus-with-article 'lisp-indent-function 1)
8752 (put 'gnus-with-article 'edebug-form-spec '(form body))
8753
8754 ;; Thread-based commands.
8755
8756 (defun gnus-summary-articles-in-thread (&optional article)
8757   "Return a list of all articles in the current thread.
8758 If ARTICLE is non-nil, return all articles in the thread that starts
8759 with that article."
8760   (let* ((article (or article (gnus-summary-article-number)))
8761          (data (gnus-data-find-list article))
8762          (top-level (gnus-data-level (car data)))
8763          (top-subject
8764           (cond ((null gnus-thread-operation-ignore-subject)
8765                  (gnus-simplify-subject-re
8766                   (mail-header-subject (gnus-data-header (car data)))))
8767                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
8768                  (gnus-simplify-subject-fuzzy
8769                   (mail-header-subject (gnus-data-header (car data)))))
8770                 (t nil)))
8771          (end-point (save-excursion
8772                       (if (gnus-summary-go-to-next-thread)
8773                           (point) (point-max))))
8774          articles)
8775     (while (and data
8776                 (< (gnus-data-pos (car data)) end-point))
8777       (when (or (not top-subject)
8778                 (string= top-subject
8779                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
8780                              (gnus-simplify-subject-fuzzy
8781                               (mail-header-subject
8782                                (gnus-data-header (car data))))
8783                            (gnus-simplify-subject-re
8784                             (mail-header-subject
8785                              (gnus-data-header (car data)))))))
8786         (push (gnus-data-number (car data)) articles))
8787       (unless (and (setq data (cdr data))
8788                    (> (gnus-data-level (car data)) top-level))
8789         (setq data nil)))
8790     ;; Return the list of articles.
8791     (nreverse articles)))
8792
8793 (defun gnus-summary-rethread-current ()
8794   "Rethread the thread the current article is part of."
8795   (interactive)
8796   (let* ((gnus-show-threads t)
8797          (article (gnus-summary-article-number))
8798          (id (mail-header-id (gnus-summary-article-header)))
8799          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
8800     (unless id
8801       (error "No article on the current line"))
8802     (gnus-rebuild-thread id)
8803     (gnus-summary-goto-subject article)))
8804
8805 (defun gnus-summary-reparent-thread ()
8806   "Make the current article child of the marked (or previous) article.
8807
8808 Note that the re-threading will only work if `gnus-thread-ignore-subject'
8809 is non-nil or the Subject: of both articles are the same."
8810   (interactive)
8811   (unless (not (gnus-group-read-only-p))
8812     (error "The current newsgroup does not support article editing"))
8813   (unless (<= (length gnus-newsgroup-processable) 1)
8814     (error "No more than one article may be marked"))
8815   (save-window-excursion
8816     (let ((gnus-article-buffer " *reparent*")
8817           (current-article (gnus-summary-article-number))
8818           ;; First grab the marked article, otherwise one line up.
8819           (parent-article (if (not (null gnus-newsgroup-processable))
8820                               (car gnus-newsgroup-processable)
8821                             (save-excursion
8822                               (if (eq (forward-line -1) 0)
8823                                   (gnus-summary-article-number)
8824                                 (error "Beginning of summary buffer"))))))
8825       (unless (not (eq current-article parent-article))
8826         (error "An article may not be self-referential"))
8827       (let ((message-id (mail-header-id
8828                          (gnus-summary-article-header parent-article))))
8829         (unless (and message-id (not (equal message-id "")))
8830           (error "No message-id in desired parent"))
8831         (gnus-with-article current-article
8832           (save-restriction
8833             (goto-char (point-min))
8834             (message-narrow-to-head)
8835             (if (re-search-forward "^References: " nil t)
8836                 (progn
8837                   (re-search-forward "^[^ \t]" nil t)
8838                   (forward-line -1)
8839                   (end-of-line)
8840                   (insert " " message-id))
8841               (insert "References: " message-id "\n"))))
8842         (set-buffer gnus-summary-buffer)
8843         (gnus-summary-unmark-all-processable)
8844         (gnus-summary-update-article current-article)
8845         (gnus-summary-rethread-current)
8846         (gnus-message 3 "Article %d is now the child of article %d"
8847                       current-article parent-article)))))
8848
8849 (defun gnus-summary-toggle-threads (&optional arg)
8850   "Toggle showing conversation threads.
8851 If ARG is positive number, turn showing conversation threads on."
8852   (interactive "P")
8853   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
8854     (setq gnus-show-threads
8855           (if (null arg) (not gnus-show-threads)
8856             (> (prefix-numeric-value arg) 0)))
8857     (gnus-summary-prepare)
8858     (gnus-summary-goto-subject current)
8859     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
8860     (gnus-summary-position-point)))
8861
8862 (defun gnus-summary-show-all-threads ()
8863   "Show all threads."
8864   (interactive)
8865   (save-excursion
8866     (let ((buffer-read-only nil))
8867       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
8868   (gnus-summary-position-point))
8869
8870 (defun gnus-summary-show-thread ()
8871   "Show thread subtrees.
8872 Returns nil if no thread was there to be shown."
8873   (interactive)
8874   (let ((buffer-read-only nil)
8875         (orig (point))
8876         ;; first goto end then to beg, to have point at beg after let
8877         (end (progn (end-of-line) (point)))
8878         (beg (progn (beginning-of-line) (point))))
8879     (prog1
8880         ;; Any hidden lines here?
8881         (search-forward "\r" end t)
8882       (subst-char-in-region beg end ?\^M ?\n t)
8883       (goto-char orig)
8884       (gnus-summary-position-point))))
8885
8886 (defun gnus-summary-hide-all-threads ()
8887   "Hide all thread subtrees."
8888   (interactive)
8889   (save-excursion
8890     (goto-char (point-min))
8891     (gnus-summary-hide-thread)
8892     (while (zerop (gnus-summary-next-thread 1 t))
8893       (gnus-summary-hide-thread)))
8894   (gnus-summary-position-point))
8895
8896 (defun gnus-summary-hide-thread ()
8897   "Hide thread subtrees.
8898 Returns nil if no threads were there to be hidden."
8899   (interactive)
8900   (let ((buffer-read-only nil)
8901         (start (point))
8902         (article (gnus-summary-article-number)))
8903     (goto-char start)
8904     ;; Go forward until either the buffer ends or the subthread
8905     ;; ends.
8906     (when (and (not (eobp))
8907                (or (zerop (gnus-summary-next-thread 1 t))
8908                    (goto-char (point-max))))
8909       (prog1
8910           (if (and (> (point) start)
8911                    (search-backward "\n" start t))
8912               (progn
8913                 (subst-char-in-region start (point) ?\n ?\^M)
8914                 (gnus-summary-goto-subject article))
8915             (goto-char start)
8916             nil)))))
8917
8918 (defun gnus-summary-go-to-next-thread (&optional previous)
8919   "Go to the same level (or less) next thread.
8920 If PREVIOUS is non-nil, go to previous thread instead.
8921 Return the article number moved to, or nil if moving was impossible."
8922   (let ((level (gnus-summary-thread-level))
8923         (way (if previous -1 1))
8924         (beg (point)))
8925     (forward-line way)
8926     (while (and (not (eobp))
8927                 (< level (gnus-summary-thread-level)))
8928       (forward-line way))
8929     (if (eobp)
8930         (progn
8931           (goto-char beg)
8932           nil)
8933       (setq beg (point))
8934       (prog1
8935           (gnus-summary-article-number)
8936         (goto-char beg)))))
8937
8938 (defun gnus-summary-next-thread (n &optional silent)
8939   "Go to the same level next N'th thread.
8940 If N is negative, search backward instead.
8941 Returns the difference between N and the number of skips actually
8942 done.
8943
8944 If SILENT, don't output messages."
8945   (interactive "p")
8946   (let ((backward (< n 0))
8947         (n (abs n)))
8948     (while (and (> n 0)
8949                 (gnus-summary-go-to-next-thread backward))
8950       (decf n))
8951     (unless silent
8952       (gnus-summary-position-point))
8953     (when (and (not silent) (/= 0 n))
8954       (gnus-message 7 "No more threads"))
8955     n))
8956
8957 (defun gnus-summary-prev-thread (n)
8958   "Go to the same level previous N'th thread.
8959 Returns the difference between N and the number of skips actually
8960 done."
8961   (interactive "p")
8962   (gnus-summary-next-thread (- n)))
8963
8964 (defun gnus-summary-go-down-thread ()
8965   "Go down one level in the current thread."
8966   (let ((children (gnus-summary-article-children)))
8967     (when children
8968       (gnus-summary-goto-subject (car children)))))
8969
8970 (defun gnus-summary-go-up-thread ()
8971   "Go up one level in the current thread."
8972   (let ((parent (gnus-summary-article-parent)))
8973     (when parent
8974       (gnus-summary-goto-subject parent))))
8975
8976 (defun gnus-summary-down-thread (n)
8977   "Go down thread N steps.
8978 If N is negative, go up instead.
8979 Returns the difference between N and how many steps down that were
8980 taken."
8981   (interactive "p")
8982   (let ((up (< n 0))
8983         (n (abs n)))
8984     (while (and (> n 0)
8985                 (if up (gnus-summary-go-up-thread)
8986                   (gnus-summary-go-down-thread)))
8987       (setq n (1- n)))
8988     (gnus-summary-position-point)
8989     (when (/= 0 n)
8990       (gnus-message 7 "Can't go further"))
8991     n))
8992
8993 (defun gnus-summary-up-thread (n)
8994   "Go up thread N steps.
8995 If N is negative, go up instead.
8996 Returns the difference between N and how many steps down that were
8997 taken."
8998   (interactive "p")
8999   (gnus-summary-down-thread (- n)))
9000
9001 (defun gnus-summary-top-thread ()
9002   "Go to the top of the thread."
9003   (interactive)
9004   (while (gnus-summary-go-up-thread))
9005   (gnus-summary-article-number))
9006
9007 (defun gnus-summary-kill-thread (&optional unmark)
9008   "Mark articles under current thread as read.
9009 If the prefix argument is positive, remove any kinds of marks.
9010 If the prefix argument is negative, tick articles instead."
9011   (interactive "P")
9012   (when unmark
9013     (setq unmark (prefix-numeric-value unmark)))
9014   (let ((articles (gnus-summary-articles-in-thread)))
9015     (save-excursion
9016       ;; Expand the thread.
9017       (gnus-summary-show-thread)
9018       ;; Mark all the articles.
9019       (while articles
9020         (gnus-summary-goto-subject (car articles))
9021         (cond ((null unmark)
9022                (gnus-summary-mark-article-as-read gnus-killed-mark))
9023               ((> unmark 0)
9024                (gnus-summary-mark-article-as-unread gnus-unread-mark))
9025               (t
9026                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
9027         (setq articles (cdr articles))))
9028     ;; Hide killed subtrees.
9029     (and (null unmark)
9030          gnus-thread-hide-killed
9031          (gnus-summary-hide-thread))
9032     ;; If marked as read, go to next unread subject.
9033     (when (null unmark)
9034       ;; Go to next unread subject.
9035       (gnus-summary-next-subject 1 t)))
9036   (gnus-set-mode-line 'summary))
9037
9038 ;; Summary sorting commands
9039
9040 (defun gnus-summary-sort-by-number (&optional reverse)
9041   "Sort the summary buffer by article number.
9042 Argument REVERSE means reverse order."
9043   (interactive "P")
9044   (gnus-summary-sort 'number reverse))
9045
9046 (defun gnus-summary-sort-by-author (&optional reverse)
9047   "Sort the summary buffer by author name alphabetically.
9048 If `case-fold-search' is non-nil, case of letters is ignored.
9049 Argument REVERSE means reverse order."
9050   (interactive "P")
9051   (gnus-summary-sort 'author reverse))
9052
9053 (defun gnus-summary-sort-by-subject (&optional reverse)
9054   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
9055 If `case-fold-search' is non-nil, case of letters is ignored.
9056 Argument REVERSE means reverse order."
9057   (interactive "P")
9058   (gnus-summary-sort 'subject reverse))
9059
9060 (defun gnus-summary-sort-by-date (&optional reverse)
9061   "Sort the summary buffer by date.
9062 Argument REVERSE means reverse order."
9063   (interactive "P")
9064   (gnus-summary-sort 'date reverse))
9065
9066 (defun gnus-summary-sort-by-score (&optional reverse)
9067   "Sort the summary buffer by score.
9068 Argument REVERSE means reverse order."
9069   (interactive "P")
9070   (gnus-summary-sort 'score reverse))
9071
9072 (defun gnus-summary-sort-by-lines (&optional reverse)
9073   "Sort the summary buffer by the number of lines.
9074 Argument REVERSE means reverse order."
9075   (interactive "P")
9076   (gnus-summary-sort 'lines reverse))
9077
9078 (defun gnus-summary-sort-by-chars (&optional reverse)
9079   "Sort the summary buffer by article length.
9080 Argument REVERSE means reverse order."
9081   (interactive "P")
9082   (gnus-summary-sort 'chars reverse))
9083
9084 (defun gnus-summary-sort (predicate reverse)
9085   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
9086   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
9087          (article (intern (format "gnus-article-sort-by-%s" predicate)))
9088          (gnus-thread-sort-functions
9089           (if (not reverse)
9090               thread
9091             `(lambda (t1 t2)
9092                (,thread t2 t1))))
9093          (gnus-article-sort-functions
9094           (if (not reverse)
9095               article
9096             `(lambda (t1 t2)
9097                (,article t2 t1))))
9098          (buffer-read-only)
9099          (gnus-summary-prepare-hook nil))
9100     ;; We do the sorting by regenerating the threads.
9101     (gnus-summary-prepare)
9102     ;; Hide subthreads if needed.
9103     (when (and gnus-show-threads gnus-thread-hide-subtree)
9104       (gnus-summary-hide-all-threads))))
9105
9106 ;; Summary saving commands.
9107
9108 (defun gnus-summary-save-article (&optional n not-saved)
9109   "Save the current article using the default saver function.
9110 If N is a positive number, save the N next articles.
9111 If N is a negative number, save the N previous articles.
9112 If N is nil and any articles have been marked with the process mark,
9113 save those articles instead.
9114 The variable `gnus-default-article-saver' specifies the saver function."
9115   (interactive "P")
9116   (let* ((articles (gnus-summary-work-articles n))
9117          (save-buffer (save-excursion
9118                         (nnheader-set-temp-buffer " *Gnus Save*")))
9119          (num (length articles))
9120          header file)
9121     (dolist (article articles)
9122       (setq header (gnus-summary-article-header article))
9123       (if (not (vectorp header))
9124           ;; This is a pseudo-article.
9125           (if (assq 'name header)
9126               (gnus-copy-file (cdr (assq 'name header)))
9127             (gnus-message 1 "Article %d is unsaveable" article))
9128         ;; This is a real article.
9129         (save-window-excursion
9130           (gnus-summary-select-article t nil nil article))
9131         (save-excursion
9132           (set-buffer save-buffer)
9133           (erase-buffer)
9134           (insert-buffer-substring gnus-original-article-buffer))
9135         (setq file (gnus-article-save save-buffer file num))
9136         (gnus-summary-remove-process-mark article)
9137         (unless not-saved
9138           (gnus-summary-set-saved-mark article))))
9139     (gnus-kill-buffer save-buffer)
9140     (gnus-summary-position-point)
9141     (gnus-set-mode-line 'summary)
9142     n))
9143
9144 (defun gnus-summary-pipe-output (&optional arg)
9145   "Pipe the current article to a subprocess.
9146 If N is a positive number, pipe the N next articles.
9147 If N is a negative number, pipe the N previous articles.
9148 If N is nil and any articles have been marked with the process mark,
9149 pipe those articles instead."
9150   (interactive "P")
9151   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
9152     (gnus-summary-save-article arg t))
9153   (gnus-configure-windows 'pipe))
9154
9155 (defun gnus-summary-save-article-mail (&optional arg)
9156   "Append the current article to an mail file.
9157 If N is a positive number, save the N next articles.
9158 If N is a negative number, save the N previous articles.
9159 If N is nil and any articles have been marked with the process mark,
9160 save those articles instead."
9161   (interactive "P")
9162   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
9163     (gnus-summary-save-article arg)))
9164
9165 (defun gnus-summary-save-article-rmail (&optional arg)
9166   "Append the current article to an rmail file.
9167 If N is a positive number, save the N next articles.
9168 If N is a negative number, save the N previous articles.
9169 If N is nil and any articles have been marked with the process mark,
9170 save those articles instead."
9171   (interactive "P")
9172   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
9173     (gnus-summary-save-article arg)))
9174
9175 (defun gnus-summary-save-article-file (&optional arg)
9176   "Append the current article to a file.
9177 If N is a positive number, save the N next articles.
9178 If N is a negative number, save the N previous articles.
9179 If N is nil and any articles have been marked with the process mark,
9180 save those articles instead."
9181   (interactive "P")
9182   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
9183     (gnus-summary-save-article arg)))
9184
9185 (defun gnus-summary-write-article-file (&optional arg)
9186   "Write the current article to a file, deleting the previous file.
9187 If N is a positive number, save the N next articles.
9188 If N is a negative number, save the N previous articles.
9189 If N is nil and any articles have been marked with the process mark,
9190 save those articles instead."
9191   (interactive "P")
9192   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
9193     (gnus-summary-save-article arg)))
9194
9195 (defun gnus-summary-save-article-body-file (&optional arg)
9196   "Append the current article body to a file.
9197 If N is a positive number, save the N next articles.
9198 If N is a negative number, save the N previous articles.
9199 If N is nil and any articles have been marked with the process mark,
9200 save those articles instead."
9201   (interactive "P")
9202   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
9203     (gnus-summary-save-article arg)))
9204
9205 (defun gnus-summary-pipe-message (program)
9206   "Pipe the current article through PROGRAM."
9207   (interactive "sProgram: ")
9208   (gnus-summary-select-article)
9209   (let ((mail-header-separator ""))
9210     (gnus-eval-in-buffer-window gnus-article-buffer
9211       (save-restriction
9212         (widen)
9213         (let ((start (window-start))
9214               buffer-read-only)
9215           (message-pipe-buffer-body program)
9216           (set-window-start (get-buffer-window (current-buffer)) start))))))
9217
9218 (defun gnus-get-split-value (methods)
9219   "Return a value based on the split METHODS."
9220   (let (split-name method result match)
9221     (when methods
9222       (save-excursion
9223         (set-buffer gnus-original-article-buffer)
9224         (save-restriction
9225           (nnheader-narrow-to-headers)
9226           (while methods
9227             (goto-char (point-min))
9228             (setq method (pop methods))
9229             (setq match (car method))
9230             (when (cond
9231                    ((stringp match)
9232                     ;; Regular expression.
9233                     (ignore-errors
9234                       (re-search-forward match nil t)))
9235                    ((gnus-functionp match)
9236                     ;; Function.
9237                     (save-restriction
9238                       (widen)
9239                       (setq result (funcall match gnus-newsgroup-name))))
9240                    ((consp match)
9241                     ;; Form.
9242                     (save-restriction
9243                       (widen)
9244                       (setq result (eval match)))))
9245               (setq split-name (append (cdr method) split-name))
9246               (cond ((stringp result)
9247                      (push (expand-file-name
9248                             result gnus-article-save-directory)
9249                            split-name))
9250                     ((consp result)
9251                      (setq split-name (append result split-name)))))))))
9252     (nreverse split-name)))
9253
9254 (defun gnus-valid-move-group-p (group)
9255   (and (boundp group)
9256        (symbol-name group)
9257        (symbol-value group)
9258        (gnus-get-function (gnus-find-method-for-group
9259                            (symbol-name group)) 'request-accept-article t)))
9260
9261 (defun gnus-read-move-group-name (prompt default articles prefix)
9262   "Read a group name."
9263   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
9264          (minibuffer-confirm-incomplete nil) ; XEmacs
9265          (prom
9266           (format "%s %s to:"
9267                   prompt
9268                   (if (> (length articles) 1)
9269                       (format "these %d articles" (length articles))
9270                     "this article")))
9271          (to-newsgroup
9272           (cond
9273            ((null split-name)
9274             (gnus-completing-read default prom
9275                                   gnus-active-hashtb
9276                                   'gnus-valid-move-group-p
9277                                   nil prefix
9278                                   'gnus-group-history))
9279            ((= 1 (length split-name))
9280             (gnus-completing-read (car split-name) prom
9281                                   gnus-active-hashtb
9282                                   'gnus-valid-move-group-p
9283                                   nil nil
9284                                   'gnus-group-history))
9285            (t
9286             (gnus-completing-read nil prom
9287                                   (mapcar (lambda (el) (list el))
9288                                           (nreverse split-name))
9289                                   nil nil nil
9290                                   'gnus-group-history))))
9291          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
9292     (when to-newsgroup
9293       (if (or (string= to-newsgroup "")
9294               (string= to-newsgroup prefix))
9295           (setq to-newsgroup default))
9296       (unless to-newsgroup
9297         (error "No group name entered"))
9298       (or (gnus-active to-newsgroup)
9299           (gnus-activate-group to-newsgroup nil nil to-method)
9300           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
9301                                      to-newsgroup))
9302               (or (and (gnus-request-create-group to-newsgroup to-method)
9303                        (gnus-activate-group
9304                         to-newsgroup nil nil to-method)
9305                        (gnus-subscribe-group to-newsgroup))
9306                   (error "Couldn't create group %s" to-newsgroup)))
9307           (error "No such group: %s" to-newsgroup)))
9308     to-newsgroup))
9309
9310 (defun gnus-summary-save-parts (type dir n &optional reverse)
9311   "Save parts matching TYPE to DIR.
9312 If REVERSE, save parts that do not match TYPE."
9313   (interactive
9314    (list (read-string "Save parts of type: " "image/.*")
9315          (read-file-name "Save to directory: " nil nil t)
9316          current-prefix-arg))
9317   (gnus-summary-iterate n
9318     (let ((gnus-display-mime-function nil)
9319           (gnus-inhibit-treatment t))
9320       (gnus-summary-select-article))
9321     (save-excursion
9322       (set-buffer gnus-article-buffer)
9323       (let ((handles (or (mm-dissect-buffer) (mm-uu-dissect))))
9324         (when handles
9325           (gnus-summary-save-parts-1 type dir handles reverse)
9326           (mm-destroy-parts handles))))))
9327
9328 (defun gnus-summary-save-parts-1 (type dir handle reverse)
9329   (if (stringp (car handle))
9330       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
9331               (cdr handle))
9332     (when (if reverse
9333               (not (string-match type (mm-handle-media-type handle)))
9334             (string-match type (mm-handle-media-type handle)))
9335       (let ((file (expand-file-name
9336                    (file-name-nondirectory
9337                     (or
9338                      (mail-content-type-get
9339                       (mm-handle-disposition handle) 'filename)
9340                      (concat gnus-newsgroup-name
9341                              "." (number-to-string
9342                                   (cdr gnus-article-current)))))
9343                    dir)))
9344         (unless (file-exists-p file)
9345           (mm-save-part-to-file handle file))))))
9346
9347 ;; Summary extract commands
9348
9349 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
9350   (let ((buffer-read-only nil)
9351         (article (gnus-summary-article-number))
9352         after-article b e)
9353     (unless (gnus-summary-goto-subject article)
9354       (error "No such article: %d" article))
9355     (gnus-summary-position-point)
9356     ;; If all commands are to be bunched up on one line, we collect
9357     ;; them here.
9358     (unless gnus-view-pseudos-separately
9359       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
9360             files action)
9361         (while ps
9362           (setq action (cdr (assq 'action (car ps))))
9363           (setq files (list (cdr (assq 'name (car ps)))))
9364           (while (and ps (cdr ps)
9365                       (string= (or action "1")
9366                                (or (cdr (assq 'action (cadr ps))) "2")))
9367             (push (cdr (assq 'name (cadr ps))) files)
9368             (setcdr ps (cddr ps)))
9369           (when files
9370             (when (not (string-match "%s" action))
9371               (push " " files))
9372             (push " " files)
9373             (when (assq 'execute (car ps))
9374               (setcdr (assq 'execute (car ps))
9375                       (funcall (if (string-match "%s" action)
9376                                    'format 'concat)
9377                                action
9378                                (mapconcat
9379                                 (lambda (f)
9380                                   (if (equal f " ")
9381                                       f
9382                                     (gnus-quote-arg-for-sh-or-csh f)))
9383                                 files " ")))))
9384           (setq ps (cdr ps)))))
9385     (if (and gnus-view-pseudos (not not-view))
9386         (while pslist
9387           (when (assq 'execute (car pslist))
9388             (gnus-execute-command (cdr (assq 'execute (car pslist)))
9389                                   (eq gnus-view-pseudos 'not-confirm)))
9390           (setq pslist (cdr pslist)))
9391       (save-excursion
9392         (while pslist
9393           (setq after-article (or (cdr (assq 'article (car pslist)))
9394                                   (gnus-summary-article-number)))
9395           (gnus-summary-goto-subject after-article)
9396           (forward-line 1)
9397           (setq b (point))
9398           (insert "    " (file-name-nondirectory
9399                           (cdr (assq 'name (car pslist))))
9400                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
9401           (setq e (point))
9402           (forward-line -1)             ; back to `b'
9403           (gnus-add-text-properties
9404            b (1- e) (list 'gnus-number gnus-reffed-article-number
9405                           gnus-mouse-face-prop gnus-mouse-face))
9406           (gnus-data-enter
9407            after-article gnus-reffed-article-number
9408            gnus-unread-mark b (car pslist) 0 (- e b))
9409           (push gnus-reffed-article-number gnus-newsgroup-unreads)
9410           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
9411           (setq pslist (cdr pslist)))))))
9412
9413 (defun gnus-pseudos< (p1 p2)
9414   (let ((c1 (cdr (assq 'action p1)))
9415         (c2 (cdr (assq 'action p2))))
9416     (and c1 c2 (string< c1 c2))))
9417
9418 (defun gnus-request-pseudo-article (props)
9419   (cond ((assq 'execute props)
9420          (gnus-execute-command (cdr (assq 'execute props)))))
9421   (let ((gnus-current-article (gnus-summary-article-number)))
9422     (gnus-run-hooks 'gnus-mark-article-hook)))
9423
9424 (defun gnus-execute-command (command &optional automatic)
9425   (save-excursion
9426     (gnus-article-setup-buffer)
9427     (set-buffer gnus-article-buffer)
9428     (setq buffer-read-only nil)
9429     (let ((command (if automatic command
9430                      (read-string "Command: " (cons command 0)))))
9431       (erase-buffer)
9432       (insert "$ " command "\n\n")
9433       (if gnus-view-pseudo-asynchronously
9434           (start-process "gnus-execute" (current-buffer) shell-file-name
9435                          shell-command-switch command)
9436         (call-process shell-file-name nil t nil
9437                       shell-command-switch command)))))
9438
9439 ;; Summary kill commands.
9440
9441 (defun gnus-summary-edit-global-kill (article)
9442   "Edit the \"global\" kill file."
9443   (interactive (list (gnus-summary-article-number)))
9444   (gnus-group-edit-global-kill article))
9445
9446 (defun gnus-summary-edit-local-kill ()
9447   "Edit a local kill file applied to the current newsgroup."
9448   (interactive)
9449   (setq gnus-current-headers (gnus-summary-article-header))
9450   (gnus-group-edit-local-kill
9451    (gnus-summary-article-number) gnus-newsgroup-name))
9452
9453 ;;; Header reading.
9454
9455 (defun gnus-read-header (id &optional header)
9456   "Read the headers of article ID and enter them into the Gnus system."
9457   (let ((group gnus-newsgroup-name)
9458         (gnus-override-method
9459          (or
9460           gnus-override-method
9461           (and (gnus-news-group-p gnus-newsgroup-name)
9462                (car (gnus-refer-article-methods)))))
9463         where)
9464     ;; First we check to see whether the header in question is already
9465     ;; fetched.
9466     (if (stringp id)
9467         ;; This is a Message-ID.
9468         (setq header (or header (gnus-id-to-header id)))
9469       ;; This is an article number.
9470       (setq header (or header (gnus-summary-article-header id))))
9471     (if (and header
9472              (not (gnus-summary-article-sparse-p (mail-header-number header))))
9473         ;; We have found the header.
9474         header
9475       ;; If this is a sparse article, we have to nix out its
9476       ;; previous entry in the thread hashtb.
9477       (when (and header
9478                  (gnus-summary-article-sparse-p (mail-header-number header)))
9479         (let* ((parent (gnus-parent-id (mail-header-references header)))
9480                (thread (and parent (gnus-id-to-thread parent))))
9481           (when thread
9482             (delq (assq header thread) thread))))
9483       ;; We have to really fetch the header to this article.
9484       (save-excursion
9485         (set-buffer nntp-server-buffer)
9486         (when (setq where (gnus-request-head id group))
9487           (nnheader-fold-continuation-lines)
9488           (goto-char (point-max))
9489           (insert ".\n")
9490           (goto-char (point-min))
9491           (insert "211 ")
9492           (princ (cond
9493                   ((numberp id) id)
9494                   ((cdr where) (cdr where))
9495                   (header (mail-header-number header))
9496                   (t gnus-reffed-article-number))
9497                  (current-buffer))
9498           (insert " Article retrieved.\n"))
9499         (if (or (not where)
9500                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
9501             ()                          ; Malformed head.
9502           (unless (gnus-summary-article-sparse-p (mail-header-number header))
9503             (when (and (stringp id)
9504                        (not (string= (gnus-group-real-name group)
9505                                      (car where))))
9506               ;; If we fetched by Message-ID and the article came
9507               ;; from a different group, we fudge some bogus article
9508               ;; numbers for this article.
9509               (mail-header-set-number header gnus-reffed-article-number))
9510             (save-excursion
9511               (set-buffer gnus-summary-buffer)
9512               (decf gnus-reffed-article-number)
9513               (gnus-remove-header (mail-header-number header))
9514               (push header gnus-newsgroup-headers)
9515               (setq gnus-current-headers header)
9516               (push (mail-header-number header) gnus-newsgroup-limit)))
9517           header)))))
9518
9519 (defun gnus-remove-header (number)
9520   "Remove header NUMBER from `gnus-newsgroup-headers'."
9521   (if (and gnus-newsgroup-headers
9522            (= number (mail-header-number (car gnus-newsgroup-headers))))
9523       (pop gnus-newsgroup-headers)
9524     (let ((headers gnus-newsgroup-headers))
9525       (while (and (cdr headers)
9526                   (not (= number (mail-header-number (cadr headers)))))
9527         (pop headers))
9528       (when (cdr headers)
9529         (setcdr headers (cddr headers))))))
9530
9531 ;;;
9532 ;;; summary highlights
9533 ;;;
9534
9535 (defun gnus-highlight-selected-summary ()
9536   "Highlight selected article in summary buffer."
9537   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
9538   (when gnus-summary-selected-face
9539     (save-excursion
9540       (let* ((beg (progn (beginning-of-line) (point)))
9541              (end (progn (end-of-line) (point)))
9542              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
9543              (from (if (get-text-property beg gnus-mouse-face-prop)
9544                        beg
9545                      (or (next-single-property-change
9546                           beg gnus-mouse-face-prop nil end)
9547                          beg)))
9548              (to
9549               (if (= from end)
9550                   (- from 2)
9551                 (or (next-single-property-change
9552                      from gnus-mouse-face-prop nil end)
9553                     end))))
9554         ;; If no mouse-face prop on line we will have to = from = end,
9555         ;; so we highlight the entire line instead.
9556         (when (= (+ to 2) from)
9557           (setq from beg)
9558           (setq to end))
9559         (if gnus-newsgroup-selected-overlay
9560             ;; Move old overlay.
9561             (gnus-move-overlay
9562              gnus-newsgroup-selected-overlay from to (current-buffer))
9563           ;; Create new overlay.
9564           (gnus-overlay-put
9565            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
9566            'face gnus-summary-selected-face))))))
9567
9568 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>.
9569 (defun gnus-summary-highlight-line ()
9570   "Highlight current line according to `gnus-summary-highlight'."
9571   (let* ((list gnus-summary-highlight)
9572          (p (point))
9573          (end (progn (end-of-line) (point)))
9574          ;; now find out where the line starts and leave point there.
9575          (beg (progn (beginning-of-line) (point)))
9576          (article (gnus-summary-article-number))
9577          (score (or (cdr (assq (or article gnus-current-article)
9578                                gnus-newsgroup-scored))
9579                     gnus-summary-default-score 0))
9580          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
9581          (inhibit-read-only t))
9582     ;; Eval the cars of the lists until we find a match.
9583     (let ((default gnus-summary-default-score))
9584       (while (and list
9585                   (not (eval (caar list))))
9586         (setq list (cdr list))))
9587     (let ((face (cdar list)))
9588       (unless (eq face (get-text-property beg 'face))
9589         (gnus-put-text-property-excluding-characters-with-faces
9590          beg end 'face
9591          (setq face (if (boundp face) (symbol-value face) face)))
9592         (when gnus-summary-highlight-line-function
9593           (funcall gnus-summary-highlight-line-function article face))))
9594     (goto-char p)))
9595
9596 (defun gnus-update-read-articles (group unread &optional compute)
9597   "Update the list of read articles in GROUP."
9598   (let* ((active (or gnus-newsgroup-active (gnus-active group)))
9599          (entry (gnus-gethash group gnus-newsrc-hashtb))
9600          (info (nth 2 entry))
9601          (prev 1)
9602          (unread (sort (copy-sequence unread) '<))
9603          read)
9604     (if (or (not info) (not active))
9605         ;; There is no info on this group if it was, in fact,
9606         ;; killed.  Gnus stores no information on killed groups, so
9607         ;; there's nothing to be done.
9608         ;; One could store the information somewhere temporarily,
9609         ;; perhaps...  Hmmm...
9610         ()
9611       ;; Remove any negative articles numbers.
9612       (while (and unread (< (car unread) 0))
9613         (setq unread (cdr unread)))
9614       ;; Remove any expired article numbers
9615       (while (and unread (< (car unread) (car active)))
9616         (setq unread (cdr unread)))
9617       ;; Compute the ranges of read articles by looking at the list of
9618       ;; unread articles.
9619       (while unread
9620         (when (/= (car unread) prev)
9621           (push (if (= prev (1- (car unread))) prev
9622                   (cons prev (1- (car unread))))
9623                 read))
9624         (setq prev (1+ (car unread)))
9625         (setq unread (cdr unread)))
9626       (when (<= prev (cdr active))
9627         (push (cons prev (cdr active)) read))
9628       (setq read (if (> (length read) 1) (nreverse read) read))
9629       (if compute
9630           read
9631         (save-excursion
9632           (set-buffer gnus-group-buffer)
9633           (gnus-undo-register
9634             `(progn
9635                (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
9636                (gnus-info-set-read ',info ',(gnus-info-read info))
9637                (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
9638                (gnus-group-update-group ,group t))))
9639         ;; Propagate the read marks to the backend.
9640         (if (gnus-check-backend-function 'request-set-mark group)
9641             (let ((del (gnus-remove-from-range (gnus-info-read info) read))
9642                   (add (gnus-remove-from-range read (gnus-info-read info))))
9643               (when (or add del)
9644                 (unless (gnus-check-group group)
9645                   (error "Can't open server for %s" group))
9646                 (gnus-request-set-mark
9647                  group (delq nil (list (if add (list add 'add '(read)))
9648                                        (if del (list del 'del '(read)))))))))
9649         ;; Enter this list into the group info.
9650         (gnus-info-set-read info read)
9651         ;; Set the number of unread articles in gnus-newsrc-hashtb.
9652         (gnus-get-unread-articles-in-group info (gnus-active group))
9653         t))))
9654
9655 (defun gnus-offer-save-summaries ()
9656   "Offer to save all active summary buffers."
9657   (save-excursion
9658     (let ((buflist (buffer-list))
9659           buffers bufname)
9660       ;; Go through all buffers and find all summaries.
9661       (while buflist
9662         (and (setq bufname (buffer-name (car buflist)))
9663              (string-match "Summary" bufname)
9664              (save-excursion
9665                (set-buffer bufname)
9666                ;; We check that this is, indeed, a summary buffer.
9667                (and (eq major-mode 'gnus-summary-mode)
9668                     ;; Also make sure this isn't bogus.
9669                     gnus-newsgroup-prepared
9670                     ;; Also make sure that this isn't a dead summary buffer.
9671                     (not gnus-dead-summary-mode)))
9672              (push bufname buffers))
9673         (setq buflist (cdr buflist)))
9674       ;; Go through all these summary buffers and offer to save them.
9675       (when buffers
9676         (map-y-or-n-p
9677          "Update summary buffer %s? "
9678          (lambda (buf)
9679            (switch-to-buffer buf)
9680            (gnus-summary-exit))
9681          buffers)))))
9682
9683
9684 ;;; @ for mime-partial
9685 ;;;
9686
9687 (defun gnus-request-partial-message ()
9688   (save-excursion
9689     (let ((number (gnus-summary-article-number))
9690           (group gnus-newsgroup-name)
9691           (mother gnus-article-buffer))
9692       (set-buffer (get-buffer-create " *Partial Article*"))
9693       (erase-buffer)
9694       (setq mime-preview-buffer mother)
9695       (gnus-request-article-this-buffer number group)
9696       (mime-parse-buffer)
9697       )))
9698
9699 (autoload 'mime-combine-message/partial-pieces-automatically
9700   "mime-partial"
9701   "Internal method to combine message/partial messages automatically.")
9702
9703 (mime-add-condition
9704  'action '((type . message)(subtype . partial)
9705            (major-mode . gnus-original-article-mode)
9706            (method . mime-combine-message/partial-pieces-automatically)
9707            (summary-buffer-exp . gnus-summary-buffer)
9708            (request-partial-message-method . gnus-request-partial-message)
9709            ))
9710
9711
9712 ;;; @ for message/rfc822
9713 ;;;
9714
9715 (defun gnus-mime-extract-message/rfc822 (entity situation)
9716   (let (group article num cwin swin cur)
9717     (with-temp-buffer
9718       (mime-insert-entity-content entity)
9719       (setq group (or (cdr (assq 'group situation))
9720                       (completing-read "Group: "
9721                                        gnus-active-hashtb
9722                                        nil
9723                                        (gnus-read-active-file-p)
9724                                        gnus-newsgroup-name))
9725             article (gnus-request-accept-article group)))
9726     (when (and (consp article)
9727                (numberp (setq article (cdr article))))
9728       (setq num (1+ (or (cdr (assq 'number situation)) 0))
9729             cwin (get-buffer-window (current-buffer) t))
9730       (save-window-excursion
9731         (if (setq swin (get-buffer-window gnus-summary-buffer t))
9732             (select-window swin)
9733           (set-buffer gnus-summary-buffer))
9734         (setq cur gnus-current-article)
9735         (forward-line num)
9736         (let (gnus-show-threads)
9737           (gnus-summary-goto-subject article t))
9738         (gnus-summary-clear-mark-forward 1)
9739         (gnus-summary-goto-subject cur))
9740       (when (and cwin (window-frame cwin))
9741         (select-frame (window-frame cwin)))
9742       (when (boundp 'mime-acting-situation-to-override)
9743         (set-alist 'mime-acting-situation-to-override
9744                    'group
9745                    group)
9746         (set-alist 'mime-acting-situation-to-override
9747                    'after-method
9748                    `(progn
9749                       (save-current-buffer
9750                         (set-buffer gnus-group-buffer)
9751                         (gnus-activate-group ,group))
9752                       (gnus-summary-goto-article ,cur
9753                                                  gnus-show-all-headers)))
9754         (set-alist 'mime-acting-situation-to-override
9755                    'number num)))))
9756
9757 (mime-add-condition
9758  'action '((type . message)(subtype . rfc822)
9759            (major-mode . gnus-original-article-mode)
9760            (method . gnus-mime-extract-message/rfc822)
9761            (mode . "extract")
9762            ))
9763
9764 (mime-add-condition
9765  'action '((type . message)(subtype . news)
9766            (major-mode . gnus-original-article-mode)
9767            (method . gnus-mime-extract-message/rfc822)
9768            (mode . "extract")
9769            ))
9770
9771 (defun gnus-mime-extract-multipart (entity situation)
9772   (let ((children (mime-entity-children entity))
9773         mime-acting-situation-to-override
9774         f)
9775     (while children
9776       (mime-play-entity (car children)
9777                         (cons (assq 'mode situation)
9778                               mime-acting-situation-to-override))
9779       (setq children (cdr children)))
9780     (if (setq f (cdr (assq 'after-method
9781                            mime-acting-situation-to-override)))
9782         (eval f)
9783       )))
9784
9785 (mime-add-condition
9786  'action '((type . multipart)
9787            (method . gnus-mime-extract-multipart)
9788            (mode . "extract")
9789            )
9790  'with-default)
9791
9792
9793 ;;; @ end
9794 ;;;
9795
9796 (defun gnus-summary-setup-default-charset ()
9797   "Setup newsgroup default charset."
9798   (if (equal gnus-newsgroup-name "nndraft:drafts")
9799       (setq gnus-newsgroup-charset nil)
9800     (let* ((name (and gnus-newsgroup-name
9801                       (gnus-group-real-name gnus-newsgroup-name)))
9802            (ignored-charsets
9803             (or gnus-newsgroup-ephemeral-ignored-charsets
9804                 (append
9805                  (and gnus-newsgroup-name
9806                       (or (gnus-group-find-parameter gnus-newsgroup-name
9807                                                      'ignored-charsets t)
9808                           (let ((alist gnus-group-ignored-charsets-alist)
9809                                 elem (charsets nil))
9810                             (while (setq elem (pop alist))
9811                               (when (and name
9812                                          (string-match (car elem) name))
9813                                 (setq alist nil
9814                                       charsets (cdr elem))))
9815                             charsets)))
9816                  gnus-newsgroup-ignored-charsets))))
9817       (setq gnus-newsgroup-charset
9818             (or gnus-newsgroup-ephemeral-charset
9819                 (and gnus-newsgroup-name
9820                      (or (gnus-group-find-parameter gnus-newsgroup-name 'charset)
9821                          (let ((alist gnus-group-charset-alist)
9822                                elem charset)
9823                            (while (setq elem (pop alist))
9824                              (when (and name
9825                                         (string-match (car elem) name))
9826                                (setq alist nil
9827                                      charset (cadr elem))))
9828                            charset)))
9829                 gnus-default-charset))
9830       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
9831            ignored-charsets))))
9832
9833 ;;;
9834 ;;; Mime Commands
9835 ;;;
9836
9837 (defun gnus-summary-display-buttonized (&optional show-all-parts)
9838   "Display the current article buffer fully MIME-buttonized.
9839 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
9840 treated as multipart/mixed."
9841   (interactive "P")
9842   (require 'gnus-art)
9843   (let ((gnus-unbuttonized-mime-types nil)
9844         (gnus-mime-display-multipart-as-mixed show-all-parts))
9845     (gnus-summary-show-article)))
9846
9847 (defun gnus-summary-repair-multipart (article)
9848   "Add a Content-Type header to a multipart article without one."
9849   (interactive (list (gnus-summary-article-number)))
9850   (gnus-with-article article
9851     (message-narrow-to-head)
9852     (goto-char (point-max))
9853     (widen)
9854     (when (search-forward "\n--" nil t)
9855       (let ((separator (buffer-substring (point) (gnus-point-at-eol))))
9856         (message-narrow-to-head)
9857         (message-remove-header "Mime-Version")
9858         (message-remove-header "Content-Type")
9859         (goto-char (point-max))
9860         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
9861                         separator))
9862         (insert "Mime-Version: 1.0\n")
9863         (widen))))
9864   (let (gnus-mark-article-hook)
9865     (gnus-summary-select-article t t nil article)))
9866
9867 (defun gnus-summary-toggle-display-buttonized ()
9868   "Toggle the buttonizing of the article buffer."
9869   (interactive)
9870   (require 'gnus-art)
9871   (if (setq gnus-inhibit-mime-unbuttonizing
9872             (not gnus-inhibit-mime-unbuttonizing))
9873       (let ((gnus-unbuttonized-mime-types nil))
9874         (gnus-summary-show-article))
9875     (gnus-summary-show-article)))
9876
9877 ;;;
9878 ;;; Intelli-mouse commmands
9879 ;;;
9880
9881 (defun gnus-wheel-summary-scroll (event)
9882   (interactive "e")
9883   (let ((amount (if (memq 'shift (event-modifiers event))
9884                     (car gnus-wheel-scroll-amount)
9885                   (cdr gnus-wheel-scroll-amount)))
9886         (direction (- (* (static-if (featurep 'xemacs)
9887                              (event-button event)
9888                            (cond ((eq 'mouse-4 (event-basic-type event))
9889                                   4)
9890                                  ((eq 'mouse-5 (event-basic-type event))
9891                                   5)))
9892                          2) 9))
9893         edge)
9894     (gnus-summary-scroll-up (* amount direction))
9895     (when (gnus-eval-in-buffer-window gnus-article-buffer
9896             (save-restriction
9897               (widen)
9898               (and (if (< 0 direction)
9899                        (gnus-article-next-page 0)
9900                      (gnus-article-prev-page 0)
9901                      (bobp))
9902                    (if (setq edge (get-text-property
9903                                    (point-min) 'gnus-wheel-edge))
9904                        (setq edge (* edge direction))
9905                      (setq edge -1))
9906                    (or (plusp edge)
9907                        (let ((buffer-read-only nil)
9908                              (inhibit-read-only t))
9909                          (put-text-property (point-min) (point-max)
9910                                             'gnus-wheel-edge direction)
9911                          nil))
9912                    (or (> edge gnus-wheel-edge-resistance)
9913                        (let ((buffer-read-only nil)
9914                              (inhibit-read-only t))
9915                          (put-text-property (point-min) (point-max)
9916                                             'gnus-wheel-edge
9917                                             (* (1+ edge) direction))
9918                          nil))
9919                    (eq last-command 'gnus-wheel-summary-scroll))))
9920       (gnus-summary-next-article nil nil (minusp direction)))))
9921
9922 (defun gnus-wheel-install ()
9923   "Enable mouse wheel support on summary window."
9924   (when gnus-use-wheel
9925     (let ((keys
9926            '([(mouse-4)] [(shift mouse-4)] [(mouse-5)] [(shift mouse-5)])))
9927       (dolist (key keys)
9928         (define-key gnus-summary-mode-map key
9929           'gnus-wheel-summary-scroll)))))
9930
9931 (add-hook 'gnus-summary-mode-hook 'gnus-wheel-install)
9932
9933 ;;;
9934 ;;; Traditional PGP commmands
9935 ;;;
9936
9937 (defun gnus-summary-decrypt-article (&optional force)
9938   "Decrypt the current article in traditional PGP way.
9939 This will have permanent effect only in mail groups.
9940 If FORCE is non-nil, allow editing of articles even in read-only
9941 groups."
9942   (interactive "P")
9943   (gnus-summary-select-article t)
9944   (gnus-eval-in-buffer-window gnus-article-buffer
9945     (save-excursion
9946       (save-restriction
9947         (widen)
9948         (goto-char (point-min))
9949         (unless (re-search-forward (car pgg-armor-header-lines) nil t)
9950           (error "Not a traditional PGP message!"))
9951         (let ((armor-start (match-beginning 0)))
9952           (if (and (pgg-decrypt-region armor-start (point-max))
9953                    (or force (not (gnus-group-read-only-p))))
9954               (let ((inhibit-read-only t)
9955                     buffer-read-only)
9956                 (delete-region armor-start
9957                                (progn
9958                                  (re-search-forward "^-+END PGP" nil t)
9959                                  (beginning-of-line 2)
9960                                  (point)))
9961                 (insert-buffer-substring pgg-output-buffer))))))))
9962
9963 (defun gnus-summary-verify-article ()
9964   "Verify the current article in traditional PGP way."
9965   (interactive)
9966   (save-excursion
9967     (set-buffer gnus-original-article-buffer)
9968     (goto-char (point-min))
9969     (unless (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE" nil t)
9970       (error "Not a traditional PGP message!"))
9971     (re-search-forward "^-+END PGP" nil t)
9972     (beginning-of-line 2)
9973     (call-interactively (function pgg-verify-region))))
9974
9975 ;;;
9976 ;;; Generic summary marking commands
9977 ;;;
9978
9979 (defvar gnus-summary-marking-alist
9980   '((read gnus-del-mark "d")
9981     (unread gnus-unread-mark "u")
9982     (ticked gnus-ticked-mark "!")
9983     (dormant gnus-dormant-mark "?")
9984     (expirable gnus-expirable-mark "e"))
9985   "An alist of names/marks/keystrokes.")
9986
9987 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
9988 (defvar gnus-summary-mark-map)
9989
9990 (defun gnus-summary-make-all-marking-commands ()
9991   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
9992   (dolist (elem gnus-summary-marking-alist)
9993     (apply 'gnus-summary-make-marking-command elem)))
9994
9995 (defun gnus-summary-make-marking-command (name mark keystroke)
9996   (let ((map (make-sparse-keymap)))
9997     (define-key gnus-summary-generic-mark-map keystroke map)
9998     (dolist (lway `((next "next" next nil "n")
9999                     (next-unread "next unread" next t "N")
10000                     (prev "previous" prev nil "p")
10001                     (prev-unread "previous unread" prev t "P")
10002                     (nomove "" nil nil ,keystroke)))
10003       (let ((func (gnus-summary-make-marking-command-1
10004                    mark (car lway) lway name)))
10005         (setq func (eval func))
10006         (define-key map (nth 4 lway) func)))))
10007
10008 (defun gnus-summary-make-marking-command-1 (mark way lway name)
10009   `(defun ,(intern
10010             (format "gnus-summary-put-mark-as-%s%s"
10011                     name (if (eq way 'nomove)
10012                              ""
10013                            (concat "-" (symbol-name way)))))
10014      (n)
10015      ,(format
10016        "Mark the current article as %s%s.
10017 If N, the prefix, then repeat N times.
10018 If N is negative, move in reverse order.
10019 The difference between N and the actual number of articles marked is
10020 returned."
10021        name (car (cdr lway)))
10022      (interactive "p")
10023      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
10024
10025 (defun gnus-summary-generic-mark (n mark move unread)
10026   "Mark N articles with MARK."
10027   (unless (eq major-mode 'gnus-summary-mode)
10028     (error "This command can only be used in the summary buffer"))
10029   (gnus-summary-show-thread)
10030   (let ((nummove
10031          (cond
10032           ((eq move 'next) 1)
10033           ((eq move 'prev) -1)
10034           (t 0))))
10035     (if (zerop nummove)
10036         (setq n 1)
10037       (when (< n 0)
10038         (setq n (abs n)
10039               nummove (* -1 nummove))))
10040     (while (and (> n 0)
10041                 (gnus-summary-mark-article nil mark)
10042                 (zerop (gnus-summary-next-subject nummove unread t)))
10043       (setq n (1- n)))
10044     (when (/= 0 n)
10045       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
10046     (gnus-summary-recenter)
10047     (gnus-summary-position-point)
10048     (gnus-set-mode-line 'summary)
10049     n))
10050
10051 (gnus-summary-make-all-marking-commands)
10052
10053 (gnus-ems-redefine)
10054
10055 (provide 'gnus-sum)
10056
10057 (run-hooks 'gnus-sum-load-hook)
10058
10059 ;;; gnus-sum.el ends here