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