2000-10-07 15:49:39 ShengHuo ZHU <zsh@cs.rochester.edu>
[gnus] / lisp / gnus-sum.el
1 ;;; gnus-sum.el --- summary mode commands for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile (require 'cl))
30
31 (require 'gnus)
32 (require 'gnus-group)
33 (require 'gnus-spec)
34 (require 'gnus-range)
35 (require 'gnus-int)
36 (require 'gnus-undo)
37 (require 'gnus-util)
38 (require 'mm-decode)
39 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
40
41 (defcustom gnus-kill-summary-on-exit t
42   "*If non-nil, kill the summary buffer when you exit from it.
43 If nil, the summary will become a \"*Dead Summary*\" buffer, and
44 it will be killed sometime later."
45   :group 'gnus-summary-exit
46   :type 'boolean)
47
48 (defcustom gnus-fetch-old-headers nil
49   "*Non-nil means that Gnus will try to build threads by grabbing old headers.
50 If an unread article in the group refers to an older, already read (or
51 just marked as read) article, the old article will not normally be
52 displayed in the Summary buffer.  If this variable is non-nil, Gnus
53 will attempt to grab the headers to the old articles, and thereby
54 build complete threads.  If it has the value `some', only enough
55 headers to connect otherwise loose threads will be displayed.  This
56 variable can also be a number.  In that case, no more than that number
57 of old headers will be fetched.  If it has the value `invisible', all
58 old headers will be fetched, but none will be displayed.
59
60 The server has to support NOV for any of this to work."
61   :group 'gnus-thread
62   :type '(choice (const :tag "off" nil)
63                  (const some)
64                  number
65                  (sexp :menu-tag "other" t)))
66
67 (defcustom gnus-refer-thread-limit 200
68   "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
69 If t, fetch all the available old headers."
70   :group 'gnus-thread
71   :type '(choice number
72                  (sexp :menu-tag "other" t)))
73
74 (defcustom gnus-summary-make-false-root 'adopt
75   "*nil means that Gnus won't gather loose threads.
76 If the root of a thread has expired or been read in a previous
77 session, the information necessary to build a complete thread has been
78 lost.  Instead of having many small sub-threads from this original thread
79 scattered all over the summary buffer, Gnus can gather them.
80
81 If non-nil, Gnus will try to gather all loose sub-threads from an
82 original thread into one large thread.
83
84 If this variable is non-nil, it should be one of `none', `adopt',
85 `dummy' or `empty'.
86
87 If this variable is `none', Gnus will not make a false root, but just
88 present the sub-threads after another.
89 If this variable is `dummy', Gnus will create a dummy root that will
90 have all the sub-threads as children.
91 If this variable is `adopt', Gnus will make one of the \"children\"
92 the parent and mark all the step-children as such.
93 If this variable is `empty', the \"children\" are printed with empty
94 subject fields.  (Or rather, they will be printed with a string
95 given by the `gnus-summary-same-subject' variable.)"
96   :group 'gnus-thread
97   :type '(choice (const :tag "off" nil)
98                  (const none)
99                  (const dummy)
100                  (const adopt)
101                  (const empty)))
102
103 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
104   "*A regexp to match subjects to be excluded from loose thread gathering.
105 As loose thread gathering is done on subjects only, that means that
106 there can be many false gatherings performed.  By rooting out certain
107 common subjects, gathering might become saner."
108   :group 'gnus-thread
109   :type 'regexp)
110
111 (defcustom gnus-summary-gather-subject-limit nil
112   "*Maximum length of subject comparisons when gathering loose threads.
113 Use nil to compare full subjects.  Setting this variable to a low
114 number will help gather threads that have been corrupted by
115 newsreaders chopping off subject lines, but it might also mean that
116 unrelated articles that have subject that happen to begin with the
117 same few characters will be incorrectly gathered.
118
119 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
120 comparing subjects."
121   :group 'gnus-thread
122   :type '(choice (const :tag "off" nil)
123                  (const fuzzy)
124                  (sexp :menu-tag "on" t)))
125
126 (defcustom gnus-simplify-subject-functions nil
127   "List of functions taking a string argument that simplify subjects.
128 The functions are applied recursively.
129
130 Useful functions to put in this list include: `gnus-simplify-subject-re',
131 `gnus-simplify-subject-fuzzy' and `gnus-simplify-whitespace'."
132   :group 'gnus-thread
133   :type '(repeat function))
134
135 (defcustom gnus-simplify-ignored-prefixes nil
136   "*Regexp, matches for which are removed from subject lines when simplifying fuzzily."
137   :group 'gnus-thread
138   :type '(choice (const :tag "off" nil)
139                  regexp))
140
141 (defcustom gnus-build-sparse-threads nil
142   "*If non-nil, fill in the gaps in threads.
143 If `some', only fill in the gaps that are needed to tie loose threads
144 together.  If `more', fill in all leaf nodes that Gnus can find.  If
145 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
146   :group 'gnus-thread
147   :type '(choice (const :tag "off" nil)
148                  (const some)
149                  (const more)
150                  (sexp :menu-tag "all" t)))
151
152 (defcustom gnus-summary-thread-gathering-function
153   'gnus-gather-threads-by-subject
154   "*Function used for gathering loose threads.
155 There are two pre-defined functions: `gnus-gather-threads-by-subject',
156 which only takes Subjects into consideration; and
157 `gnus-gather-threads-by-references', which compared the References
158 headers of the articles to find matches."
159   :group 'gnus-thread
160   :type '(radio (function-item gnus-gather-threads-by-subject)
161                 (function-item gnus-gather-threads-by-references)
162                 (function :tag "other")))
163
164 (defcustom gnus-summary-same-subject ""
165   "*String indicating that the current article has the same subject as the previous.
166 This variable will only be used if the value of
167 `gnus-summary-make-false-root' is `empty'."
168   :group 'gnus-summary-format
169   :type 'string)
170
171 (defcustom gnus-summary-goto-unread t
172   "*If t, many commands will go to the next unread article.
173 This applies to marking commands as well as other commands that
174 \"naturally\" select the next article, like, for instance, `SPC' at
175 the end of an article.
176
177 If nil, the marking commands do NOT go to the next unread article
178 (they go to the next article instead).  If `never', commands that
179 usually go to the next unread article, will go to the next article,
180 whether it is read or not."
181   :group 'gnus-summary-marks
182   :link '(custom-manual "(gnus)Setting Marks")
183   :type '(choice (const :tag "off" nil)
184                  (const never)
185                  (sexp :menu-tag "on" t)))
186
187 (defcustom gnus-summary-default-score 0
188   "*Default article score level.
189 All scores generated by the score files will be added to this score.
190 If this variable is nil, scoring will be disabled."
191   :group 'gnus-score-default
192   :type '(choice (const :tag "disable")
193                  integer))
194
195 (defcustom gnus-summary-zcore-fuzz 0
196   "*Fuzziness factor for the zcore in the summary buffer.
197 Articles with scores closer than this to `gnus-summary-default-score'
198 will not be marked."
199   :group 'gnus-summary-format
200   :type 'integer)
201
202 (defcustom gnus-simplify-subject-fuzzy-regexp nil
203   "*Strings to be removed when doing fuzzy matches.
204 This can either be a regular expression or list of regular expressions
205 that will be removed from subject strings if fuzzy subject
206 simplification is selected."
207   :group 'gnus-thread
208   :type '(repeat regexp))
209
210 (defcustom gnus-show-threads t
211   "*If non-nil, display threads in summary mode."
212   :group 'gnus-thread
213   :type 'boolean)
214
215 (defcustom gnus-thread-hide-subtree nil
216   "*If non-nil, hide all threads initially.
217 If threads are hidden, you have to run the command
218 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
219 to expose hidden threads."
220   :group 'gnus-thread
221   :type 'boolean)
222
223 (defcustom gnus-thread-hide-killed t
224   "*If non-nil, hide killed threads automatically."
225   :group 'gnus-thread
226   :type 'boolean)
227
228 (defcustom gnus-thread-ignore-subject t
229   "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
230 If nil, articles that have different subjects from their parents will
231 start separate threads."
232   :group 'gnus-thread
233   :type 'boolean)
234
235 (defcustom gnus-thread-operation-ignore-subject t
236   "*If non-nil, subjects will be ignored when doing thread commands.
237 This affects commands like `gnus-summary-kill-thread' and
238 `gnus-summary-lower-thread'.
239
240 If this variable is nil, articles in the same thread with different
241 subjects will not be included in the operation in question.  If this
242 variable is `fuzzy', only articles that have subjects that are fuzzily
243 equal will be included."
244   :group 'gnus-thread
245   :type '(choice (const :tag "off" nil)
246                  (const fuzzy)
247                  (sexp :tag "on" t)))
248
249 (defcustom gnus-thread-indent-level 4
250   "*Number that says how much each sub-thread should be indented."
251   :group 'gnus-thread
252   :type 'integer)
253
254 (defcustom gnus-auto-extend-newsgroup t
255   "*If non-nil, extend newsgroup forward and backward when requested."
256   :group 'gnus-summary-choose
257   :type 'boolean)
258
259 (defcustom gnus-auto-select-first t
260   "*If nil, don't select the first unread article when entering a group.
261 If this variable is `best', select the highest-scored unread article
262 in the group.  If t, select the first unread article.
263
264 This variable can also be a function to place point on a likely
265 subject line.  Useful values include `gnus-summary-first-unread-subject',
266 `gnus-summary-first-unread-article' and
267 `gnus-summary-best-unread-article'.
268
269 If you want to prevent automatic selection of the first unread article
270 in some newsgroups, set the variable to nil in
271 `gnus-select-group-hook'."
272   :group 'gnus-group-select
273   :type '(choice (const :tag "none" nil)
274                  (const best)
275                  (sexp :menu-tag "first" t)
276                  (function-item gnus-summary-first-unread-subject)
277                  (function-item gnus-summary-first-unread-article)
278                  (function-item gnus-summary-best-unread-article)))
279
280 (defcustom gnus-auto-select-next t
281   "*If non-nil, offer to go to the next group from the end of the previous.
282 If the value is t and the next newsgroup is empty, Gnus will exit
283 summary mode and go back to group mode.  If the value is neither nil
284 nor t, Gnus will select the following unread newsgroup.  In
285 particular, if the value is the symbol `quietly', the next unread
286 newsgroup will be selected without any confirmation, and if it is
287 `almost-quietly', the next group will be selected without any
288 confirmation if you are located on the last article in the group.
289 Finally, if this variable is `slightly-quietly', the `Z n' command
290 will go to the next group without confirmation."
291   :group 'gnus-summary-maneuvering
292   :type '(choice (const :tag "off" nil)
293                  (const quietly)
294                  (const almost-quietly)
295                  (const slightly-quietly)
296                  (sexp :menu-tag "on" t)))
297
298 (defcustom gnus-auto-select-same nil
299   "*If non-nil, select the next article with the same subject.
300 If there are no more articles with the same subject, go to
301 the first unread article."
302   :group 'gnus-summary-maneuvering
303   :type 'boolean)
304
305 (defcustom gnus-summary-check-current nil
306   "*If non-nil, consider the current article when moving.
307 The \"unread\" movement commands will stay on the same line if the
308 current article is unread."
309   :group 'gnus-summary-maneuvering
310   :type 'boolean)
311
312 (defcustom gnus-auto-center-summary t
313   "*If non-nil, always center the current summary buffer.
314 In particular, if `vertical' do only vertical recentering.  If non-nil
315 and non-`vertical', do both horizontal and vertical recentering."
316   :group 'gnus-summary-maneuvering
317   :type '(choice (const :tag "none" nil)
318                  (const vertical)
319                  (integer :tag "height")
320                  (sexp :menu-tag "both" t)))
321
322 (defcustom gnus-show-all-headers nil
323   "*If non-nil, don't hide any headers."
324   :group 'gnus-article-hiding
325   :group 'gnus-article-headers
326   :type 'boolean)
327
328 (defcustom gnus-summary-ignore-duplicates nil
329   "*If non-nil, ignore articles with identical Message-ID headers."
330   :group 'gnus-summary
331   :type 'boolean)
332
333 (defcustom gnus-single-article-buffer t
334   "*If non-nil, display all articles in the same buffer.
335 If nil, each group will get its own article buffer."
336   :group 'gnus-article-various
337   :type 'boolean)
338
339 (defcustom gnus-break-pages t
340   "*If non-nil, do page breaking on articles.
341 The page delimiter is specified by the `gnus-page-delimiter'
342 variable."
343   :group 'gnus-article-various
344   :type 'boolean)
345
346 (defcustom gnus-move-split-methods nil
347   "*Variable used to suggest where articles are to be moved to.
348 It uses the same syntax as the `gnus-split-methods' variable."
349   :group 'gnus-summary-mail
350   :type '(repeat (choice (list :value (fun) function)
351                          (cons :value ("" "") regexp (repeat string))
352                          (sexp :value nil))))
353
354 (defcustom gnus-unread-mark ?  ;Whitespace
355   "*Mark used for unread articles."
356   :group 'gnus-summary-marks
357   :type 'character)
358
359 (defcustom gnus-ticked-mark ?!
360   "*Mark used for ticked articles."
361   :group 'gnus-summary-marks
362   :type 'character)
363
364 (defcustom gnus-dormant-mark ??
365   "*Mark used for dormant articles."
366   :group 'gnus-summary-marks
367   :type 'character)
368
369 (defcustom gnus-del-mark ?r
370   "*Mark used for del'd articles."
371   :group 'gnus-summary-marks
372   :type 'character)
373
374 (defcustom gnus-read-mark ?R
375   "*Mark used for read articles."
376   :group 'gnus-summary-marks
377   :type 'character)
378
379 (defcustom gnus-expirable-mark ?E
380   "*Mark used for expirable articles."
381   :group 'gnus-summary-marks
382   :type 'character)
383
384 (defcustom gnus-killed-mark ?K
385   "*Mark used for killed articles."
386   :group 'gnus-summary-marks
387   :type 'character)
388
389 (defcustom gnus-souped-mark ?F
390   "*Mark used for killed articles."
391   :group 'gnus-summary-marks
392   :type 'character)
393
394 (defcustom gnus-kill-file-mark ?X
395   "*Mark used for articles killed by kill files."
396   :group 'gnus-summary-marks
397   :type 'character)
398
399 (defcustom gnus-low-score-mark ?Y
400   "*Mark used for articles with a low score."
401   :group 'gnus-summary-marks
402   :type 'character)
403
404 (defcustom gnus-catchup-mark ?C
405   "*Mark used for articles that are caught up."
406   :group 'gnus-summary-marks
407   :type 'character)
408
409 (defcustom gnus-replied-mark ?A
410   "*Mark used for articles that have been replied to."
411   :group 'gnus-summary-marks
412   :type 'character)
413
414 (defcustom gnus-cached-mark ?*
415   "*Mark used for articles that are in the cache."
416   :group 'gnus-summary-marks
417   :type 'character)
418
419 (defcustom gnus-saved-mark ?S
420   "*Mark used for articles that have been saved to."
421   :group 'gnus-summary-marks
422   :type 'character)
423
424 (defcustom gnus-ancient-mark ?O
425   "*Mark used for ancient articles."
426   :group 'gnus-summary-marks
427   :type 'character)
428
429 (defcustom gnus-sparse-mark ?Q
430   "*Mark used for sparsely reffed articles."
431   :group 'gnus-summary-marks
432   :type 'character)
433
434 (defcustom gnus-canceled-mark ?G
435   "*Mark used for canceled articles."
436   :group 'gnus-summary-marks
437   :type 'character)
438
439 (defcustom gnus-duplicate-mark ?M
440   "*Mark used for duplicate articles."
441   :group 'gnus-summary-marks
442   :type 'character)
443
444 (defcustom gnus-undownloaded-mark ?@
445   "*Mark used for articles that weren't downloaded."
446   :group 'gnus-summary-marks
447   :type 'character)
448
449 (defcustom gnus-downloadable-mark ?%
450   "*Mark used for articles that are to be downloaded."
451   :group 'gnus-summary-marks
452   :type 'character)
453
454 (defcustom gnus-unsendable-mark ?=
455   "*Mark used for articles that won't be sent."
456   :group 'gnus-summary-marks
457   :type 'character)
458
459 (defcustom gnus-score-over-mark ?+
460   "*Score mark used for articles with high scores."
461   :group 'gnus-summary-marks
462   :type 'character)
463
464 (defcustom gnus-score-below-mark ?-
465   "*Score mark used for articles with low scores."
466   :group 'gnus-summary-marks
467   :type 'character)
468
469 (defcustom gnus-empty-thread-mark ?  ;Whitespace
470   "*There is no thread under the article."
471   :group 'gnus-summary-marks
472   :type 'character)
473
474 (defcustom gnus-not-empty-thread-mark ?=
475   "*There is a thread under the article."
476   :group 'gnus-summary-marks
477   :type 'character)
478
479 (defcustom gnus-view-pseudo-asynchronously nil
480   "*If non-nil, Gnus will view pseudo-articles asynchronously."
481   :group 'gnus-extract-view
482   :type 'boolean)
483
484 (defcustom gnus-auto-expirable-marks
485   (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
486         gnus-low-score-mark gnus-ancient-mark gnus-read-mark
487         gnus-souped-mark gnus-duplicate-mark)
488   "*The list of marks converted into expiration if a group is auto-expirable."
489   :group 'gnus-summary
490   :type '(repeat character))
491
492 (defcustom gnus-inhibit-user-auto-expire t
493   "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
494   :group 'gnus-summary
495   :type 'boolean)
496
497 (defcustom gnus-view-pseudos nil
498   "*If `automatic', pseudo-articles will be viewed automatically.
499 If `not-confirm', pseudos will be viewed automatically, and the user
500 will not be asked to confirm the command."
501   :group 'gnus-extract-view
502   :type '(choice (const :tag "off" nil)
503                  (const automatic)
504                  (const not-confirm)))
505
506 (defcustom gnus-view-pseudos-separately t
507   "*If non-nil, one pseudo-article will be created for each file to be viewed.
508 If nil, all files that use the same viewing command will be given as a
509 list of parameters to that command."
510   :group 'gnus-extract-view
511   :type 'boolean)
512
513 (defcustom gnus-insert-pseudo-articles t
514   "*If non-nil, insert pseudo-articles when decoding articles."
515   :group 'gnus-extract-view
516   :type 'boolean)
517
518 (defcustom gnus-summary-dummy-line-format
519   "  %(:                          :%) %S\n"
520   "*The format specification for the dummy roots in the summary buffer.
521 It works along the same lines as a normal formatting string,
522 with some simple extensions.
523
524 %S  The subject"
525   :group 'gnus-threading
526   :type 'string)
527
528 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
529   "*The format specification for the summary mode line.
530 It works along the same lines as a normal formatting string,
531 with some simple extensions:
532
533 %G  Group name
534 %p  Unprefixed group name
535 %A  Current article number
536 %z  Current article score
537 %V  Gnus version
538 %U  Number of unread articles in the group
539 %e  Number of unselected articles in the group
540 %Z  A string with unread/unselected article counts
541 %g  Shortish group name
542 %S  Subject of the current article
543 %u  User-defined spec
544 %s  Current score file name
545 %d  Number of dormant articles
546 %r  Number of articles that have been marked as read in this session
547 %E  Number of articles expunged by the score files"
548   :group 'gnus-summary-format
549   :type 'string)
550
551 (defcustom gnus-list-identifiers nil
552   "Regexp that matches list identifiers to be removed from subject.
553 This can also be a list of regexps."
554   :group 'gnus-summary-format
555   :group 'gnus-article-hiding
556   :type '(choice (const :tag "none" nil)
557                  (regexp :value ".*")
558                  (repeat :value (".*") regexp)))
559
560 (defcustom gnus-summary-mark-below 0
561   "*Mark all articles with a score below this variable as read.
562 This variable is local to each summary buffer and usually set by the
563 score file."
564   :group 'gnus-score-default
565   :type 'integer)
566
567 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
568   "*List of functions used for sorting articles in the summary buffer.
569 This variable is only used when not using a threaded display."
570   :group 'gnus-summary-sort
571   :type '(repeat (choice (function-item gnus-article-sort-by-number)
572                          (function-item gnus-article-sort-by-author)
573                          (function-item gnus-article-sort-by-subject)
574                          (function-item gnus-article-sort-by-date)
575                          (function-item gnus-article-sort-by-score)
576                          (function :tag "other"))))
577
578 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
579   "*List of functions used for sorting threads in the summary buffer.
580 By default, threads are sorted by article number.
581
582 Each function takes two threads and return non-nil if the first thread
583 should be sorted before the other.  If you use more than one function,
584 the primary sort function should be the last.  You should probably
585 always include `gnus-thread-sort-by-number' in the list of sorting
586 functions -- preferably first.
587
588 Ready-made functions include `gnus-thread-sort-by-number',
589 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
590 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score' and
591 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function')."
592   :group 'gnus-summary-sort
593   :type '(repeat (choice (function-item gnus-thread-sort-by-number)
594                          (function-item gnus-thread-sort-by-author)
595                          (function-item gnus-thread-sort-by-subject)
596                          (function-item gnus-thread-sort-by-date)
597                          (function-item gnus-thread-sort-by-score)
598                          (function-item gnus-thread-sort-by-total-score)
599                          (function :tag "other"))))
600
601 (defcustom gnus-thread-score-function '+
602   "*Function used for calculating the total score of a thread.
603
604 The function is called with the scores of the article and each
605 subthread and should then return the score of the thread.
606
607 Some functions you can use are `+', `max', or `min'."
608   :group 'gnus-summary-sort
609   :type 'function)
610
611 (defcustom gnus-summary-expunge-below nil
612   "All articles that have a score less than this variable will be expunged.
613 This variable is local to the summary buffers."
614   :group 'gnus-score-default
615   :type '(choice (const :tag "off" nil)
616                  integer))
617
618 (defcustom gnus-thread-expunge-below nil
619   "All threads that have a total score less than this variable will be expunged.
620 See `gnus-thread-score-function' for en explanation of what a
621 \"thread score\" is.
622
623 This variable is local to the summary buffers."
624   :group 'gnus-threading
625   :group 'gnus-score-default
626   :type '(choice (const :tag "off" nil)
627                  integer))
628
629 (defcustom gnus-summary-mode-hook nil
630   "*A hook for Gnus summary mode.
631 This hook is run before any variables are set in the summary buffer."
632   :group 'gnus-summary-various
633   :type 'hook)
634
635 (defcustom gnus-summary-menu-hook nil
636   "*Hook run after the creation of the summary mode menu."
637   :group 'gnus-summary-visual
638   :type 'hook)
639
640 (defcustom gnus-summary-exit-hook nil
641   "*A hook called on exit from the summary buffer.
642 It will be called with point in the group buffer."
643   :group 'gnus-summary-exit
644   :type 'hook)
645
646 (defcustom gnus-summary-prepare-hook nil
647   "*A hook called after the summary buffer has been generated.
648 If you want to modify the summary buffer, you can use this hook."
649   :group 'gnus-summary-various
650   :type 'hook)
651
652 (defcustom gnus-summary-prepared-hook nil
653   "*A hook called as the last thing after the summary buffer has been generated."
654   :group 'gnus-summary-various
655   :type 'hook)
656
657 (defcustom gnus-summary-generate-hook nil
658   "*A hook run just before generating the summary buffer.
659 This hook is commonly used to customize threading variables and the
660 like."
661   :group 'gnus-summary-various
662   :type 'hook)
663
664 (defcustom gnus-select-group-hook nil
665   "*A hook called when a newsgroup is selected.
666
667 If you'd like to simplify subjects like the
668 `gnus-summary-next-same-subject' command does, you can use the
669 following hook:
670
671  (setq gnus-select-group-hook
672       (list
673         (lambda ()
674           (mapcar (lambda (header)
675                      (mail-header-set-subject
676                       header
677                       (gnus-simplify-subject
678                        (mail-header-subject header) 're-only)))
679                   gnus-newsgroup-headers))))"
680   :group 'gnus-group-select
681   :type 'hook)
682
683 (defcustom gnus-select-article-hook nil
684   "*A hook called when an article is selected."
685   :group 'gnus-summary-choose
686   :type 'hook)
687
688 (defcustom gnus-visual-mark-article-hook
689   (list 'gnus-highlight-selected-summary)
690   "*Hook run after selecting an article in the summary buffer.
691 It is meant to be used for highlighting the article in some way.  It
692 is not run if `gnus-visual' is nil."
693   :group 'gnus-summary-visual
694   :type 'hook)
695
696 (defcustom gnus-parse-headers-hook nil
697   "*A hook called before parsing the headers."
698   :group 'gnus-various
699   :type 'hook)
700
701 (defcustom gnus-exit-group-hook nil
702   "*A hook called when exiting summary mode.
703 This hook is not called from the non-updating exit commands like `Q'."
704   :group 'gnus-various
705   :type 'hook)
706
707 (defcustom gnus-summary-update-hook
708   (list 'gnus-summary-highlight-line)
709   "*A hook called when a summary line is changed.
710 The hook will not be called if `gnus-visual' is nil.
711
712 The default function `gnus-summary-highlight-line' will
713 highlight the line according to the `gnus-summary-highlight'
714 variable."
715   :group 'gnus-summary-visual
716   :type 'hook)
717
718 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
719   "*A hook called when an article is selected for the first time.
720 The hook is intended to mark an article as read (or unread)
721 automatically when it is selected."
722   :group 'gnus-summary-choose
723   :type 'hook)
724
725 (defcustom gnus-group-no-more-groups-hook nil
726   "*A hook run when returning to group mode having no more (unread) groups."
727   :group 'gnus-group-select
728   :type 'hook)
729
730 (defcustom gnus-ps-print-hook nil
731   "*A hook run before ps-printing something from Gnus."
732   :group 'gnus-summary
733   :type 'hook)
734
735 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
736   "Face used for highlighting the current article in the summary buffer."
737   :group 'gnus-summary-visual
738   :type 'face)
739
740 (defcustom gnus-summary-highlight
741   '(((= mark gnus-canceled-mark)
742      . gnus-summary-cancelled-face)
743     ((and (> score default)
744           (or (= mark gnus-dormant-mark)
745               (= mark gnus-ticked-mark)))
746      . gnus-summary-high-ticked-face)
747     ((and (< score default)
748           (or (= mark gnus-dormant-mark)
749               (= mark gnus-ticked-mark)))
750      . gnus-summary-low-ticked-face)
751     ((or (= mark gnus-dormant-mark)
752          (= mark gnus-ticked-mark))
753      . gnus-summary-normal-ticked-face)
754     ((and (> score default) (= mark gnus-ancient-mark))
755      . gnus-summary-high-ancient-face)
756     ((and (< score default) (= mark gnus-ancient-mark))
757      . gnus-summary-low-ancient-face)
758     ((= mark gnus-ancient-mark)
759      . gnus-summary-normal-ancient-face)
760     ((and (> score default) (= mark gnus-unread-mark))
761      . gnus-summary-high-unread-face)
762     ((and (< score default) (= mark gnus-unread-mark))
763      . gnus-summary-low-unread-face)
764     ((= mark gnus-unread-mark)
765      . gnus-summary-normal-unread-face)
766     ((and (> score default) (memq mark (list gnus-downloadable-mark
767                                              gnus-undownloaded-mark)))
768      . gnus-summary-high-unread-face)
769     ((and (< score default) (memq mark (list gnus-downloadable-mark
770                                              gnus-undownloaded-mark)))
771      . gnus-summary-low-unread-face)
772     ((memq mark (list gnus-downloadable-mark gnus-undownloaded-mark))
773      . gnus-summary-normal-unread-face)
774     ((> score default)
775      . gnus-summary-high-read-face)
776     ((< score default)
777      . gnus-summary-low-read-face)
778     (t
779      . gnus-summary-normal-read-face))
780   "*Controls the highlighting of summary buffer lines.
781
782 A list of (FORM . FACE) pairs.  When deciding how a a particular
783 summary line should be displayed, each form is evaluated.  The content
784 of the face field after the first true form is used.  You can change
785 how those summary lines are displayed, by editing the face field.
786
787 You can use the following variables in the FORM field.
788
789 score:   The articles score
790 default: The default article score.
791 below:   The score below which articles are automatically marked as read.
792 mark:    The articles mark."
793   :group 'gnus-summary-visual
794   :type '(repeat (cons (sexp :tag "Form" nil)
795                        face)))
796
797 (defcustom gnus-alter-header-function nil
798   "Function called to allow alteration of article header structures.
799 The function is called with one parameter, the article header vector,
800 which it may alter in any way.")
801
802 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
803   "Variable that says which function should be used to decode a string with encoded words.")
804
805 (defcustom gnus-extra-headers nil
806   "*Extra headers to parse."
807   :group 'gnus-summary
808   :type '(repeat symbol))
809
810 (defcustom gnus-ignored-from-addresses
811   (and user-mail-address (regexp-quote user-mail-address))
812   "*Regexp of From headers that may be suppressed in favor of To headers."
813   :group 'gnus-summary
814   :type 'regexp)
815
816 (defcustom gnus-group-charset-alist
817   '(("^hk\\>\\|^tw\\>\\|\\<big5\\>" cn-big5)
818     ("^cn\\>\\|\\<chinese\\>" cn-gb-2312)
819     ("^fj\\>\\|^japan\\>" iso-2022-jp-2)
820     ("^tnn\\>\\|^pin\\>\\|^sci.lang.japan" iso-2022-7bit)
821     ("^relcom\\>" koi8-r)
822     ("^fido7\\>" koi8-r)
823     ("^\\(cz\\|hun\\|pl\\|sk\\|hr\\)\\>" iso-8859-2)
824     ("^israel\\>" iso-8859-1)
825     ("^han\\>" euc-kr)
826     ("^alt.chinese.text.big5\\>" chinese-big5)
827     ("^soc.culture.vietnamese\\>" vietnamese-viqr)
828     ("^\\(comp\\|rec\\|alt\\|sci\\|soc\\|news\\|gnu\\|bofh\\)\\>" iso-8859-1)
829     (".*" iso-8859-1))
830   "Alist of regexps (to match group names) and default charsets to be used when reading."
831   :type '(repeat (list (regexp :tag "Group")
832                        (symbol :tag "Charset")))
833   :group 'gnus-charset)
834
835 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
836   "List of charsets that should be ignored.
837 When these charsets are used in the \"charset\" parameter, the
838 default charset will be used instead."
839   :type '(repeat symbol)
840   :group 'gnus-charset)
841
842 (defcustom gnus-group-ignored-charsets-alist
843   '(("alt\\.chinese\\.text" iso-8859-1))
844   "Alist of regexps (to match group names) and charsets that should be ignored.
845 When these charsets are used in the \"charset\" parameter, the
846 default charset will be used instead."
847   :type '(repeat (cons (regexp :tag "Group")
848                        (repeat symbol)))
849   :group 'gnus-charset)
850
851 (defcustom gnus-group-highlight-words-alist nil
852   "Alist of group regexps and highlight regexps.
853 This variable uses the same syntax as `gnus-emphasis-alist'."
854   :type '(repeat (cons (regexp :tag "Group")
855                        (repeat (list (regexp :tag "Highlight regexp")
856                                      (number :tag "Group for entire word" 0)
857                                      (number :tag "Group for displayed part" 0)
858                                      (symbol :tag "Face"
859                                              gnus-emphasis-highlight-words)))))
860   :group 'gnus-summary-visual)
861
862 (defcustom gnus-summary-show-article-charset-alist
863   nil
864   "Alist of number and charset.
865 The article will be shown with the charset corresponding to the
866 numbered argument.
867 For example: ((1 . cn-gb-2312) (2 . big5))."
868   :type '(repeat (cons (number :tag "Argument" 1)
869                        (symbol :tag "Charset")))
870   :group 'gnus-charset)
871
872 (defcustom gnus-preserve-marks t
873   "Whether marks are preserved when moving, copying and respooling messages."
874   :type 'boolean
875   :group 'gnus-summary-marks)
876
877 (defcustom gnus-alter-articles-to-read-function nil
878   "Function to be called to alter the list of articles to be selected."
879   :type 'function
880   :group 'gnus-summary)
881
882 (defcustom gnus-orphan-score nil
883   "*All orphans get this score added.  Set in the score file."
884   :group 'gnus-score-default
885   :type '(choice (const nil)
886                  integer))
887
888 (defcustom gnus-summary-save-parts-default-mime "image/.*"
889   "*A regexp to match MIME parts when saving multiple parts of a message
890 with gnus-summary-save-parts (X m). This regexp will be used by default
891 when prompting the user for which type of files to save."
892   :group 'gnus-summary
893   :type 'regexp)
894
895
896 ;;; Internal variables
897
898 (defvar gnus-article-mime-handles nil)
899 (defvar gnus-article-decoded-p nil)
900 (defvar gnus-scores-exclude-files nil)
901 (defvar gnus-page-broken nil)
902 (defvar gnus-inhibit-mime-unbuttonizing nil)
903
904 (defvar gnus-original-article nil)
905 (defvar gnus-article-internal-prepare-hook nil)
906 (defvar gnus-newsgroup-process-stack nil)
907
908 (defvar gnus-thread-indent-array nil)
909 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
910 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
911   "Function called to sort the articles within a thread after it has been gathered together.")
912
913 (defvar gnus-summary-save-parts-type-history nil)
914 (defvar gnus-summary-save-parts-last-directory nil)
915
916 ;; Avoid highlighting in kill files.
917 (defvar gnus-summary-inhibit-highlight nil)
918 (defvar gnus-newsgroup-selected-overlay nil)
919 (defvar gnus-inhibit-limiting nil)
920 (defvar gnus-newsgroup-adaptive-score-file nil)
921 (defvar gnus-current-score-file nil)
922 (defvar gnus-current-move-group nil)
923 (defvar gnus-current-copy-group nil)
924 (defvar gnus-current-crosspost-group nil)
925
926 (defvar gnus-newsgroup-dependencies nil)
927 (defvar gnus-newsgroup-adaptive nil)
928 (defvar gnus-summary-display-article-function nil)
929 (defvar gnus-summary-highlight-line-function nil
930   "Function called after highlighting a summary line.")
931
932 (defvar gnus-summary-line-format-alist
933   `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
934     (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
935     (?s gnus-tmp-subject-or-nil ?s)
936     (?n gnus-tmp-name ?s)
937     (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
938         ?s)
939     (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
940             gnus-tmp-from) ?s)
941     (?F gnus-tmp-from ?s)
942     (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
943     (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
944     (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
945     (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
946     (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
947     (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
948     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
949     (?L gnus-tmp-lines ?d)
950     (?I gnus-tmp-indentation ?s)
951     (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
952     (?R gnus-tmp-replied ?c)
953     (?\[ gnus-tmp-opening-bracket ?c)
954     (?\] gnus-tmp-closing-bracket ?c)
955     (?\> (make-string gnus-tmp-level ? ) ?s)
956     (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
957     (?i gnus-tmp-score ?d)
958     (?z gnus-tmp-score-char ?c)
959     (?l (bbb-grouplens-score gnus-tmp-header) ?s)
960     (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
961     (?U gnus-tmp-unread ?c)
962     (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header) ?s)
963     (?t (gnus-summary-number-of-articles-in-thread
964          (and (boundp 'thread) (car thread)) gnus-tmp-level)
965         ?d)
966     (?e (gnus-summary-number-of-articles-in-thread
967          (and (boundp 'thread) (car thread)) gnus-tmp-level t)
968         ?c)
969     (?u gnus-tmp-user-defined ?s)
970     (?P (gnus-pick-line-number) ?d))
971   "An alist of format specifications that can appear in summary lines.
972 These are paired with what variables they correspond with, along with
973 the type of the variable (string, integer, character, etc).")
974
975 (defvar gnus-summary-dummy-line-format-alist
976   `((?S gnus-tmp-subject ?s)
977     (?N gnus-tmp-number ?d)
978     (?u gnus-tmp-user-defined ?s)))
979
980 (defvar gnus-summary-mode-line-format-alist
981   `((?G gnus-tmp-group-name ?s)
982     (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
983     (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
984     (?A gnus-tmp-article-number ?d)
985     (?Z gnus-tmp-unread-and-unselected ?s)
986     (?V gnus-version ?s)
987     (?U gnus-tmp-unread-and-unticked ?d)
988     (?S gnus-tmp-subject ?s)
989     (?e gnus-tmp-unselected ?d)
990     (?u gnus-tmp-user-defined ?s)
991     (?d (length gnus-newsgroup-dormant) ?d)
992     (?t (length gnus-newsgroup-marked) ?d)
993     (?r (length gnus-newsgroup-reads) ?d)
994     (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
995     (?E gnus-newsgroup-expunged-tally ?d)
996     (?s (gnus-current-score-file-nondirectory) ?s)))
997
998 (defvar gnus-last-search-regexp nil
999   "Default regexp for article search command.")
1000
1001 (defvar gnus-last-shell-command nil
1002   "Default shell command on article.")
1003
1004 (defvar gnus-newsgroup-begin nil)
1005 (defvar gnus-newsgroup-end nil)
1006 (defvar gnus-newsgroup-last-rmail nil)
1007 (defvar gnus-newsgroup-last-mail nil)
1008 (defvar gnus-newsgroup-last-folder nil)
1009 (defvar gnus-newsgroup-last-file nil)
1010 (defvar gnus-newsgroup-auto-expire nil)
1011 (defvar gnus-newsgroup-active nil)
1012
1013 (defvar gnus-newsgroup-data nil)
1014 (defvar gnus-newsgroup-data-reverse nil)
1015 (defvar gnus-newsgroup-limit nil)
1016 (defvar gnus-newsgroup-limits nil)
1017
1018 (defvar gnus-newsgroup-unreads nil
1019   "List of unread articles in the current newsgroup.")
1020
1021 (defvar gnus-newsgroup-unselected nil
1022   "List of unselected unread articles in the current newsgroup.")
1023
1024 (defvar gnus-newsgroup-reads nil
1025   "Alist of read articles and article marks in the current newsgroup.")
1026
1027 (defvar gnus-newsgroup-expunged-tally nil)
1028
1029 (defvar gnus-newsgroup-marked nil
1030   "List of ticked articles in the current newsgroup (a subset of unread art).")
1031
1032 (defvar gnus-newsgroup-killed nil
1033   "List of ranges of articles that have been through the scoring process.")
1034
1035 (defvar gnus-newsgroup-cached nil
1036   "List of articles that come from the article cache.")
1037
1038 (defvar gnus-newsgroup-saved nil
1039   "List of articles that have been saved.")
1040
1041 (defvar gnus-newsgroup-kill-headers nil)
1042
1043 (defvar gnus-newsgroup-replied nil
1044   "List of articles that have been replied to in the current newsgroup.")
1045
1046 (defvar gnus-newsgroup-expirable nil
1047   "List of articles in the current newsgroup that can be expired.")
1048
1049 (defvar gnus-newsgroup-processable nil
1050   "List of articles in the current newsgroup that can be processed.")
1051
1052 (defvar gnus-newsgroup-downloadable nil
1053   "List of articles in the current newsgroup that can be processed.")
1054
1055 (defvar gnus-newsgroup-undownloaded nil
1056   "List of articles in the current newsgroup that haven't been downloaded..")
1057
1058 (defvar gnus-newsgroup-unsendable nil
1059   "List of articles in the current newsgroup that won't be sent.")
1060
1061 (defvar gnus-newsgroup-bookmarks nil
1062   "List of articles in the current newsgroup that have bookmarks.")
1063
1064 (defvar gnus-newsgroup-dormant nil
1065   "List of dormant articles in the current newsgroup.")
1066
1067 (defvar gnus-newsgroup-scored nil
1068   "List of scored articles in the current newsgroup.")
1069
1070 (defvar gnus-newsgroup-headers nil
1071   "List of article headers in the current newsgroup.")
1072
1073 (defvar gnus-newsgroup-threads nil)
1074
1075 (defvar gnus-newsgroup-prepared nil
1076   "Whether the current group has been prepared properly.")
1077
1078 (defvar gnus-newsgroup-ancient nil
1079   "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1080
1081 (defvar gnus-newsgroup-sparse nil)
1082
1083 (defvar gnus-current-article nil)
1084 (defvar gnus-article-current nil)
1085 (defvar gnus-current-headers nil)
1086 (defvar gnus-have-all-headers nil)
1087 (defvar gnus-last-article nil)
1088 (defvar gnus-newsgroup-history nil)
1089 (defvar gnus-newsgroup-charset nil)
1090 (defvar gnus-newsgroup-ephemeral-charset nil)
1091 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1092
1093 (defconst gnus-summary-local-variables
1094   '(gnus-newsgroup-name
1095     gnus-newsgroup-begin gnus-newsgroup-end
1096     gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1097     gnus-newsgroup-last-folder gnus-newsgroup-last-file
1098     gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1099     gnus-newsgroup-unselected gnus-newsgroup-marked
1100     gnus-newsgroup-reads gnus-newsgroup-saved
1101     gnus-newsgroup-replied gnus-newsgroup-expirable
1102     gnus-newsgroup-processable gnus-newsgroup-killed
1103     gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1104     gnus-newsgroup-unsendable
1105     gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1106     gnus-newsgroup-headers gnus-newsgroup-threads
1107     gnus-newsgroup-prepared gnus-summary-highlight-line-function
1108     gnus-current-article gnus-current-headers gnus-have-all-headers
1109     gnus-last-article gnus-article-internal-prepare-hook
1110     gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1111     gnus-newsgroup-scored gnus-newsgroup-kill-headers
1112     gnus-thread-expunge-below
1113     gnus-score-alist gnus-current-score-file
1114     (gnus-summary-expunge-below . global)
1115     (gnus-summary-mark-below . global)
1116     (gnus-orphan-score . global)
1117     gnus-newsgroup-active gnus-scores-exclude-files
1118     gnus-newsgroup-history gnus-newsgroup-ancient
1119     gnus-newsgroup-sparse gnus-newsgroup-process-stack
1120     (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1121     gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1122     (gnus-newsgroup-expunged-tally . 0)
1123     gnus-cache-removable-articles gnus-newsgroup-cached
1124     gnus-newsgroup-data gnus-newsgroup-data-reverse
1125     gnus-newsgroup-limit gnus-newsgroup-limits
1126     gnus-newsgroup-charset)
1127   "Variables that are buffer-local to the summary buffers.")
1128
1129 ;; Byte-compiler warning.
1130 (defvar gnus-article-mode-map)
1131
1132 ;; MIME stuff.
1133
1134 (defvar gnus-decode-encoded-word-methods
1135   '(mail-decode-encoded-word-string)
1136   "List of methods used to decode encoded words.
1137
1138 This variable is a list of FUNCTION or (REGEXP . FUNCTION).  If item is
1139 FUNCTION, FUNCTION will be apply to all newsgroups.  If item is a
1140 (REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
1141 whose names match REGEXP.
1142
1143 For example:
1144 ((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
1145  mail-decode-encoded-word-string
1146  (\"chinese\" . rfc1843-decode-string))")
1147
1148 (defvar gnus-decode-encoded-word-methods-cache nil)
1149
1150 (defun gnus-multi-decode-encoded-word-string (string)
1151   "Apply the functions from `gnus-encoded-word-methods' that match."
1152   (unless (and gnus-decode-encoded-word-methods-cache
1153                (eq gnus-newsgroup-name
1154                    (car gnus-decode-encoded-word-methods-cache)))
1155     (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
1156     (mapcar (lambda (x)
1157               (if (symbolp x)
1158                   (nconc gnus-decode-encoded-word-methods-cache (list x))
1159                 (if (and gnus-newsgroup-name
1160                          (string-match (car x) gnus-newsgroup-name))
1161                     (nconc gnus-decode-encoded-word-methods-cache
1162                            (list (cdr x))))))
1163           gnus-decode-encoded-word-methods))
1164   (let ((xlist gnus-decode-encoded-word-methods-cache))
1165     (pop xlist)
1166     (while xlist
1167       (setq string (funcall (pop xlist) string))))
1168   string)
1169
1170 ;; Subject simplification.
1171
1172 (defun gnus-simplify-whitespace (str)
1173   "Remove excessive whitespace from STR."
1174   (let ((mystr str))
1175     ;; Multiple spaces.
1176     (while (string-match "[ \t][ \t]+" mystr)
1177       (setq mystr (concat (substring mystr 0 (match-beginning 0))
1178                           " "
1179                           (substring mystr (match-end 0)))))
1180     ;; Leading spaces.
1181     (when (string-match "^[ \t]+" mystr)
1182       (setq mystr (substring mystr (match-end 0))))
1183     ;; Trailing spaces.
1184     (when (string-match "[ \t]+$" mystr)
1185       (setq mystr (substring mystr 0 (match-beginning 0))))
1186     mystr))
1187
1188 (defsubst gnus-simplify-subject-re (subject)
1189   "Remove \"Re:\" from subject lines."
1190   (if (string-match "^[Rr][Ee]: *" subject)
1191       (substring subject (match-end 0))
1192     subject))
1193
1194 (defun gnus-simplify-subject (subject &optional re-only)
1195   "Remove `Re:' and words in parentheses.
1196 If RE-ONLY is non-nil, strip leading `Re:'s only."
1197   (let ((case-fold-search t))           ;Ignore case.
1198     ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1199     (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1200       (setq subject (substring subject (match-end 0))))
1201     ;; Remove uninteresting prefixes.
1202     (when (and (not re-only)
1203                gnus-simplify-ignored-prefixes
1204                (string-match gnus-simplify-ignored-prefixes subject))
1205       (setq subject (substring subject (match-end 0))))
1206     ;; Remove words in parentheses from end.
1207     (unless re-only
1208       (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1209         (setq subject (substring subject 0 (match-beginning 0)))))
1210     ;; Return subject string.
1211     subject))
1212
1213 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1214 ;; all whitespace.
1215 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1216   (goto-char (point-min))
1217   (while (re-search-forward regexp nil t)
1218     (replace-match (or newtext ""))))
1219
1220 (defun gnus-simplify-buffer-fuzzy ()
1221   "Simplify string in the buffer fuzzily.
1222 The string in the accessible portion of the current buffer is simplified.
1223 It is assumed to be a single-line subject.
1224 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1225 matter is removed.  Additional things can be deleted by setting
1226 `gnus-simplify-subject-fuzzy-regexp'."
1227   (let ((case-fold-search t)
1228         (modified-tick))
1229     (gnus-simplify-buffer-fuzzy-step "\t" " ")
1230
1231     (while (not (eq modified-tick (buffer-modified-tick)))
1232       (setq modified-tick (buffer-modified-tick))
1233       (cond
1234        ((listp gnus-simplify-subject-fuzzy-regexp)
1235         (mapcar 'gnus-simplify-buffer-fuzzy-step
1236                 gnus-simplify-subject-fuzzy-regexp))
1237        (gnus-simplify-subject-fuzzy-regexp
1238         (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1239       (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1240       (gnus-simplify-buffer-fuzzy-step
1241        "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1242       (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1243
1244     (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1245     (gnus-simplify-buffer-fuzzy-step "  +" " ")
1246     (gnus-simplify-buffer-fuzzy-step " $")
1247     (gnus-simplify-buffer-fuzzy-step "^ +")))
1248
1249 (defun gnus-simplify-subject-fuzzy (subject)
1250   "Simplify a subject string fuzzily.
1251 See `gnus-simplify-buffer-fuzzy' for details."
1252   (save-excursion
1253     (gnus-set-work-buffer)
1254     (let ((case-fold-search t))
1255       ;; Remove uninteresting prefixes.
1256       (when (and gnus-simplify-ignored-prefixes
1257                  (string-match gnus-simplify-ignored-prefixes subject))
1258         (setq subject (substring subject (match-end 0))))
1259       (insert subject)
1260       (inline (gnus-simplify-buffer-fuzzy))
1261       (buffer-string))))
1262
1263 (defsubst gnus-simplify-subject-fully (subject)
1264   "Simplify a subject string according to gnus-summary-gather-subject-limit."
1265   (cond
1266    (gnus-simplify-subject-functions
1267     (gnus-map-function gnus-simplify-subject-functions subject))
1268    ((null gnus-summary-gather-subject-limit)
1269     (gnus-simplify-subject-re subject))
1270    ((eq gnus-summary-gather-subject-limit 'fuzzy)
1271     (gnus-simplify-subject-fuzzy subject))
1272    ((numberp gnus-summary-gather-subject-limit)
1273     (gnus-limit-string (gnus-simplify-subject-re subject)
1274                        gnus-summary-gather-subject-limit))
1275    (t
1276     subject)))
1277
1278 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1279   "Check whether two subjects are equal.
1280 If optional argument simple-first is t, first argument is already
1281 simplified."
1282   (cond
1283    ((null simple-first)
1284     (equal (gnus-simplify-subject-fully s1)
1285            (gnus-simplify-subject-fully s2)))
1286    (t
1287     (equal s1
1288            (gnus-simplify-subject-fully s2)))))
1289
1290 (defun gnus-summary-bubble-group ()
1291   "Increase the score of the current group.
1292 This is a handy function to add to `gnus-summary-exit-hook' to
1293 increase the score of each group you read."
1294   (gnus-group-add-score gnus-newsgroup-name))
1295
1296 \f
1297 ;;;
1298 ;;; Gnus summary mode
1299 ;;;
1300
1301 (put 'gnus-summary-mode 'mode-class 'special)
1302
1303 (when t
1304   ;; Non-orthogonal keys
1305
1306   (gnus-define-keys gnus-summary-mode-map
1307     " " gnus-summary-next-page
1308     "\177" gnus-summary-prev-page
1309     [delete] gnus-summary-prev-page
1310     [backspace] gnus-summary-prev-page
1311     "\r" gnus-summary-scroll-up
1312     "\M-\r" gnus-summary-scroll-down
1313     "n" gnus-summary-next-unread-article
1314     "p" gnus-summary-prev-unread-article
1315     "N" gnus-summary-next-article
1316     "P" gnus-summary-prev-article
1317     "\M-\C-n" gnus-summary-next-same-subject
1318     "\M-\C-p" gnus-summary-prev-same-subject
1319     "\M-n" gnus-summary-next-unread-subject
1320     "\M-p" gnus-summary-prev-unread-subject
1321     "." gnus-summary-first-unread-article
1322     "," gnus-summary-best-unread-article
1323     "\M-s" gnus-summary-search-article-forward
1324     "\M-r" gnus-summary-search-article-backward
1325     "<" gnus-summary-beginning-of-article
1326     ">" gnus-summary-end-of-article
1327     "j" gnus-summary-goto-article
1328     "^" gnus-summary-refer-parent-article
1329     "\M-^" gnus-summary-refer-article
1330     "u" gnus-summary-tick-article-forward
1331     "!" gnus-summary-tick-article-forward
1332     "U" gnus-summary-tick-article-backward
1333     "d" gnus-summary-mark-as-read-forward
1334     "D" gnus-summary-mark-as-read-backward
1335     "E" gnus-summary-mark-as-expirable
1336     "\M-u" gnus-summary-clear-mark-forward
1337     "\M-U" gnus-summary-clear-mark-backward
1338     "k" gnus-summary-kill-same-subject-and-select
1339     "\C-k" gnus-summary-kill-same-subject
1340     "\M-\C-k" gnus-summary-kill-thread
1341     "\M-\C-l" gnus-summary-lower-thread
1342     "e" gnus-summary-edit-article
1343     "#" gnus-summary-mark-as-processable
1344     "\M-#" gnus-summary-unmark-as-processable
1345     "\M-\C-t" gnus-summary-toggle-threads
1346     "\M-\C-s" gnus-summary-show-thread
1347     "\M-\C-h" gnus-summary-hide-thread
1348     "\M-\C-f" gnus-summary-next-thread
1349     "\M-\C-b" gnus-summary-prev-thread
1350     [(meta down)] gnus-summary-next-thread
1351     [(meta up)] gnus-summary-prev-thread
1352     "\M-\C-u" gnus-summary-up-thread
1353     "\M-\C-d" gnus-summary-down-thread
1354     "&" gnus-summary-execute-command
1355     "c" gnus-summary-catchup-and-exit
1356     "\C-w" gnus-summary-mark-region-as-read
1357     "\C-t" gnus-summary-toggle-truncation
1358     "?" gnus-summary-mark-as-dormant
1359     "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1360     "\C-c\C-s\C-n" gnus-summary-sort-by-number
1361     "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1362     "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1363     "\C-c\C-s\C-a" gnus-summary-sort-by-author
1364     "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1365     "\C-c\C-s\C-d" gnus-summary-sort-by-date
1366     "\C-c\C-s\C-i" gnus-summary-sort-by-score
1367     "=" gnus-summary-expand-window
1368     "\C-x\C-s" gnus-summary-reselect-current-group
1369     "\M-g" gnus-summary-rescan-group
1370     "w" gnus-summary-stop-page-breaking
1371     "\C-c\C-r" gnus-summary-caesar-message
1372     "f" gnus-summary-followup
1373     "F" gnus-summary-followup-with-original
1374     "C" gnus-summary-cancel-article
1375     "r" gnus-summary-reply
1376     "R" gnus-summary-reply-with-original
1377     "\C-c\C-f" gnus-summary-mail-forward
1378     "o" gnus-summary-save-article
1379     "\C-o" gnus-summary-save-article-mail
1380     "|" gnus-summary-pipe-output
1381     "\M-k" gnus-summary-edit-local-kill
1382     "\M-K" gnus-summary-edit-global-kill
1383     ;; "V" gnus-version
1384     "\C-c\C-d" gnus-summary-describe-group
1385     "q" gnus-summary-exit
1386     "Q" gnus-summary-exit-no-update
1387     "\C-c\C-i" gnus-info-find-node
1388     gnus-mouse-2 gnus-mouse-pick-article
1389     "m" gnus-summary-mail-other-window
1390     "a" gnus-summary-post-news
1391     "x" gnus-summary-limit-to-unread
1392     "s" gnus-summary-isearch-article
1393     "t" gnus-summary-toggle-header
1394     "g" gnus-summary-show-article
1395     "l" gnus-summary-goto-last-article
1396     "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1397     "\C-d" gnus-summary-enter-digest-group
1398     "\M-\C-d" gnus-summary-read-document
1399     "\M-\C-e" gnus-summary-edit-parameters
1400     "\M-\C-a" gnus-summary-customize-parameters
1401     "\C-c\C-b" gnus-bug
1402     "*" gnus-cache-enter-article
1403     "\M-*" gnus-cache-remove-article
1404     "\M-&" gnus-summary-universal-argument
1405     "\C-l" gnus-recenter
1406     "I" gnus-summary-increase-score
1407     "L" gnus-summary-lower-score
1408     "\M-i" gnus-symbolic-argument
1409     "h" gnus-summary-select-article-buffer
1410
1411     "b" gnus-article-view-part
1412     "\M-t" gnus-summary-toggle-display-buttonized
1413
1414     "V" gnus-summary-score-map
1415     "X" gnus-uu-extract-map
1416     "S" gnus-summary-send-map)
1417
1418   ;; Sort of orthogonal keymap
1419   (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1420     "t" gnus-summary-tick-article-forward
1421     "!" gnus-summary-tick-article-forward
1422     "d" gnus-summary-mark-as-read-forward
1423     "r" gnus-summary-mark-as-read-forward
1424     "c" gnus-summary-clear-mark-forward
1425     " " gnus-summary-clear-mark-forward
1426     "e" gnus-summary-mark-as-expirable
1427     "x" gnus-summary-mark-as-expirable
1428     "?" gnus-summary-mark-as-dormant
1429     "b" gnus-summary-set-bookmark
1430     "B" gnus-summary-remove-bookmark
1431     "#" gnus-summary-mark-as-processable
1432     "\M-#" gnus-summary-unmark-as-processable
1433     "S" gnus-summary-limit-include-expunged
1434     "C" gnus-summary-catchup
1435     "H" gnus-summary-catchup-to-here
1436     "\C-c" gnus-summary-catchup-all
1437     "k" gnus-summary-kill-same-subject-and-select
1438     "K" gnus-summary-kill-same-subject
1439     "P" gnus-uu-mark-map)
1440
1441   (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1442     "c" gnus-summary-clear-above
1443     "u" gnus-summary-tick-above
1444     "m" gnus-summary-mark-above
1445     "k" gnus-summary-kill-below)
1446
1447   (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1448     "/" gnus-summary-limit-to-subject
1449     "n" gnus-summary-limit-to-articles
1450     "w" gnus-summary-pop-limit
1451     "s" gnus-summary-limit-to-subject
1452     "a" gnus-summary-limit-to-author
1453     "u" gnus-summary-limit-to-unread
1454     "m" gnus-summary-limit-to-marks
1455     "M" gnus-summary-limit-exclude-marks
1456     "v" gnus-summary-limit-to-score
1457     "*" gnus-summary-limit-include-cached
1458     "D" gnus-summary-limit-include-dormant
1459     "T" gnus-summary-limit-include-thread
1460     "d" gnus-summary-limit-exclude-dormant
1461     "t" gnus-summary-limit-to-age
1462     "x" gnus-summary-limit-to-extra
1463     "E" gnus-summary-limit-include-expunged
1464     "c" gnus-summary-limit-exclude-childless-dormant
1465     "C" gnus-summary-limit-mark-excluded-as-read)
1466
1467   (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1468     "n" gnus-summary-next-unread-article
1469     "p" gnus-summary-prev-unread-article
1470     "N" gnus-summary-next-article
1471     "P" gnus-summary-prev-article
1472     "\C-n" gnus-summary-next-same-subject
1473     "\C-p" gnus-summary-prev-same-subject
1474     "\M-n" gnus-summary-next-unread-subject
1475     "\M-p" gnus-summary-prev-unread-subject
1476     "f" gnus-summary-first-unread-article
1477     "b" gnus-summary-best-unread-article
1478     "j" gnus-summary-goto-article
1479     "g" gnus-summary-goto-subject
1480     "l" gnus-summary-goto-last-article
1481     "o" gnus-summary-pop-article)
1482
1483   (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1484     "k" gnus-summary-kill-thread
1485     "l" gnus-summary-lower-thread
1486     "i" gnus-summary-raise-thread
1487     "T" gnus-summary-toggle-threads
1488     "t" gnus-summary-rethread-current
1489     "^" gnus-summary-reparent-thread
1490     "s" gnus-summary-show-thread
1491     "S" gnus-summary-show-all-threads
1492     "h" gnus-summary-hide-thread
1493     "H" gnus-summary-hide-all-threads
1494     "n" gnus-summary-next-thread
1495     "p" gnus-summary-prev-thread
1496     "u" gnus-summary-up-thread
1497     "o" gnus-summary-top-thread
1498     "d" gnus-summary-down-thread
1499     "#" gnus-uu-mark-thread
1500     "\M-#" gnus-uu-unmark-thread)
1501
1502   (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1503     "g" gnus-summary-prepare
1504     "c" gnus-summary-insert-cached-articles)
1505
1506   (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1507     "c" gnus-summary-catchup-and-exit
1508     "C" gnus-summary-catchup-all-and-exit
1509     "E" gnus-summary-exit-no-update
1510     "Q" gnus-summary-exit
1511     "Z" gnus-summary-exit
1512     "n" gnus-summary-catchup-and-goto-next-group
1513     "R" gnus-summary-reselect-current-group
1514     "G" gnus-summary-rescan-group
1515     "N" gnus-summary-next-group
1516     "s" gnus-summary-save-newsrc
1517     "P" gnus-summary-prev-group)
1518
1519   (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1520     " " gnus-summary-next-page
1521     "n" gnus-summary-next-page
1522     "\177" gnus-summary-prev-page
1523     [delete] gnus-summary-prev-page
1524     "p" gnus-summary-prev-page
1525     "\r" gnus-summary-scroll-up
1526     "\M-\r" gnus-summary-scroll-down
1527     "<" gnus-summary-beginning-of-article
1528     ">" gnus-summary-end-of-article
1529     "b" gnus-summary-beginning-of-article
1530     "e" gnus-summary-end-of-article
1531     "^" gnus-summary-refer-parent-article
1532     "r" gnus-summary-refer-parent-article
1533     "D" gnus-summary-enter-digest-group
1534     "R" gnus-summary-refer-references
1535     "T" gnus-summary-refer-thread
1536     "g" gnus-summary-show-article
1537     "s" gnus-summary-isearch-article
1538     "P" gnus-summary-print-article
1539     "t" gnus-article-babel)
1540
1541   (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1542     "b" gnus-article-add-buttons
1543     "B" gnus-article-add-buttons-to-head
1544     "o" gnus-article-treat-overstrike
1545     "e" gnus-article-emphasize
1546     "w" gnus-article-fill-cited-article
1547     "Q" gnus-article-fill-long-lines
1548     "C" gnus-article-capitalize-sentences
1549     "c" gnus-article-remove-cr
1550     "q" gnus-article-de-quoted-unreadable
1551     "6" gnus-article-de-base64-unreadable
1552     "Z" gnus-article-decode-HZ
1553     "h" gnus-article-wash-html
1554     "f" gnus-article-display-x-face
1555     "l" gnus-summary-stop-page-breaking
1556     "r" gnus-summary-caesar-message
1557     "t" gnus-summary-toggle-header
1558     "v" gnus-summary-verbose-headers
1559     "H" gnus-article-strip-headers-in-body
1560     "d" gnus-article-treat-dumbquotes)
1561
1562   (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1563     "a" gnus-article-hide
1564     "h" gnus-article-hide-headers
1565     "b" gnus-article-hide-boring-headers
1566     "s" gnus-article-hide-signature
1567     "c" gnus-article-hide-citation
1568     "C" gnus-article-hide-citation-in-followups
1569     "l" gnus-article-hide-list-identifiers
1570     "p" gnus-article-hide-pgp
1571     "B" gnus-article-strip-banner
1572     "P" gnus-article-hide-pem
1573     "\C-c" gnus-article-hide-citation-maybe)
1574
1575   (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1576     "a" gnus-article-highlight
1577     "h" gnus-article-highlight-headers
1578     "c" gnus-article-highlight-citation
1579     "s" gnus-article-highlight-signature)
1580
1581   (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
1582     "w" gnus-article-decode-mime-words
1583     "c" gnus-article-decode-charset
1584     "v" gnus-mime-view-all-parts
1585     "b" gnus-article-view-part)
1586
1587   (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1588     "z" gnus-article-date-ut
1589     "u" gnus-article-date-ut
1590     "l" gnus-article-date-local
1591     "e" gnus-article-date-lapsed
1592     "o" gnus-article-date-original
1593     "i" gnus-article-date-iso8601
1594     "s" gnus-article-date-user)
1595
1596   (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1597     "t" gnus-article-remove-trailing-blank-lines
1598     "l" gnus-article-strip-leading-blank-lines
1599     "m" gnus-article-strip-multiple-blank-lines
1600     "a" gnus-article-strip-blank-lines
1601     "A" gnus-article-strip-all-blank-lines
1602     "s" gnus-article-strip-leading-space
1603     "e" gnus-article-strip-trailing-space)
1604
1605   (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1606     "v" gnus-version
1607     "f" gnus-summary-fetch-faq
1608     "d" gnus-summary-describe-group
1609     "h" gnus-summary-describe-briefly
1610     "i" gnus-info-find-node)
1611
1612   (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
1613     "e" gnus-summary-expire-articles
1614     "\M-\C-e" gnus-summary-expire-articles-now
1615     "\177" gnus-summary-delete-article
1616     [delete] gnus-summary-delete-article
1617     [backspace] gnus-summary-delete-article
1618     "m" gnus-summary-move-article
1619     "r" gnus-summary-respool-article
1620     "w" gnus-summary-edit-article
1621     "c" gnus-summary-copy-article
1622     "B" gnus-summary-crosspost-article
1623     "q" gnus-summary-respool-query
1624     "t" gnus-summary-respool-trace
1625     "i" gnus-summary-import-article
1626     "p" gnus-summary-article-posted-p)
1627
1628   (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
1629     "o" gnus-summary-save-article
1630     "m" gnus-summary-save-article-mail
1631     "F" gnus-summary-write-article-file
1632     "r" gnus-summary-save-article-rmail
1633     "f" gnus-summary-save-article-file
1634     "b" gnus-summary-save-article-body-file
1635     "h" gnus-summary-save-article-folder
1636     "v" gnus-summary-save-article-vm
1637     "p" gnus-summary-pipe-output
1638     "s" gnus-soup-add-article)
1639
1640   (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
1641     "b" gnus-summary-display-buttonized
1642     "m" gnus-summary-repair-multipart
1643     "v" gnus-article-view-part
1644     "o" gnus-article-save-part
1645     "c" gnus-article-copy-part
1646     "e" gnus-article-externalize-part
1647     "i" gnus-article-inline-part
1648     "|" gnus-article-pipe-part))
1649
1650 (defun gnus-summary-make-menu-bar ()
1651   (gnus-turn-off-edit-menu 'summary)
1652
1653   (unless (boundp 'gnus-summary-misc-menu)
1654
1655     (easy-menu-define
1656      gnus-summary-kill-menu gnus-summary-mode-map ""
1657      (cons
1658       "Score"
1659       (nconc
1660        (list
1661         ["Enter score..." gnus-summary-score-entry t]
1662         ["Customize" gnus-score-customize t])
1663        (gnus-make-score-map 'increase)
1664        (gnus-make-score-map 'lower)
1665        '(("Mark"
1666           ["Kill below" gnus-summary-kill-below t]
1667           ["Mark above" gnus-summary-mark-above t]
1668           ["Tick above" gnus-summary-tick-above t]
1669           ["Clear above" gnus-summary-clear-above t])
1670          ["Current score" gnus-summary-current-score t]
1671          ["Set score" gnus-summary-set-score t]
1672          ["Switch current score file..." gnus-score-change-score-file t]
1673          ["Set mark below..." gnus-score-set-mark-below t]
1674          ["Set expunge below..." gnus-score-set-expunge-below t]
1675          ["Edit current score file" gnus-score-edit-current-scores t]
1676          ["Edit score file" gnus-score-edit-file t]
1677          ["Trace score" gnus-score-find-trace t]
1678          ["Find words" gnus-score-find-favourite-words t]
1679          ["Rescore buffer" gnus-summary-rescore t]
1680          ["Increase score..." gnus-summary-increase-score t]
1681          ["Lower score..." gnus-summary-lower-score t]))))
1682
1683     ;; Define both the Article menu in the summary buffer and the equivalent
1684     ;; Commands menu in the article buffer here for consistency.
1685     (let ((innards
1686            '(("Hide"
1687               ["All" gnus-article-hide t]
1688               ["Headers" gnus-article-hide-headers t]
1689               ["Signature" gnus-article-hide-signature t]
1690               ["Citation" gnus-article-hide-citation t]
1691               ["List identifiers" gnus-article-hide-list-identifiers t]
1692               ["PGP" gnus-article-hide-pgp t]
1693               ["Banner" gnus-article-strip-banner t]
1694               ["Boring headers" gnus-article-hide-boring-headers t])
1695              ("Highlight"
1696               ["All" gnus-article-highlight t]
1697               ["Headers" gnus-article-highlight-headers t]
1698               ["Signature" gnus-article-highlight-signature t]
1699               ["Citation" gnus-article-highlight-citation t])
1700              ("MIME"
1701               ["Words" gnus-article-decode-mime-words t]
1702               ["Charset" gnus-article-decode-charset t]
1703               ["QP" gnus-article-de-quoted-unreadable t]
1704               ["Base64" gnus-article-de-base64-unreadable t]
1705               ["View all" gnus-mime-view-all-parts t])
1706              ("Date"
1707               ["Local" gnus-article-date-local t]
1708               ["ISO8601" gnus-article-date-iso8601 t]
1709               ["UT" gnus-article-date-ut t]
1710               ["Original" gnus-article-date-original t]
1711               ["Lapsed" gnus-article-date-lapsed t]
1712               ["User-defined" gnus-article-date-user t])
1713              ("Washing"
1714               ("Remove Blanks"
1715                ["Leading" gnus-article-strip-leading-blank-lines t]
1716                ["Multiple" gnus-article-strip-multiple-blank-lines t]
1717                ["Trailing" gnus-article-remove-trailing-blank-lines t]
1718                ["All of the above" gnus-article-strip-blank-lines t]
1719                ["All" gnus-article-strip-all-blank-lines t]
1720                ["Leading space" gnus-article-strip-leading-space t]
1721                ["Trailing space" gnus-article-strip-trailing-space t])
1722               ["Overstrike" gnus-article-treat-overstrike t]
1723               ["Dumb quotes" gnus-article-treat-dumbquotes t]
1724               ["Emphasis" gnus-article-emphasize t]
1725               ["Word wrap" gnus-article-fill-cited-article t]
1726               ["Fill long lines" gnus-article-fill-long-lines t]
1727               ["Capitalize sentences" gnus-article-capitalize-sentences t]
1728               ["CR" gnus-article-remove-cr t]
1729               ["Show X-Face" gnus-article-display-x-face t]
1730               ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
1731               ["Base64" gnus-article-de-base64-unreadable t]
1732               ["Rot 13" gnus-summary-caesar-message t]
1733               ["Unix pipe" gnus-summary-pipe-message t]
1734               ["Add buttons" gnus-article-add-buttons t]
1735               ["Add buttons to head" gnus-article-add-buttons-to-head t]
1736               ["Stop page breaking" gnus-summary-stop-page-breaking t]
1737               ["Verbose header" gnus-summary-verbose-headers t]
1738               ["Toggle header" gnus-summary-toggle-header t]
1739               ["Html" gnus-article-wash-html 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   (make-local-variable 'gnus-summary-line-format)
2099   (make-local-variable 'gnus-summary-line-format-spec)
2100   (make-local-variable 'gnus-summary-dummy-line-format)
2101   (make-local-variable 'gnus-summary-dummy-line-format-spec)
2102   (make-local-variable 'gnus-summary-mark-positions)
2103   (make-local-hook 'pre-command-hook)
2104   (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2105   (gnus-run-hooks 'gnus-summary-mode-hook)
2106   (mm-enable-multibyte-mule4)
2107   (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2108   (gnus-update-summary-mark-positions))
2109
2110 (defun gnus-summary-make-local-variables ()
2111   "Make all the local summary buffer variables."
2112   (let (global)
2113     (dolist (local gnus-summary-local-variables)
2114       (if (consp local)
2115           (progn
2116             (if (eq (cdr local) 'global)
2117                 ;; Copy the global value of the variable.
2118                 (setq global (symbol-value (car local)))
2119               ;; Use the value from the list.
2120               (setq global (eval (cdr local))))
2121             (set (make-local-variable (car local)) global))
2122         ;; Simple nil-valued local variable.
2123         (set (make-local-variable local) nil)))))
2124
2125 (defun gnus-summary-clear-local-variables ()
2126   (let ((locals gnus-summary-local-variables))
2127     (while locals
2128       (if (consp (car locals))
2129           (and (vectorp (caar locals))
2130                (set (caar locals) nil))
2131         (and (vectorp (car locals))
2132              (set (car locals) nil)))
2133       (setq locals (cdr locals)))))
2134
2135 ;; Summary data functions.
2136
2137 (defmacro gnus-data-number (data)
2138   `(car ,data))
2139
2140 (defmacro gnus-data-set-number (data number)
2141   `(setcar ,data ,number))
2142
2143 (defmacro gnus-data-mark (data)
2144   `(nth 1 ,data))
2145
2146 (defmacro gnus-data-set-mark (data mark)
2147   `(setcar (nthcdr 1 ,data) ,mark))
2148
2149 (defmacro gnus-data-pos (data)
2150   `(nth 2 ,data))
2151
2152 (defmacro gnus-data-set-pos (data pos)
2153   `(setcar (nthcdr 2 ,data) ,pos))
2154
2155 (defmacro gnus-data-header (data)
2156   `(nth 3 ,data))
2157
2158 (defmacro gnus-data-set-header (data header)
2159   `(setf (nth 3 ,data) ,header))
2160
2161 (defmacro gnus-data-level (data)
2162   `(nth 4 ,data))
2163
2164 (defmacro gnus-data-unread-p (data)
2165   `(= (nth 1 ,data) gnus-unread-mark))
2166
2167 (defmacro gnus-data-read-p (data)
2168   `(/= (nth 1 ,data) gnus-unread-mark))
2169
2170 (defmacro gnus-data-pseudo-p (data)
2171   `(consp (nth 3 ,data)))
2172
2173 (defmacro gnus-data-find (number)
2174   `(assq ,number gnus-newsgroup-data))
2175
2176 (defmacro gnus-data-find-list (number &optional data)
2177   `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2178      (memq (assq ,number bdata)
2179            bdata)))
2180
2181 (defmacro gnus-data-make (number mark pos header level)
2182   `(list ,number ,mark ,pos ,header ,level))
2183
2184 (defun gnus-data-enter (after-article number mark pos header level offset)
2185   (let ((data (gnus-data-find-list after-article)))
2186     (unless data
2187       (error "No such article: %d" after-article))
2188     (setcdr data (cons (gnus-data-make number mark pos header level)
2189                        (cdr data)))
2190     (setq gnus-newsgroup-data-reverse nil)
2191     (gnus-data-update-list (cddr data) offset)))
2192
2193 (defun gnus-data-enter-list (after-article list &optional offset)
2194   (when list
2195     (let ((data (and after-article (gnus-data-find-list after-article)))
2196           (ilist list))
2197       (if (not (or data
2198                    after-article))
2199           (let ((odata gnus-newsgroup-data))
2200             (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2201             (when offset
2202               (gnus-data-update-list odata offset)))
2203         ;; Find the last element in the list to be spliced into the main
2204         ;; list.
2205         (while (cdr list)
2206           (setq list (cdr list)))
2207         (if (not data)
2208             (progn
2209               (setcdr list gnus-newsgroup-data)
2210               (setq gnus-newsgroup-data ilist)
2211               (when offset
2212                 (gnus-data-update-list (cdr list) offset)))
2213           (setcdr list (cdr data))
2214           (setcdr data ilist)
2215           (when offset
2216             (gnus-data-update-list (cdr list) offset))))
2217       (setq gnus-newsgroup-data-reverse nil))))
2218
2219 (defun gnus-data-remove (article &optional offset)
2220   (let ((data gnus-newsgroup-data))
2221     (if (= (gnus-data-number (car data)) article)
2222         (progn
2223           (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2224                 gnus-newsgroup-data-reverse nil)
2225           (when offset
2226             (gnus-data-update-list gnus-newsgroup-data offset)))
2227       (while (cdr data)
2228         (when (= (gnus-data-number (cadr data)) article)
2229           (setcdr data (cddr data))
2230           (when offset
2231             (gnus-data-update-list (cdr data) offset))
2232           (setq data nil
2233                 gnus-newsgroup-data-reverse nil))
2234         (setq data (cdr data))))))
2235
2236 (defmacro gnus-data-list (backward)
2237   `(if ,backward
2238        (or gnus-newsgroup-data-reverse
2239            (setq gnus-newsgroup-data-reverse
2240                  (reverse gnus-newsgroup-data)))
2241      gnus-newsgroup-data))
2242
2243 (defun gnus-data-update-list (data offset)
2244   "Add OFFSET to the POS of all data entries in DATA."
2245   (setq gnus-newsgroup-data-reverse nil)
2246   (while data
2247     (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2248     (setq data (cdr data))))
2249
2250 (defun gnus-summary-article-pseudo-p (article)
2251   "Say whether this article is a pseudo article or not."
2252   (not (vectorp (gnus-data-header (gnus-data-find article)))))
2253
2254 (defmacro gnus-summary-article-sparse-p (article)
2255   "Say whether this article is a sparse article or not."
2256   `(memq ,article gnus-newsgroup-sparse))
2257
2258 (defmacro gnus-summary-article-ancient-p (article)
2259   "Say whether this article is a sparse article or not."
2260   `(memq ,article gnus-newsgroup-ancient))
2261
2262 (defun gnus-article-parent-p (number)
2263   "Say whether this article is a parent or not."
2264   (let ((data (gnus-data-find-list number)))
2265     (and (cdr data)                     ; There has to be an article after...
2266          (< (gnus-data-level (car data)) ; And it has to have a higher level.
2267             (gnus-data-level (nth 1 data))))))
2268
2269 (defun gnus-article-children (number)
2270   "Return a list of all children to NUMBER."
2271   (let* ((data (gnus-data-find-list number))
2272          (level (gnus-data-level (car data)))
2273          children)
2274     (setq data (cdr data))
2275     (while (and data
2276                 (= (gnus-data-level (car data)) (1+ level)))
2277       (push (gnus-data-number (car data)) children)
2278       (setq data (cdr data)))
2279     children))
2280
2281 (defmacro gnus-summary-skip-intangible ()
2282   "If the current article is intangible, then jump to a different article."
2283   '(let ((to (get-text-property (point) 'gnus-intangible)))
2284      (and to (gnus-summary-goto-subject to))))
2285
2286 (defmacro gnus-summary-article-intangible-p ()
2287   "Say whether this article is intangible or not."
2288   '(get-text-property (point) 'gnus-intangible))
2289
2290 (defun gnus-article-read-p (article)
2291   "Say whether ARTICLE is read or not."
2292   (not (or (memq article gnus-newsgroup-marked)
2293            (memq article gnus-newsgroup-unreads)
2294            (memq article gnus-newsgroup-unselected)
2295            (memq article gnus-newsgroup-dormant))))
2296
2297 ;; Some summary mode macros.
2298
2299 (defmacro gnus-summary-article-number ()
2300   "The article number of the article on the current line.
2301 If there isn's an article number here, then we return the current
2302 article number."
2303   '(progn
2304      (gnus-summary-skip-intangible)
2305      (or (get-text-property (point) 'gnus-number)
2306          (gnus-summary-last-subject))))
2307
2308 (defmacro gnus-summary-article-header (&optional number)
2309   "Return the header of article NUMBER."
2310   `(gnus-data-header (gnus-data-find
2311                       ,(or number '(gnus-summary-article-number)))))
2312
2313 (defmacro gnus-summary-thread-level (&optional number)
2314   "Return the level of thread that starts with article NUMBER."
2315   `(if (and (eq gnus-summary-make-false-root 'dummy)
2316             (get-text-property (point) 'gnus-intangible))
2317        0
2318      (gnus-data-level (gnus-data-find
2319                        ,(or number '(gnus-summary-article-number))))))
2320
2321 (defmacro gnus-summary-article-mark (&optional number)
2322   "Return the mark of article NUMBER."
2323   `(gnus-data-mark (gnus-data-find
2324                     ,(or number '(gnus-summary-article-number)))))
2325
2326 (defmacro gnus-summary-article-pos (&optional number)
2327   "Return the position of the line of article NUMBER."
2328   `(gnus-data-pos (gnus-data-find
2329                    ,(or number '(gnus-summary-article-number)))))
2330
2331 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2332 (defmacro gnus-summary-article-subject (&optional number)
2333   "Return current subject string or nil if nothing."
2334   `(let ((headers
2335           ,(if number
2336                `(gnus-data-header (assq ,number gnus-newsgroup-data))
2337              '(gnus-data-header (assq (gnus-summary-article-number)
2338                                       gnus-newsgroup-data)))))
2339      (and headers
2340           (vectorp headers)
2341           (mail-header-subject headers))))
2342
2343 (defmacro gnus-summary-article-score (&optional number)
2344   "Return current article score."
2345   `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2346                   gnus-newsgroup-scored))
2347        gnus-summary-default-score 0))
2348
2349 (defun gnus-summary-article-children (&optional number)
2350   "Return a list of article numbers that are children of article NUMBER."
2351   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2352          (level (gnus-data-level (car data)))
2353          l children)
2354     (while (and (setq data (cdr data))
2355                 (> (setq l (gnus-data-level (car data))) level))
2356       (and (= (1+ level) l)
2357            (push (gnus-data-number (car data))
2358                  children)))
2359     (nreverse children)))
2360
2361 (defun gnus-summary-article-parent (&optional number)
2362   "Return the article number of the parent of article NUMBER."
2363   (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2364                                     (gnus-data-list t)))
2365          (level (gnus-data-level (car data))))
2366     (if (zerop level)
2367         ()                              ; This is a root.
2368       ;; We search until we find an article with a level less than
2369       ;; this one.  That function has to be the parent.
2370       (while (and (setq data (cdr data))
2371                   (not (< (gnus-data-level (car data)) level))))
2372       (and data (gnus-data-number (car data))))))
2373
2374 (defun gnus-unread-mark-p (mark)
2375   "Say whether MARK is the unread mark."
2376   (= mark gnus-unread-mark))
2377
2378 (defun gnus-read-mark-p (mark)
2379   "Say whether MARK is one of the marks that mark as read.
2380 This is all marks except unread, ticked, dormant, and expirable."
2381   (not (or (= mark gnus-unread-mark)
2382            (= mark gnus-ticked-mark)
2383            (= mark gnus-dormant-mark)
2384            (= mark gnus-expirable-mark))))
2385
2386 (defmacro gnus-article-mark (number)
2387   "Return the MARK of article NUMBER.
2388 This macro should only be used when computing the mark the \"first\"
2389 time; i.e., when generating the summary lines.  After that,
2390 `gnus-summary-article-mark' should be used to examine the
2391 marks of articles."
2392   `(cond
2393     ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
2394     ((memq ,number gnus-newsgroup-undownloaded) gnus-undownloaded-mark)
2395     ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
2396     ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
2397     ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
2398     ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
2399     ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
2400     (t (or (cdr (assq ,number gnus-newsgroup-reads))
2401            gnus-ancient-mark))))
2402
2403 ;; Saving hidden threads.
2404
2405 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
2406 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
2407
2408 (defmacro gnus-save-hidden-threads (&rest forms)
2409   "Save hidden threads, eval FORMS, and restore the hidden threads."
2410   (let ((config (make-symbol "config")))
2411     `(let ((,config (gnus-hidden-threads-configuration)))
2412        (unwind-protect
2413            (save-excursion
2414              ,@forms)
2415          (gnus-restore-hidden-threads-configuration ,config)))))
2416
2417 (defun gnus-data-compute-positions ()
2418   "Compute the positions of all articles."
2419   (setq gnus-newsgroup-data-reverse nil)
2420   (let ((data gnus-newsgroup-data))
2421     (save-excursion
2422       (gnus-save-hidden-threads
2423         (gnus-summary-show-all-threads)
2424         (goto-char (point-min))
2425         (while data
2426           (while (get-text-property (point) 'gnus-intangible)
2427             (forward-line 1))
2428           (gnus-data-set-pos (car data) (+ (point) 3))
2429           (setq data (cdr data))
2430           (forward-line 1))))))
2431
2432 (defun gnus-hidden-threads-configuration ()
2433   "Return the current hidden threads configuration."
2434   (save-excursion
2435     (let (config)
2436       (goto-char (point-min))
2437       (while (search-forward "\r" nil t)
2438         (push (1- (point)) config))
2439       config)))
2440
2441 (defun gnus-restore-hidden-threads-configuration (config)
2442   "Restore hidden threads configuration from CONFIG."
2443   (save-excursion
2444     (let (point buffer-read-only)
2445       (while (setq point (pop config))
2446         (when (and (< point (point-max))
2447                    (goto-char point)
2448                    (eq (char-after) ?\n))
2449           (subst-char-in-region point (1+ point) ?\n ?\r))))))
2450
2451 ;; Various summary mode internalish functions.
2452
2453 (defun gnus-mouse-pick-article (e)
2454   (interactive "e")
2455   (mouse-set-point e)
2456   (gnus-summary-next-page nil t))
2457
2458 (defun gnus-summary-set-display-table ()
2459   "Change the display table.
2460 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 buffer-local variables.
2507 They are set to the latest values they had.  These reflect the summary
2508 buffer 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            [0 "" "" "" "" "" 0 0 "" nil]  0 nil 128 t nil "" nil 1)
2587           (goto-char (point-min))
2588           (setq pos (list (cons 'unread (and (search-forward "\200" nil t)
2589                                              (- (point) 2)))))
2590           (goto-char (point-min))
2591           (push (cons 'replied (and (search-forward "\201" nil t)
2592                                     (- (point) 2)))
2593                 pos)
2594           (goto-char (point-min))
2595           (push (cons 'score (and (search-forward "\202" nil t) (- (point) 2)))
2596                 pos)
2597           (goto-char (point-min))
2598           (push (cons 'download
2599                       (and (search-forward "\203" nil t) (- (point) 2)))
2600                 pos)))
2601       (setq gnus-summary-mark-positions pos))))
2602
2603 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
2604   "Insert a dummy root in the summary buffer."
2605   (beginning-of-line)
2606   (gnus-add-text-properties
2607    (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
2608    (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
2609
2610 (defun gnus-summary-from-or-to-or-newsgroups (header)
2611   (let ((to (cdr (assq 'To (mail-header-extra header))))
2612         (newsgroups (cdr (assq 'Newsgroups (mail-header-extra header))))
2613         (mail-parse-charset gnus-newsgroup-charset)
2614         (mail-parse-ignored-charsets
2615          (save-excursion (set-buffer gnus-summary-buffer)
2616                          gnus-newsgroup-ignored-charsets)))
2617     (cond
2618      ((and to
2619            gnus-ignored-from-addresses
2620            (string-match gnus-ignored-from-addresses
2621                          (mail-header-from header)))
2622       (concat "-> "
2623               (or (car (funcall gnus-extract-address-components
2624                                 (funcall
2625                                  gnus-decode-encoded-word-function to)))
2626                   (funcall gnus-decode-encoded-word-function to))))
2627      ((and newsgroups
2628            gnus-ignored-from-addresses
2629            (string-match gnus-ignored-from-addresses
2630                          (mail-header-from header)))
2631       (concat "=> " newsgroups))
2632      (t
2633       (or (car (funcall gnus-extract-address-components
2634                         (mail-header-from header)))
2635           (mail-header-from header))))))
2636
2637 (defun gnus-summary-insert-line (gnus-tmp-header
2638                                  gnus-tmp-level gnus-tmp-current
2639                                  gnus-tmp-unread gnus-tmp-replied
2640                                  gnus-tmp-expirable gnus-tmp-subject-or-nil
2641                                  &optional gnus-tmp-dummy gnus-tmp-score
2642                                  gnus-tmp-process)
2643   (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
2644          (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
2645          (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
2646          (gnus-tmp-score-char
2647           (if (or (null gnus-summary-default-score)
2648                   (<= (abs (- gnus-tmp-score gnus-summary-default-score))
2649                       gnus-summary-zcore-fuzz))
2650               ?  ;Whitespace
2651             (if (< gnus-tmp-score gnus-summary-default-score)
2652                 gnus-score-below-mark gnus-score-over-mark)))
2653          (gnus-tmp-replied
2654           (cond (gnus-tmp-process gnus-process-mark)
2655                 ((memq gnus-tmp-current gnus-newsgroup-cached)
2656                  gnus-cached-mark)
2657                 (gnus-tmp-replied gnus-replied-mark)
2658                 ((memq gnus-tmp-current gnus-newsgroup-saved)
2659                  gnus-saved-mark)
2660                 (t gnus-unread-mark)))
2661          (gnus-tmp-from (mail-header-from gnus-tmp-header))
2662          (gnus-tmp-name
2663           (cond
2664            ((string-match "<[^>]+> *$" gnus-tmp-from)
2665             (let ((beg (match-beginning 0)))
2666               (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from)
2667                        (substring gnus-tmp-from (1+ (match-beginning 0))
2668                                   (1- (match-end 0))))
2669                   (substring gnus-tmp-from 0 beg))))
2670            ((string-match "(.+)" gnus-tmp-from)
2671             (substring gnus-tmp-from
2672                        (1+ (match-beginning 0)) (1- (match-end 0))))
2673            (t gnus-tmp-from)))
2674          (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
2675          (gnus-tmp-number (mail-header-number gnus-tmp-header))
2676          (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
2677          (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
2678          (buffer-read-only nil))
2679     (when (string= gnus-tmp-name "")
2680       (setq gnus-tmp-name gnus-tmp-from))
2681     (unless (numberp gnus-tmp-lines)
2682       (setq gnus-tmp-lines 0))
2683     (gnus-put-text-property
2684      (point)
2685      (progn (eval gnus-summary-line-format-spec) (point))
2686      'gnus-number gnus-tmp-number)
2687     (when (gnus-visual-p 'summary-highlight 'highlight)
2688       (forward-line -1)
2689       (gnus-run-hooks 'gnus-summary-update-hook)
2690       (forward-line 1))))
2691
2692 (defun gnus-summary-update-line (&optional dont-update)
2693   "Update summary line after change."
2694   (when (and gnus-summary-default-score
2695              (not gnus-summary-inhibit-highlight))
2696     (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
2697            (article (gnus-summary-article-number))
2698            (score (gnus-summary-article-score article)))
2699       (unless dont-update
2700         (if (and gnus-summary-mark-below
2701                  (< (gnus-summary-article-score)
2702                     gnus-summary-mark-below))
2703             ;; This article has a low score, so we mark it as read.
2704             (when (memq article gnus-newsgroup-unreads)
2705               (gnus-summary-mark-article-as-read gnus-low-score-mark))
2706           (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
2707             ;; This article was previously marked as read on account
2708             ;; of a low score, but now it has risen, so we mark it as
2709             ;; unread.
2710             (gnus-summary-mark-article-as-unread gnus-unread-mark)))
2711         (gnus-summary-update-mark
2712          (if (or (null gnus-summary-default-score)
2713                  (<= (abs (- score gnus-summary-default-score))
2714                      gnus-summary-zcore-fuzz))
2715              ?  ;Whitespace
2716            (if (< score gnus-summary-default-score)
2717                gnus-score-below-mark gnus-score-over-mark))
2718          'score))
2719       ;; Do visual highlighting.
2720       (when (gnus-visual-p 'summary-highlight 'highlight)
2721         (gnus-run-hooks 'gnus-summary-update-hook)))))
2722
2723 (defvar gnus-tmp-new-adopts nil)
2724
2725 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
2726   "Return the number of articles in THREAD.
2727 This may be 0 in some cases -- if none of the articles in
2728 the thread are to be displayed."
2729   (let* ((number
2730           ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
2731           (cond
2732            ((not (listp thread))
2733             1)
2734            ((and (consp thread) (cdr thread))
2735             (apply
2736              '+ 1 (mapcar
2737                    'gnus-summary-number-of-articles-in-thread (cdr thread))))
2738            ((null thread)
2739             1)
2740            ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
2741             1)
2742            (t 0))))
2743     (when (and level (zerop level) gnus-tmp-new-adopts)
2744       (incf number
2745             (apply '+ (mapcar
2746                        'gnus-summary-number-of-articles-in-thread
2747                        gnus-tmp-new-adopts))))
2748     (if char
2749         (if (> number 1) gnus-not-empty-thread-mark
2750           gnus-empty-thread-mark)
2751       number)))
2752
2753 (defun gnus-summary-set-local-parameters (group)
2754   "Go through the local params of GROUP and set all variable specs in that list."
2755   (let ((params (gnus-group-find-parameter group))
2756         elem)
2757     (while params
2758       (setq elem (car params)
2759             params (cdr params))
2760       (and (consp elem)                 ; Has to be a cons.
2761            (consp (cdr elem))           ; The cdr has to be a list.
2762            (symbolp (car elem))         ; Has to be a symbol in there.
2763            (not (memq (car elem) '(quit-config))) ; Ignore quit-config.
2764            (ignore-errors               ; So we set it.
2765              (make-local-variable (car elem))
2766              (set (car elem) (eval (nth 1 elem))))))))
2767
2768 (defun gnus-summary-read-group (group &optional show-all no-article
2769                                       kill-buffer no-display backward
2770                                       select-articles)
2771   "Start reading news in newsgroup GROUP.
2772 If SHOW-ALL is non-nil, already read articles are also listed.
2773 If NO-ARTICLE is non-nil, no article is selected initially.
2774 If NO-DISPLAY, don't generate a summary buffer."
2775   (let (result)
2776     (while (and group
2777                 (null (setq result
2778                             (let ((gnus-auto-select-next nil))
2779                               (or (gnus-summary-read-group-1
2780                                    group show-all no-article
2781                                    kill-buffer no-display
2782                                    select-articles)
2783                                   (setq show-all nil
2784                                         select-articles nil)))))
2785                 (eq gnus-auto-select-next 'quietly))
2786       (set-buffer gnus-group-buffer)
2787       ;; The entry function called above goes to the next
2788       ;; group automatically, so we go two groups back
2789       ;; if we are searching for the previous group.
2790       (when backward
2791         (gnus-group-prev-unread-group 2))
2792       (if (not (equal group (gnus-group-group-name)))
2793           (setq group (gnus-group-group-name))
2794         (setq group nil)))
2795     result))
2796
2797 (defun gnus-summary-read-group-1 (group show-all no-article
2798                                         kill-buffer no-display
2799                                         &optional select-articles)
2800   ;; Killed foreign groups can't be entered.
2801   (when (and (not (gnus-group-native-p group))
2802              (not (gnus-gethash group gnus-newsrc-hashtb)))
2803     (error "Dead non-native groups can't be entered"))
2804   (gnus-message 5 "Retrieving newsgroup: %s..." group)
2805   (let* ((new-group (gnus-summary-setup-buffer group))
2806          (quit-config (gnus-group-quit-config group))
2807          (did-select (and new-group (gnus-select-newsgroup
2808                                      group show-all select-articles))))
2809     (cond
2810      ;; This summary buffer exists already, so we just select it.
2811      ((not new-group)
2812       (gnus-set-global-variables)
2813       (when kill-buffer
2814         (gnus-kill-or-deaden-summary kill-buffer))
2815       (gnus-configure-windows 'summary 'force)
2816       (gnus-set-mode-line 'summary)
2817       (gnus-summary-position-point)
2818       (message "")
2819       t)
2820      ;; We couldn't select this group.
2821      ((null did-select)
2822       (when (and (eq major-mode 'gnus-summary-mode)
2823                  (not (equal (current-buffer) kill-buffer)))
2824         (kill-buffer (current-buffer))
2825         (if (not quit-config)
2826             (progn
2827               ;; Update the info -- marks might need to be removed,
2828               ;; for instance.
2829               (gnus-summary-update-info)
2830               (set-buffer gnus-group-buffer)
2831               (gnus-group-jump-to-group group)
2832               (gnus-group-next-unread-group 1))
2833           (gnus-handle-ephemeral-exit quit-config)))
2834       (gnus-message 3 "Can't select group")
2835       nil)
2836      ;; The user did a `C-g' while prompting for number of articles,
2837      ;; so we exit this group.
2838      ((eq did-select 'quit)
2839       (and (eq major-mode 'gnus-summary-mode)
2840            (not (equal (current-buffer) kill-buffer))
2841            (kill-buffer (current-buffer)))
2842       (when kill-buffer
2843         (gnus-kill-or-deaden-summary kill-buffer))
2844       (if (not quit-config)
2845           (progn
2846             (set-buffer gnus-group-buffer)
2847             (gnus-group-jump-to-group group)
2848             (gnus-group-next-unread-group 1)
2849             (gnus-configure-windows 'group 'force))
2850         (gnus-handle-ephemeral-exit quit-config))
2851       ;; Finally signal the quit.
2852       (signal 'quit nil))
2853      ;; The group was successfully selected.
2854      (t
2855       (gnus-set-global-variables)
2856       ;; Save the active value in effect when the group was entered.
2857       (setq gnus-newsgroup-active
2858             (gnus-copy-sequence
2859              (gnus-active gnus-newsgroup-name)))
2860       ;; You can change the summary buffer in some way with this hook.
2861       (gnus-run-hooks 'gnus-select-group-hook)
2862       ;; Set any local variables in the group parameters.
2863       (gnus-summary-set-local-parameters gnus-newsgroup-name)
2864       (gnus-update-format-specifications
2865        nil 'summary 'summary-mode 'summary-dummy)
2866       (gnus-update-summary-mark-positions)
2867       ;; Do score processing.
2868       (when gnus-use-scoring
2869         (gnus-possibly-score-headers))
2870       ;; Check whether to fill in the gaps in the threads.
2871       (when gnus-build-sparse-threads
2872         (gnus-build-sparse-threads))
2873       ;; Find the initial limit.
2874       (if gnus-show-threads
2875           (if show-all
2876               (let ((gnus-newsgroup-dormant nil))
2877                 (gnus-summary-initial-limit show-all))
2878             (gnus-summary-initial-limit show-all))
2879         ;; When untreaded, all articles are always shown.
2880         (setq gnus-newsgroup-limit
2881               (mapcar
2882                (lambda (header) (mail-header-number header))
2883                gnus-newsgroup-headers)))
2884       ;; Generate the summary buffer.
2885       (unless no-display
2886         (gnus-summary-prepare))
2887       (when gnus-use-trees
2888         (gnus-tree-open group)
2889         (setq gnus-summary-highlight-line-function
2890               'gnus-tree-highlight-article))
2891       ;; If the summary buffer is empty, but there are some low-scored
2892       ;; articles or some excluded dormants, we include these in the
2893       ;; buffer.
2894       (when (and (zerop (buffer-size))
2895                  (not no-display))
2896         (cond (gnus-newsgroup-dormant
2897                (gnus-summary-limit-include-dormant))
2898               ((and gnus-newsgroup-scored show-all)
2899                (gnus-summary-limit-include-expunged t))))
2900       ;; Function `gnus-apply-kill-file' must be called in this hook.
2901       (gnus-run-hooks 'gnus-apply-kill-hook)
2902       (if (and (zerop (buffer-size))
2903                (not no-display))
2904           (progn
2905             ;; This newsgroup is empty.
2906             (gnus-summary-catchup-and-exit nil t)
2907             (gnus-message 6 "No unread news")
2908             (when kill-buffer
2909               (gnus-kill-or-deaden-summary kill-buffer))
2910             ;; Return nil from this function.
2911             nil)
2912         ;; Hide conversation thread subtrees.  We cannot do this in
2913         ;; gnus-summary-prepare-hook since kill processing may not
2914         ;; work with hidden articles.
2915         (and gnus-show-threads
2916              gnus-thread-hide-subtree
2917              (gnus-summary-hide-all-threads))
2918         (when kill-buffer
2919           (gnus-kill-or-deaden-summary kill-buffer))
2920         ;; Show first unread article if requested.
2921         (if (and (not no-article)
2922                  (not no-display)
2923                  gnus-newsgroup-unreads
2924                  gnus-auto-select-first)
2925             (progn
2926               (gnus-configure-windows 'summary)
2927               (cond
2928                ((eq gnus-auto-select-first 'best)
2929                 (gnus-summary-best-unread-article))
2930                ((eq gnus-auto-select-first t)
2931                 (gnus-summary-first-unread-article))
2932                ((gnus-functionp gnus-auto-select-first)
2933                 (funcall gnus-auto-select-first))))
2934           ;; Don't select any articles, just move point to the first
2935           ;; article in the group.
2936           (goto-char (point-min))
2937           (gnus-summary-position-point)
2938           (gnus-configure-windows 'summary 'force)
2939           (gnus-set-mode-line 'summary))
2940         (when (get-buffer-window gnus-group-buffer t)
2941           ;; Gotta use windows, because recenter does weird stuff if
2942           ;; the current buffer ain't the displayed window.
2943           (let ((owin (selected-window)))
2944             (select-window (get-buffer-window gnus-group-buffer t))
2945             (when (gnus-group-goto-group group)
2946               (recenter))
2947             (select-window owin)))
2948         ;; Mark this buffer as "prepared".
2949         (setq gnus-newsgroup-prepared t)
2950         (gnus-run-hooks 'gnus-summary-prepared-hook)
2951         t)))))
2952
2953 (defun gnus-summary-prepare ()
2954   "Generate the summary buffer."
2955   (interactive)
2956   (let ((buffer-read-only nil))
2957     (erase-buffer)
2958     (setq gnus-newsgroup-data nil
2959           gnus-newsgroup-data-reverse nil)
2960     (gnus-run-hooks 'gnus-summary-generate-hook)
2961     ;; Generate the buffer, either with threads or without.
2962     (when gnus-newsgroup-headers
2963       (gnus-summary-prepare-threads
2964        (if gnus-show-threads
2965            (gnus-sort-gathered-threads
2966             (funcall gnus-summary-thread-gathering-function
2967                      (gnus-sort-threads
2968                       (gnus-cut-threads (gnus-make-threads)))))
2969          ;; Unthreaded display.
2970          (gnus-sort-articles gnus-newsgroup-headers))))
2971     (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
2972     ;; Call hooks for modifying summary buffer.
2973     (goto-char (point-min))
2974     (gnus-run-hooks 'gnus-summary-prepare-hook)))
2975
2976 (defsubst gnus-general-simplify-subject (subject)
2977   "Simply subject by the same rules as gnus-gather-threads-by-subject."
2978   (setq subject
2979         (cond
2980          ;; Truncate the subject.
2981          (gnus-simplify-subject-functions
2982           (gnus-map-function gnus-simplify-subject-functions subject))
2983          ((numberp gnus-summary-gather-subject-limit)
2984           (setq subject (gnus-simplify-subject-re subject))
2985           (if (> (length subject) gnus-summary-gather-subject-limit)
2986               (substring subject 0 gnus-summary-gather-subject-limit)
2987             subject))
2988          ;; Fuzzily simplify it.
2989          ((eq 'fuzzy gnus-summary-gather-subject-limit)
2990           (gnus-simplify-subject-fuzzy subject))
2991          ;; Just remove the leading "Re:".
2992          (t
2993           (gnus-simplify-subject-re subject))))
2994
2995   (if (and gnus-summary-gather-exclude-subject
2996            (string-match gnus-summary-gather-exclude-subject subject))
2997       nil                               ; This article shouldn't be gathered
2998     subject))
2999
3000 (defun gnus-summary-simplify-subject-query ()
3001   "Query where the respool algorithm would put this article."
3002   (interactive)
3003   (gnus-summary-select-article)
3004   (message (gnus-general-simplify-subject (gnus-summary-article-subject))))
3005
3006 (defun gnus-gather-threads-by-subject (threads)
3007   "Gather threads by looking at Subject headers."
3008   (if (not gnus-summary-make-false-root)
3009       threads
3010     (let ((hashtb (gnus-make-hashtable 1024))
3011           (prev threads)
3012           (result threads)
3013           subject hthread whole-subject)
3014       (while threads
3015         (setq subject (gnus-general-simplify-subject
3016                        (setq whole-subject (mail-header-subject
3017                                             (caar threads)))))
3018         (when subject
3019           (if (setq hthread (gnus-gethash subject hashtb))
3020               (progn
3021                 ;; We enter a dummy root into the thread, if we
3022                 ;; haven't done that already.
3023                 (unless (stringp (caar hthread))
3024                   (setcar hthread (list whole-subject (car hthread))))
3025                 ;; We add this new gathered thread to this gathered
3026                 ;; thread.
3027                 (setcdr (car hthread)
3028                         (nconc (cdar hthread) (list (car threads))))
3029                 ;; Remove it from the list of threads.
3030                 (setcdr prev (cdr threads))
3031                 (setq threads prev))
3032             ;; Enter this thread into the hash table.
3033             (gnus-sethash subject threads hashtb)))
3034         (setq prev threads)
3035         (setq threads (cdr threads)))
3036       result)))
3037
3038 (defun gnus-gather-threads-by-references (threads)
3039   "Gather threads by looking at References headers."
3040   (let ((idhashtb (gnus-make-hashtable 1024))
3041         (thhashtb (gnus-make-hashtable 1024))
3042         (prev threads)
3043         (result threads)
3044         ids references id gthread gid entered ref)
3045     (while threads
3046       (when (setq references (mail-header-references (caar threads)))
3047         (setq id (mail-header-id (caar threads))
3048               ids (gnus-split-references references)
3049               entered nil)
3050         (while (setq ref (pop ids))
3051           (setq ids (delete ref ids))
3052           (if (not (setq gid (gnus-gethash ref idhashtb)))
3053               (progn
3054                 (gnus-sethash ref id idhashtb)
3055                 (gnus-sethash id threads thhashtb))
3056             (setq gthread (gnus-gethash gid thhashtb))
3057             (unless entered
3058               ;; We enter a dummy root into the thread, if we
3059               ;; haven't done that already.
3060               (unless (stringp (caar gthread))
3061                 (setcar gthread (list (mail-header-subject (caar gthread))
3062                                       (car gthread))))
3063               ;; We add this new gathered thread to this gathered
3064               ;; thread.
3065               (setcdr (car gthread)
3066                       (nconc (cdar gthread) (list (car threads)))))
3067             ;; Add it into the thread hash table.
3068             (gnus-sethash id gthread thhashtb)
3069             (setq entered t)
3070             ;; Remove it from the list of threads.
3071             (setcdr prev (cdr threads))
3072             (setq threads prev))))
3073       (setq prev threads)
3074       (setq threads (cdr threads)))
3075     result))
3076
3077 (defun gnus-sort-gathered-threads (threads)
3078   "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3079   (let ((result threads))
3080     (while threads
3081       (when (stringp (caar threads))
3082         (setcdr (car threads)
3083                 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3084       (setq threads (cdr threads)))
3085     result))
3086
3087 (defun gnus-thread-loop-p (root thread)
3088   "Say whether ROOT is in THREAD."
3089   (let ((stack (list thread))
3090         (infloop 0)
3091         th)
3092     (while (setq thread (pop stack))
3093       (setq th (cdr thread))
3094       (while (and th
3095                   (not (eq (caar th) root)))
3096         (pop th))
3097       (if th
3098           ;; We have found a loop.
3099           (let (ref-dep)
3100             (setcdr thread (delq (car th) (cdr thread)))
3101             (if (boundp (setq ref-dep (intern "none"
3102                                               gnus-newsgroup-dependencies)))
3103                 (setcdr (symbol-value ref-dep)
3104                         (nconc (cdr (symbol-value ref-dep))
3105                                (list (car th))))
3106               (set ref-dep (list nil (car th))))
3107             (setq infloop 1
3108                   stack nil))
3109         ;; Push all the subthreads onto the stack.
3110         (push (cdr thread) stack)))
3111     infloop))
3112
3113 (defun gnus-make-threads ()
3114   "Go through the dependency hashtb and find the roots.  Return all threads."
3115   (let (threads)
3116     (while (catch 'infloop
3117              (mapatoms
3118               (lambda (refs)
3119                 ;; Deal with self-referencing References loops.
3120                 (when (and (car (symbol-value refs))
3121                            (not (zerop
3122                                  (apply
3123                                   '+
3124                                   (mapcar
3125                                    (lambda (thread)
3126                                      (gnus-thread-loop-p
3127                                       (car (symbol-value refs)) thread))
3128                                    (cdr (symbol-value refs)))))))
3129                   (setq threads nil)
3130                   (throw 'infloop t))
3131                 (unless (car (symbol-value refs))
3132                   ;; These threads do not refer back to any other articles,
3133                   ;; so they're roots.
3134                   (setq threads (append (cdr (symbol-value refs)) threads))))
3135               gnus-newsgroup-dependencies)))
3136     threads))
3137
3138 ;; Build the thread tree.
3139 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3140   "Enter HEADER into the DEPENDENCIES table if it is not already there.
3141
3142 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3143 if it was already present.
3144
3145 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3146 will not be entered in the DEPENDENCIES table.  Otherwise duplicate
3147 Message-IDs will be renamed be renamed to a unique Message-ID before
3148 being entered.
3149
3150 Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
3151   (let* ((id (mail-header-id header))
3152          (id-dep (and id (intern id dependencies)))
3153          ref ref-dep ref-header)
3154     ;; Enter this `header' in the `dependencies' table.
3155     (cond
3156      ((not id-dep)
3157       (setq header nil))
3158      ;; The first two cases do the normal part: enter a new `header'
3159      ;; in the `dependencies' table.
3160      ((not (boundp id-dep))
3161       (set id-dep (list header)))
3162      ((null (car (symbol-value id-dep)))
3163       (setcar (symbol-value id-dep) header))
3164
3165      ;; From here the `header' was already present in the
3166      ;; `dependencies' table.
3167      (force-new
3168       ;; Overrides an existing entry;
3169       ;; just set the header part of the entry.
3170       (setcar (symbol-value id-dep) header))
3171
3172      ;; Renames the existing `header' to a unique Message-ID.
3173      ((not gnus-summary-ignore-duplicates)
3174       ;; An article with this Message-ID has already been seen.
3175       ;; We rename the Message-ID.
3176       (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3177            (list header))
3178       (mail-header-set-id header id))
3179
3180      ;; The last case ignores an existing entry, except it adds any
3181      ;; additional Xrefs (in case the two articles came from different
3182      ;; servers.
3183      ;; Also sets `header' to `nil' meaning that the `dependencies'
3184      ;; table was *not* modified.
3185      (t
3186       (mail-header-set-xref
3187        (car (symbol-value id-dep))
3188        (concat (or (mail-header-xref (car (symbol-value id-dep)))
3189                    "")
3190                (or (mail-header-xref header) "")))
3191       (setq header nil)))
3192
3193     (when header
3194       ;; First check if that we are not creating a References loop.
3195       (setq ref (gnus-parent-id (mail-header-references header)))
3196       (while (and ref
3197                   (setq ref-dep (intern-soft ref dependencies))
3198                   (boundp ref-dep)
3199                   (setq ref-header (car (symbol-value ref-dep))))
3200         (if (string= id ref)
3201             ;; Yuk!  This is a reference loop.  Make the article be a
3202             ;; root article.
3203             (progn
3204               (mail-header-set-references (car (symbol-value id-dep)) "none")
3205               (setq ref nil))
3206           (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3207       (setq ref (gnus-parent-id (mail-header-references header)))
3208       (setq ref-dep (intern (or ref "none") dependencies))
3209       (if (boundp ref-dep)
3210           (setcdr (symbol-value ref-dep)
3211                   (nconc (cdr (symbol-value ref-dep))
3212                          (list (symbol-value id-dep))))
3213         (set ref-dep (list nil (symbol-value id-dep)))))
3214     header))
3215
3216 (defun gnus-build-sparse-threads ()
3217   (let ((headers gnus-newsgroup-headers)
3218         (mail-parse-charset gnus-newsgroup-charset)
3219         (gnus-summary-ignore-duplicates t)
3220         header references generation relations
3221         subject child end new-child date)
3222     ;; First we create an alist of generations/relations, where
3223     ;; generations is how much we trust the relation, and the relation
3224     ;; is parent/child.
3225     (gnus-message 7 "Making sparse threads...")
3226     (save-excursion
3227       (nnheader-set-temp-buffer " *gnus sparse threads*")
3228       (while (setq header (pop headers))
3229         (when (and (setq references (mail-header-references header))
3230                    (not (string= references "")))
3231           (insert references)
3232           (setq child (mail-header-id header)
3233                 subject (mail-header-subject header)
3234                 date (mail-header-date header)
3235                 generation 0)
3236           (while (search-backward ">" nil t)
3237             (setq end (1+ (point)))
3238             (when (search-backward "<" nil t)
3239               (setq new-child (buffer-substring (point) end))
3240               (push (list (incf generation)
3241                           child (setq child new-child)
3242                           subject date)
3243                     relations)))
3244           (when child
3245             (push (list (1+ generation) child nil subject) relations))
3246           (erase-buffer)))
3247       (kill-buffer (current-buffer)))
3248     ;; Sort over trustworthiness.
3249     (mapcar
3250      (lambda (relation)
3251        (when (gnus-dependencies-add-header
3252               (make-full-mail-header
3253                gnus-reffed-article-number
3254                (nth 3 relation) "" (or (nth 4 relation) "")
3255                (nth 1 relation)
3256                (or (nth 2 relation) "") 0 0 "")
3257               gnus-newsgroup-dependencies nil)
3258          (push gnus-reffed-article-number gnus-newsgroup-limit)
3259          (push gnus-reffed-article-number gnus-newsgroup-sparse)
3260          (push (cons gnus-reffed-article-number gnus-sparse-mark)
3261                gnus-newsgroup-reads)
3262          (decf gnus-reffed-article-number)))
3263      (sort relations 'car-less-than-car))
3264     (gnus-message 7 "Making sparse threads...done")))
3265
3266 (defun gnus-build-old-threads ()
3267   ;; Look at all the articles that refer back to old articles, and
3268   ;; fetch the headers for the articles that aren't there.  This will
3269   ;; build complete threads - if the roots haven't been expired by the
3270   ;; server, that is.
3271   (let ((mail-parse-charset gnus-newsgroup-charset)
3272         id heads)
3273     (mapatoms
3274      (lambda (refs)
3275        (when (not (car (symbol-value refs)))
3276          (setq heads (cdr (symbol-value refs)))
3277          (while heads
3278            (if (memq (mail-header-number (caar heads))
3279                      gnus-newsgroup-dormant)
3280                (setq heads (cdr heads))
3281              (setq id (symbol-name refs))
3282              (while (and (setq id (gnus-build-get-header id))
3283                          (not (car (gnus-id-to-thread id)))))
3284              (setq heads nil)))))
3285      gnus-newsgroup-dependencies)))
3286
3287 ;; This function has to be called with point after the article number
3288 ;; on the beginning of the line.
3289 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
3290   (let ((eol (gnus-point-at-eol))
3291         (buffer (current-buffer))
3292         header)
3293
3294     ;; overview: [num subject from date id refs chars lines misc]
3295     (unwind-protect
3296         (progn
3297           (narrow-to-region (point) eol)
3298           (unless (eobp)
3299             (forward-char))
3300
3301           (setq header
3302                 (make-full-mail-header
3303                  number                 ; number
3304                  (funcall gnus-decode-encoded-word-function
3305                           (nnheader-nov-field)) ; subject
3306                  (funcall gnus-decode-encoded-word-function
3307                           (nnheader-nov-field)) ; from
3308                  (nnheader-nov-field)   ; date
3309                  (nnheader-nov-read-message-id) ; id
3310                  (nnheader-nov-field)   ; refs
3311                  (nnheader-nov-read-integer) ; chars
3312                  (nnheader-nov-read-integer) ; lines
3313                  (unless (eobp)
3314                    (if (looking-at "Xref: ")
3315                        (goto-char (match-end 0)))
3316                    (nnheader-nov-field)) ; Xref
3317                  (nnheader-nov-parse-extra)))) ; extra
3318
3319       (widen))
3320
3321     (when gnus-alter-header-function
3322       (funcall gnus-alter-header-function header))
3323     (gnus-dependencies-add-header header dependencies force-new)))
3324
3325 (defun gnus-build-get-header (id)
3326   "Look through the buffer of NOV lines and find the header to ID.
3327 Enter this line into the dependencies hash table, and return
3328 the id of the parent article (if any)."
3329   (let ((deps gnus-newsgroup-dependencies)
3330         found header)
3331     (prog1
3332         (save-excursion
3333           (set-buffer nntp-server-buffer)
3334           (let ((case-fold-search nil))
3335             (goto-char (point-min))
3336             (while (and (not found)
3337                         (search-forward id nil t))
3338               (beginning-of-line)
3339               (setq found (looking-at
3340                            (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
3341                                    (regexp-quote id))))
3342               (or found (beginning-of-line 2)))
3343             (when found
3344               (beginning-of-line)
3345               (and
3346                (setq header (gnus-nov-parse-line
3347                              (read (current-buffer)) deps))
3348                (gnus-parent-id (mail-header-references header))))))
3349       (when header
3350         (let ((number (mail-header-number header)))
3351           (push number gnus-newsgroup-limit)
3352           (push header gnus-newsgroup-headers)
3353           (if (memq number gnus-newsgroup-unselected)
3354               (progn
3355                 (push number gnus-newsgroup-unreads)
3356                 (setq gnus-newsgroup-unselected
3357                       (delq number gnus-newsgroup-unselected)))
3358             (push number gnus-newsgroup-ancient)))))))
3359
3360 (defun gnus-build-all-threads ()
3361   "Read all the headers."
3362   (let ((gnus-summary-ignore-duplicates t)
3363         (mail-parse-charset gnus-newsgroup-charset)
3364         (dependencies gnus-newsgroup-dependencies)
3365         header article)
3366     (save-excursion
3367       (set-buffer nntp-server-buffer)
3368       (let ((case-fold-search nil))
3369         (goto-char (point-min))
3370         (while (not (eobp))
3371           (ignore-errors
3372             (setq article (read (current-buffer))
3373                   header (gnus-nov-parse-line article dependencies)))
3374           (when header
3375             (save-excursion
3376               (set-buffer gnus-summary-buffer)
3377               (push header gnus-newsgroup-headers)
3378               (if (memq (setq article (mail-header-number header))
3379                         gnus-newsgroup-unselected)
3380                   (progn
3381                     (push article gnus-newsgroup-unreads)
3382                     (setq gnus-newsgroup-unselected
3383                           (delq article gnus-newsgroup-unselected)))
3384                 (push article gnus-newsgroup-ancient)))
3385             (forward-line 1)))))))
3386
3387 (defun gnus-summary-update-article-line (article header)
3388   "Update the line for ARTICLE using HEADERS."
3389   (let* ((id (mail-header-id header))
3390          (thread (gnus-id-to-thread id)))
3391     (unless thread
3392       (error "Article in no thread"))
3393     ;; Update the thread.
3394     (setcar thread header)
3395     (gnus-summary-goto-subject article)
3396     (let* ((datal (gnus-data-find-list article))
3397            (data (car datal))
3398            (length (when (cdr datal)
3399                      (- (gnus-data-pos data)
3400                         (gnus-data-pos (cadr datal)))))
3401            (buffer-read-only nil)
3402            (level (gnus-summary-thread-level)))
3403       (gnus-delete-line)
3404       (gnus-summary-insert-line
3405        header level nil (gnus-article-mark article)
3406        (memq article gnus-newsgroup-replied)
3407        (memq article gnus-newsgroup-expirable)
3408        ;; Only insert the Subject string when it's different
3409        ;; from the previous Subject string.
3410        (if (and
3411             gnus-show-threads
3412             (gnus-subject-equal
3413              (condition-case ()
3414                  (mail-header-subject
3415                   (gnus-data-header
3416                    (cadr
3417                     (gnus-data-find-list
3418                      article
3419                      (gnus-data-list t)))))
3420                ;; Error on the side of excessive subjects.
3421                (error ""))
3422              (mail-header-subject header)))
3423            ""
3424          (mail-header-subject header))
3425        nil (cdr (assq article gnus-newsgroup-scored))
3426        (memq article gnus-newsgroup-processable))
3427       (when length
3428         (gnus-data-update-list
3429          (cdr datal) (- length (- (gnus-data-pos data) (point))))))))
3430
3431 (defun gnus-summary-update-article (article &optional iheader)
3432   "Update ARTICLE in the summary buffer."
3433   (set-buffer gnus-summary-buffer)
3434   (let* ((header (gnus-summary-article-header article))
3435          (id (mail-header-id header))
3436          (data (gnus-data-find article))
3437          (thread (gnus-id-to-thread id))
3438          (references (mail-header-references header))
3439          (parent
3440           (gnus-id-to-thread
3441            (or (gnus-parent-id
3442                 (when (and references
3443                            (not (equal "" references)))
3444                   references))
3445                "none")))
3446          (buffer-read-only nil)
3447          (old (car thread)))
3448     (when thread
3449       (unless iheader
3450         (setcar thread nil)
3451         (when parent
3452           (delq thread parent)))
3453       (if (gnus-summary-insert-subject id header)
3454           ;; Set the (possibly) new article number in the data structure.
3455           (gnus-data-set-number data (gnus-id-to-article id))
3456         (setcar thread old)
3457         nil))))
3458
3459 (defun gnus-rebuild-thread (id &optional line)
3460   "Rebuild the thread containing ID.
3461 If LINE, insert the rebuilt thread starting on line LINE."
3462   (let ((buffer-read-only nil)
3463         old-pos current thread data)
3464     (if (not gnus-show-threads)
3465         (setq thread (list (car (gnus-id-to-thread id))))
3466       ;; Get the thread this article is part of.
3467       (setq thread (gnus-remove-thread id)))
3468     (setq old-pos (gnus-point-at-bol))
3469     (setq current (save-excursion
3470                     (and (zerop (forward-line -1))
3471                          (gnus-summary-article-number))))
3472     ;; If this is a gathered thread, we have to go some re-gathering.
3473     (when (stringp (car thread))
3474       (let ((subject (car thread))
3475             roots thr)
3476         (setq thread (cdr thread))
3477         (while thread
3478           (unless (memq (setq thr (gnus-id-to-thread
3479                                    (gnus-root-id
3480                                     (mail-header-id (caar thread)))))
3481                         roots)
3482             (push thr roots))
3483           (setq thread (cdr thread)))
3484         ;; We now have all (unique) roots.
3485         (if (= (length roots) 1)
3486             ;; All the loose roots are now one solid root.
3487             (setq thread (car roots))
3488           (setq thread (cons subject (gnus-sort-threads roots))))))
3489     (let (threads)
3490       ;; We then insert this thread into the summary buffer.
3491       (when line
3492         (goto-char (point-min))
3493         (forward-line (1- line)))
3494       (let (gnus-newsgroup-data gnus-newsgroup-threads)
3495         (if gnus-show-threads
3496             (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
3497           (gnus-summary-prepare-unthreaded thread))
3498         (setq data (nreverse gnus-newsgroup-data))
3499         (setq threads gnus-newsgroup-threads))
3500       ;; We splice the new data into the data structure.
3501       ;;!!! This is kinda bogus.  We assume that in LINE is non-nil,
3502       ;;!!! then we want to insert at the beginning of the buffer.
3503       ;;!!! That happens to be true with Gnus now, but that may
3504       ;;!!! change in the future.  Perhaps.
3505       (gnus-data-enter-list
3506        (if line nil current) data (- (point) old-pos))
3507       (setq gnus-newsgroup-threads
3508             (nconc threads gnus-newsgroup-threads))
3509       (gnus-data-compute-positions))))
3510
3511 (defun gnus-number-to-header (number)
3512   "Return the header for article NUMBER."
3513   (let ((headers gnus-newsgroup-headers))
3514     (while (and headers
3515                 (not (= number (mail-header-number (car headers)))))
3516       (pop headers))
3517     (when headers
3518       (car headers))))
3519
3520 (defun gnus-parent-headers (in-headers &optional generation)
3521   "Return the headers of the GENERATIONeth parent of HEADERS."
3522   (unless generation
3523     (setq generation 1))
3524   (let ((parent t)
3525         (headers in-headers)
3526         references)
3527     (while (and parent
3528                 (not (zerop generation))
3529                 (setq references (mail-header-references headers)))
3530       (setq headers (if (and references
3531                              (setq parent (gnus-parent-id references)))
3532                         (car (gnus-id-to-thread parent))
3533                       nil))
3534       (decf generation))
3535     (and (not (eq headers in-headers))
3536          headers)))
3537
3538 (defun gnus-id-to-thread (id)
3539   "Return the (sub-)thread where ID appears."
3540   (gnus-gethash id gnus-newsgroup-dependencies))
3541
3542 (defun gnus-id-to-article (id)
3543   "Return the article number of ID."
3544   (let ((thread (gnus-id-to-thread id)))
3545     (when (and thread
3546                (car thread))
3547       (mail-header-number (car thread)))))
3548
3549 (defun gnus-id-to-header (id)
3550   "Return the article headers of ID."
3551   (car (gnus-id-to-thread id)))
3552
3553 (defun gnus-article-displayed-root-p (article)
3554   "Say whether ARTICLE is a root(ish) article."
3555   (let ((level (gnus-summary-thread-level article))
3556         (refs (mail-header-references  (gnus-summary-article-header article)))
3557         particle)
3558     (cond
3559      ((null level) nil)
3560      ((zerop level) t)
3561      ((null refs) t)
3562      ((null (gnus-parent-id refs)) t)
3563      ((and (= 1 level)
3564            (null (setq particle (gnus-id-to-article
3565                                  (gnus-parent-id refs))))
3566            (null (gnus-summary-thread-level particle)))))))
3567
3568 (defun gnus-root-id (id)
3569   "Return the id of the root of the thread where ID appears."
3570   (let (last-id prev)
3571     (while (and id (setq prev (car (gnus-id-to-thread id))))
3572       (setq last-id id
3573             id (gnus-parent-id (mail-header-references prev))))
3574     last-id))
3575
3576 (defun gnus-articles-in-thread (thread)
3577   "Return the list of articles in THREAD."
3578   (cons (mail-header-number (car thread))
3579         (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
3580
3581 (defun gnus-remove-thread (id &optional dont-remove)
3582   "Remove the thread that has ID in it."
3583   (let (headers thread last-id)
3584     ;; First go up in this thread until we find the root.
3585     (setq last-id (gnus-root-id id)
3586           headers (message-flatten-list (gnus-id-to-thread last-id)))
3587     ;; We have now found the real root of this thread.  It might have
3588     ;; been gathered into some loose thread, so we have to search
3589     ;; through the threads to find the thread we wanted.
3590     (let ((threads gnus-newsgroup-threads)
3591           sub)
3592       (while threads
3593         (setq sub (car threads))
3594         (if (stringp (car sub))
3595             ;; This is a gathered thread, so we look at the roots
3596             ;; below it to find whether this article is in this
3597             ;; gathered root.
3598             (progn
3599               (setq sub (cdr sub))
3600               (while sub
3601                 (when (member (caar sub) headers)
3602                   (setq thread (car threads)
3603                         threads nil
3604                         sub nil))
3605                 (setq sub (cdr sub))))
3606           ;; It's an ordinary thread, so we check it.
3607           (when (eq (car sub) (car headers))
3608             (setq thread sub
3609                   threads nil)))
3610         (setq threads (cdr threads)))
3611       ;; If this article is in no thread, then it's a root.
3612       (if thread
3613           (unless dont-remove
3614             (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
3615         (setq thread (gnus-id-to-thread last-id)))
3616       (when thread
3617         (prog1
3618             thread                      ; We return this thread.
3619           (unless dont-remove
3620             (if (stringp (car thread))
3621                 (progn
3622                   ;; If we use dummy roots, then we have to remove the
3623                   ;; dummy root as well.
3624                   (when (eq gnus-summary-make-false-root 'dummy)
3625                     ;; We go to the dummy root by going to
3626                     ;; the first sub-"thread", and then one line up.
3627                     (gnus-summary-goto-article
3628                      (mail-header-number (caadr thread)))
3629                     (forward-line -1)
3630                     (gnus-delete-line)
3631                     (gnus-data-compute-positions))
3632                   (setq thread (cdr thread))
3633                   (while thread
3634                     (gnus-remove-thread-1 (car thread))
3635                     (setq thread (cdr thread))))
3636               (gnus-remove-thread-1 thread))))))))
3637
3638 (defun gnus-remove-thread-1 (thread)
3639   "Remove the thread THREAD recursively."
3640   (let ((number (mail-header-number (pop thread)))
3641         d)
3642     (setq thread (reverse thread))
3643     (while thread
3644       (gnus-remove-thread-1 (pop thread)))
3645     (when (setq d (gnus-data-find number))
3646       (goto-char (gnus-data-pos d))
3647       (gnus-summary-show-thread)
3648       (gnus-data-remove
3649        number
3650        (- (gnus-point-at-bol)
3651           (prog1
3652               (1+ (gnus-point-at-eol))
3653             (gnus-delete-line)))))))
3654
3655 (defun gnus-sort-threads-1 (threads func)
3656   (sort (mapcar (lambda (thread)
3657                   (cons (car thread)
3658                         (and (cdr thread)
3659                              (gnus-sort-threads-1 (cdr thread) func))))
3660                 threads) func))
3661
3662 (defun gnus-sort-threads (threads)
3663   "Sort THREADS."
3664   (if (not gnus-thread-sort-functions)
3665       threads
3666     (gnus-message 8 "Sorting threads...")
3667     (prog1
3668         (gnus-sort-threads-1 
3669          threads 
3670          (gnus-make-sort-function gnus-thread-sort-functions))
3671       (gnus-message 8 "Sorting threads...done"))))
3672
3673 (defun gnus-sort-articles (articles)
3674   "Sort ARTICLES."
3675   (when gnus-article-sort-functions
3676     (gnus-message 7 "Sorting articles...")
3677     (prog1
3678         (setq gnus-newsgroup-headers
3679               (sort articles (gnus-make-sort-function
3680                               gnus-article-sort-functions)))
3681       (gnus-message 7 "Sorting articles...done"))))
3682
3683 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
3684 (defmacro gnus-thread-header (thread)
3685   "Return header of first article in THREAD.
3686 Note that THREAD must never, ever be anything else than a variable -
3687 using some other form will lead to serious barfage."
3688   (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
3689   ;; (8% speedup to gnus-summary-prepare, just for fun :-)
3690   (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
3691         (vector thread) 2))
3692
3693 (defsubst gnus-article-sort-by-number (h1 h2)
3694   "Sort articles by article number."
3695   (< (mail-header-number h1)
3696      (mail-header-number h2)))
3697
3698 (defun gnus-thread-sort-by-number (h1 h2)
3699   "Sort threads by root article number."
3700   (gnus-article-sort-by-number
3701    (gnus-thread-header h1) (gnus-thread-header h2)))
3702
3703 (defsubst gnus-article-sort-by-lines (h1 h2)
3704   "Sort articles by article Lines header."
3705   (< (mail-header-lines h1)
3706      (mail-header-lines h2)))
3707
3708 (defun gnus-thread-sort-by-lines (h1 h2)
3709   "Sort threads by root article Lines header."
3710   (gnus-article-sort-by-lines
3711    (gnus-thread-header h1) (gnus-thread-header h2)))
3712
3713 (defsubst gnus-article-sort-by-chars (h1 h2)
3714   "Sort articles by octet length."
3715   (< (mail-header-chars h1)
3716      (mail-header-chars h2)))
3717
3718 (defun gnus-thread-sort-by-chars (h1 h2)
3719   "Sort threads by root article octet length."
3720   (gnus-article-sort-by-chars
3721    (gnus-thread-header h1) (gnus-thread-header h2)))
3722
3723 (defsubst gnus-article-sort-by-author (h1 h2)
3724   "Sort articles by root author."
3725   (string-lessp
3726    (let ((extract (funcall
3727                    gnus-extract-address-components
3728                    (mail-header-from h1))))
3729      (or (car extract) (cadr extract) ""))
3730    (let ((extract (funcall
3731                    gnus-extract-address-components
3732                    (mail-header-from h2))))
3733      (or (car extract) (cadr extract) ""))))
3734
3735 (defun gnus-thread-sort-by-author (h1 h2)
3736   "Sort threads by root author."
3737   (gnus-article-sort-by-author
3738    (gnus-thread-header h1)  (gnus-thread-header h2)))
3739
3740 (defsubst gnus-article-sort-by-subject (h1 h2)
3741   "Sort articles by root subject."
3742   (string-lessp
3743    (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
3744    (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
3745
3746 (defun gnus-thread-sort-by-subject (h1 h2)
3747   "Sort threads by root subject."
3748   (gnus-article-sort-by-subject
3749    (gnus-thread-header h1) (gnus-thread-header h2)))
3750
3751 (defsubst gnus-article-sort-by-date (h1 h2)
3752   "Sort articles by root article date."
3753   (time-less-p
3754    (gnus-date-get-time (mail-header-date h1))
3755    (gnus-date-get-time (mail-header-date h2))))
3756
3757 (defun gnus-thread-sort-by-date (h1 h2)
3758   "Sort threads by root article date."
3759   (gnus-article-sort-by-date
3760    (gnus-thread-header h1) (gnus-thread-header h2)))
3761
3762 (defsubst gnus-article-sort-by-score (h1 h2)
3763   "Sort articles by root article score.
3764 Unscored articles will be counted as having a score of zero."
3765   (> (or (cdr (assq (mail-header-number h1)
3766                     gnus-newsgroup-scored))
3767          gnus-summary-default-score 0)
3768      (or (cdr (assq (mail-header-number h2)
3769                     gnus-newsgroup-scored))
3770          gnus-summary-default-score 0)))
3771
3772 (defun gnus-thread-sort-by-score (h1 h2)
3773   "Sort threads by root article score."
3774   (gnus-article-sort-by-score
3775    (gnus-thread-header h1) (gnus-thread-header h2)))
3776
3777 (defun gnus-thread-sort-by-total-score (h1 h2)
3778   "Sort threads by the sum of all scores in the thread.
3779 Unscored articles will be counted as having a score of zero."
3780   (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
3781
3782 (defun gnus-thread-total-score (thread)
3783   ;; This function find the total score of THREAD.
3784   (cond ((null thread)
3785          0)
3786         ((consp thread)
3787          (if (stringp (car thread))
3788              (apply gnus-thread-score-function 0
3789                     (mapcar 'gnus-thread-total-score-1 (cdr thread)))
3790            (gnus-thread-total-score-1 thread)))
3791         (t
3792          (gnus-thread-total-score-1 (list thread)))))
3793
3794 (defun gnus-thread-total-score-1 (root)
3795   ;; This function find the total score of the thread below ROOT.
3796   (setq root (car root))
3797   (apply gnus-thread-score-function
3798          (or (append
3799               (mapcar 'gnus-thread-total-score
3800                       (cdr (gnus-id-to-thread (mail-header-id root))))
3801               (when (> (mail-header-number root) 0)
3802                 (list (or (cdr (assq (mail-header-number root)
3803                                      gnus-newsgroup-scored))
3804                           gnus-summary-default-score 0))))
3805              (list gnus-summary-default-score)
3806              '(0))))
3807
3808 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
3809 (defvar gnus-tmp-prev-subject nil)
3810 (defvar gnus-tmp-false-parent nil)
3811 (defvar gnus-tmp-root-expunged nil)
3812 (defvar gnus-tmp-dummy-line nil)
3813
3814 (defvar gnus-tmp-header)
3815 (defun gnus-extra-header (type &optional header)
3816   "Return the extra header of TYPE."
3817   (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
3818       ""))
3819
3820 (defun gnus-summary-prepare-threads (threads)
3821   "Prepare summary buffer from THREADS and indentation LEVEL.
3822 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
3823 or a straight list of headers."
3824   (gnus-message 7 "Generating summary...")
3825
3826   (setq gnus-newsgroup-threads threads)
3827   (beginning-of-line)
3828
3829   (let ((gnus-tmp-level 0)
3830         (default-score (or gnus-summary-default-score 0))
3831         (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
3832         thread number subject stack state gnus-tmp-gathered beg-match
3833         new-roots gnus-tmp-new-adopts thread-end
3834         gnus-tmp-header gnus-tmp-unread
3835         gnus-tmp-replied gnus-tmp-subject-or-nil
3836         gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
3837         gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
3838         gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket)
3839
3840     (setq gnus-tmp-prev-subject nil)
3841
3842     (if (vectorp (car threads))
3843         ;; If this is a straight (sic) list of headers, then a
3844         ;; threaded summary display isn't required, so we just create
3845         ;; an unthreaded one.
3846         (gnus-summary-prepare-unthreaded threads)
3847
3848       ;; Do the threaded display.
3849
3850       (while (or threads stack gnus-tmp-new-adopts new-roots)
3851
3852         (if (and (= gnus-tmp-level 0)
3853                  (or (not stack)
3854                      (= (caar stack) 0))
3855                  (not gnus-tmp-false-parent)
3856                  (or gnus-tmp-new-adopts new-roots))
3857             (if gnus-tmp-new-adopts
3858                 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
3859                       thread (list (car gnus-tmp-new-adopts))
3860                       gnus-tmp-header (caar thread)
3861                       gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
3862               (when new-roots
3863                 (setq thread (list (car new-roots))
3864                       gnus-tmp-header (caar thread)
3865                       new-roots (cdr new-roots))))
3866
3867           (if threads
3868               ;; If there are some threads, we do them before the
3869               ;; threads on the stack.
3870               (setq thread threads
3871                     gnus-tmp-header (caar thread))
3872             ;; There were no current threads, so we pop something off
3873             ;; the stack.
3874             (setq state (car stack)
3875                   gnus-tmp-level (car state)
3876                   thread (cdr state)
3877                   stack (cdr stack)
3878                   gnus-tmp-header (caar thread))))
3879
3880         (setq gnus-tmp-false-parent nil)
3881         (setq gnus-tmp-root-expunged nil)
3882         (setq thread-end nil)
3883
3884         (if (stringp gnus-tmp-header)
3885             ;; The header is a dummy root.
3886             (cond
3887              ((eq gnus-summary-make-false-root 'adopt)
3888               ;; We let the first article adopt the rest.
3889               (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
3890                                                (cddar thread)))
3891               (setq gnus-tmp-gathered
3892                     (nconc (mapcar
3893                             (lambda (h) (mail-header-number (car h)))
3894                             (cddar thread))
3895                            gnus-tmp-gathered))
3896               (setq thread (cons (list (caar thread)
3897                                        (cadar thread))
3898                                  (cdr thread)))
3899               (setq gnus-tmp-level -1
3900                     gnus-tmp-false-parent t))
3901              ((eq gnus-summary-make-false-root 'empty)
3902               ;; We print adopted articles with empty subject fields.
3903               (setq gnus-tmp-gathered
3904                     (nconc (mapcar
3905                             (lambda (h) (mail-header-number (car h)))
3906                             (cddar thread))
3907                            gnus-tmp-gathered))
3908               (setq gnus-tmp-level -1))
3909              ((eq gnus-summary-make-false-root 'dummy)
3910               ;; We remember that we probably want to output a dummy
3911               ;; root.
3912               (setq gnus-tmp-dummy-line gnus-tmp-header)
3913               (setq gnus-tmp-prev-subject gnus-tmp-header))
3914              (t
3915               ;; We do not make a root for the gathered
3916               ;; sub-threads at all.
3917               (setq gnus-tmp-level -1)))
3918
3919           (setq number (mail-header-number gnus-tmp-header)
3920                 subject (mail-header-subject gnus-tmp-header))
3921
3922           (cond
3923            ;; If the thread has changed subject, we might want to make
3924            ;; this subthread into a root.
3925            ((and (null gnus-thread-ignore-subject)
3926                  (not (zerop gnus-tmp-level))
3927                  gnus-tmp-prev-subject
3928                  (not (inline
3929                         (gnus-subject-equal gnus-tmp-prev-subject subject))))
3930             (setq new-roots (nconc new-roots (list (car thread)))
3931                   thread-end t
3932                   gnus-tmp-header nil))
3933            ;; If the article lies outside the current limit,
3934            ;; then we do not display it.
3935            ((not (memq number gnus-newsgroup-limit))
3936             (setq gnus-tmp-gathered
3937                   (nconc (mapcar
3938                           (lambda (h) (mail-header-number (car h)))
3939                           (cdar thread))
3940                          gnus-tmp-gathered))
3941             (setq gnus-tmp-new-adopts (if (cdar thread)
3942                                           (append gnus-tmp-new-adopts
3943                                                   (cdar thread))
3944                                         gnus-tmp-new-adopts)
3945                   thread-end t
3946                   gnus-tmp-header nil)
3947             (when (zerop gnus-tmp-level)
3948               (setq gnus-tmp-root-expunged t)))
3949            ;; Perhaps this article is to be marked as read?
3950            ((and gnus-summary-mark-below
3951                  (< (or (cdr (assq number gnus-newsgroup-scored))
3952                         default-score)
3953                     gnus-summary-mark-below)
3954                  ;; Don't touch sparse articles.
3955                  (not (gnus-summary-article-sparse-p number))
3956                  (not (gnus-summary-article-ancient-p number)))
3957             (setq gnus-newsgroup-unreads
3958                   (delq number gnus-newsgroup-unreads))
3959             (if gnus-newsgroup-auto-expire
3960                 (push number gnus-newsgroup-expirable)
3961               (push (cons number gnus-low-score-mark)
3962                     gnus-newsgroup-reads))))
3963
3964           (when gnus-tmp-header
3965             ;; We may have an old dummy line to output before this
3966             ;; article.
3967             (when (and gnus-tmp-dummy-line
3968                        (gnus-subject-equal
3969                         gnus-tmp-dummy-line
3970                         (mail-header-subject gnus-tmp-header)))
3971               (gnus-summary-insert-dummy-line
3972                gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
3973               (setq gnus-tmp-dummy-line nil))
3974
3975             ;; Compute the mark.
3976             (setq gnus-tmp-unread (gnus-article-mark number))
3977
3978             (push (gnus-data-make number gnus-tmp-unread (1+ (point))
3979                                   gnus-tmp-header gnus-tmp-level)
3980                   gnus-newsgroup-data)
3981
3982             ;; Actually insert the line.
3983             (setq
3984              gnus-tmp-subject-or-nil
3985              (cond
3986               ((and gnus-thread-ignore-subject
3987                     gnus-tmp-prev-subject
3988                     (not (inline (gnus-subject-equal
3989                                   gnus-tmp-prev-subject subject))))
3990                subject)
3991               ((zerop gnus-tmp-level)
3992                (if (and (eq gnus-summary-make-false-root 'empty)
3993                         (memq number gnus-tmp-gathered)
3994                         gnus-tmp-prev-subject
3995                         (inline (gnus-subject-equal
3996                                  gnus-tmp-prev-subject subject)))
3997                    gnus-summary-same-subject
3998                  subject))
3999               (t gnus-summary-same-subject)))
4000             (if (and (eq gnus-summary-make-false-root 'adopt)
4001                      (= gnus-tmp-level 1)
4002                      (memq number gnus-tmp-gathered))
4003                 (setq gnus-tmp-opening-bracket ?\<
4004                       gnus-tmp-closing-bracket ?\>)
4005               (setq gnus-tmp-opening-bracket ?\[
4006                     gnus-tmp-closing-bracket ?\]))
4007             (setq
4008              gnus-tmp-indentation
4009              (aref gnus-thread-indent-array gnus-tmp-level)
4010              gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4011              gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4012                                 gnus-summary-default-score 0)
4013              gnus-tmp-score-char
4014              (if (or (null gnus-summary-default-score)
4015                      (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4016                          gnus-summary-zcore-fuzz))
4017                  ?  ;Whitespace
4018                (if (< gnus-tmp-score gnus-summary-default-score)
4019                    gnus-score-below-mark gnus-score-over-mark))
4020              gnus-tmp-replied
4021              (cond ((memq number gnus-newsgroup-processable)
4022                     gnus-process-mark)
4023                    ((memq number gnus-newsgroup-cached)
4024                     gnus-cached-mark)
4025                    ((memq number gnus-newsgroup-replied)
4026                     gnus-replied-mark)
4027                    ((memq number gnus-newsgroup-saved)
4028                     gnus-saved-mark)
4029                    (t gnus-unread-mark))
4030              gnus-tmp-from (mail-header-from gnus-tmp-header)
4031              gnus-tmp-name
4032              (cond
4033               ((string-match "<[^>]+> *$" gnus-tmp-from)
4034                (setq beg-match (match-beginning 0))
4035                (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from)
4036                         (substring gnus-tmp-from (1+ (match-beginning 0))
4037                                    (1- (match-end 0))))
4038                    (substring gnus-tmp-from 0 beg-match)))
4039               ((string-match "(.+)" gnus-tmp-from)
4040                (substring gnus-tmp-from
4041                           (1+ (match-beginning 0)) (1- (match-end 0))))
4042               (t gnus-tmp-from)))
4043             (when (string= gnus-tmp-name "")
4044               (setq gnus-tmp-name gnus-tmp-from))
4045             (unless (numberp gnus-tmp-lines)
4046               (setq gnus-tmp-lines 0))
4047             (gnus-put-text-property
4048              (point)
4049              (progn (eval gnus-summary-line-format-spec) (point))
4050              'gnus-number number)
4051             (when gnus-visual-p
4052               (forward-line -1)
4053               (gnus-run-hooks 'gnus-summary-update-hook)
4054               (forward-line 1))
4055
4056             (setq gnus-tmp-prev-subject subject)))
4057
4058         (when (nth 1 thread)
4059           (push (cons (max 0 gnus-tmp-level) (nthcdr 1 thread)) stack))
4060         (incf gnus-tmp-level)
4061         (setq threads (if thread-end nil (cdar thread)))
4062         (unless threads
4063           (setq gnus-tmp-level 0)))))
4064   (gnus-message 7 "Generating summary...done"))
4065
4066 (defun gnus-summary-prepare-unthreaded (headers)
4067   "Generate an unthreaded summary buffer based on HEADERS."
4068   (let (header number mark)
4069
4070     (beginning-of-line)
4071
4072     (while headers
4073       ;; We may have to root out some bad articles...
4074       (when (memq (setq number (mail-header-number
4075                                 (setq header (pop headers))))
4076                   gnus-newsgroup-limit)
4077         ;; Mark article as read when it has a low score.
4078         (when (and gnus-summary-mark-below
4079                    (< (or (cdr (assq number gnus-newsgroup-scored))
4080                           gnus-summary-default-score 0)
4081                       gnus-summary-mark-below)
4082                    (not (gnus-summary-article-ancient-p number)))
4083           (setq gnus-newsgroup-unreads
4084                 (delq number gnus-newsgroup-unreads))
4085           (if gnus-newsgroup-auto-expire
4086               (push number gnus-newsgroup-expirable)
4087             (push (cons number gnus-low-score-mark)
4088                   gnus-newsgroup-reads)))
4089
4090         (setq mark (gnus-article-mark number))
4091         (push (gnus-data-make number mark (1+ (point)) header 0)
4092               gnus-newsgroup-data)
4093         (gnus-summary-insert-line
4094          header 0 number
4095          mark (memq number gnus-newsgroup-replied)
4096          (memq number gnus-newsgroup-expirable)
4097          (mail-header-subject header) nil
4098          (cdr (assq number gnus-newsgroup-scored))
4099          (memq number gnus-newsgroup-processable))))))
4100
4101 (defun gnus-summary-remove-list-identifiers ()
4102   "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
4103   (let ((regexp (if (stringp gnus-list-identifiers)
4104                     gnus-list-identifiers
4105                   (mapconcat 'identity gnus-list-identifiers " *\\|"))))
4106     (dolist (header gnus-newsgroup-headers)
4107       (when (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp 
4108                                   " *\\)\\)+\\(Re: +\\)?\\)")
4109                           (mail-header-subject header))
4110         (mail-header-set-subject
4111          header (concat (substring (mail-header-subject header)
4112                                    0 (match-beginning 1))
4113                         (or
4114                          (match-string 3 (mail-header-subject header))
4115                          (match-string 5 (mail-header-subject header)))
4116                         (substring (mail-header-subject header)
4117                                    (match-end 1))))))))
4118
4119 (defun gnus-select-newsgroup (group &optional read-all select-articles)
4120   "Select newsgroup GROUP.
4121 If READ-ALL is non-nil, all articles in the group are selected.
4122 If SELECT-ARTICLES, only select those articles from GROUP."
4123   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4124          ;;!!! Dirty hack; should be removed.
4125          (gnus-summary-ignore-duplicates
4126           (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
4127               t
4128             gnus-summary-ignore-duplicates))
4129          (info (nth 2 entry))
4130          articles fetched-articles cached)
4131
4132     (unless (gnus-check-server
4133              (setq gnus-current-select-method
4134                    (gnus-find-method-for-group group)))
4135       (error "Couldn't open server"))
4136
4137     (or (and entry (not (eq (car entry) t))) ; Either it's active...
4138         (gnus-activate-group group)     ; Or we can activate it...
4139         (progn                          ; Or we bug out.
4140           (when (equal major-mode 'gnus-summary-mode)
4141             (kill-buffer (current-buffer)))
4142           (error "Couldn't request group %s: %s"
4143                  group (gnus-status-message group))))
4144
4145     (unless (gnus-request-group group t)
4146       (when (equal major-mode 'gnus-summary-mode)
4147         (kill-buffer (current-buffer)))
4148       (error "Couldn't request group %s: %s"
4149              group (gnus-status-message group)))
4150
4151     (setq gnus-newsgroup-name group)
4152     (setq gnus-newsgroup-unselected nil)
4153     (setq gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
4154     (gnus-summary-setup-default-charset)
4155
4156     ;; Adjust and set lists of article marks.
4157     (when info
4158       (gnus-adjust-marked-articles info))
4159
4160     ;; Kludge to avoid having cached articles nixed out in virtual groups.
4161     (when (gnus-virtual-group-p group)
4162       (setq cached gnus-newsgroup-cached))
4163
4164     (setq gnus-newsgroup-unreads
4165           (gnus-set-difference
4166            (gnus-set-difference gnus-newsgroup-unreads gnus-newsgroup-marked)
4167            gnus-newsgroup-dormant))
4168
4169     (setq gnus-newsgroup-processable nil)
4170
4171     (gnus-update-read-articles group gnus-newsgroup-unreads)
4172
4173     (if (setq articles select-articles)
4174         (setq gnus-newsgroup-unselected
4175               (gnus-sorted-intersection
4176                gnus-newsgroup-unreads
4177                (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4178       (setq articles (gnus-articles-to-read group read-all)))
4179
4180     (cond
4181      ((null articles)
4182       ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
4183       'quit)
4184      ((eq articles 0) nil)
4185      (t
4186       ;; Init the dependencies hash table.
4187       (setq gnus-newsgroup-dependencies
4188             (gnus-make-hashtable (length articles)))
4189       (gnus-set-global-variables)
4190       ;; Retrieve the headers and read them in.
4191       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
4192       (setq gnus-newsgroup-headers
4193             (if (eq 'nov
4194                     (setq gnus-headers-retrieved-by
4195                           (gnus-retrieve-headers
4196                            articles gnus-newsgroup-name
4197                            ;; We might want to fetch old headers, but
4198                            ;; not if there is only 1 article.
4199                            (and (or (and
4200                                      (not (eq gnus-fetch-old-headers 'some))
4201                                      (not (numberp gnus-fetch-old-headers)))
4202                                     (> (length articles) 1))
4203                                 gnus-fetch-old-headers))))
4204                 (gnus-get-newsgroup-headers-xover
4205                  articles nil nil gnus-newsgroup-name t)
4206               (gnus-get-newsgroup-headers)))
4207       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name)
4208
4209       ;; Kludge to avoid having cached articles nixed out in virtual groups.
4210       (when cached
4211         (setq gnus-newsgroup-cached cached))
4212
4213       ;; Suppress duplicates?
4214       (when gnus-suppress-duplicates
4215         (gnus-dup-suppress-articles))
4216
4217       ;; Set the initial limit.
4218       (setq gnus-newsgroup-limit (copy-sequence articles))
4219       ;; Remove canceled articles from the list of unread articles.
4220       (setq gnus-newsgroup-unreads
4221             (gnus-set-sorted-intersection
4222              gnus-newsgroup-unreads
4223              (setq fetched-articles
4224                    (mapcar (lambda (headers) (mail-header-number headers))
4225                            gnus-newsgroup-headers))))
4226       ;; Removed marked articles that do not exist.
4227       (gnus-update-missing-marks
4228        (gnus-sorted-complement fetched-articles articles))
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                        (numberp gnus-large-newsgroup)
4287                        (> number gnus-large-newsgroup))
4288                   (let ((input
4289                          (read-string
4290                           (format
4291                            "How many articles from %s (default %d): "
4292                            (gnus-limit-string gnus-newsgroup-name 35)
4293                            number))))
4294                     (if (string-match "^[ \t]*$" input) number input)))
4295                  ((and (> scored marked) (< scored number)
4296                        (> (- scored number) 20))
4297                   (let ((input
4298                          (read-string
4299                           (format "%s %s (%d scored, %d total): "
4300                                   "How many articles from"
4301                                   group scored number))))
4302                     (if (string-match "^[ \t]*$" input)
4303                         number input)))
4304                  (t number))
4305               (quit
4306                (message "Quit getting the articles to read")
4307                nil))))))
4308     (setq select (if (stringp select) (string-to-number select) select))
4309     (if (or (null select) (zerop select))
4310         select
4311       (if (and (not (zerop scored)) (<= (abs select) scored))
4312           (progn
4313             (setq articles (sort scored-list '<))
4314             (setq number (length articles)))
4315         (setq articles (copy-sequence articles)))
4316
4317       (when (< (abs select) number)
4318         (if (< select 0)
4319             ;; Select the N oldest articles.
4320             (setcdr (nthcdr (1- (abs select)) articles) nil)
4321           ;; Select the N most recent articles.
4322           (setq articles (nthcdr (- number select) articles))))
4323       (setq gnus-newsgroup-unselected
4324             (gnus-sorted-intersection
4325              gnus-newsgroup-unreads
4326              (gnus-sorted-complement gnus-newsgroup-unreads articles)))
4327       (when gnus-alter-articles-to-read-function
4328         (setq gnus-newsgroup-unreads
4329               (sort 
4330                (funcall gnus-alter-articles-to-read-function
4331                         gnus-newsgroup-name gnus-newsgroup-unreads)
4332                '<)))
4333       articles)))
4334
4335 (defun gnus-killed-articles (killed articles)
4336   (let (out)
4337     (while articles
4338       (when (inline (gnus-member-of-range (car articles) killed))
4339         (push (car articles) out))
4340       (setq articles (cdr articles)))
4341     out))
4342
4343 (defun gnus-uncompress-marks (marks)
4344   "Uncompress the mark ranges in MARKS."
4345   (let ((uncompressed '(score bookmark))
4346         out)
4347     (while marks
4348       (if (memq (caar marks) uncompressed)
4349           (push (car marks) out)
4350         (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
4351       (setq marks (cdr marks)))
4352     out))
4353
4354 (defun gnus-adjust-marked-articles (info)
4355   "Set all article lists and remove all marks that are no longer valid."
4356   (let* ((marked-lists (gnus-info-marks info))
4357          (active (gnus-active (gnus-info-group info)))
4358          (min (car active))
4359          (max (cdr active))
4360          (types gnus-article-mark-lists)
4361          (uncompressed '(score bookmark killed))
4362          marks var articles article mark)
4363
4364     (while marked-lists
4365       (setq marks (pop marked-lists))
4366       (set (setq var (intern (format "gnus-newsgroup-%s"
4367                                      (car (rassq (setq mark (car marks))
4368                                                  types)))))
4369            (if (memq (car marks) uncompressed) (cdr marks)
4370              (gnus-uncompress-range (cdr marks))))
4371
4372       (setq articles (symbol-value var))
4373
4374       ;; All articles have to be subsets of the active articles.
4375       (cond
4376        ;; Adjust "simple" lists.
4377        ((memq mark '(tick dormant expire reply save))
4378         (while articles
4379           (when (or (< (setq article (pop articles)) min) (> article max))
4380             (set var (delq article (symbol-value var))))))
4381        ;; Adjust assocs.
4382        ((memq mark uncompressed)
4383         (when (not (listp (cdr (symbol-value var))))
4384           (set var (list (symbol-value var))))
4385         (when (not (listp (cdr articles)))
4386           (setq articles (list articles)))
4387         (while articles
4388           (when (or (not (consp (setq article (pop articles))))
4389                     (< (car article) min)
4390                     (> (car article) max))
4391             (set var (delq article (symbol-value var))))))))))
4392
4393 (defun gnus-update-missing-marks (missing)
4394   "Go through the list of MISSING articles and remove them from the mark lists."
4395   (when missing
4396     (let ((types gnus-article-mark-lists)
4397           var m)
4398       ;; Go through all types.
4399       (while types
4400         (setq var (intern (format "gnus-newsgroup-%s" (car (pop types)))))
4401         (when (symbol-value var)
4402           ;; This list has articles.  So we delete all missing articles
4403           ;; from it.
4404           (setq m missing)
4405           (while m
4406             (set var (delq (pop m) (symbol-value var)))))))))
4407
4408 (defun gnus-update-marks ()
4409   "Enter the various lists of marked articles into the newsgroup info list."
4410   (let ((types gnus-article-mark-lists)
4411         (info (gnus-get-info gnus-newsgroup-name))
4412         (uncompressed '(score bookmark killed))
4413         type list newmarked symbol delta-marks)
4414     (when info
4415       ;; Add all marks lists to the list of marks lists.
4416       (while (setq type (pop types))
4417         (setq list (symbol-value
4418                     (setq symbol
4419                           (intern (format "gnus-newsgroup-%s"
4420                                           (car type))))))
4421
4422         (when list
4423           ;; Get rid of the entries of the articles that have the
4424           ;; default score.
4425           (when (and (eq (cdr type) 'score)
4426                      gnus-save-score
4427                      list)
4428             (let* ((arts list)
4429                    (prev (cons nil list))
4430                    (all prev))
4431               (while arts
4432                 (if (or (not (consp (car arts)))
4433                         (= (cdar arts) gnus-summary-default-score))
4434                     (setcdr prev (cdr arts))
4435                   (setq prev arts))
4436                 (setq arts (cdr arts)))
4437               (setq list (cdr all)))))
4438
4439         (unless (memq (cdr type) uncompressed)
4440           (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
4441        
4442         (when (gnus-check-backend-function
4443                'request-set-mark gnus-newsgroup-name)
4444           ;; propagate flags to server, with the following exceptions:
4445           ;; uncompressed:s are not proper flags (they are cons cells)
4446           ;; cache is a internal gnus flag
4447           ;; download are local to one gnus installation (well)
4448           ;; unsend are for nndraft groups only
4449           ;; xxx: generality of this?  this suits nnimap anyway
4450           (unless (memq (cdr type) (append '(cache download unsend)
4451                                            uncompressed))
4452             (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
4453                    (del (gnus-remove-from-range (gnus-copy-sequence old) list))
4454                    (add (gnus-remove-from-range
4455                          (gnus-copy-sequence list) old)))
4456               (when add
4457                 (push (list add 'add (list (cdr type))) delta-marks))
4458               (when del
4459                 (push (list del 'del (list (cdr type))) delta-marks)))))
4460           
4461         (when list
4462           (push (cons (cdr type) list) newmarked)))
4463
4464       (when delta-marks
4465         (unless (gnus-check-group gnus-newsgroup-name)
4466           (error "Can't open server for %s" gnus-newsgroup-name))
4467         (gnus-request-set-mark gnus-newsgroup-name delta-marks))
4468           
4469       ;; Enter these new marks into the info of the group.
4470       (if (nthcdr 3 info)
4471           (setcar (nthcdr 3 info) newmarked)
4472         ;; Add the marks lists to the end of the info.
4473         (when newmarked
4474           (setcdr (nthcdr 2 info) (list newmarked))))
4475
4476       ;; Cut off the end of the info if there's nothing else there.
4477       (let ((i 5))
4478         (while (and (> i 2)
4479                     (not (nth i info)))
4480           (when (nthcdr (decf i) info)
4481             (setcdr (nthcdr i info) nil)))))))
4482
4483 (defun gnus-set-mode-line (where)
4484   "Set the mode line of the article or summary buffers.
4485 If WHERE is `summary', the summary mode line format will be used."
4486   ;; Is this mode line one we keep updated?
4487   (when (and (memq where gnus-updated-mode-lines)
4488              (symbol-value
4489               (intern (format "gnus-%s-mode-line-format-spec" where))))
4490     (let (mode-string)
4491       (save-excursion
4492         ;; We evaluate this in the summary buffer since these
4493         ;; variables are buffer-local to that buffer.
4494         (set-buffer gnus-summary-buffer)
4495         ;; We bind all these variables that are used in the `eval' form
4496         ;; below.
4497         (let* ((mformat (symbol-value
4498                          (intern
4499                           (format "gnus-%s-mode-line-format-spec" where))))
4500                (gnus-tmp-group-name (gnus-group-name-decode 
4501                                      gnus-newsgroup-name
4502                                      (gnus-group-name-charset 
4503                                       nil
4504                                       gnus-newsgroup-name)))
4505                (gnus-tmp-article-number (or gnus-current-article 0))
4506                (gnus-tmp-unread gnus-newsgroup-unreads)
4507                (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
4508                (gnus-tmp-unselected (length gnus-newsgroup-unselected))
4509                (gnus-tmp-unread-and-unselected
4510                 (cond ((and (zerop gnus-tmp-unread-and-unticked)
4511                             (zerop gnus-tmp-unselected))
4512                        "")
4513                       ((zerop gnus-tmp-unselected)
4514                        (format "{%d more}" gnus-tmp-unread-and-unticked))
4515                       (t (format "{%d(+%d) more}"
4516                                  gnus-tmp-unread-and-unticked
4517                                  gnus-tmp-unselected))))
4518                (gnus-tmp-subject
4519                 (if (and gnus-current-headers
4520                          (vectorp gnus-current-headers))
4521                     (gnus-mode-string-quote
4522                      (mail-header-subject gnus-current-headers))
4523                   ""))
4524                bufname-length max-len
4525                gnus-tmp-header);; passed as argument to any user-format-funcs
4526           (setq mode-string (eval mformat))
4527           (setq bufname-length (if (string-match "%b" mode-string)
4528                                    (- (length
4529                                        (buffer-name
4530                                         (if (eq where 'summary)
4531                                             nil
4532                                           (get-buffer gnus-article-buffer))))
4533                                       2)
4534                                  0))
4535           (setq max-len (max 4 (if gnus-mode-non-string-length
4536                                    (- (window-width)
4537                                       gnus-mode-non-string-length
4538                                       bufname-length)
4539                                  (length mode-string))))
4540           ;; We might have to chop a bit of the string off...
4541           (when (> (length mode-string) max-len)
4542             (setq mode-string
4543                   (concat (truncate-string-to-width mode-string (- max-len 3))
4544                           "...")))
4545           ;; Pad the mode string a bit.
4546           (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
4547       ;; Update the mode line.
4548       (setq mode-line-buffer-identification
4549             (gnus-mode-line-buffer-identification (list mode-string)))
4550       (set-buffer-modified-p t))))
4551
4552 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
4553   "Go through the HEADERS list and add all Xrefs to a hash table.
4554 The resulting hash table is returned, or nil if no Xrefs were found."
4555   (let* ((virtual (gnus-virtual-group-p from-newsgroup))
4556          (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
4557          (xref-hashtb (gnus-make-hashtable))
4558          start group entry number xrefs header)
4559     (while headers
4560       (setq header (pop headers))
4561       (when (and (setq xrefs (mail-header-xref header))
4562                  (not (memq (setq number (mail-header-number header))
4563                             unreads)))
4564         (setq start 0)
4565         (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
4566           (setq start (match-end 0))
4567           (setq group (if prefix
4568                           (concat prefix (substring xrefs (match-beginning 1)
4569                                                     (match-end 1)))
4570                         (substring xrefs (match-beginning 1) (match-end 1))))
4571           (setq number
4572                 (string-to-int (substring xrefs (match-beginning 2)
4573                                           (match-end 2))))
4574           (if (setq entry (gnus-gethash group xref-hashtb))
4575               (setcdr entry (cons number (cdr entry)))
4576             (gnus-sethash group (cons number nil) xref-hashtb)))))
4577     (and start xref-hashtb)))
4578
4579 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
4580   "Look through all the headers and mark the Xrefs as read."
4581   (let ((virtual (gnus-virtual-group-p from-newsgroup))
4582         name entry info xref-hashtb idlist method nth4)
4583     (save-excursion
4584       (set-buffer gnus-group-buffer)
4585       (when (setq xref-hashtb
4586                   (gnus-create-xref-hashtb from-newsgroup headers unreads))
4587         (mapatoms
4588          (lambda (group)
4589            (unless (string= from-newsgroup (setq name (symbol-name group)))
4590              (setq idlist (symbol-value group))
4591              ;; Dead groups are not updated.
4592              (and (prog1
4593                       (setq entry (gnus-gethash name gnus-newsrc-hashtb)
4594                             info (nth 2 entry))
4595                     (when (stringp (setq nth4 (gnus-info-method info)))
4596                       (setq nth4 (gnus-server-to-method nth4))))
4597                   ;; Only do the xrefs if the group has the same
4598                   ;; select method as the group we have just read.
4599                   (or (gnus-methods-equal-p
4600                        nth4 (gnus-find-method-for-group from-newsgroup))
4601                       virtual
4602                       (equal nth4 (setq method (gnus-find-method-for-group
4603                                                 from-newsgroup)))
4604                       (and (equal (car nth4) (car method))
4605                            (equal (nth 1 nth4) (nth 1 method))))
4606                   gnus-use-cross-reference
4607                   (or (not (eq gnus-use-cross-reference t))
4608                       virtual
4609                       ;; Only do cross-references on subscribed
4610                       ;; groups, if that is what is wanted.
4611                       (<= (gnus-info-level info) gnus-level-subscribed))
4612                   (gnus-group-make-articles-read name idlist))))
4613          xref-hashtb)))))
4614
4615 (defun gnus-compute-read-articles (group articles)
4616   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
4617          (info (nth 2 entry))
4618          (active (gnus-active group))
4619          ninfo)
4620     (when entry
4621       ;; First peel off all invalid article numbers.
4622       (when active
4623         (let ((ids articles)
4624               id first)
4625           (while (setq id (pop ids))
4626             (when (and first (> id (cdr active)))
4627               ;; We'll end up in this situation in one particular
4628               ;; obscure situation.  If you re-scan a group and get
4629               ;; a new article that is cross-posted to a different
4630               ;; group that has not been re-scanned, you might get
4631               ;; crossposted article that has a higher number than
4632               ;; Gnus believes possible.  So we re-activate this
4633               ;; group as well.  This might mean doing the
4634               ;; crossposting thingy will *increase* the number
4635               ;; of articles in some groups.  Tsk, tsk.
4636               (setq active (or (gnus-activate-group group) active)))
4637             (when (or (> id (cdr active))
4638                       (< id (car active)))
4639               (setq articles (delq id articles))))))
4640       ;; If the read list is nil, we init it.
4641       (if (and active
4642                (null (gnus-info-read info))
4643                (> (car active) 1))
4644           (setq ninfo (cons 1 (1- (car active))))
4645         (setq ninfo (gnus-info-read info)))
4646       ;; Then we add the read articles to the range.
4647       (gnus-add-to-range
4648        ninfo (setq articles (sort articles '<))))))
4649
4650 (defun gnus-group-make-articles-read (group articles)
4651   "Update the info of GROUP to say that ARTICLES are read."
4652   (let* ((num 0)
4653          (entry (gnus-gethash group gnus-newsrc-hashtb))
4654          (info (nth 2 entry))
4655          (active (gnus-active group))
4656          range)
4657     (when entry
4658       (setq range (gnus-compute-read-articles group articles))
4659       (save-excursion
4660         (set-buffer gnus-group-buffer)
4661         (gnus-undo-register
4662           `(progn
4663              (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
4664              (gnus-info-set-read ',info ',(gnus-info-read info))
4665              (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
4666              (gnus-group-update-group ,group t))))
4667       ;; Add the read articles to the range.
4668       (gnus-info-set-read info range)
4669       ;; Then we have to re-compute how many unread
4670       ;; articles there are in this group.
4671       (when active
4672         (cond
4673          ((not range)
4674           (setq num (- (1+ (cdr active)) (car active))))
4675          ((not (listp (cdr range)))
4676           (setq num (- (cdr active) (- (1+ (cdr range))
4677                                        (car range)))))
4678          (t
4679           (while range
4680             (if (numberp (car range))
4681                 (setq num (1+ num))
4682               (setq num (+ num (- (1+ (cdar range)) (caar range)))))
4683             (setq range (cdr range)))
4684           (setq num (- (cdr active) num))))
4685         ;; Update the number of unread articles.
4686         (setcar entry num)
4687         ;; Update the group buffer.
4688         (gnus-group-update-group group t)))))
4689
4690 (defvar gnus-newsgroup-none-id 0)
4691
4692 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
4693   (let ((cur nntp-server-buffer)
4694         (dependencies
4695          (or dependencies
4696              (save-excursion (set-buffer gnus-summary-buffer)
4697                              gnus-newsgroup-dependencies)))
4698         headers id end ref
4699         (mail-parse-charset gnus-newsgroup-charset)
4700         (mail-parse-ignored-charsets
4701          (save-excursion (condition-case nil
4702                              (set-buffer gnus-summary-buffer)
4703                            (error))
4704                          gnus-newsgroup-ignored-charsets)))
4705     (save-excursion
4706       (set-buffer nntp-server-buffer)
4707       ;; Translate all TAB characters into SPACE characters.
4708       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
4709       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4710       (gnus-run-hooks 'gnus-parse-headers-hook)
4711       (let ((case-fold-search t)
4712             in-reply-to header p lines chars)
4713         (goto-char (point-min))
4714         ;; Search to the beginning of the next header.  Error messages
4715         ;; do not begin with 2 or 3.
4716         (while (re-search-forward "^[23][0-9]+ " nil t)
4717           (setq id nil
4718                 ref nil)
4719           ;; This implementation of this function, with nine
4720           ;; search-forwards instead of the one re-search-forward and
4721           ;; a case (which basically was the old function) is actually
4722           ;; about twice as fast, even though it looks messier.  You
4723           ;; can't have everything, I guess.  Speed and elegance
4724           ;; doesn't always go hand in hand.
4725           (setq
4726            header
4727            (vector
4728             ;; Number.
4729             (prog1
4730                 (read cur)
4731               (end-of-line)
4732               (setq p (point))
4733               (narrow-to-region (point)
4734                                 (or (and (search-forward "\n.\n" nil t)
4735                                          (- (point) 2))
4736                                     (point))))
4737             ;; Subject.
4738             (progn
4739               (goto-char p)
4740               (if (search-forward "\nsubject: " nil t)
4741                   (funcall gnus-decode-encoded-word-function
4742                            (nnheader-header-value))
4743                 "(none)"))
4744             ;; From.
4745             (progn
4746               (goto-char p)
4747               (if (search-forward "\nfrom: " nil t)
4748                   (funcall gnus-decode-encoded-word-function
4749                            (nnheader-header-value))
4750                 "(nobody)"))
4751             ;; Date.
4752             (progn
4753               (goto-char p)
4754               (if (search-forward "\ndate: " nil t)
4755                   (nnheader-header-value) ""))
4756             ;; Message-ID.
4757             (progn
4758               (goto-char p)
4759               (setq id (if (re-search-forward
4760                             "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
4761                            ;; We do it this way to make sure the Message-ID
4762                            ;; is (somewhat) syntactically valid.
4763                            (buffer-substring (match-beginning 1)
4764                                              (match-end 1))
4765                          ;; If there was no message-id, we just fake one
4766                          ;; to make subsequent routines simpler.
4767                          (nnheader-generate-fake-message-id))))
4768             ;; References.
4769             (progn
4770               (goto-char p)
4771               (if (search-forward "\nreferences: " nil t)
4772                   (progn
4773                     (setq end (point))
4774                     (prog1
4775                         (nnheader-header-value)
4776                       (setq ref
4777                             (buffer-substring
4778                              (progn
4779                                (end-of-line)
4780                                (search-backward ">" end t)
4781                                (1+ (point)))
4782                              (progn
4783                                (search-backward "<" end t)
4784                                (point))))))
4785                 ;; Get the references from the in-reply-to header if there
4786                 ;; were no references and the in-reply-to header looks
4787                 ;; promising.
4788                 (if (and (search-forward "\nin-reply-to: " nil t)
4789                          (setq in-reply-to (nnheader-header-value))
4790                          (string-match "<[^>]+>" in-reply-to))
4791                     (let (ref2)
4792                       (setq ref (substring in-reply-to (match-beginning 0)
4793                                            (match-end 0)))
4794                       (while (string-match "<[^>]+>" in-reply-to (match-end 0))
4795                         (setq ref2 (substring in-reply-to (match-beginning 0)
4796                                               (match-end 0)))
4797                         (when (> (length ref2) (length ref))
4798                           (setq ref ref2)))
4799                       ref)
4800                   (setq ref nil))))
4801             ;; Chars.
4802             (progn
4803               (goto-char p)
4804               (if (search-forward "\nchars: " nil t)
4805                   (if (numberp (setq chars (ignore-errors (read cur))))
4806                       chars 0)
4807                 0))
4808             ;; Lines.
4809             (progn
4810               (goto-char p)
4811               (if (search-forward "\nlines: " nil t)
4812                   (if (numberp (setq lines (ignore-errors (read cur))))
4813                       lines 0)
4814                 0))
4815             ;; Xref.
4816             (progn
4817               (goto-char p)
4818               (and (search-forward "\nxref: " nil t)
4819                    (nnheader-header-value)))
4820             ;; Extra.
4821             (when gnus-extra-headers
4822               (let ((extra gnus-extra-headers)
4823                     out)
4824                 (while extra
4825                   (goto-char p)
4826                   (when (search-forward
4827                          (concat "\n" (symbol-name (car extra)) ": ") nil t)
4828                     (push (cons (car extra) (nnheader-header-value))
4829                           out))
4830                   (pop extra))
4831                 out))))
4832           (when (equal id ref)
4833             (setq ref nil))
4834
4835           (when gnus-alter-header-function
4836             (funcall gnus-alter-header-function header)
4837             (setq id (mail-header-id header)
4838                   ref (gnus-parent-id (mail-header-references header))))
4839
4840           (when (setq header
4841                       (gnus-dependencies-add-header
4842                        header dependencies force-new))
4843             (push header headers))
4844           (goto-char (point-max))
4845           (widen))
4846         (nreverse headers)))))
4847
4848 ;; Goes through the xover lines and returns a list of vectors
4849 (defun gnus-get-newsgroup-headers-xover (sequence &optional
4850                                                   force-new dependencies
4851                                                   group also-fetch-heads)
4852   "Parse the news overview data in the server buffer.
4853 Return a list of headers that match SEQUENCE (see
4854 `nntp-retrieve-headers')."
4855   ;; Get the Xref when the users reads the articles since most/some
4856   ;; NNTP servers do not include Xrefs when using XOVER.
4857   (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
4858   (let ((mail-parse-charset gnus-newsgroup-charset)
4859         (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
4860         (cur nntp-server-buffer)
4861         (dependencies (or dependencies gnus-newsgroup-dependencies))
4862         number headers header)
4863     (save-excursion
4864       (set-buffer nntp-server-buffer)
4865       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
4866       ;; Allow the user to mangle the headers before parsing them.
4867       (gnus-run-hooks 'gnus-parse-headers-hook)
4868       (goto-char (point-min))
4869       (while (not (eobp))
4870         (condition-case ()
4871             (while (and sequence (not (eobp)))
4872               (setq number (read cur))
4873               (while (and sequence
4874                           (< (car sequence) number))
4875                 (setq sequence (cdr sequence)))
4876               (and sequence
4877                    (eq number (car sequence))
4878                    (progn
4879                      (setq sequence (cdr sequence))
4880                      (setq header (inline
4881                                     (gnus-nov-parse-line
4882                                      number dependencies force-new))))
4883                    (push header headers))
4884               (forward-line 1))
4885           (error
4886            (gnus-error 4 "Strange nov line (%d)"
4887                        (count-lines (point-min) (point)))))
4888         (forward-line 1))
4889       ;; A common bug in inn is that if you have posted an article and
4890       ;; then retrieves the active file, it will answer correctly --
4891       ;; the new article is included.  However, a NOV entry for the
4892       ;; article may not have been generated yet, so this may fail.
4893       ;; We work around this problem by retrieving the last few
4894       ;; headers using HEAD.
4895       (if (or (not also-fetch-heads)
4896               (not sequence))
4897           ;; We (probably) got all the headers.
4898           (nreverse headers)
4899         (let ((gnus-nov-is-evil t))
4900           (nconc
4901            (nreverse headers)
4902            (when (gnus-retrieve-headers sequence group)
4903              (gnus-get-newsgroup-headers))))))))
4904
4905 (defun gnus-article-get-xrefs ()
4906   "Fill in the Xref value in `gnus-current-headers', if necessary.
4907 This is meant to be called in `gnus-article-internal-prepare-hook'."
4908   (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
4909                                  gnus-current-headers)))
4910     (or (not gnus-use-cross-reference)
4911         (not headers)
4912         (and (mail-header-xref headers)
4913              (not (string= (mail-header-xref headers) "")))
4914         (let ((case-fold-search t)
4915               xref)
4916           (save-restriction
4917             (nnheader-narrow-to-headers)
4918             (goto-char (point-min))
4919             (when (or (and (not (eobp))
4920                            (eq (downcase (char-after)) ?x)
4921                            (looking-at "Xref:"))
4922                       (search-forward "\nXref:" nil t))
4923               (goto-char (1+ (match-end 0)))
4924               (setq xref (buffer-substring (point)
4925                                            (progn (end-of-line) (point))))
4926               (mail-header-set-xref headers xref)))))))
4927
4928 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
4929   "Find article ID and insert the summary line for that article.
4930 OLD-HEADER can either be a header or a line number to insert
4931 the subject line on."
4932   (let* ((line (and (numberp old-header) old-header))
4933          (old-header (and (vectorp old-header) old-header))
4934          (header (cond ((and old-header use-old-header)
4935                         old-header)
4936                        ((and (numberp id)
4937                              (gnus-number-to-header id))
4938                         (gnus-number-to-header id))
4939                        (t
4940                         (gnus-read-header id))))
4941          (number (and (numberp id) id))
4942          d)
4943     (when header
4944       ;; Rebuild the thread that this article is part of and go to the
4945       ;; article we have fetched.
4946       (when (and (not gnus-show-threads)
4947                  old-header)
4948         (when (and number
4949                    (setq d (gnus-data-find (mail-header-number old-header))))
4950           (goto-char (gnus-data-pos d))
4951           (gnus-data-remove
4952            number
4953            (- (gnus-point-at-bol)
4954               (prog1
4955                   (1+ (gnus-point-at-eol))
4956                 (gnus-delete-line))))))
4957       (when old-header
4958         (mail-header-set-number header (mail-header-number old-header)))
4959       (setq gnus-newsgroup-sparse
4960             (delq (setq number (mail-header-number header))
4961                   gnus-newsgroup-sparse))
4962       (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
4963       (push number gnus-newsgroup-limit)
4964       (gnus-rebuild-thread (mail-header-id header) line)
4965       (gnus-summary-goto-subject number nil t))
4966     (when (and (numberp number)
4967                (> number 0))
4968       ;; We have to update the boundaries even if we can't fetch the
4969       ;; article if ID is a number -- so that the next `P' or `N'
4970       ;; command will fetch the previous (or next) article even
4971       ;; if the one we tried to fetch this time has been canceled.
4972       (when (> number gnus-newsgroup-end)
4973         (setq gnus-newsgroup-end number))
4974       (when (< number gnus-newsgroup-begin)
4975         (setq gnus-newsgroup-begin number))
4976       (setq gnus-newsgroup-unselected
4977             (delq number gnus-newsgroup-unselected)))
4978     ;; Report back a success?
4979     (and header (mail-header-number header))))
4980
4981 ;;; Process/prefix in the summary buffer
4982
4983 (defun gnus-summary-work-articles (n)
4984   "Return a list of articles to be worked upon.
4985 The prefix argument, the list of process marked articles, and the
4986 current article will be taken into consideration."
4987   (save-excursion
4988     (set-buffer gnus-summary-buffer)
4989     (cond
4990      (n
4991       ;; A numerical prefix has been given.
4992       (setq n (prefix-numeric-value n))
4993       (let ((backward (< n 0))
4994             (n (abs (prefix-numeric-value n)))
4995             articles article)
4996         (save-excursion
4997           (while
4998               (and (> n 0)
4999                    (push (setq article (gnus-summary-article-number))
5000                          articles)
5001                    (if backward
5002                        (gnus-summary-find-prev nil article)
5003                      (gnus-summary-find-next nil article)))
5004             (decf n)))
5005         (nreverse articles)))
5006      ((and (gnus-region-active-p) (mark))
5007       (message "region active")
5008       ;; Work on the region between point and mark.
5009       (let ((max (max (point) (mark)))
5010             articles article)
5011         (save-excursion
5012           (goto-char (min (min (point) (mark))))
5013           (while
5014               (and
5015                (push (setq article (gnus-summary-article-number)) articles)
5016                (gnus-summary-find-next nil article)
5017                (< (point) max)))
5018           (nreverse articles))))
5019      (gnus-newsgroup-processable
5020       ;; There are process-marked articles present.
5021       ;; Save current state.
5022       (gnus-summary-save-process-mark)
5023       ;; Return the list.
5024       (reverse gnus-newsgroup-processable))
5025      (t
5026       ;; Just return the current article.
5027       (list (gnus-summary-article-number))))))
5028
5029 (defmacro gnus-summary-iterate (arg &rest forms)
5030   "Iterate over the process/prefixed articles and do FORMS.
5031 ARG is the interactive prefix given to the command.  FORMS will be
5032 executed with point over the summary line of the articles."
5033   (let ((articles (make-symbol "gnus-summary-iterate-articles")))
5034     `(let ((,articles (gnus-summary-work-articles ,arg)))
5035        (while ,articles
5036          (gnus-summary-goto-subject (car ,articles))
5037          ,@forms
5038          (pop ,articles)))))
5039
5040 (put 'gnus-summary-iterate 'lisp-indent-function 1)
5041 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
5042
5043 (defun gnus-summary-save-process-mark ()
5044   "Push the current set of process marked articles on the stack."
5045   (interactive)
5046   (push (copy-sequence gnus-newsgroup-processable)
5047         gnus-newsgroup-process-stack))
5048
5049 (defun gnus-summary-kill-process-mark ()
5050   "Push the current set of process marked articles on the stack and unmark."
5051   (interactive)
5052   (gnus-summary-save-process-mark)
5053   (gnus-summary-unmark-all-processable))
5054
5055 (defun gnus-summary-yank-process-mark ()
5056   "Pop the last process mark state off the stack and restore it."
5057   (interactive)
5058   (unless gnus-newsgroup-process-stack
5059     (error "Empty mark stack"))
5060   (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
5061
5062 (defun gnus-summary-process-mark-set (set)
5063   "Make SET into the current process marked articles."
5064   (gnus-summary-unmark-all-processable)
5065   (while set
5066     (gnus-summary-set-process-mark (pop set))))
5067
5068 ;;; Searching and stuff
5069
5070 (defun gnus-summary-search-group (&optional backward use-level)
5071   "Search for next unread newsgroup.
5072 If optional argument BACKWARD is non-nil, search backward instead."
5073   (save-excursion
5074     (set-buffer gnus-group-buffer)
5075     (when (gnus-group-search-forward
5076            backward nil (if use-level (gnus-group-group-level) nil))
5077       (gnus-group-group-name))))
5078
5079 (defun gnus-summary-best-group (&optional exclude-group)
5080   "Find the name of the best unread group.
5081 If EXCLUDE-GROUP, do not go to this group."
5082   (save-excursion
5083     (set-buffer gnus-group-buffer)
5084     (save-excursion
5085       (gnus-group-best-unread-group exclude-group))))
5086
5087 (defun gnus-summary-find-next (&optional unread article backward undownloaded)
5088   (if backward (gnus-summary-find-prev)
5089     (let* ((dummy (gnus-summary-article-intangible-p))
5090            (article (or article (gnus-summary-article-number)))
5091            (arts (gnus-data-find-list article))
5092            result)
5093       (when (and (not dummy)
5094                  (or (not gnus-summary-check-current)
5095                      (not unread)
5096                      (not (gnus-data-unread-p (car arts)))))
5097         (setq arts (cdr arts)))
5098       (when (setq result
5099                   (if unread
5100                       (progn
5101                         (while arts
5102                           (when (or (and undownloaded
5103                                          (eq gnus-undownloaded-mark
5104                                              (gnus-data-mark (car arts))))
5105                                     (gnus-data-unread-p (car arts)))
5106                             (setq result (car arts)
5107                                   arts nil))
5108                           (setq arts (cdr arts)))
5109                         result)
5110                     (car arts)))
5111         (goto-char (gnus-data-pos result))
5112         (gnus-data-number result)))))
5113
5114 (defun gnus-summary-find-prev (&optional unread article)
5115   (let* ((eobp (eobp))
5116          (article (or article (gnus-summary-article-number)))
5117          (arts (gnus-data-find-list article (gnus-data-list 'rev)))
5118          result)
5119     (when (and (not eobp)
5120                (or (not gnus-summary-check-current)
5121                    (not unread)
5122                    (not (gnus-data-unread-p (car arts)))))
5123       (setq arts (cdr arts)))
5124     (when (setq result
5125                 (if unread
5126                     (progn
5127                       (while arts
5128                         (when (gnus-data-unread-p (car arts))
5129                           (setq result (car arts)
5130                                 arts nil))
5131                         (setq arts (cdr arts)))
5132                       result)
5133                   (car arts)))
5134       (goto-char (gnus-data-pos result))
5135       (gnus-data-number result))))
5136
5137 (defun gnus-summary-find-subject (subject &optional unread backward article)
5138   (let* ((simp-subject (gnus-simplify-subject-fully subject))
5139          (article (or article (gnus-summary-article-number)))
5140          (articles (gnus-data-list backward))
5141          (arts (gnus-data-find-list article articles))
5142          result)
5143     (when (or (not gnus-summary-check-current)
5144               (not unread)
5145               (not (gnus-data-unread-p (car arts))))
5146       (setq arts (cdr arts)))
5147     (while arts
5148       (and (or (not unread)
5149                (gnus-data-unread-p (car arts)))
5150            (vectorp (gnus-data-header (car arts)))
5151            (gnus-subject-equal
5152             simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
5153            (setq result (car arts)
5154                  arts nil))
5155       (setq arts (cdr arts)))
5156     (and result
5157          (goto-char (gnus-data-pos result))
5158          (gnus-data-number result))))
5159
5160 (defun gnus-summary-search-forward (&optional unread subject backward)
5161   "Search forward for an article.
5162 If UNREAD, look for unread articles.  If SUBJECT, look for
5163 articles with that subject.  If BACKWARD, search backward instead."
5164   (cond (subject (gnus-summary-find-subject subject unread backward))
5165         (backward (gnus-summary-find-prev unread))
5166         (t (gnus-summary-find-next unread))))
5167
5168 (defun gnus-recenter (&optional n)
5169   "Center point in window and redisplay frame.
5170 Also do horizontal recentering."
5171   (interactive "P")
5172   (when (and gnus-auto-center-summary
5173              (not (eq gnus-auto-center-summary 'vertical)))
5174     (gnus-horizontal-recenter))
5175   (recenter n))
5176
5177 (defun gnus-summary-recenter ()
5178   "Center point in the summary window.
5179 If `gnus-auto-center-summary' is nil, or the article buffer isn't
5180 displayed, no centering will be performed."
5181   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
5182   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
5183   (interactive)
5184   (let* ((top (cond ((< (window-height) 4) 0)
5185                     ((< (window-height) 7) 1)
5186                     (t (if (numberp gnus-auto-center-summary)
5187                            gnus-auto-center-summary
5188                          2))))
5189          (height (1- (window-height)))
5190          (bottom (save-excursion (goto-char (point-max))
5191                                  (forward-line (- height))
5192                                  (point)))
5193          (window (get-buffer-window (current-buffer))))
5194     ;; The user has to want it.
5195     (when gnus-auto-center-summary
5196       (when (get-buffer-window gnus-article-buffer)
5197         ;; Only do recentering when the article buffer is displayed,
5198         ;; Set the window start to either `bottom', which is the biggest
5199         ;; possible valid number, or the second line from the top,
5200         ;; whichever is the least.
5201         (set-window-start
5202          window (min bottom (save-excursion
5203                               (forward-line (- top)) (point)))
5204          t))
5205       ;; Do horizontal recentering while we're at it.
5206       (when (and (get-buffer-window (current-buffer) t)
5207                  (not (eq gnus-auto-center-summary 'vertical)))
5208         (let ((selected (selected-window)))
5209           (select-window (get-buffer-window (current-buffer) t))
5210           (gnus-summary-position-point)
5211           (gnus-horizontal-recenter)
5212           (select-window selected))))))
5213
5214 (defun gnus-summary-jump-to-group (newsgroup)
5215   "Move point to NEWSGROUP in group mode buffer."
5216   ;; Keep update point of group mode buffer if visible.
5217   (if (eq (current-buffer) (get-buffer gnus-group-buffer))
5218       (save-window-excursion
5219         ;; Take care of tree window mode.
5220         (when (get-buffer-window gnus-group-buffer)
5221           (pop-to-buffer gnus-group-buffer))
5222         (gnus-group-jump-to-group newsgroup))
5223     (save-excursion
5224       ;; Take care of tree window mode.
5225       (if (get-buffer-window gnus-group-buffer)
5226           (pop-to-buffer gnus-group-buffer)
5227         (set-buffer gnus-group-buffer))
5228       (gnus-group-jump-to-group newsgroup))))
5229
5230 ;; This function returns a list of article numbers based on the
5231 ;; difference between the ranges of read articles in this group and
5232 ;; the range of active articles.
5233 (defun gnus-list-of-unread-articles (group)
5234   (let* ((read (gnus-info-read (gnus-get-info group)))
5235          (active (or (gnus-active group) (gnus-activate-group group)))
5236          (last (cdr active))
5237          first nlast unread)
5238     ;; If none are read, then all are unread.
5239     (if (not read)
5240         (setq first (car active))
5241       ;; If the range of read articles is a single range, then the
5242       ;; first unread article is the article after the last read
5243       ;; article.  Sounds logical, doesn't it?
5244       (if (and (not (listp (cdr read)))
5245                (or (< (car read) (car active))
5246                    (progn (setq read (list read))
5247                           nil)))
5248           (setq first (max (car active) (1+ (cdr read))))
5249         ;; `read' is a list of ranges.
5250         (when (/= (setq nlast (or (and (numberp (car read)) (car read))
5251                                   (caar read)))
5252                   1)
5253           (setq first (car active)))
5254         (while read
5255           (when first
5256             (while (< first nlast)
5257               (push first unread)
5258               (setq first (1+ first))))
5259           (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
5260           (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
5261           (setq read (cdr read)))))
5262     ;; And add the last unread articles.
5263     (while (<= first last)
5264       (push first unread)
5265       (setq first (1+ first)))
5266     ;; Return the list of unread articles.
5267     (delq 0 (nreverse unread))))
5268
5269 (defun gnus-list-of-read-articles (group)
5270   "Return a list of unread, unticked and non-dormant articles."
5271   (let* ((info (gnus-get-info group))
5272          (marked (gnus-info-marks info))
5273          (active (gnus-active group)))
5274     (and info active
5275          (gnus-set-difference
5276           (gnus-sorted-complement
5277            (gnus-uncompress-range active)
5278            (gnus-list-of-unread-articles group))
5279           (append
5280            (gnus-uncompress-range (cdr (assq 'dormant marked)))
5281            (gnus-uncompress-range (cdr (assq 'tick marked))))))))
5282
5283 ;; Various summary commands
5284
5285 (defun gnus-summary-select-article-buffer ()
5286   "Reconfigure windows to show article buffer."
5287   (interactive)
5288   (if (not (gnus-buffer-live-p gnus-article-buffer))
5289       (error "There is no article buffer for this summary buffer")
5290     (gnus-configure-windows 'article)
5291     (select-window (get-buffer-window gnus-article-buffer))))
5292
5293 (defun gnus-summary-universal-argument (arg)
5294   "Perform any operation on all articles that are process/prefixed."
5295   (interactive "P")
5296   (let ((articles (gnus-summary-work-articles arg))
5297         func article)
5298     (if (eq
5299          (setq
5300           func
5301           (key-binding
5302            (read-key-sequence
5303             (substitute-command-keys
5304              "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
5305          'undefined)
5306         (gnus-error 1 "Undefined key")
5307       (save-excursion
5308         (while articles
5309           (gnus-summary-goto-subject (setq article (pop articles)))
5310           (let (gnus-newsgroup-processable)
5311             (command-execute func))
5312           (gnus-summary-remove-process-mark article)))))
5313   (gnus-summary-position-point))
5314
5315 (defun gnus-summary-toggle-truncation (&optional arg)
5316   "Toggle truncation of summary lines.
5317 With arg, turn line truncation on iff arg is positive."
5318   (interactive "P")
5319   (setq truncate-lines
5320         (if (null arg) (not truncate-lines)
5321           (> (prefix-numeric-value arg) 0)))
5322   (redraw-display))
5323
5324 (defun gnus-summary-reselect-current-group (&optional all rescan)
5325   "Exit and then reselect the current newsgroup.
5326 The prefix argument ALL means to select all articles."
5327   (interactive "P")
5328   (when (gnus-ephemeral-group-p gnus-newsgroup-name)
5329     (error "Ephemeral groups can't be reselected"))
5330   (let ((current-subject (gnus-summary-article-number))
5331         (group gnus-newsgroup-name))
5332     (setq gnus-newsgroup-begin nil)
5333     (gnus-summary-exit)
5334     ;; We have to adjust the point of group mode buffer because
5335     ;; point was moved to the next unread newsgroup by exiting.
5336     (gnus-summary-jump-to-group group)
5337     (when rescan
5338       (save-excursion
5339         (gnus-group-get-new-news-this-group 1)))
5340     (gnus-group-read-group all t)
5341     (gnus-summary-goto-subject current-subject nil t)))
5342
5343 (defun gnus-summary-rescan-group (&optional all)
5344   "Exit the newsgroup, ask for new articles, and select the newsgroup."
5345   (interactive "P")
5346   (gnus-summary-reselect-current-group all t))
5347
5348 (defun gnus-summary-update-info (&optional non-destructive)
5349   (save-excursion
5350     (let ((group gnus-newsgroup-name))
5351       (when group
5352         (when gnus-newsgroup-kill-headers
5353           (setq gnus-newsgroup-killed
5354                 (gnus-compress-sequence
5355                  (nconc
5356                   (gnus-set-sorted-intersection
5357                    (gnus-uncompress-range gnus-newsgroup-killed)
5358                    (setq gnus-newsgroup-unselected
5359                          (sort gnus-newsgroup-unselected '<)))
5360                   (setq gnus-newsgroup-unreads
5361                         (sort gnus-newsgroup-unreads '<)))
5362                  t)))
5363         (unless (listp (cdr gnus-newsgroup-killed))
5364           (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
5365         (let ((headers gnus-newsgroup-headers))
5366           ;; Set the new ranges of read articles.
5367           (save-excursion
5368             (set-buffer gnus-group-buffer)
5369             (gnus-undo-force-boundary))
5370           (gnus-update-read-articles
5371            group (append gnus-newsgroup-unreads gnus-newsgroup-unselected))
5372           ;; Set the current article marks.
5373           (let ((gnus-newsgroup-scored
5374                  (if (and (not gnus-save-score)
5375                           (not non-destructive))
5376                      nil
5377                    gnus-newsgroup-scored)))
5378             (save-excursion
5379               (gnus-update-marks)))
5380           ;; Do the cross-ref thing.
5381           (when gnus-use-cross-reference
5382             (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
5383           ;; Do not switch windows but change the buffer to work.
5384           (set-buffer gnus-group-buffer)
5385           (unless (gnus-ephemeral-group-p group)
5386             (gnus-group-update-group group)))))))
5387
5388 (defun gnus-summary-save-newsrc (&optional force)
5389   "Save the current number of read/marked articles in the dribble buffer.
5390 The dribble buffer will then be saved.
5391 If FORCE (the prefix), also save the .newsrc file(s)."
5392   (interactive "P")
5393   (gnus-summary-update-info t)
5394   (if force
5395       (gnus-save-newsrc-file)
5396     (gnus-dribble-save)))
5397
5398 (defun gnus-summary-exit (&optional temporary)
5399   "Exit reading current newsgroup, and then return to group selection mode.
5400 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
5401   (interactive)
5402   (gnus-set-global-variables)
5403   (when (gnus-buffer-live-p gnus-article-buffer)
5404     (save-excursion
5405       (set-buffer gnus-article-buffer)
5406       (mm-destroy-parts gnus-article-mime-handles)
5407       ;; Set it to nil for safety reason.
5408       (setq gnus-article-mime-handle-alist nil)
5409       (setq gnus-article-mime-handles nil)))
5410   (gnus-kill-save-kill-buffer)
5411   (gnus-async-halt-prefetch)
5412   (let* ((group gnus-newsgroup-name)
5413          (quit-config (gnus-group-quit-config gnus-newsgroup-name))
5414          (mode major-mode)
5415          (group-point nil)
5416          (buf (current-buffer)))
5417     (unless quit-config
5418       ;; Do adaptive scoring, and possibly save score files.
5419       (when gnus-newsgroup-adaptive
5420         (gnus-score-adaptive))
5421       (when gnus-use-scoring
5422         (gnus-score-save)))
5423     (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
5424     ;; If we have several article buffers, we kill them at exit.
5425     (unless gnus-single-article-buffer
5426       (gnus-kill-buffer gnus-original-article-buffer)
5427       (setq gnus-article-current nil))
5428     (when gnus-use-cache
5429       (gnus-cache-possibly-remove-articles)
5430       (gnus-cache-save-buffers))
5431     (gnus-async-prefetch-remove-group group)
5432     (when gnus-suppress-duplicates
5433       (gnus-dup-enter-articles))
5434     (when gnus-use-trees
5435       (gnus-tree-close group))
5436     (when gnus-use-cache
5437       (gnus-cache-write-active))
5438     ;; Remove entries for this group.
5439     (nnmail-purge-split-history (gnus-group-real-name group))
5440     ;; Make all changes in this group permanent.
5441     (unless quit-config
5442       (gnus-run-hooks 'gnus-exit-group-hook)
5443       (gnus-summary-update-info))
5444     (gnus-close-group group)
5445     ;; Make sure where we were, and go to next newsgroup.
5446     (set-buffer gnus-group-buffer)
5447     (unless quit-config
5448       (gnus-group-jump-to-group group))
5449     (gnus-run-hooks 'gnus-summary-exit-hook)
5450     (unless (or quit-config
5451                 ;; If this group has disappeared from the summary
5452                 ;; buffer, don't skip forwards.
5453                 (not (string= group (gnus-group-group-name))))
5454       (gnus-group-next-unread-group 1))
5455     (setq group-point (point))
5456     (if temporary
5457         nil                             ;Nothing to do.
5458       ;; If we have several article buffers, we kill them at exit.
5459       (unless gnus-single-article-buffer
5460         (gnus-kill-buffer gnus-article-buffer)
5461         (gnus-kill-buffer gnus-original-article-buffer)
5462         (setq gnus-article-current nil))
5463       (set-buffer buf)
5464       (if (not gnus-kill-summary-on-exit)
5465           (gnus-deaden-summary)
5466         ;; We set all buffer-local variables to nil.  It is unclear why
5467         ;; this is needed, but if we don't, buffer-local variables are
5468         ;; not garbage-collected, it seems.  This would the lead to en
5469         ;; ever-growing Emacs.
5470         (gnus-summary-clear-local-variables)
5471         (when (get-buffer gnus-article-buffer)
5472           (bury-buffer gnus-article-buffer))
5473         ;; We clear the global counterparts of the buffer-local
5474         ;; variables as well, just to be on the safe side.
5475         (set-buffer gnus-group-buffer)
5476         (gnus-summary-clear-local-variables)
5477         ;; Return to group mode buffer.
5478         (when (eq mode 'gnus-summary-mode)
5479           (gnus-kill-buffer buf)))
5480       (setq gnus-current-select-method gnus-select-method)
5481       (pop-to-buffer gnus-group-buffer)
5482       (if (not quit-config)
5483           (progn
5484             (goto-char group-point)
5485             (gnus-configure-windows 'group 'force))
5486         (gnus-handle-ephemeral-exit quit-config))
5487       ;; Clear the current group name.
5488       (unless quit-config
5489         (setq gnus-newsgroup-name nil)))))
5490
5491 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
5492 (defun gnus-summary-exit-no-update (&optional no-questions)
5493   "Quit reading current newsgroup without updating read article info."
5494   (interactive)
5495   (let* ((group gnus-newsgroup-name)
5496          (quit-config (gnus-group-quit-config group)))
5497     (when (or no-questions
5498               gnus-expert-user
5499               (gnus-y-or-n-p "Discard changes to this group and exit? "))
5500       (gnus-async-halt-prefetch)
5501       (mapcar 'funcall
5502               (delq 'gnus-summary-expire-articles
5503                     (copy-sequence gnus-summary-prepare-exit-hook)))
5504       (when (gnus-buffer-live-p gnus-article-buffer)
5505         (save-excursion
5506           (set-buffer gnus-article-buffer)
5507           (mm-destroy-parts gnus-article-mime-handles)
5508           ;; Set it to nil for safety reason.
5509           (setq gnus-article-mime-handle-alist nil)
5510           (setq gnus-article-mime-handles nil)))
5511       ;; If we have several article buffers, we kill them at exit.
5512       (unless gnus-single-article-buffer
5513         (gnus-kill-buffer gnus-article-buffer)
5514         (gnus-kill-buffer gnus-original-article-buffer)
5515         (setq gnus-article-current nil))
5516       (if (not gnus-kill-summary-on-exit)
5517           (gnus-deaden-summary)
5518         (gnus-close-group group)
5519         (gnus-summary-clear-local-variables)
5520         (set-buffer gnus-group-buffer)
5521         (gnus-summary-clear-local-variables)
5522         (when (get-buffer gnus-summary-buffer)
5523           (kill-buffer gnus-summary-buffer)))
5524       (unless gnus-single-article-buffer
5525         (setq gnus-article-current nil))
5526       (when gnus-use-trees
5527         (gnus-tree-close group))
5528       (gnus-async-prefetch-remove-group group)
5529       (when (get-buffer gnus-article-buffer)
5530         (bury-buffer gnus-article-buffer))
5531       ;; Return to the group buffer.
5532       (gnus-configure-windows 'group 'force)
5533       ;; Clear the current group name.
5534       (setq gnus-newsgroup-name nil)
5535       (when (equal (gnus-group-group-name) group)
5536         (gnus-group-next-unread-group 1))
5537       (when quit-config
5538         (gnus-handle-ephemeral-exit quit-config)))))
5539
5540 (defun gnus-handle-ephemeral-exit (quit-config)
5541   "Handle movement when leaving an ephemeral group.
5542 The state which existed when entering the ephemeral is reset."
5543   (if (not (buffer-name (car quit-config)))
5544       (gnus-configure-windows 'group 'force)
5545     (set-buffer (car quit-config))
5546     (cond ((eq major-mode 'gnus-summary-mode)
5547            (gnus-set-global-variables))
5548           ((eq major-mode 'gnus-article-mode)
5549            (save-excursion
5550              ;; The `gnus-summary-buffer' variable may point
5551              ;; to the old summary buffer when using a single
5552              ;; article buffer.
5553              (unless (gnus-buffer-live-p gnus-summary-buffer)
5554                (set-buffer gnus-group-buffer))
5555              (set-buffer gnus-summary-buffer)
5556              (gnus-set-global-variables))))
5557     (if (or (eq (cdr quit-config) 'article)
5558             (eq (cdr quit-config) 'pick))
5559         (progn
5560           ;; The current article may be from the ephemeral group
5561           ;; thus it is best that we reload this article
5562           (gnus-summary-show-article)
5563           (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
5564               (gnus-configure-windows 'pick 'force)
5565             (gnus-configure-windows (cdr quit-config) 'force)))
5566       (gnus-configure-windows (cdr quit-config) 'force))
5567     (when (eq major-mode 'gnus-summary-mode)
5568       (gnus-summary-next-subject 1 nil t)
5569       (gnus-summary-recenter)
5570       (gnus-summary-position-point))))
5571
5572 ;;; Dead summaries.
5573
5574 (defvar gnus-dead-summary-mode-map nil)
5575
5576 (unless gnus-dead-summary-mode-map
5577   (setq gnus-dead-summary-mode-map (make-keymap))
5578   (suppress-keymap gnus-dead-summary-mode-map)
5579   (substitute-key-definition
5580    'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
5581   (let ((keys '("\C-d" "\r" "\177" [delete])))
5582     (while keys
5583       (define-key gnus-dead-summary-mode-map
5584         (pop keys) 'gnus-summary-wake-up-the-dead))))
5585
5586 (defvar gnus-dead-summary-mode nil
5587   "Minor mode for Gnus summary buffers.")
5588
5589 (defun gnus-dead-summary-mode (&optional arg)
5590   "Minor mode for Gnus summary buffers."
5591   (interactive "P")
5592   (when (eq major-mode 'gnus-summary-mode)
5593     (make-local-variable 'gnus-dead-summary-mode)
5594     (setq gnus-dead-summary-mode
5595           (if (null arg) (not gnus-dead-summary-mode)
5596             (> (prefix-numeric-value arg) 0)))
5597     (when gnus-dead-summary-mode
5598       (gnus-add-minor-mode
5599        'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
5600
5601 (defun gnus-deaden-summary ()
5602   "Make the current summary buffer into a dead summary buffer."
5603   ;; Kill any previous dead summary buffer.
5604   (when (and gnus-dead-summary
5605              (buffer-name gnus-dead-summary))
5606     (save-excursion
5607       (set-buffer gnus-dead-summary)
5608       (when gnus-dead-summary-mode
5609         (kill-buffer (current-buffer)))))
5610   ;; Make this the current dead summary.
5611   (setq gnus-dead-summary (current-buffer))
5612   (gnus-dead-summary-mode 1)
5613   (let ((name (buffer-name)))
5614     (when (string-match "Summary" name)
5615       (rename-buffer
5616        (concat (substring name 0 (match-beginning 0)) "Dead "
5617                (substring name (match-beginning 0)))
5618        t)
5619       (bury-buffer))))
5620
5621 (defun gnus-kill-or-deaden-summary (buffer)
5622   "Kill or deaden the summary BUFFER."
5623   (save-excursion
5624     (when (and (buffer-name buffer)
5625                (not gnus-single-article-buffer))
5626       (save-excursion
5627         (set-buffer buffer)
5628         (gnus-kill-buffer gnus-article-buffer)
5629         (gnus-kill-buffer gnus-original-article-buffer)))
5630     (cond (gnus-kill-summary-on-exit
5631            (when (and gnus-use-trees
5632                       (gnus-buffer-exists-p buffer))
5633              (save-excursion
5634                (set-buffer buffer)
5635                (gnus-tree-close gnus-newsgroup-name)))
5636            (gnus-kill-buffer buffer))
5637           ((gnus-buffer-exists-p buffer)
5638            (save-excursion
5639              (set-buffer buffer)
5640              (gnus-deaden-summary))))))
5641
5642 (defun gnus-summary-wake-up-the-dead (&rest args)
5643   "Wake up the dead summary buffer."
5644   (interactive)
5645   (gnus-dead-summary-mode -1)
5646   (let ((name (buffer-name)))
5647     (when (string-match "Dead " name)
5648       (rename-buffer
5649        (concat (substring name 0 (match-beginning 0))
5650                (substring name (match-end 0)))
5651        t)))
5652   (gnus-message 3 "This dead summary is now alive again"))
5653
5654 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
5655 (defun gnus-summary-fetch-faq (&optional faq-dir)
5656   "Fetch the FAQ for the current group.
5657 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
5658 in."
5659   (interactive
5660    (list
5661     (when current-prefix-arg
5662       (completing-read
5663        "Faq dir: " (and (listp gnus-group-faq-directory)
5664                         (mapcar (lambda (file) (list file))
5665                                 gnus-group-faq-directory))))))
5666   (let (gnus-faq-buffer)
5667     (when (setq gnus-faq-buffer
5668                 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
5669       (gnus-configure-windows 'summary-faq))))
5670
5671 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
5672 (defun gnus-summary-describe-group (&optional force)
5673   "Describe the current newsgroup."
5674   (interactive "P")
5675   (gnus-group-describe-group force gnus-newsgroup-name))
5676
5677 (defun gnus-summary-describe-briefly ()
5678   "Describe summary mode commands briefly."
5679   (interactive)
5680   (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")))
5681
5682 ;; Walking around group mode buffer from summary mode.
5683
5684 (defun gnus-summary-next-group (&optional no-article target-group backward)
5685   "Exit current newsgroup and then select next unread newsgroup.
5686 If prefix argument NO-ARTICLE is non-nil, no article is selected
5687 initially.  If NEXT-GROUP, go to this group.  If BACKWARD, go to
5688 previous group instead."
5689   (interactive "P")
5690   ;; Stop pre-fetching.
5691   (gnus-async-halt-prefetch)
5692   (let ((current-group gnus-newsgroup-name)
5693         (current-buffer (current-buffer))
5694         entered)
5695     ;; First we semi-exit this group to update Xrefs and all variables.
5696     ;; We can't do a real exit, because the window conf must remain
5697     ;; the same in case the user is prompted for info, and we don't
5698     ;; want the window conf to change before that...
5699     (gnus-summary-exit t)
5700     (while (not entered)
5701       ;; Then we find what group we are supposed to enter.
5702       (set-buffer gnus-group-buffer)
5703       (gnus-group-jump-to-group current-group)
5704       (setq target-group
5705             (or target-group
5706                 (if (eq gnus-keep-same-level 'best)
5707                     (gnus-summary-best-group gnus-newsgroup-name)
5708                   (gnus-summary-search-group backward gnus-keep-same-level))))
5709       (if (not target-group)
5710           ;; There are no further groups, so we return to the group
5711           ;; buffer.
5712           (progn
5713             (gnus-message 5 "Returning to the group buffer")
5714             (setq entered t)
5715             (when (gnus-buffer-live-p current-buffer)
5716               (set-buffer current-buffer)
5717               (gnus-summary-exit))
5718             (gnus-run-hooks 'gnus-group-no-more-groups-hook))
5719         ;; We try to enter the target group.
5720         (gnus-group-jump-to-group target-group)
5721         (let ((unreads (gnus-group-group-unread)))
5722           (if (and (or (eq t unreads)
5723                        (and unreads (not (zerop unreads))))
5724                    (gnus-summary-read-group
5725                     target-group nil no-article
5726                     (and (buffer-name current-buffer) current-buffer)
5727                     nil backward))
5728               (setq entered t)
5729             (setq current-group target-group
5730                   target-group nil)))))))
5731
5732 (defun gnus-summary-prev-group (&optional no-article)
5733   "Exit current newsgroup and then select previous unread newsgroup.
5734 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
5735   (interactive "P")
5736   (gnus-summary-next-group no-article nil t))
5737
5738 ;; Walking around summary lines.
5739
5740 (defun gnus-summary-first-subject (&optional unread undownloaded)
5741   "Go to the first unread subject.
5742 If UNREAD is non-nil, go to the first unread article.
5743 Returns the article selected or nil if there are no unread articles."
5744   (interactive "P")
5745   (prog1
5746       (cond
5747        ;; Empty summary.
5748        ((null gnus-newsgroup-data)
5749         (gnus-message 3 "No articles in the group")
5750         nil)
5751        ;; Pick the first article.
5752        ((not unread)
5753         (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
5754         (gnus-data-number (car gnus-newsgroup-data)))
5755        ;; No unread articles.
5756        ((null gnus-newsgroup-unreads)
5757         (gnus-message 3 "No more unread articles")
5758         nil)
5759        ;; Find the first unread article.
5760        (t
5761         (let ((data gnus-newsgroup-data))
5762           (while (and data
5763                       (and (not (and undownloaded
5764                                      (eq gnus-undownloaded-mark
5765                                          (gnus-data-mark (car data)))))
5766                            (not (gnus-data-unread-p (car data)))))
5767             (setq data (cdr data)))
5768           (when data
5769             (goto-char (gnus-data-pos (car data)))
5770             (gnus-data-number (car data))))))
5771     (gnus-summary-position-point)))
5772
5773 (defun gnus-summary-next-subject (n &optional unread dont-display)
5774   "Go to next N'th summary line.
5775 If N is negative, go to the previous N'th subject line.
5776 If UNREAD is non-nil, only unread articles are selected.
5777 The difference between N and the actual number of steps taken is
5778 returned."
5779   (interactive "p")
5780   (let ((backward (< n 0))
5781         (n (abs n)))
5782     (while (and (> n 0)
5783                 (if backward
5784                     (gnus-summary-find-prev unread)
5785                   (gnus-summary-find-next unread)))
5786       (unless (zerop (setq n (1- n)))
5787         (gnus-summary-show-thread)))
5788     (when (/= 0 n)
5789       (gnus-message 7 "No more%s articles"
5790                     (if unread " unread" "")))
5791     (unless dont-display
5792       (gnus-summary-recenter)
5793       (gnus-summary-position-point))
5794     n))
5795
5796 (defun gnus-summary-next-unread-subject (n)
5797   "Go to next N'th unread summary line."
5798   (interactive "p")
5799   (gnus-summary-next-subject n t))
5800
5801 (defun gnus-summary-prev-subject (n &optional unread)
5802   "Go to previous N'th summary line.
5803 If optional argument UNREAD is non-nil, only unread article is selected."
5804   (interactive "p")
5805   (gnus-summary-next-subject (- n) unread))
5806
5807 (defun gnus-summary-prev-unread-subject (n)
5808   "Go to previous N'th unread summary line."
5809   (interactive "p")
5810   (gnus-summary-next-subject (- n) t))
5811
5812 (defun gnus-summary-goto-subject (article &optional force silent)
5813   "Go the subject line of ARTICLE.
5814 If FORCE, also allow jumping to articles not currently shown."
5815   (interactive "nArticle number: ")
5816   (let ((b (point))
5817         (data (gnus-data-find article)))
5818     ;; We read in the article if we have to.
5819     (and (not data)
5820          force
5821          (gnus-summary-insert-subject
5822           article
5823           (if (or (numberp force) (vectorp force)) force)
5824           t)
5825          (setq data (gnus-data-find article)))
5826     (goto-char b)
5827     (if (not data)
5828         (progn
5829           (unless silent
5830             (gnus-message 3 "Can't find article %d" article))
5831           nil)
5832       (goto-char (gnus-data-pos data))
5833       (gnus-summary-position-point)
5834       article)))
5835
5836 ;; Walking around summary lines with displaying articles.
5837
5838 (defun gnus-summary-expand-window (&optional arg)
5839   "Make the summary buffer take up the entire Emacs frame.
5840 Given a prefix, will force an `article' buffer configuration."
5841   (interactive "P")
5842   (if arg
5843       (gnus-configure-windows 'article 'force)
5844     (gnus-configure-windows 'summary 'force)))
5845
5846 (defun gnus-summary-display-article (article &optional all-header)
5847   "Display ARTICLE in article buffer."
5848   (gnus-set-global-variables)
5849   (if (null article)
5850       nil
5851     (prog1
5852         (if gnus-summary-display-article-function
5853             (funcall gnus-summary-display-article-function article all-header)
5854           (gnus-article-prepare article all-header))
5855       (gnus-run-hooks 'gnus-select-article-hook)
5856       (when (and gnus-current-article
5857                  (not (zerop gnus-current-article)))
5858         (gnus-summary-goto-subject gnus-current-article))
5859       (gnus-summary-recenter)
5860       (when (and gnus-use-trees gnus-show-threads)
5861         (gnus-possibly-generate-tree article)
5862         (gnus-highlight-selected-tree article))
5863       ;; Successfully display article.
5864       (gnus-article-set-window-start
5865        (cdr (assq article gnus-newsgroup-bookmarks))))))
5866
5867 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
5868   "Select the current article.
5869 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
5870 non-nil, the article will be re-fetched even if it already present in
5871 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
5872 be displayed."
5873   ;; Make sure we are in the summary buffer to work around bbdb bug.
5874   (unless (eq major-mode 'gnus-summary-mode)
5875     (set-buffer gnus-summary-buffer))
5876   (let ((article (or article (gnus-summary-article-number)))
5877         (all-headers (not (not all-headers))) ;Must be T or NIL.
5878         gnus-summary-display-article-function)
5879     (and (not pseudo)
5880          (gnus-summary-article-pseudo-p article)
5881          (error "This is a pseudo-article"))
5882     (save-excursion
5883       (set-buffer gnus-summary-buffer)
5884       (if (or (and gnus-single-article-buffer
5885                    (or (null gnus-current-article)
5886                        (null gnus-article-current)
5887                        (null (get-buffer gnus-article-buffer))
5888                        (not (eq article (cdr gnus-article-current)))
5889                        (not (equal (car gnus-article-current)
5890                                    gnus-newsgroup-name))))
5891               (and (not gnus-single-article-buffer)
5892                    (or (null gnus-current-article)
5893                        (not (eq gnus-current-article article))))
5894               force)
5895           ;; The requested article is different from the current article.
5896           (progn
5897             (when (gnus-buffer-live-p gnus-article-buffer)
5898               (with-current-buffer gnus-article-buffer
5899                 (mm-enable-multibyte-mule4)))
5900             (gnus-summary-display-article article all-headers)
5901             (when (gnus-buffer-live-p gnus-article-buffer)
5902                (with-current-buffer gnus-article-buffer
5903                 (if (not gnus-article-decoded-p) ;; a local variable
5904                     (mm-disable-multibyte-mule4))))
5905             (when (or all-headers gnus-show-all-headers)
5906               (gnus-article-show-all-headers))
5907             (gnus-article-set-window-start
5908              (cdr (assq article gnus-newsgroup-bookmarks)))
5909             article)
5910         (when (or all-headers gnus-show-all-headers)
5911           (gnus-article-show-all-headers))
5912         'old))))
5913
5914 (defun gnus-summary-set-current-mark (&optional current-mark)
5915   "Obsolete function."
5916   nil)
5917
5918 (defun gnus-summary-next-article (&optional unread subject backward push)
5919   "Select the next article.
5920 If UNREAD, only unread articles are selected.
5921 If SUBJECT, only articles with SUBJECT are selected.
5922 If BACKWARD, the previous article is selected instead of the next."
5923   (interactive "P")
5924   (cond
5925    ;; Is there such an article?
5926    ((and (gnus-summary-search-forward unread subject backward)
5927          (or (gnus-summary-display-article (gnus-summary-article-number))
5928              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
5929     (gnus-summary-position-point))
5930    ;; If not, we try the first unread, if that is wanted.
5931    ((and subject
5932          gnus-auto-select-same
5933          (gnus-summary-first-unread-article))
5934     (gnus-summary-position-point)
5935     (gnus-message 6 "Wrapped"))
5936    ;; Try to get next/previous article not displayed in this group.
5937    ((and gnus-auto-extend-newsgroup
5938          (not unread) (not subject))
5939     (gnus-summary-goto-article
5940      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
5941      nil (count-lines (point-min) (point))))
5942    ;; Go to next/previous group.
5943    (t
5944     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
5945       (gnus-summary-jump-to-group gnus-newsgroup-name))
5946     (let ((cmd last-command-char)
5947           (point
5948            (save-excursion
5949              (set-buffer gnus-group-buffer)
5950              (point)))
5951           (group
5952            (if (eq gnus-keep-same-level 'best)
5953                (gnus-summary-best-group gnus-newsgroup-name)
5954              (gnus-summary-search-group backward gnus-keep-same-level))))
5955       ;; For some reason, the group window gets selected.  We change
5956       ;; it back.
5957       (select-window (get-buffer-window (current-buffer)))
5958       ;; Select next unread newsgroup automagically.
5959       (cond
5960        ((or (not gnus-auto-select-next)
5961             (not cmd))
5962         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
5963        ((or (eq gnus-auto-select-next 'quietly)
5964             (and (eq gnus-auto-select-next 'slightly-quietly)
5965                  push)
5966             (and (eq gnus-auto-select-next 'almost-quietly)
5967                  (gnus-summary-last-article-p)))
5968         ;; Select quietly.
5969         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
5970             (gnus-summary-exit)
5971           (gnus-message 7 "No more%s articles (%s)..."
5972                         (if unread " unread" "")
5973                         (if group (concat "selecting " group)
5974                           "exiting"))
5975           (gnus-summary-next-group nil group backward)))
5976        (t
5977         (when (gnus-key-press-event-p last-input-event)
5978           (gnus-summary-walk-group-buffer
5979            gnus-newsgroup-name cmd unread backward point))))))))
5980
5981 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
5982   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
5983                       (?\C-p (gnus-group-prev-unread-group 1))))
5984         (cursor-in-echo-area t)
5985         keve key group ended)
5986     (save-excursion
5987       (set-buffer gnus-group-buffer)
5988       (goto-char start)
5989       (setq group
5990             (if (eq gnus-keep-same-level 'best)
5991                 (gnus-summary-best-group gnus-newsgroup-name)
5992               (gnus-summary-search-group backward gnus-keep-same-level))))
5993     (while (not ended)
5994       (gnus-message
5995        5 "No more%s articles%s" (if unread " unread" "")
5996        (if (and group
5997                 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
5998            (format " (Type %s for %s [%s])"
5999                    (single-key-description cmd) group
6000                    (car (gnus-gethash group gnus-newsrc-hashtb)))
6001          (format " (Type %s to exit %s)"
6002                  (single-key-description cmd)
6003                  gnus-newsgroup-name)))
6004       ;; Confirm auto selection.
6005       (setq key (car (setq keve (gnus-read-event-char))))
6006       (setq ended t)
6007       (cond
6008        ((assq key keystrokes)
6009         (let ((obuf (current-buffer)))
6010           (switch-to-buffer gnus-group-buffer)
6011           (when group
6012             (gnus-group-jump-to-group group))
6013           (eval (cadr (assq key keystrokes)))
6014           (setq group (gnus-group-group-name))
6015           (switch-to-buffer obuf))
6016         (setq ended nil))
6017        ((equal key cmd)
6018         (if (or (not group)
6019                 (gnus-ephemeral-group-p gnus-newsgroup-name))
6020             (gnus-summary-exit)
6021           (gnus-summary-next-group nil group backward)))
6022        (t
6023         (push (cdr keve) unread-command-events))))))
6024
6025 (defun gnus-summary-next-unread-article ()
6026   "Select unread article after current one."
6027   (interactive)
6028   (gnus-summary-next-article
6029    (or (not (eq gnus-summary-goto-unread 'never))
6030        (gnus-summary-last-article-p (gnus-summary-article-number)))
6031    (and gnus-auto-select-same
6032         (gnus-summary-article-subject))))
6033
6034 (defun gnus-summary-prev-article (&optional unread subject)
6035   "Select the article after the current one.
6036 If UNREAD is non-nil, only unread articles are selected."
6037   (interactive "P")
6038   (gnus-summary-next-article unread subject t))
6039
6040 (defun gnus-summary-prev-unread-article ()
6041   "Select unread article before current one."
6042   (interactive)
6043   (gnus-summary-prev-article
6044    (or (not (eq gnus-summary-goto-unread 'never))
6045        (gnus-summary-first-article-p (gnus-summary-article-number)))
6046    (and gnus-auto-select-same
6047         (gnus-summary-article-subject))))
6048
6049 (defun gnus-summary-next-page (&optional lines circular)
6050   "Show next page of the selected article.
6051 If at the end of the current article, select the next article.
6052 LINES says how many lines should be scrolled up.
6053
6054 If CIRCULAR is non-nil, go to the start of the article instead of
6055 selecting the next article when reaching the end of the current
6056 article."
6057   (interactive "P")
6058   (setq gnus-summary-buffer (current-buffer))
6059   (gnus-set-global-variables)
6060   (let ((article (gnus-summary-article-number))
6061         (article-window (get-buffer-window gnus-article-buffer t))
6062         endp)
6063     ;; If the buffer is empty, we have no article.
6064     (unless article
6065       (error "No article to select"))
6066     (gnus-configure-windows 'article)
6067     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
6068         (if (and (eq gnus-summary-goto-unread 'never)
6069                  (not (gnus-summary-last-article-p article)))
6070             (gnus-summary-next-article)
6071           (gnus-summary-next-unread-article))
6072       (if (or (null gnus-current-article)
6073               (null gnus-article-current)
6074               (/= article (cdr gnus-article-current))
6075               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6076           ;; Selected subject is different from current article's.
6077           (gnus-summary-display-article article)
6078         (when article-window
6079           (gnus-eval-in-buffer-window gnus-article-buffer
6080             (setq endp (gnus-article-next-page lines)))
6081           (when endp
6082             (cond (circular
6083                    (gnus-summary-beginning-of-article))
6084                   (lines
6085                    (gnus-message 3 "End of message"))
6086                   ((null lines)
6087                    (if (and (eq gnus-summary-goto-unread 'never)
6088                             (not (gnus-summary-last-article-p article)))
6089                        (gnus-summary-next-article)
6090                      (gnus-summary-next-unread-article))))))))
6091     (gnus-summary-recenter)
6092     (gnus-summary-position-point)))
6093
6094 (defun gnus-summary-prev-page (&optional lines move)
6095   "Show previous page of selected article.
6096 Argument LINES specifies lines to be scrolled down.
6097 If MOVE, move to the previous unread article if point is at
6098 the beginning of the buffer."
6099   (interactive "P")
6100   (let ((article (gnus-summary-article-number))
6101         (article-window (get-buffer-window gnus-article-buffer t))
6102         endp)
6103     (gnus-configure-windows 'article)
6104     (if (or (null gnus-current-article)
6105             (null gnus-article-current)
6106             (/= article (cdr gnus-article-current))
6107             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
6108         ;; Selected subject is different from current article's.
6109         (gnus-summary-display-article article)
6110       (gnus-summary-recenter)
6111       (when article-window
6112         (gnus-eval-in-buffer-window gnus-article-buffer
6113           (setq endp (gnus-article-prev-page lines)))
6114         (when (and move endp)
6115           (cond (lines
6116                  (gnus-message 3 "Beginning of message"))
6117                 ((null lines)
6118                  (if (and (eq gnus-summary-goto-unread 'never)
6119                           (not (gnus-summary-first-article-p article)))
6120                      (gnus-summary-prev-article)
6121                    (gnus-summary-prev-unread-article))))))))
6122   (gnus-summary-position-point))
6123
6124 (defun gnus-summary-prev-page-or-article (&optional lines)
6125   "Show previous page of selected article.
6126 Argument LINES specifies lines to be scrolled down.
6127 If at the beginning of the article, go to the next article."
6128   (interactive "P")
6129   (gnus-summary-prev-page lines t))
6130
6131 (defun gnus-summary-scroll-up (lines)
6132   "Scroll up (or down) one line current article.
6133 Argument LINES specifies lines to be scrolled up (or down if negative)."
6134   (interactive "p")
6135   (gnus-configure-windows 'article)
6136   (gnus-summary-show-thread)
6137   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
6138     (gnus-eval-in-buffer-window gnus-article-buffer
6139       (cond ((> lines 0)
6140              (when (gnus-article-next-page lines)
6141                (gnus-message 3 "End of message")))
6142             ((< lines 0)
6143              (gnus-article-prev-page (- lines))))))
6144   (gnus-summary-recenter)
6145   (gnus-summary-position-point))
6146
6147 (defun gnus-summary-scroll-down (lines)
6148   "Scroll down (or up) one line current article.
6149 Argument LINES specifies lines to be scrolled down (or up if negative)."
6150   (interactive "p")
6151   (gnus-summary-scroll-up (- lines)))
6152
6153 (defun gnus-summary-next-same-subject ()
6154   "Select next article which has the same subject as current one."
6155   (interactive)
6156   (gnus-summary-next-article nil (gnus-summary-article-subject)))
6157
6158 (defun gnus-summary-prev-same-subject ()
6159   "Select previous article which has the same subject as current one."
6160   (interactive)
6161   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
6162
6163 (defun gnus-summary-next-unread-same-subject ()
6164   "Select next unread article which has the same subject as current one."
6165   (interactive)
6166   (gnus-summary-next-article t (gnus-summary-article-subject)))
6167
6168 (defun gnus-summary-prev-unread-same-subject ()
6169   "Select previous unread article which has the same subject as current one."
6170   (interactive)
6171   (gnus-summary-prev-article t (gnus-summary-article-subject)))
6172
6173 (defun gnus-summary-first-unread-article ()
6174   "Select the first unread article.
6175 Return nil if there are no unread articles."
6176   (interactive)
6177   (prog1
6178       (when (gnus-summary-first-subject t)
6179         (gnus-summary-show-thread)
6180         (gnus-summary-first-subject t)
6181         (gnus-summary-display-article (gnus-summary-article-number)))
6182     (gnus-summary-position-point)))
6183
6184 (defun gnus-summary-first-unread-subject ()
6185   "Place the point on the subject line of the first unread article.
6186 Return nil if there are no unread articles."
6187   (interactive)
6188   (prog1
6189       (when (gnus-summary-first-subject t)
6190         (gnus-summary-show-thread)
6191         (gnus-summary-first-subject t))
6192     (gnus-summary-position-point)))
6193
6194 (defun gnus-summary-first-article ()
6195   "Select the first article.
6196 Return nil if there are no articles."
6197   (interactive)
6198   (prog1
6199       (when (gnus-summary-first-subject)
6200         (gnus-summary-show-thread)
6201         (gnus-summary-first-subject)
6202         (gnus-summary-display-article (gnus-summary-article-number)))
6203     (gnus-summary-position-point)))
6204
6205 (defun gnus-summary-best-unread-article ()
6206   "Select the unread article with the highest score."
6207   (interactive)
6208   (let ((best -1000000)
6209         (data gnus-newsgroup-data)
6210         article score)
6211     (while data
6212       (and (gnus-data-unread-p (car data))
6213            (> (setq score
6214                     (gnus-summary-article-score (gnus-data-number (car data))))
6215               best)
6216            (setq best score
6217                  article (gnus-data-number (car data))))
6218       (setq data (cdr data)))
6219     (prog1
6220         (if article
6221             (gnus-summary-goto-article article)
6222           (error "No unread articles"))
6223       (gnus-summary-position-point))))
6224
6225 (defun gnus-summary-last-subject ()
6226   "Go to the last displayed subject line in the group."
6227   (let ((article (gnus-data-number (car (gnus-data-list t)))))
6228     (when article
6229       (gnus-summary-goto-subject article))))
6230
6231 (defun gnus-summary-goto-article (article &optional all-headers force)
6232   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
6233 If ALL-HEADERS is non-nil, no header lines are hidden.
6234 If FORCE, go to the article even if it isn't displayed.  If FORCE
6235 is a number, it is the line the article is to be displayed on."
6236   (interactive
6237    (list
6238     (completing-read
6239      "Article number or Message-ID: "
6240      (mapcar (lambda (number) (list (int-to-string number)))
6241              gnus-newsgroup-limit))
6242     current-prefix-arg
6243     t))
6244   (when (gnus-buffer-live-p gnus-article-buffer)
6245     (with-current-buffer gnus-article-buffer
6246       (mm-enable-multibyte-mule4)))
6247   (prog1
6248       (if (and (stringp article)
6249                (string-match "@" article))
6250           (gnus-summary-refer-article article)
6251         (when (stringp article)
6252           (setq article (string-to-number article)))
6253         (if (gnus-summary-goto-subject article force)
6254             (gnus-summary-display-article article all-headers)
6255           (gnus-message 4 "Couldn't go to article %s" article) nil))
6256     (gnus-summary-position-point)))
6257
6258 (defun gnus-summary-goto-last-article ()
6259   "Go to the previously read article."
6260   (interactive)
6261   (prog1
6262       (when gnus-last-article
6263         (gnus-summary-goto-article gnus-last-article nil t))
6264     (gnus-summary-position-point)))
6265
6266 (defun gnus-summary-pop-article (number)
6267   "Pop one article off the history and go to the previous.
6268 NUMBER articles will be popped off."
6269   (interactive "p")
6270   (let (to)
6271     (setq gnus-newsgroup-history
6272           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
6273     (if to
6274         (gnus-summary-goto-article (car to) nil t)
6275       (error "Article history empty")))
6276   (gnus-summary-position-point))
6277
6278 ;; Summary commands and functions for limiting the summary buffer.
6279
6280 (defun gnus-summary-limit-to-articles (n)
6281   "Limit the summary buffer to the next N articles.
6282 If not given a prefix, use the process marked articles instead."
6283   (interactive "P")
6284   (prog1
6285       (let ((articles (gnus-summary-work-articles n)))
6286         (setq gnus-newsgroup-processable nil)
6287         (gnus-summary-limit articles))
6288     (gnus-summary-position-point)))
6289
6290 (defun gnus-summary-pop-limit (&optional total)
6291   "Restore the previous limit.
6292 If given a prefix, remove all limits."
6293   (interactive "P")
6294   (when total
6295     (setq gnus-newsgroup-limits
6296           (list (mapcar (lambda (h) (mail-header-number h))
6297                         gnus-newsgroup-headers))))
6298   (unless gnus-newsgroup-limits
6299     (error "No limit to pop"))
6300   (prog1
6301       (gnus-summary-limit nil 'pop)
6302     (gnus-summary-position-point)))
6303
6304 (defun gnus-summary-limit-to-subject (subject &optional header)
6305   "Limit the summary buffer to articles that have subjects that match a regexp."
6306   (interactive "sLimit to subject (regexp): ")
6307   (unless header
6308     (setq header "subject"))
6309   (when (not (equal "" subject))
6310     (prog1
6311         (let ((articles (gnus-summary-find-matching
6312                          (or header "subject") subject 'all)))
6313           (unless articles
6314             (error "Found no matches for \"%s\"" subject))
6315           (gnus-summary-limit articles))
6316       (gnus-summary-position-point))))
6317
6318 (defun gnus-summary-limit-to-author (from)
6319   "Limit the summary buffer to articles that have authors that match a regexp."
6320   (interactive "sLimit to author (regexp): ")
6321   (gnus-summary-limit-to-subject from "from"))
6322
6323 (defun gnus-summary-limit-to-age (age &optional younger-p)
6324   "Limit the summary buffer to articles that are older than (or equal) AGE days.
6325 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
6326 articles that are younger than AGE days."
6327   (interactive
6328    (let ((younger current-prefix-arg)
6329          (days-got nil)
6330          days)
6331      (while (not days-got)
6332        (setq days (if younger
6333                       (read-string "Limit to articles within (in days): ")
6334                     (read-string "Limit to articles old than (in days): ")))
6335        (when (> (length days) 0)
6336          (setq days (read days)))
6337        (if (numberp days)
6338            (setq days-got t)
6339          (message "Please enter a number.")
6340          (sleep-for 1)))
6341      (list days younger)))
6342   (prog1
6343       (let ((data gnus-newsgroup-data)
6344             (cutoff (days-to-time age))
6345             articles d date is-younger)
6346         (while (setq d (pop data))
6347           (when (and (vectorp (gnus-data-header d))
6348                      (setq date (mail-header-date (gnus-data-header d))))
6349             (setq is-younger (time-less-p
6350                               (time-since (condition-case ()
6351                                               (date-to-time date)
6352                                             (error '(0 0))))
6353                               cutoff))
6354             (when (if younger-p
6355                       is-younger
6356                     (not is-younger))
6357               (push (gnus-data-number d) articles))))
6358         (gnus-summary-limit (nreverse articles)))
6359     (gnus-summary-position-point)))
6360
6361 (defun gnus-summary-limit-to-extra (header regexp)
6362   "Limit the summary buffer to articles that match an 'extra' header."
6363   (interactive
6364    (let ((header
6365           (intern
6366            (gnus-completing-read
6367             (symbol-name (car gnus-extra-headers))
6368             "Limit extra header:"
6369             (mapcar (lambda (x)
6370                       (cons (symbol-name x) x))
6371                     gnus-extra-headers)
6372             nil
6373             t))))
6374      (list header
6375            (read-string (format "Limit to header %s (regexp): " header)))))
6376   (when (not (equal "" regexp))
6377     (prog1
6378         (let ((articles (gnus-summary-find-matching
6379                          (cons 'extra header) regexp 'all)))
6380           (unless articles
6381             (error "Found no matches for \"%s\"" regexp))
6382           (gnus-summary-limit articles))
6383       (gnus-summary-position-point))))
6384
6385 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6386 (make-obsolete
6387  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6388
6389 (defun gnus-summary-limit-to-unread (&optional all)
6390   "Limit the summary buffer to articles that are not marked as read.
6391 If ALL is non-nil, limit strictly to unread articles."
6392   (interactive "P")
6393   (if all
6394       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
6395     (gnus-summary-limit-to-marks
6396      ;; Concat all the marks that say that an article is read and have
6397      ;; those removed.
6398      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
6399            gnus-killed-mark gnus-kill-file-mark
6400            gnus-low-score-mark gnus-expirable-mark
6401            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
6402            gnus-duplicate-mark gnus-souped-mark)
6403      'reverse)))
6404
6405 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
6406 (make-obsolete 'gnus-summary-delete-marked-with
6407                'gnus-summary-limit-exlude-marks)
6408
6409 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
6410   "Exclude articles that are marked with MARKS (e.g. \"DK\").
6411 If REVERSE, limit the summary buffer to articles that are marked
6412 with MARKS.  MARKS can either be a string of marks or a list of marks.
6413 Returns how many articles were removed."
6414   (interactive "sMarks: ")
6415   (gnus-summary-limit-to-marks marks t))
6416
6417 (defun gnus-summary-limit-to-marks (marks &optional reverse)
6418   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
6419 If REVERSE (the prefix), limit the summary buffer to articles that are
6420 not marked with MARKS.  MARKS can either be a string of marks or a
6421 list of marks.
6422 Returns how many articles were removed."
6423   (interactive "sMarks: \nP")
6424   (prog1
6425       (let ((data gnus-newsgroup-data)
6426             (marks (if (listp marks) marks
6427                      (append marks nil))) ; Transform to list.
6428             articles)
6429         (while data
6430           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
6431                   (memq (gnus-data-mark (car data)) marks))
6432             (push (gnus-data-number (car data)) articles))
6433           (setq data (cdr data)))
6434         (gnus-summary-limit articles))
6435     (gnus-summary-position-point)))
6436
6437 (defun gnus-summary-limit-to-score (&optional score)
6438   "Limit to articles with score at or above SCORE."
6439   (interactive "P")
6440   (setq score (if score
6441                   (prefix-numeric-value score)
6442                 (or gnus-summary-default-score 0)))
6443   (let ((data gnus-newsgroup-data)
6444         articles)
6445     (while data
6446       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
6447                 score)
6448         (push (gnus-data-number (car data)) articles))
6449       (setq data (cdr data)))
6450     (prog1
6451         (gnus-summary-limit articles)
6452       (gnus-summary-position-point))))
6453
6454 (defun gnus-summary-limit-include-thread (id)
6455   "Display all the hidden articles that in the current thread."
6456   (interactive (list (mail-header-id (gnus-summary-article-header))))
6457   (let ((articles (gnus-articles-in-thread
6458                    (gnus-id-to-thread (gnus-root-id id)))))
6459     (prog1
6460         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
6461       (gnus-summary-position-point))))
6462
6463 (defun gnus-summary-limit-include-dormant ()
6464   "Display all the hidden articles that are marked as dormant.
6465 Note that this command only works on a subset of the articles currently
6466 fetched for this group."
6467   (interactive)
6468   (unless gnus-newsgroup-dormant
6469     (error "There are no dormant articles in this group"))
6470   (prog1
6471       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
6472     (gnus-summary-position-point)))
6473
6474 (defun gnus-summary-limit-exclude-dormant ()
6475   "Hide all dormant articles."
6476   (interactive)
6477   (prog1
6478       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
6479     (gnus-summary-position-point)))
6480
6481 (defun gnus-summary-limit-exclude-childless-dormant ()
6482   "Hide all dormant articles that have no children."
6483   (interactive)
6484   (let ((data (gnus-data-list t))
6485         articles d children)
6486     ;; Find all articles that are either not dormant or have
6487     ;; children.
6488     (while (setq d (pop data))
6489       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
6490                 (and (setq children
6491                            (gnus-article-children (gnus-data-number d)))
6492                      (let (found)
6493                        (while children
6494                          (when (memq (car children) articles)
6495                            (setq children nil
6496                                  found t))
6497                          (pop children))
6498                        found)))
6499         (push (gnus-data-number d) articles)))
6500     ;; Do the limiting.
6501     (prog1
6502         (gnus-summary-limit articles)
6503       (gnus-summary-position-point))))
6504
6505 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
6506   "Mark all unread excluded articles as read.
6507 If ALL, mark even excluded ticked and dormants as read."
6508   (interactive "P")
6509   (let ((articles (gnus-sorted-complement
6510                    (sort
6511                     (mapcar (lambda (h) (mail-header-number h))
6512                             gnus-newsgroup-headers)
6513                     '<)
6514                    (sort gnus-newsgroup-limit '<)))
6515         article)
6516     (setq gnus-newsgroup-unreads
6517           (gnus-intersection gnus-newsgroup-unreads gnus-newsgroup-limit))
6518     (if all
6519         (setq gnus-newsgroup-dormant nil
6520               gnus-newsgroup-marked nil
6521               gnus-newsgroup-reads
6522               (nconc
6523                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
6524                gnus-newsgroup-reads))
6525       (while (setq article (pop articles))
6526         (unless (or (memq article gnus-newsgroup-dormant)
6527                     (memq article gnus-newsgroup-marked))
6528           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
6529
6530 (defun gnus-summary-limit (articles &optional pop)
6531   (if pop
6532       ;; We pop the previous limit off the stack and use that.
6533       (setq articles (car gnus-newsgroup-limits)
6534             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
6535     ;; We use the new limit, so we push the old limit on the stack.
6536     (push gnus-newsgroup-limit gnus-newsgroup-limits))
6537   ;; Set the limit.
6538   (setq gnus-newsgroup-limit articles)
6539   (let ((total (length gnus-newsgroup-data))
6540         (data (gnus-data-find-list (gnus-summary-article-number)))
6541         (gnus-summary-mark-below nil)   ; Inhibit this.
6542         found)
6543     ;; This will do all the work of generating the new summary buffer
6544     ;; according to the new limit.
6545     (gnus-summary-prepare)
6546     ;; Hide any threads, possibly.
6547     (and gnus-show-threads
6548          gnus-thread-hide-subtree
6549          (gnus-summary-hide-all-threads))
6550     ;; Try to return to the article you were at, or one in the
6551     ;; neighborhood.
6552     (when data
6553       ;; We try to find some article after the current one.
6554       (while data
6555         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
6556           (setq data nil
6557                 found t))
6558         (setq data (cdr data))))
6559     (unless found
6560       ;; If there is no data, that means that we were after the last
6561       ;; article.  The same goes when we can't find any articles
6562       ;; after the current one.
6563       (goto-char (point-max))
6564       (gnus-summary-find-prev))
6565     (gnus-set-mode-line 'summary)
6566     ;; We return how many articles were removed from the summary
6567     ;; buffer as a result of the new limit.
6568     (- total (length gnus-newsgroup-data))))
6569
6570 (defsubst gnus-invisible-cut-children (threads)
6571   (let ((num 0))
6572     (while threads
6573       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
6574         (incf num))
6575       (pop threads))
6576     (< num 2)))
6577
6578 (defsubst gnus-cut-thread (thread)
6579   "Go forwards in the thread until we find an article that we want to display."
6580   (when (or (eq gnus-fetch-old-headers 'some)
6581             (eq gnus-fetch-old-headers 'invisible)
6582             (numberp gnus-fetch-old-headers)
6583             (eq gnus-build-sparse-threads 'some)
6584             (eq gnus-build-sparse-threads 'more))
6585     ;; Deal with old-fetched headers and sparse threads.
6586     (while (and
6587             thread
6588             (or
6589              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
6590              (gnus-summary-article-ancient-p
6591               (mail-header-number (car thread))))
6592             (if (or (<= (length (cdr thread)) 1)
6593                     (eq gnus-fetch-old-headers 'invisible))
6594                 (setq gnus-newsgroup-limit
6595                       (delq (mail-header-number (car thread))
6596                             gnus-newsgroup-limit)
6597                       thread (cadr thread))
6598               (when (gnus-invisible-cut-children (cdr thread))
6599                 (let ((th (cdr thread)))
6600                   (while th
6601                     (if (memq (mail-header-number (caar th))
6602                               gnus-newsgroup-limit)
6603                         (setq thread (car th)
6604                               th nil)
6605                       (setq th (cdr th))))))))))
6606   thread)
6607
6608 (defun gnus-cut-threads (threads)
6609   "Cut off all uninteresting articles from the beginning of threads."
6610   (when (or (eq gnus-fetch-old-headers 'some)
6611             (eq gnus-fetch-old-headers 'invisible)
6612             (numberp gnus-fetch-old-headers)
6613             (eq gnus-build-sparse-threads 'some)
6614             (eq gnus-build-sparse-threads 'more))
6615     (let ((th threads))
6616       (while th
6617         (setcar th (gnus-cut-thread (car th)))
6618         (setq th (cdr th)))))
6619   ;; Remove nixed out threads.
6620   (delq nil threads))
6621
6622 (defun gnus-summary-initial-limit (&optional show-if-empty)
6623   "Figure out what the initial limit is supposed to be on group entry.
6624 This entails weeding out unwanted dormants, low-scored articles,
6625 fetch-old-headers verbiage, and so on."
6626   ;; Most groups have nothing to remove.
6627   (if (or gnus-inhibit-limiting
6628           (and (null gnus-newsgroup-dormant)
6629                (not (eq gnus-fetch-old-headers 'some))
6630                (not (numberp gnus-fetch-old-headers))
6631                (not (eq gnus-fetch-old-headers 'invisible))
6632                (null gnus-summary-expunge-below)
6633                (not (eq gnus-build-sparse-threads 'some))
6634                (not (eq gnus-build-sparse-threads 'more))
6635                (null gnus-thread-expunge-below)
6636                (not gnus-use-nocem)))
6637       ()                                ; Do nothing.
6638     (push gnus-newsgroup-limit gnus-newsgroup-limits)
6639     (setq gnus-newsgroup-limit nil)
6640     (mapatoms
6641      (lambda (node)
6642        (unless (car (symbol-value node))
6643          ;; These threads have no parents -- they are roots.
6644          (let ((nodes (cdr (symbol-value node)))
6645                thread)
6646            (while nodes
6647              (if (and gnus-thread-expunge-below
6648                       (< (gnus-thread-total-score (car nodes))
6649                          gnus-thread-expunge-below))
6650                  (gnus-expunge-thread (pop nodes))
6651                (setq thread (pop nodes))
6652                (gnus-summary-limit-children thread))))))
6653      gnus-newsgroup-dependencies)
6654     ;; If this limitation resulted in an empty group, we might
6655     ;; pop the previous limit and use it instead.
6656     (when (and (not gnus-newsgroup-limit)
6657                show-if-empty)
6658       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
6659     gnus-newsgroup-limit))
6660
6661 (defun gnus-summary-limit-children (thread)
6662   "Return 1 if this subthread is visible and 0 if it is not."
6663   ;; First we get the number of visible children to this thread.  This
6664   ;; is done by recursing down the thread using this function, so this
6665   ;; will really go down to a leaf article first, before slowly
6666   ;; working its way up towards the root.
6667   (when thread
6668     (let ((children
6669            (if (cdr thread)
6670                (apply '+ (mapcar 'gnus-summary-limit-children
6671                                  (cdr thread)))
6672              0))
6673           (number (mail-header-number (car thread)))
6674           score)
6675       (if (and
6676            (not (memq number gnus-newsgroup-marked))
6677            (or
6678             ;; If this article is dormant and has absolutely no visible
6679             ;; children, then this article isn't visible.
6680             (and (memq number gnus-newsgroup-dormant)
6681                  (zerop children))
6682             ;; If this is "fetch-old-headered" and there is no
6683             ;; visible children, then we don't want this article.
6684             (and (or (eq gnus-fetch-old-headers 'some)
6685                      (numberp gnus-fetch-old-headers))
6686                  (gnus-summary-article-ancient-p number)
6687                  (zerop children))
6688             ;; If this is "fetch-old-headered" and `invisible', then
6689             ;; we don't want this article.
6690             (and (eq gnus-fetch-old-headers 'invisible)
6691                  (gnus-summary-article-ancient-p number))
6692             ;; If this is a sparsely inserted article with no children,
6693             ;; we don't want it.
6694             (and (eq gnus-build-sparse-threads 'some)
6695                  (gnus-summary-article-sparse-p number)
6696                  (zerop children))
6697             ;; If we use expunging, and this article is really
6698             ;; low-scored, then we don't want this article.
6699             (when (and gnus-summary-expunge-below
6700                        (< (setq score
6701                                 (or (cdr (assq number gnus-newsgroup-scored))
6702                                     gnus-summary-default-score))
6703                           gnus-summary-expunge-below))
6704               ;; We increase the expunge-tally here, but that has
6705               ;; nothing to do with the limits, really.
6706               (incf gnus-newsgroup-expunged-tally)
6707               ;; We also mark as read here, if that's wanted.
6708               (when (and gnus-summary-mark-below
6709                          (< score gnus-summary-mark-below))
6710                 (setq gnus-newsgroup-unreads
6711                       (delq number gnus-newsgroup-unreads))
6712                 (if gnus-newsgroup-auto-expire
6713                     (push number gnus-newsgroup-expirable)
6714                   (push (cons number gnus-low-score-mark)
6715                         gnus-newsgroup-reads)))
6716               t)
6717             ;; Check NoCeM things.
6718             (if (and gnus-use-nocem
6719                      (gnus-nocem-unwanted-article-p
6720                       (mail-header-id (car thread))))
6721                 (progn
6722                   (setq gnus-newsgroup-unreads
6723                         (delq number gnus-newsgroup-unreads))
6724                   t))))
6725           ;; Nope, invisible article.
6726           0
6727         ;; Ok, this article is to be visible, so we add it to the limit
6728         ;; and return 1.
6729         (push number gnus-newsgroup-limit)
6730         1))))
6731
6732 (defun gnus-expunge-thread (thread)
6733   "Mark all articles in THREAD as read."
6734   (let* ((number (mail-header-number (car thread))))
6735     (incf gnus-newsgroup-expunged-tally)
6736     ;; We also mark as read here, if that's wanted.
6737     (setq gnus-newsgroup-unreads
6738           (delq number gnus-newsgroup-unreads))
6739     (if gnus-newsgroup-auto-expire
6740         (push number gnus-newsgroup-expirable)
6741       (push (cons number gnus-low-score-mark)
6742             gnus-newsgroup-reads)))
6743   ;; Go recursively through all subthreads.
6744   (mapcar 'gnus-expunge-thread (cdr thread)))
6745
6746 ;; Summary article oriented commands
6747
6748 (defun gnus-summary-refer-parent-article (n)
6749   "Refer parent article N times.
6750 If N is negative, go to ancestor -N instead.
6751 The difference between N and the number of articles fetched is returned."
6752   (interactive "p")
6753   (let ((skip 1)
6754         error header ref)
6755     (when (not (natnump n))
6756       (setq skip (abs n)
6757             n 1))
6758     (while (and (> n 0)
6759                 (not error))
6760       (setq header (gnus-summary-article-header))
6761       (if (and (eq (mail-header-number header)
6762                    (cdr gnus-article-current))
6763                (equal gnus-newsgroup-name
6764                       (car gnus-article-current)))
6765           ;; If we try to find the parent of the currently
6766           ;; displayed article, then we take a look at the actual
6767           ;; References header, since this is slightly more
6768           ;; reliable than the References field we got from the
6769           ;; server.
6770           (save-excursion
6771             (set-buffer gnus-original-article-buffer)
6772             (nnheader-narrow-to-headers)
6773             (unless (setq ref (message-fetch-field "references"))
6774               (setq ref (message-fetch-field "in-reply-to")))
6775             (widen))
6776         (setq ref
6777               ;; It's not the current article, so we take a bet on
6778               ;; the value we got from the server.
6779               (mail-header-references header)))
6780       (if (and ref
6781                (not (equal ref "")))
6782           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
6783             (gnus-message 1 "Couldn't find parent"))
6784         (gnus-message 1 "No references in article %d"
6785                       (gnus-summary-article-number))
6786         (setq error t))
6787       (decf n))
6788     (gnus-summary-position-point)
6789     n))
6790
6791 (defun gnus-summary-refer-references ()
6792   "Fetch all articles mentioned in the References header.
6793 Return the number of articles fetched."
6794   (interactive)
6795   (let ((ref (mail-header-references (gnus-summary-article-header)))
6796         (current (gnus-summary-article-number))
6797         (n 0))
6798     (if (or (not ref)
6799             (equal ref ""))
6800         (error "No References in the current article")
6801       ;; For each Message-ID in the References header...
6802       (while (string-match "<[^>]*>" ref)
6803         (incf n)
6804         ;; ... fetch that article.
6805         (gnus-summary-refer-article
6806          (prog1 (match-string 0 ref)
6807            (setq ref (substring ref (match-end 0))))))
6808       (gnus-summary-goto-subject current)
6809       (gnus-summary-position-point)
6810       n)))
6811
6812 (defun gnus-summary-refer-thread (&optional limit)
6813   "Fetch all articles in the current thread.
6814 If LIMIT (the numerical prefix), fetch that many old headers instead
6815 of what's specified by the `gnus-refer-thread-limit' variable."
6816   (interactive "P")
6817   (let ((id (mail-header-id (gnus-summary-article-header)))
6818         (limit (if limit (prefix-numeric-value limit)
6819                  gnus-refer-thread-limit)))
6820     ;; We want to fetch LIMIT *old* headers, but we also have to
6821     ;; re-fetch all the headers in the current buffer, because many of
6822     ;; them may be undisplayed.  So we adjust LIMIT.
6823     (when (numberp limit)
6824       (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin)))
6825     (unless (eq gnus-fetch-old-headers 'invisible)
6826       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
6827       ;; Retrieve the headers and read them in.
6828       (if (eq (gnus-retrieve-headers
6829                (list gnus-newsgroup-end) gnus-newsgroup-name limit)
6830               'nov)
6831           (gnus-build-all-threads)
6832         (error "Can't fetch thread from backends that don't support NOV"))
6833       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
6834     (gnus-summary-limit-include-thread id)))
6835
6836 (defun gnus-summary-refer-article (message-id)
6837   "Fetch an article specified by MESSAGE-ID."
6838   (interactive "sMessage-ID: ")
6839   (when (and (stringp message-id)
6840              (not (zerop (length message-id))))
6841     ;; Construct the correct Message-ID if necessary.
6842     ;; Suggested by tale@pawl.rpi.edu.
6843     (unless (string-match "^<" message-id)
6844       (setq message-id (concat "<" message-id)))
6845     (unless (string-match ">$" message-id)
6846       (setq message-id (concat message-id ">")))
6847     (let* ((header (gnus-id-to-header message-id))
6848            (sparse (and header
6849                         (gnus-summary-article-sparse-p
6850                          (mail-header-number header))
6851                         (memq (mail-header-number header)
6852                               gnus-newsgroup-limit)))
6853            number)
6854       (cond
6855        ;; If the article is present in the buffer we just go to it.
6856        ((and header
6857              (or (not (gnus-summary-article-sparse-p
6858                        (mail-header-number header)))
6859                  sparse))
6860         (prog1
6861             (gnus-summary-goto-article
6862              (mail-header-number header) nil t)
6863           (when sparse
6864             (gnus-summary-update-article (mail-header-number header)))))
6865        (t
6866         ;; We fetch the article.
6867         (catch 'found
6868           (dolist (gnus-override-method (gnus-refer-article-methods))
6869             (gnus-check-server gnus-override-method)
6870             ;; Fetch the header, and display the article.
6871             (when (setq number (gnus-summary-insert-subject message-id))
6872               (gnus-summary-select-article nil nil nil number)
6873               (throw 'found t)))
6874           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
6875
6876 (defun gnus-refer-article-methods ()
6877   "Return a list of referrable methods."
6878   (cond
6879    ;; No method, so we default to current and native.
6880    ((null gnus-refer-article-method)
6881     (list gnus-current-select-method gnus-select-method))
6882    ;; Current.
6883    ((eq 'current gnus-refer-article-method)
6884     (list gnus-current-select-method))
6885    ;; List of select methods.
6886    ((not (stringp (cadr gnus-refer-article-method)))
6887     (let (out)
6888       (dolist (method gnus-refer-article-method)
6889         (push (if (eq 'current method)
6890                   gnus-current-select-method
6891                 method)
6892               out))
6893       (nreverse out)))
6894    ;; One single select method.
6895    (t
6896     (list gnus-refer-article-method))))
6897
6898 (defun gnus-summary-edit-parameters ()
6899   "Edit the group parameters of the current group."
6900   (interactive)
6901   (gnus-group-edit-group gnus-newsgroup-name 'params))
6902
6903 (defun gnus-summary-customize-parameters ()
6904   "Customize the group parameters of the current group."
6905   (interactive)
6906   (gnus-group-customize gnus-newsgroup-name))
6907
6908 (defun gnus-summary-enter-digest-group (&optional force)
6909   "Enter an nndoc group based on the current article.
6910 If FORCE, force a digest interpretation.  If not, try
6911 to guess what the document format is."
6912   (interactive "P")
6913   (let ((conf gnus-current-window-configuration))
6914     (save-excursion
6915       (gnus-summary-select-article))
6916     (setq gnus-current-window-configuration conf)
6917     (let* ((name (format "%s-%d"
6918                          (gnus-group-prefixed-name
6919                           gnus-newsgroup-name (list 'nndoc ""))
6920                          (save-excursion
6921                            (set-buffer gnus-summary-buffer)
6922                            gnus-current-article)))
6923            (ogroup gnus-newsgroup-name)
6924            (params (append (gnus-info-params (gnus-get-info ogroup))
6925                            (list (cons 'to-group ogroup))
6926                            (list (cons 'save-article-group ogroup))))
6927            (case-fold-search t)
6928            (buf (current-buffer))
6929            dig to-address)
6930       (save-excursion
6931         (set-buffer gnus-original-article-buffer)
6932         ;; Have the digest group inherit the main mail address of
6933         ;; the parent article.
6934         (when (setq to-address (or (message-fetch-field "reply-to")
6935                                    (message-fetch-field "from")))
6936           (setq params (append 
6937                         (list (cons 'to-address 
6938                                     (funcall gnus-decode-encoded-word-function
6939                                              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   (gnus-summary-select-article)
7023   (gnus-configure-windows 'article)
7024   (gnus-eval-in-buffer-window gnus-article-buffer
7025     (save-restriction
7026       (widen)
7027       (isearch-forward regexp-p))))
7028
7029 (defun gnus-summary-search-article-forward (regexp &optional backward)
7030   "Search for an article containing REGEXP forward.
7031 If BACKWARD, search backward instead."
7032   (interactive
7033    (list (read-string
7034           (format "Search article %s (regexp%s): "
7035                   (if current-prefix-arg "backward" "forward")
7036                   (if gnus-last-search-regexp
7037                       (concat ", default " gnus-last-search-regexp)
7038                     "")))
7039          current-prefix-arg))
7040   (if (string-equal regexp "")
7041       (setq regexp (or gnus-last-search-regexp ""))
7042     (setq gnus-last-search-regexp regexp))
7043   (if (gnus-summary-search-article regexp backward)
7044       (gnus-summary-show-thread)
7045     (error "Search failed: \"%s\"" regexp)))
7046
7047 (defun gnus-summary-search-article-backward (regexp)
7048   "Search for an article containing REGEXP backward."
7049   (interactive
7050    (list (read-string
7051           (format "Search article backward (regexp%s): "
7052                   (if gnus-last-search-regexp
7053                       (concat ", default " gnus-last-search-regexp)
7054                     "")))))
7055   (gnus-summary-search-article-forward regexp 'backward))
7056
7057 (defun gnus-summary-search-article (regexp &optional backward)
7058   "Search for an article containing REGEXP.
7059 Optional argument BACKWARD means do search for backward.
7060 `gnus-select-article-hook' is not called during the search."
7061   ;; We have to require this here to make sure that the following
7062   ;; dynamic binding isn't shadowed by autoloading.
7063   (require 'gnus-async)
7064   (require 'gnus-art)
7065   (let ((gnus-select-article-hook nil)  ;Disable hook.
7066         (gnus-article-prepare-hook nil)
7067         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
7068         (gnus-use-article-prefetch nil)
7069         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
7070         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
7071         (sum (current-buffer))
7072         (gnus-display-mime-function nil)
7073         (found nil)
7074         point)
7075     (gnus-save-hidden-threads
7076       (gnus-summary-select-article)
7077       (set-buffer gnus-article-buffer)
7078       (goto-char (window-point (get-buffer-window (current-buffer))))
7079       (when backward
7080         (forward-line -1))
7081       (while (not found)
7082         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
7083         (if (if backward
7084                 (re-search-backward regexp nil t)
7085               (re-search-forward regexp nil t))
7086             ;; We found the regexp.
7087             (progn
7088               (setq found 'found)
7089               (beginning-of-line)
7090               (set-window-start
7091                (get-buffer-window (current-buffer))
7092                (point))
7093               (forward-line 1)
7094               (set-window-point
7095                (get-buffer-window (current-buffer))
7096                (point))
7097               (set-buffer sum)
7098               (setq point (point)))
7099           ;; We didn't find it, so we go to the next article.
7100           (set-buffer sum)
7101           (setq found 'not)
7102           (while (eq found 'not)
7103             (if (not (if backward (gnus-summary-find-prev)
7104                        (gnus-summary-find-next)))
7105                 ;; No more articles.
7106                 (setq found t)
7107               ;; Select the next article and adjust point.
7108               (unless (gnus-summary-article-sparse-p
7109                        (gnus-summary-article-number))
7110                 (setq found nil)
7111                 (gnus-summary-select-article)
7112                 (set-buffer gnus-article-buffer)
7113                 (widen)
7114                 (goto-char (if backward (point-max) (point-min))))))))
7115       (gnus-message 7 ""))
7116     ;; Return whether we found the regexp.
7117     (when (eq found 'found)
7118       (goto-char point)
7119       (gnus-summary-show-thread)
7120       (gnus-summary-goto-subject gnus-current-article)
7121       (gnus-summary-position-point)
7122       t)))
7123
7124 (defun gnus-summary-find-matching (header regexp &optional backward unread
7125                                           not-case-fold)
7126   "Return a list of all articles that match REGEXP on HEADER.
7127 The search stars on the current article and goes forwards unless
7128 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
7129 If UNREAD is non-nil, only unread articles will
7130 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
7131 in the comparisons."
7132   (let ((data (if (eq backward 'all) gnus-newsgroup-data
7133                 (gnus-data-find-list
7134                  (gnus-summary-article-number) (gnus-data-list backward))))
7135         (case-fold-search (not not-case-fold))
7136         articles d func)
7137     (if (consp header)
7138         (if (eq (car header) 'extra)
7139             (setq func
7140                   `(lambda (h)
7141                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
7142                          "")))
7143           (error "%s is an invalid header" header))
7144       (unless (fboundp (intern (concat "mail-header-" header)))
7145         (error "%s is not a valid header" header))
7146       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
7147     (while data
7148       (setq d (car data))
7149       (and (or (not unread)             ; We want all articles...
7150                (gnus-data-unread-p d))  ; Or just unreads.
7151            (vectorp (gnus-data-header d)) ; It's not a pseudo.
7152            (string-match regexp (funcall func (gnus-data-header d))) ; Match.
7153            (push (gnus-data-number d) articles)) ; Success!
7154       (setq data (cdr data)))
7155     (nreverse articles)))
7156
7157 (defun gnus-summary-execute-command (header regexp command &optional backward)
7158   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
7159 If HEADER is an empty string (or nil), the match is done on the entire
7160 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
7161   (interactive
7162    (list (let ((completion-ignore-case t))
7163            (completing-read
7164             "Header name: "
7165             (mapcar (lambda (string) (list string))
7166                     '("Number" "Subject" "From" "Lines" "Date"
7167                       "Message-ID" "Xref" "References" "Body"))
7168             nil 'require-match))
7169          (read-string "Regexp: ")
7170          (read-key-sequence "Command: ")
7171          current-prefix-arg))
7172   (when (equal header "Body")
7173     (setq header ""))
7174   ;; Hidden thread subtrees must be searched as well.
7175   (gnus-summary-show-all-threads)
7176   ;; We don't want to change current point nor window configuration.
7177   (save-excursion
7178     (save-window-excursion
7179       (gnus-message 6 "Executing %s..." (key-description command))
7180       ;; We'd like to execute COMMAND interactively so as to give arguments.
7181       (gnus-execute header regexp
7182                     `(call-interactively ',(key-binding command))
7183                     backward)
7184       (gnus-message 6 "Executing %s...done" (key-description command)))))
7185
7186 (defun gnus-summary-beginning-of-article ()
7187   "Scroll the article back to the beginning."
7188   (interactive)
7189   (gnus-summary-select-article)
7190   (gnus-configure-windows 'article)
7191   (gnus-eval-in-buffer-window gnus-article-buffer
7192     (widen)
7193     (goto-char (point-min))
7194     (when gnus-page-broken
7195       (gnus-narrow-to-page))))
7196
7197 (defun gnus-summary-end-of-article ()
7198   "Scroll to the end of the article."
7199   (interactive)
7200   (gnus-summary-select-article)
7201   (gnus-configure-windows 'article)
7202   (gnus-eval-in-buffer-window gnus-article-buffer
7203     (widen)
7204     (goto-char (point-max))
7205     (recenter -3)
7206     (when gnus-page-broken
7207       (gnus-narrow-to-page))))
7208
7209 (defun gnus-summary-print-article (&optional filename n)
7210   "Generate and print a PostScript image of the N next (mail) articles.
7211
7212 If N is negative, print the N previous articles.  If N is nil and articles
7213 have been marked with the process mark, print these instead.
7214
7215 If the optional first argument FILENAME is nil, send the image to the
7216 printer.  If FILENAME is a string, save the PostScript image in a file with
7217 that name.  If FILENAME is a number, prompt the user for the name of the file
7218 to save in."
7219   (interactive (list (ps-print-preprint current-prefix-arg)
7220                      current-prefix-arg))
7221   (dolist (article (gnus-summary-work-articles n))
7222     (gnus-summary-select-article nil nil 'pseudo article)
7223     (gnus-eval-in-buffer-window gnus-article-buffer
7224       (let ((buffer (generate-new-buffer " *print*")))
7225         (unwind-protect
7226             (progn
7227               (copy-to-buffer buffer (point-min) (point-max))
7228               (set-buffer buffer)
7229               (gnus-article-delete-invisible-text)
7230               (let ((ps-left-header
7231                      (list
7232                       (concat "("
7233                               (mail-header-subject gnus-current-headers) ")")
7234                       (concat "("
7235                               (mail-header-from gnus-current-headers) ")")))
7236                     (ps-right-header
7237                      (list
7238                       "/pagenumberstring load"
7239                       (concat "("
7240                               (mail-header-date gnus-current-headers) ")"))))
7241                 (gnus-run-hooks 'gnus-ps-print-hook)
7242                 (save-excursion
7243                   (ps-print-buffer-with-faces filename))))
7244           (kill-buffer buffer))))))
7245
7246 (defun gnus-summary-show-article (&optional arg)
7247   "Force re-fetching of the current article.
7248 If ARG (the prefix) is a number, show the article with the charset
7249 defined in `gnus-summary-show-article-charset-alist', or the charset
7250 inputed.
7251 If ARG (the prefix) is non-nil and not a number, show the raw article
7252 without any article massaging functions being run."
7253   (interactive "P")
7254   (cond
7255    ((numberp arg)
7256     (let ((gnus-newsgroup-charset
7257            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
7258                (read-coding-system "Charset: ")))
7259           (gnus-newsgroup-ignored-charsets 'gnus-all))
7260       (gnus-summary-select-article nil 'force)))
7261    ((not arg)
7262     ;; Select the article the normal way.
7263     (gnus-summary-select-article nil 'force))
7264    (t
7265     ;; We have to require this here to make sure that the following
7266     ;; dynamic binding isn't shadowed by autoloading.
7267     (require 'gnus-async)
7268     (require 'gnus-art)
7269     ;; Bind the article treatment functions to nil.
7270     (let ((gnus-have-all-headers t)
7271           gnus-article-prepare-hook
7272           gnus-article-decode-hook
7273           gnus-display-mime-function
7274           gnus-break-pages)
7275       ;; Destroy any MIME parts.
7276       (when (gnus-buffer-live-p gnus-article-buffer)
7277         (save-excursion
7278           (set-buffer gnus-article-buffer)
7279           (mm-destroy-parts gnus-article-mime-handles)
7280           ;; Set it to nil for safety reason.
7281           (setq gnus-article-mime-handle-alist nil)
7282           (setq gnus-article-mime-handles nil)))
7283       (gnus-summary-select-article nil 'force))))
7284   (gnus-summary-goto-subject gnus-current-article)
7285   (gnus-summary-position-point))
7286
7287 (defun gnus-summary-verbose-headers (&optional arg)
7288   "Toggle permanent full header display.
7289 If ARG is a positive number, turn header display on.
7290 If ARG is a negative number, turn header display off."
7291   (interactive "P")
7292   (setq gnus-show-all-headers
7293         (cond ((or (not (numberp arg))
7294                    (zerop arg))
7295                (not gnus-show-all-headers))
7296               ((natnump arg)
7297                t)))
7298   (gnus-summary-show-article))
7299
7300 (defun gnus-summary-toggle-header (&optional arg)
7301   "Show the headers if they are hidden, or hide them if they are shown.
7302 If ARG is a positive number, show the entire header.
7303 If ARG is a negative number, hide the unwanted header lines."
7304   (interactive "P")
7305   (save-excursion
7306     (set-buffer gnus-article-buffer)
7307     (save-restriction
7308       (let* ((buffer-read-only nil)
7309              (inhibit-point-motion-hooks t)
7310              hidden e)
7311         (setq hidden
7312               (if (numberp arg)
7313                   (>= arg 0)
7314                 (save-restriction
7315                   (article-narrow-to-head)
7316                   (gnus-article-hidden-text-p 'headers))))
7317         (goto-char (point-min))
7318         (when (search-forward "\n\n" nil t)
7319           (delete-region (point-min) (1- (point))))
7320         (goto-char (point-min))
7321         (save-excursion
7322           (set-buffer gnus-original-article-buffer)
7323           (goto-char (point-min))
7324           (setq e (1- (or (search-forward "\n\n" nil t) (point-max)))))
7325         (insert-buffer-substring gnus-original-article-buffer 1 e)
7326         (save-restriction
7327           (narrow-to-region (point-min) (point))
7328           (article-decode-encoded-words)
7329           (if  hidden
7330               (let ((gnus-treat-hide-headers nil)
7331                     (gnus-treat-hide-boring-headers nil))
7332                 (setq gnus-article-wash-types
7333                       (delq 'headers gnus-article-wash-types))
7334                 (gnus-treat-article 'head))
7335             (gnus-treat-article 'head)))
7336         (gnus-set-mode-line 'article)))))
7337
7338 (defun gnus-summary-show-all-headers ()
7339   "Make all header lines visible."
7340   (interactive)
7341   (gnus-article-show-all-headers))
7342
7343 (defun gnus-summary-caesar-message (&optional arg)
7344   "Caesar rotate the current article by 13.
7345 The numerical prefix specifies how many places to rotate each letter
7346 forward."
7347   (interactive "P")
7348   (gnus-summary-select-article)
7349   (let ((mail-header-separator ""))
7350     (gnus-eval-in-buffer-window gnus-article-buffer
7351       (save-restriction
7352         (widen)
7353         (let ((start (window-start))
7354               buffer-read-only)
7355           (message-caesar-buffer-body arg)
7356           (set-window-start (get-buffer-window (current-buffer)) start))))))
7357
7358 (defun gnus-summary-stop-page-breaking ()
7359   "Stop page breaking in the current article."
7360   (interactive)
7361   (gnus-summary-select-article)
7362   (gnus-eval-in-buffer-window gnus-article-buffer
7363     (widen)
7364     (when (gnus-visual-p 'page-marker)
7365       (let ((buffer-read-only nil))
7366         (gnus-remove-text-with-property 'gnus-prev)
7367         (gnus-remove-text-with-property 'gnus-next))
7368       (setq gnus-page-broken nil))))
7369
7370 (defun gnus-summary-move-article (&optional n to-newsgroup
7371                                             select-method action)
7372   "Move the current article to a different newsgroup.
7373 If N is a positive number, move the N next articles.
7374 If N is a negative number, move the N previous articles.
7375 If N is nil and any articles have been marked with the process mark,
7376 move those articles instead.
7377 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7378 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7379 re-spool using this method.
7380
7381 For this function to work, both the current newsgroup and the
7382 newsgroup that you want to move to have to support the `request-move'
7383 and `request-accept' functions.
7384
7385 ACTION can be either `move' (the default), `crosspost' or `copy'."
7386   (interactive "P")
7387   (unless action
7388     (setq action 'move))
7389   ;; Disable marking as read.
7390   (let (gnus-mark-article-hook)
7391     (save-window-excursion
7392       (gnus-summary-select-article)))
7393   ;; Check whether the source group supports the required functions.
7394   (cond ((and (eq action 'move)
7395               (not (gnus-check-backend-function
7396                     'request-move-article gnus-newsgroup-name)))
7397          (error "The current group does not support article moving"))
7398         ((and (eq action 'crosspost)
7399               (not (gnus-check-backend-function
7400                     'request-replace-article gnus-newsgroup-name)))
7401          (error "The current group does not support article editing")))
7402   (let ((articles (gnus-summary-work-articles n))
7403         (prefix (if (gnus-check-backend-function
7404                     'request-move-article gnus-newsgroup-name)
7405                     (gnus-group-real-prefix gnus-newsgroup-name)
7406                   ""))
7407         (names '((move "Move" "Moving")
7408                  (copy "Copy" "Copying")
7409                  (crosspost "Crosspost" "Crossposting")))
7410         (copy-buf (save-excursion
7411                     (nnheader-set-temp-buffer " *copy article*")))
7412         art-group to-method new-xref article to-groups)
7413     (unless (assq action names)
7414       (error "Unknown action %s" action))
7415     ;; Read the newsgroup name.
7416     (when (and (not to-newsgroup)
7417                (not select-method))
7418       (setq to-newsgroup
7419             (gnus-read-move-group-name
7420              (cadr (assq action names))
7421              (symbol-value (intern (format "gnus-current-%s-group" action)))
7422              articles prefix))
7423       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
7424     (setq to-method (or select-method
7425                         (gnus-server-to-method
7426                          (gnus-group-method to-newsgroup))))
7427     ;; Check the method we are to move this article to...
7428     (unless (gnus-check-backend-function
7429              'request-accept-article (car to-method))
7430       (error "%s does not support article copying" (car to-method)))
7431     (unless (gnus-check-server to-method)
7432       (error "Can't open server %s" (car to-method)))
7433     (gnus-message 6 "%s to %s: %s..."
7434                   (caddr (assq action names))
7435                   (or (car select-method) to-newsgroup) articles)
7436     (while articles
7437       (setq article (pop articles))
7438       (setq
7439        art-group
7440        (cond
7441         ;; Move the article.
7442         ((eq action 'move)
7443          ;; Remove this article from future suppression.
7444          (gnus-dup-unsuppress-article article)
7445          (gnus-request-move-article
7446           article                       ; Article to move
7447           gnus-newsgroup-name           ; From newsgroup
7448           (nth 1 (gnus-find-method-for-group
7449                   gnus-newsgroup-name)) ; Server
7450           (list 'gnus-request-accept-article
7451                 to-newsgroup (list 'quote select-method)
7452                 (not articles) t)       ; Accept form
7453           (not articles)))              ; Only save nov last time
7454         ;; Copy the article.
7455         ((eq action 'copy)
7456          (save-excursion
7457            (set-buffer copy-buf)
7458            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
7459              (gnus-request-accept-article
7460               to-newsgroup select-method (not articles) t))))
7461         ;; Crosspost the article.
7462         ((eq action 'crosspost)
7463          (let ((xref (message-tokenize-header
7464                       (mail-header-xref (gnus-summary-article-header article))
7465                       " ")))
7466            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
7467                                   ":" article))
7468            (unless xref
7469              (setq xref (list (system-name))))
7470            (setq new-xref
7471                  (concat
7472                   (mapconcat 'identity
7473                              (delete "Xref:" (delete new-xref xref))
7474                              " ")
7475                   " " new-xref))
7476            (save-excursion
7477              (set-buffer copy-buf)
7478              ;; First put the article in the destination group.
7479              (gnus-request-article-this-buffer article gnus-newsgroup-name)
7480              (when (consp (setq art-group
7481                                 (gnus-request-accept-article
7482                                  to-newsgroup select-method (not articles))))
7483                (setq new-xref (concat new-xref " " (car art-group)
7484                                       ":" (cdr art-group)))
7485                ;; Now we have the new Xrefs header, so we insert
7486                ;; it and replace the new article.
7487                (nnheader-replace-header "Xref" new-xref)
7488                (gnus-request-replace-article
7489                 (cdr art-group) to-newsgroup (current-buffer))
7490                art-group))))))
7491       (cond
7492        ((not art-group)
7493         (gnus-message 1 "Couldn't %s article %s: %s"
7494                       (cadr (assq action names)) article
7495                       (nnheader-get-report (car to-method))))
7496        ((eq art-group 'junk)
7497         (when (eq action 'move)
7498           (gnus-summary-mark-article article gnus-canceled-mark)
7499           (gnus-message 4 "Deleted article %s" article)))
7500        (t
7501         (let* ((pto-group (gnus-group-prefixed-name
7502                            (car art-group) to-method))
7503                (entry
7504                 (gnus-gethash pto-group gnus-newsrc-hashtb))
7505                (info (nth 2 entry))
7506                (to-group (gnus-info-group info))
7507                to-marks)
7508           ;; Update the group that has been moved to.
7509           (when (and info
7510                      (memq action '(move copy)))
7511             (unless (member to-group to-groups)
7512               (push to-group to-groups))
7513
7514             (unless (memq article gnus-newsgroup-unreads)
7515               (push 'read to-marks)
7516               (gnus-info-set-read
7517                info (gnus-add-to-range (gnus-info-read info)
7518                                        (list (cdr art-group)))))
7519
7520             ;; See whether the article is to be put in the cache.
7521             (let ((marks gnus-article-mark-lists)
7522                   (to-article (cdr art-group)))
7523
7524               ;; Enter the article into the cache in the new group,
7525               ;; if that is required.
7526               (when gnus-use-cache
7527                 (gnus-cache-possibly-enter-article
7528                  to-group to-article
7529                  (memq article gnus-newsgroup-marked)
7530                  (memq article gnus-newsgroup-dormant)
7531                  (memq article gnus-newsgroup-unreads)))
7532
7533               (when gnus-preserve-marks
7534                 ;; Copy any marks over to the new group.
7535                 (when (and (equal to-group gnus-newsgroup-name)
7536                            (not (memq article gnus-newsgroup-unreads)))
7537                   ;; Mark this article as read in this group.
7538                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
7539                   (setcdr (gnus-active to-group) to-article)
7540                   (setcdr gnus-newsgroup-active to-article))
7541
7542                 (while marks
7543                   (when (memq article (symbol-value
7544                                        (intern (format "gnus-newsgroup-%s"
7545                                                        (caar marks)))))
7546                     (push (cdar marks) to-marks)
7547                     ;; If the other group is the same as this group,
7548                     ;; then we have to add the mark to the list.
7549                     (when (equal to-group gnus-newsgroup-name)
7550                       (set (intern (format "gnus-newsgroup-%s" (caar marks)))
7551                            (cons to-article
7552                                  (symbol-value
7553                                   (intern (format "gnus-newsgroup-%s"
7554                                                   (caar marks)))))))
7555                     ;; Copy the marks to other group.
7556                     (gnus-add-marked-articles
7557                      to-group (cdar marks) (list to-article) info))
7558                   (setq marks (cdr marks)))
7559
7560                 (gnus-request-set-mark to-group (list (list (list to-article)
7561                                                             'set
7562                                                             to-marks))))
7563
7564               (gnus-dribble-enter
7565                (concat "(gnus-group-set-info '"
7566                        (gnus-prin1-to-string (gnus-get-info to-group))
7567                        ")"))))
7568
7569           ;; Update the Xref header in this article to point to
7570           ;; the new crossposted article we have just created.
7571           (when (eq action 'crosspost)
7572             (save-excursion
7573               (set-buffer copy-buf)
7574               (gnus-request-article-this-buffer article gnus-newsgroup-name)
7575               (nnheader-replace-header "Xref" new-xref)
7576               (gnus-request-replace-article
7577                article gnus-newsgroup-name (current-buffer)))))
7578
7579         ;;;!!!Why is this necessary?
7580         (set-buffer gnus-summary-buffer)
7581
7582         (gnus-summary-goto-subject article)
7583         (when (eq action 'move)
7584           (gnus-summary-mark-article article gnus-canceled-mark))))
7585       (gnus-summary-remove-process-mark article))
7586     ;; Re-activate all groups that have been moved to.
7587     (while to-groups
7588       (save-excursion
7589         (set-buffer gnus-group-buffer)
7590         (when (gnus-group-goto-group (car to-groups) t)
7591           (gnus-group-get-new-news-this-group 1 t))
7592         (pop to-groups)))
7593
7594     (gnus-kill-buffer copy-buf)
7595     (gnus-summary-position-point)
7596     (gnus-set-mode-line 'summary)))
7597
7598 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
7599   "Move the current article to a different newsgroup.
7600 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7601 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7602 re-spool using this method."
7603   (interactive "P")
7604   (gnus-summary-move-article n to-newsgroup select-method 'copy))
7605
7606 (defun gnus-summary-crosspost-article (&optional n)
7607   "Crosspost the current article to some other group."
7608   (interactive "P")
7609   (gnus-summary-move-article n nil nil 'crosspost))
7610
7611 (defcustom gnus-summary-respool-default-method nil
7612   "Default method for respooling an article.
7613 If nil, use to the current newsgroup method."
7614   :type '(choice (gnus-select-method :value (nnml ""))
7615                  (const nil))
7616   :group 'gnus-summary-mail)
7617
7618 (defun gnus-summary-respool-article (&optional n method)
7619   "Respool the current article.
7620 The article will be squeezed through the mail spooling process again,
7621 which means that it will be put in some mail newsgroup or other
7622 depending on `nnmail-split-methods'.
7623 If N is a positive number, respool the N next articles.
7624 If N is a negative number, respool the N previous articles.
7625 If N is nil and any articles have been marked with the process mark,
7626 respool those articles instead.
7627
7628 Respooling can be done both from mail groups and \"real\" newsgroups.
7629 In the former case, the articles in question will be moved from the
7630 current group into whatever groups they are destined to.  In the
7631 latter case, they will be copied into the relevant groups."
7632   (interactive
7633    (list current-prefix-arg
7634          (let* ((methods (gnus-methods-using 'respool))
7635                 (methname
7636                  (symbol-name (or gnus-summary-respool-default-method
7637                                   (car (gnus-find-method-for-group
7638                                         gnus-newsgroup-name)))))
7639                 (method
7640                  (gnus-completing-read
7641                   methname "What backend do you want to use when respooling?"
7642                   methods nil t nil 'gnus-mail-method-history))
7643                 ms)
7644            (cond
7645             ((zerop (length (setq ms (gnus-servers-using-backend
7646                                       (intern method)))))
7647              (list (intern method) ""))
7648             ((= 1 (length ms))
7649              (car ms))
7650             (t
7651              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
7652                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
7653                            ms-alist))))))))
7654   (unless method
7655     (error "No method given for respooling"))
7656   (if (assoc (symbol-name
7657               (car (gnus-find-method-for-group gnus-newsgroup-name)))
7658              (gnus-methods-using 'respool))
7659       (gnus-summary-move-article n nil method)
7660     (gnus-summary-copy-article n nil method)))
7661
7662 (defun gnus-summary-import-article (file)
7663   "Import an arbitrary file into a mail newsgroup."
7664   (interactive "fImport file: ")
7665   (let ((group gnus-newsgroup-name)
7666         (now (current-time))
7667         atts lines)
7668     (unless (gnus-check-backend-function 'request-accept-article group)
7669       (error "%s does not support article importing" group))
7670     (or (file-readable-p file)
7671         (not (file-regular-p file))
7672         (error "Can't read %s" file))
7673     (save-excursion
7674       (set-buffer (gnus-get-buffer-create " *import file*"))
7675       (erase-buffer)
7676       (nnheader-insert-file-contents file)
7677       (goto-char (point-min))
7678       (unless (nnheader-article-p)
7679         ;; This doesn't look like an article, so we fudge some headers.
7680         (setq atts (file-attributes file)
7681               lines (count-lines (point-min) (point-max)))
7682         (insert "From: " (read-string "From: ") "\n"
7683                 "Subject: " (read-string "Subject: ") "\n"
7684                 "Date: " (message-make-date (nth 5 atts))
7685                 "\n"
7686                 "Message-ID: " (message-make-message-id) "\n"
7687                 "Lines: " (int-to-string lines) "\n"
7688                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
7689       (gnus-request-accept-article group nil t)
7690       (kill-buffer (current-buffer)))))
7691
7692 (defun gnus-summary-article-posted-p ()
7693   "Say whether the current (mail) article is available from news as well.
7694 This will be the case if the article has both been mailed and posted."
7695   (interactive)
7696   (let ((id (mail-header-references (gnus-summary-article-header)))
7697         (gnus-override-method (car (gnus-refer-article-methods))))
7698     (if (gnus-request-head id "")
7699         (gnus-message 2 "The current message was found on %s"
7700                       gnus-override-method)
7701       (gnus-message 2 "The current message couldn't be found on %s"
7702                     gnus-override-method)
7703       nil)))
7704
7705 (defun gnus-summary-expire-articles (&optional now)
7706   "Expire all articles that are marked as expirable in the current group."
7707   (interactive)
7708   (when (gnus-check-backend-function
7709          'request-expire-articles gnus-newsgroup-name)
7710     ;; This backend supports expiry.
7711     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
7712            (expirable (if total
7713                           (progn
7714                             ;; We need to update the info for
7715                             ;; this group for `gnus-list-of-read-articles'
7716                             ;; to give us the right answer.
7717                             (gnus-run-hooks 'gnus-exit-group-hook)
7718                             (gnus-summary-update-info)
7719                             (gnus-list-of-read-articles gnus-newsgroup-name))
7720                         (setq gnus-newsgroup-expirable
7721                               (sort gnus-newsgroup-expirable '<))))
7722            (expiry-wait (if now 'immediate
7723                           (gnus-group-find-parameter
7724                            gnus-newsgroup-name 'expiry-wait)))
7725            (nnmail-expiry-target
7726             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
7727                 nnmail-expiry-target))
7728            es)
7729       (when expirable
7730         ;; There are expirable articles in this group, so we run them
7731         ;; through the expiry process.
7732         (gnus-message 6 "Expiring articles...")
7733         (unless (gnus-check-group gnus-newsgroup-name)
7734           (error "Can't open server for %s" gnus-newsgroup-name))
7735         ;; The list of articles that weren't expired is returned.
7736         (save-excursion
7737           (if expiry-wait
7738               (let ((nnmail-expiry-wait-function nil)
7739                     (nnmail-expiry-wait expiry-wait))
7740                 (setq es (gnus-request-expire-articles
7741                           expirable gnus-newsgroup-name)))
7742             (setq es (gnus-request-expire-articles
7743                       expirable gnus-newsgroup-name))))
7744         (unless total
7745           (setq gnus-newsgroup-expirable es))
7746         ;; We go through the old list of expirable, and mark all
7747         ;; really expired articles as nonexistent.
7748         (unless (eq es expirable)       ;If nothing was expired, we don't mark.
7749           (let ((gnus-use-cache nil))
7750             (while expirable
7751               (unless (memq (car expirable) es)
7752                 (when (gnus-data-find (car expirable))
7753                   (gnus-summary-mark-article
7754                    (car expirable) gnus-canceled-mark)))
7755               (setq expirable (cdr expirable)))))
7756         (gnus-message 6 "Expiring articles...done")))))
7757
7758 (defun gnus-summary-expire-articles-now ()
7759   "Expunge all expirable articles in the current group.
7760 This means that *all* articles that are marked as expirable will be
7761 deleted forever, right now."
7762   (interactive)
7763   (or gnus-expert-user
7764       (gnus-yes-or-no-p
7765        "Are you really, really, really sure you want to delete all these messages? ")
7766       (error "Phew!"))
7767   (gnus-summary-expire-articles t))
7768
7769 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
7770 (defun gnus-summary-delete-article (&optional n)
7771   "Delete the N next (mail) articles.
7772 This command actually deletes articles.  This is not a marking
7773 command.  The article will disappear forever from your life, never to
7774 return.
7775 If N is negative, delete backwards.
7776 If N is nil and articles have been marked with the process mark,
7777 delete these instead."
7778   (interactive "P")
7779   (unless (gnus-check-backend-function 'request-expire-articles
7780                                        gnus-newsgroup-name)
7781     (error "The current newsgroup does not support article deletion"))
7782   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
7783     (error "Couldn't open server"))
7784   ;; Compute the list of articles to delete.
7785   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
7786         not-deleted)
7787     (if (and gnus-novice-user
7788              (not (gnus-yes-or-no-p
7789                    (format "Do you really want to delete %s forever? "
7790                            (if (> (length articles) 1)
7791                                (format "these %s articles" (length articles))
7792                              "this article")))))
7793         ()
7794       ;; Delete the articles.
7795       (setq not-deleted (gnus-request-expire-articles
7796                          articles gnus-newsgroup-name 'force))
7797       (while articles
7798         (gnus-summary-remove-process-mark (car articles))
7799         ;; The backend might not have been able to delete the article
7800         ;; after all.
7801         (unless (memq (car articles) not-deleted)
7802           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
7803         (setq articles (cdr articles)))
7804       (when not-deleted
7805         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
7806     (gnus-summary-position-point)
7807     (gnus-set-mode-line 'summary)
7808     not-deleted))
7809
7810 (defun gnus-summary-edit-article (&optional arg)
7811   "Edit the current article.
7812 This will have permanent effect only in mail groups.
7813 If ARG is nil, edit the decoded articles.
7814 If ARG is 1, edit the raw articles. 
7815 If ARG is 2, edit the raw articles even in read-only groups.
7816 Otherwise, allow editing of articles even in read-only
7817 groups."
7818   (interactive "P")
7819   (let (force raw)
7820     (cond 
7821      ((null arg))
7822      ((eq arg 1) (setq raw t))
7823      ((eq arg 2) (setq raw t
7824                        force t))
7825      (t (setq force t)))
7826     (if (and raw (not force) (equal gnus-newsgroup-name "nndraft:drafts"))
7827         (error "Can't edit the raw article in group nndraft:drafts."))
7828     (save-excursion
7829       (set-buffer gnus-summary-buffer)
7830       (let ((mail-parse-charset gnus-newsgroup-charset)
7831             (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
7832         (gnus-set-global-variables)
7833         (when (and (not force)
7834                    (gnus-group-read-only-p))
7835           (error "The current newsgroup does not support article editing"))
7836         (gnus-summary-show-article t)
7837         (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
7838           (with-current-buffer gnus-article-buffer
7839             (mm-enable-multibyte-mule4)))
7840         (if (equal gnus-newsgroup-name "nndraft:drafts")
7841             (setq raw t))
7842         (gnus-article-edit-article
7843          (if raw 'ignore 
7844            #'(lambda () 
7845                (let ((mbl mml-buffer-list))
7846                  (setq mml-buffer-list nil)
7847                  (mime-to-mml)
7848                  (make-local-hook 'kill-buffer-hook)
7849                  (let ((mml-buffer-list mml-buffer-list))
7850                    (setq mml-buffer-list mbl)
7851                    (make-local-variable 'mml-buffer-list))
7852                  (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
7853          `(lambda (no-highlight)
7854             (let ((mail-parse-charset ',gnus-newsgroup-charset)
7855                   (mail-parse-ignored-charsets 
7856                    ',gnus-newsgroup-ignored-charsets))
7857               ,(if (not raw) '(progn 
7858                                 (mml-to-mime)
7859                                 (mml-destroy-buffers)
7860                                 (remove-hook 'kill-buffer-hook 
7861                                              'mml-destroy-buffers t)
7862                                 (kill-local-variable 'mml-buffer-list)))
7863               (gnus-summary-edit-article-done
7864                ,(or (mail-header-references gnus-current-headers) "")
7865                ,(gnus-group-read-only-p) 
7866                ,gnus-summary-buffer no-highlight))))))))
7867
7868 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
7869
7870 (defun gnus-summary-edit-article-done (&optional references read-only buffer
7871                                                  no-highlight)
7872   "Make edits to the current article permanent."
7873   (interactive)
7874   ;; Replace the article.
7875   (let ((buf (current-buffer)))
7876     (with-temp-buffer
7877       (insert-buffer-substring buf)
7878       (if (and (not read-only)
7879                (not (gnus-request-replace-article
7880                      (cdr gnus-article-current) (car gnus-article-current)
7881                      (current-buffer) t)))
7882           (error "Couldn't replace article")
7883         ;; Update the summary buffer.
7884         (if (and references
7885                  (equal (message-tokenize-header references " ")
7886                         (message-tokenize-header
7887                          (or (message-fetch-field "references") "") " ")))
7888             ;; We only have to update this line.
7889             (save-excursion
7890               (save-restriction
7891                 (message-narrow-to-head)
7892                 (let ((head (buffer-string))
7893                       header)
7894                   (with-temp-buffer
7895                     (insert (format "211 %d Article retrieved.\n"
7896                                     (cdr gnus-article-current)))
7897                     (insert head)
7898                     (insert ".\n")
7899                     (let ((nntp-server-buffer (current-buffer)))
7900                       (setq header (car (gnus-get-newsgroup-headers
7901                                          (save-excursion
7902                                            (set-buffer gnus-summary-buffer)
7903                                            gnus-newsgroup-dependencies)
7904                                          t))))
7905                     (save-excursion
7906                       (set-buffer gnus-summary-buffer)
7907                       (gnus-data-set-header
7908                        (gnus-data-find (cdr gnus-article-current))
7909                        header)
7910                       (gnus-summary-update-article-line
7911                        (cdr gnus-article-current) header))))))
7912           ;; Update threads.
7913           (set-buffer (or buffer gnus-summary-buffer))
7914           (gnus-summary-update-article (cdr gnus-article-current)))
7915         ;; Prettify the article buffer again.
7916         (unless no-highlight
7917           (save-excursion
7918             (set-buffer gnus-article-buffer)
7919             ;;;!!! Fix this -- article should be rehighlighted.
7920             ;;;(gnus-run-hooks 'gnus-article-display-hook)
7921             (set-buffer gnus-original-article-buffer)
7922             (gnus-request-article
7923              (cdr gnus-article-current)
7924              (car gnus-article-current) (current-buffer))))
7925         ;; Prettify the summary buffer line.
7926         (when (gnus-visual-p 'summary-highlight 'highlight)
7927           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
7928
7929 (defun gnus-summary-edit-wash (key)
7930   "Perform editing command KEY in the article buffer."
7931   (interactive
7932    (list
7933     (progn
7934       (message "%s" (concat (this-command-keys) "- "))
7935       (read-char))))
7936   (message "")
7937   (gnus-summary-edit-article)
7938   (execute-kbd-macro (concat (this-command-keys) key))
7939   (gnus-article-edit-done))
7940
7941 ;;; Respooling
7942
7943 (defun gnus-summary-respool-query (&optional silent trace)
7944   "Query where the respool algorithm would put this article."
7945   (interactive)
7946   (let (gnus-mark-article-hook)
7947     (gnus-summary-select-article)
7948     (save-excursion
7949       (set-buffer gnus-original-article-buffer)
7950       (save-restriction
7951         (message-narrow-to-head)
7952         (let ((groups (nnmail-article-group 'identity trace)))
7953           (unless silent
7954             (if groups
7955                 (message "This message would go to %s"
7956                          (mapconcat 'car groups ", "))
7957               (message "This message would go to no groups"))
7958             groups))))))
7959
7960 (defun gnus-summary-respool-trace ()
7961   "Trace where the respool algorithm would put this article.
7962 Display a buffer showing all fancy splitting patterns which matched."
7963   (interactive)
7964   (gnus-summary-respool-query nil t))
7965
7966 ;; Summary marking commands.
7967
7968 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
7969   "Mark articles which has the same subject as read, and then select the next.
7970 If UNMARK is positive, remove any kind of mark.
7971 If UNMARK is negative, tick articles."
7972   (interactive "P")
7973   (when unmark
7974     (setq unmark (prefix-numeric-value unmark)))
7975   (let ((count
7976          (gnus-summary-mark-same-subject
7977           (gnus-summary-article-subject) unmark)))
7978     ;; Select next unread article.  If auto-select-same mode, should
7979     ;; select the first unread article.
7980     (gnus-summary-next-article t (and gnus-auto-select-same
7981                                       (gnus-summary-article-subject)))
7982     (gnus-message 7 "%d article%s marked as %s"
7983                   count (if (= count 1) " is" "s are")
7984                   (if unmark "unread" "read"))))
7985
7986 (defun gnus-summary-kill-same-subject (&optional unmark)
7987   "Mark articles which has the same subject as read.
7988 If UNMARK is positive, remove any kind of mark.
7989 If UNMARK is negative, tick articles."
7990   (interactive "P")
7991   (when unmark
7992     (setq unmark (prefix-numeric-value unmark)))
7993   (let ((count
7994          (gnus-summary-mark-same-subject
7995           (gnus-summary-article-subject) unmark)))
7996     ;; If marked as read, go to next unread subject.
7997     (when (null unmark)
7998       ;; Go to next unread subject.
7999       (gnus-summary-next-subject 1 t))
8000     (gnus-message 7 "%d articles are marked as %s"
8001                   count (if unmark "unread" "read"))))
8002
8003 (defun gnus-summary-mark-same-subject (subject &optional unmark)
8004   "Mark articles with same SUBJECT as read, and return marked number.
8005 If optional argument UNMARK is positive, remove any kinds of marks.
8006 If optional argument UNMARK is negative, mark articles as unread instead."
8007   (let ((count 1))
8008     (save-excursion
8009       (cond
8010        ((null unmark)                   ; Mark as read.
8011         (while (and
8012                 (progn
8013                   (gnus-summary-mark-article-as-read gnus-killed-mark)
8014                   (gnus-summary-show-thread) t)
8015                 (gnus-summary-find-subject subject))
8016           (setq count (1+ count))))
8017        ((> unmark 0)                    ; Tick.
8018         (while (and
8019                 (progn
8020                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
8021                   (gnus-summary-show-thread) t)
8022                 (gnus-summary-find-subject subject))
8023           (setq count (1+ count))))
8024        (t                               ; Mark as unread.
8025         (while (and
8026                 (progn
8027                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
8028                   (gnus-summary-show-thread) t)
8029                 (gnus-summary-find-subject subject))
8030           (setq count (1+ count)))))
8031       (gnus-set-mode-line 'summary)
8032       ;; Return the number of marked articles.
8033       count)))
8034
8035 (defun gnus-summary-mark-as-processable (n &optional unmark)
8036   "Set the process mark on the next N articles.
8037 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
8038 the process mark instead.  The difference between N and the actual
8039 number of articles marked is returned."
8040   (interactive "p")
8041   (let ((backward (< n 0))
8042         (n (abs n)))
8043     (while (and
8044             (> n 0)
8045             (if unmark
8046                 (gnus-summary-remove-process-mark
8047                  (gnus-summary-article-number))
8048               (gnus-summary-set-process-mark (gnus-summary-article-number)))
8049             (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
8050       (setq n (1- n)))
8051     (when (/= 0 n)
8052       (gnus-message 7 "No more articles"))
8053     (gnus-summary-recenter)
8054     (gnus-summary-position-point)
8055     n))
8056
8057 (defun gnus-summary-unmark-as-processable (n)
8058   "Remove the process mark from the next N articles.
8059 If N is negative, unmark backward instead.  The difference between N and
8060 the actual number of articles unmarked is returned."
8061   (interactive "p")
8062   (gnus-summary-mark-as-processable n t))
8063
8064 (defun gnus-summary-unmark-all-processable ()
8065   "Remove the process mark from all articles."
8066   (interactive)
8067   (save-excursion
8068     (while gnus-newsgroup-processable
8069       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
8070   (gnus-summary-position-point))
8071
8072 (defun gnus-summary-mark-as-expirable (n)
8073   "Mark N articles forward as expirable.
8074 If N is negative, mark backward instead.  The difference between N and
8075 the actual number of articles marked is returned."
8076   (interactive "p")
8077   (gnus-summary-mark-forward n gnus-expirable-mark))
8078
8079 (defun gnus-summary-mark-article-as-replied (article)
8080   "Mark ARTICLE replied and update the summary line."
8081   (push article gnus-newsgroup-replied)
8082   (let ((buffer-read-only nil))
8083     (when (gnus-summary-goto-subject article nil t)
8084       (gnus-summary-update-secondary-mark article))))
8085
8086 (defun gnus-summary-set-bookmark (article)
8087   "Set a bookmark in current article."
8088   (interactive (list (gnus-summary-article-number)))
8089   (when (or (not (get-buffer gnus-article-buffer))
8090             (not gnus-current-article)
8091             (not gnus-article-current)
8092             (not (equal gnus-newsgroup-name (car gnus-article-current))))
8093     (error "No current article selected"))
8094   ;; Remove old bookmark, if one exists.
8095   (let ((old (assq article gnus-newsgroup-bookmarks)))
8096     (when old
8097       (setq gnus-newsgroup-bookmarks
8098             (delq old gnus-newsgroup-bookmarks))))
8099   ;; Set the new bookmark, which is on the form
8100   ;; (article-number . line-number-in-body).
8101   (push
8102    (cons article
8103          (save-excursion
8104            (set-buffer gnus-article-buffer)
8105            (count-lines
8106             (min (point)
8107                  (save-excursion
8108                    (goto-char (point-min))
8109                    (search-forward "\n\n" nil t)
8110                    (point)))
8111             (point))))
8112    gnus-newsgroup-bookmarks)
8113   (gnus-message 6 "A bookmark has been added to the current article."))
8114
8115 (defun gnus-summary-remove-bookmark (article)
8116   "Remove the bookmark from the current article."
8117   (interactive (list (gnus-summary-article-number)))
8118   ;; Remove old bookmark, if one exists.
8119   (let ((old (assq article gnus-newsgroup-bookmarks)))
8120     (if old
8121         (progn
8122           (setq gnus-newsgroup-bookmarks
8123                 (delq old gnus-newsgroup-bookmarks))
8124           (gnus-message 6 "Removed bookmark."))
8125       (gnus-message 6 "No bookmark in current article."))))
8126
8127 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8128 (defun gnus-summary-mark-as-dormant (n)
8129   "Mark N articles forward as dormant.
8130 If N is negative, mark backward instead.  The difference between N and
8131 the actual number of articles marked is returned."
8132   (interactive "p")
8133   (gnus-summary-mark-forward n gnus-dormant-mark))
8134
8135 (defun gnus-summary-set-process-mark (article)
8136   "Set the process mark on ARTICLE and update the summary line."
8137   (setq gnus-newsgroup-processable
8138         (cons article
8139               (delq article gnus-newsgroup-processable)))
8140   (when (gnus-summary-goto-subject article)
8141     (gnus-summary-show-thread)
8142     (gnus-summary-goto-subject article)
8143     (gnus-summary-update-secondary-mark article)))
8144
8145 (defun gnus-summary-remove-process-mark (article)
8146   "Remove the process mark from ARTICLE and update the summary line."
8147   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
8148   (when (gnus-summary-goto-subject article)
8149     (gnus-summary-show-thread)
8150     (gnus-summary-goto-subject article)
8151     (gnus-summary-update-secondary-mark article)))
8152
8153 (defun gnus-summary-set-saved-mark (article)
8154   "Set the process mark on ARTICLE and update the summary line."
8155   (push article gnus-newsgroup-saved)
8156   (when (gnus-summary-goto-subject article)
8157     (gnus-summary-update-secondary-mark article)))
8158
8159 (defun gnus-summary-mark-forward (n &optional mark no-expire)
8160   "Mark N articles as read forwards.
8161 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
8162 The difference between N and the actual number of articles marked is
8163 returned.
8164 Iff NO-EXPIRE, auto-expiry will be inhibited."
8165   (interactive "p")
8166   (gnus-summary-show-thread)
8167   (let ((backward (< n 0))
8168         (gnus-summary-goto-unread
8169          (and gnus-summary-goto-unread
8170               (not (eq gnus-summary-goto-unread 'never))
8171               (not (memq mark (list gnus-unread-mark
8172                                     gnus-ticked-mark gnus-dormant-mark)))))
8173         (n (abs n))
8174         (mark (or mark gnus-del-mark)))
8175     (while (and (> n 0)
8176                 (gnus-summary-mark-article nil mark no-expire)
8177                 (zerop (gnus-summary-next-subject
8178                         (if backward -1 1)
8179                         (and gnus-summary-goto-unread
8180                              (not (eq gnus-summary-goto-unread 'never)))
8181                         t)))
8182       (setq n (1- n)))
8183     (when (/= 0 n)
8184       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
8185     (gnus-summary-recenter)
8186     (gnus-summary-position-point)
8187     (gnus-set-mode-line 'summary)
8188     n))
8189
8190 (defun gnus-summary-mark-article-as-read (mark)
8191   "Mark the current article quickly as read with MARK."
8192   (let ((article (gnus-summary-article-number)))
8193     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8194     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8195     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8196     (push (cons article mark) gnus-newsgroup-reads)
8197     ;; Possibly remove from cache, if that is used.
8198     (when gnus-use-cache
8199       (gnus-cache-enter-remove-article article))
8200     ;; Allow the backend to change the mark.
8201     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8202     ;; Check for auto-expiry.
8203     (when (and gnus-newsgroup-auto-expire
8204                (memq mark gnus-auto-expirable-marks))
8205       (setq mark gnus-expirable-mark)
8206       ;; Let the backend know about the mark change.
8207       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8208       (push article gnus-newsgroup-expirable))
8209     ;; Set the mark in the buffer.
8210     (gnus-summary-update-mark mark 'unread)
8211     t))
8212
8213 (defun gnus-summary-mark-article-as-unread (mark)
8214   "Mark the current article quickly as unread with MARK."
8215   (let* ((article (gnus-summary-article-number))
8216          (old-mark (gnus-summary-article-mark article)))
8217     ;; Allow the backend to change the mark.
8218     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8219     (if (eq mark old-mark)
8220         t
8221       (if (<= article 0)
8222           (progn
8223             (gnus-error 1 "Can't mark negative article numbers")
8224             nil)
8225         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8226         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8227         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
8228         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
8229         (cond ((= mark gnus-ticked-mark)
8230                (push article gnus-newsgroup-marked))
8231               ((= mark gnus-dormant-mark)
8232                (push article gnus-newsgroup-dormant))
8233               (t
8234                (push article gnus-newsgroup-unreads)))
8235         (gnus-pull article gnus-newsgroup-reads)
8236
8237         ;; See whether the article is to be put in the cache.
8238         (and gnus-use-cache
8239              (vectorp (gnus-summary-article-header article))
8240              (save-excursion
8241                (gnus-cache-possibly-enter-article
8242                 gnus-newsgroup-name article
8243                 (= mark gnus-ticked-mark)
8244                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8245
8246         ;; Fix the mark.
8247         (gnus-summary-update-mark mark 'unread)
8248         t))))
8249
8250 (defun gnus-summary-mark-article (&optional article mark no-expire)
8251   "Mark ARTICLE with MARK.  MARK can be any character.
8252 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
8253 `??' (dormant) and `?E' (expirable).
8254 If MARK is nil, then the default character `?r' is used.
8255 If ARTICLE is nil, then the article on the current line will be
8256 marked.
8257 Iff NO-EXPIRE, auto-expiry will be inhibited."
8258   ;; The mark might be a string.
8259   (when (stringp mark)
8260     (setq mark (aref mark 0)))
8261   ;; If no mark is given, then we check auto-expiring.
8262   (when (null mark)
8263     (setq mark gnus-del-mark))
8264   (when (and (not no-expire)
8265              gnus-newsgroup-auto-expire
8266              (memq mark gnus-auto-expirable-marks))
8267     (setq mark gnus-expirable-mark))
8268   (let ((article (or article (gnus-summary-article-number)))
8269         (old-mark (gnus-summary-article-mark article)))
8270     ;; Allow the backend to change the mark.
8271     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8272     (if (eq mark old-mark)
8273         t
8274       (unless article
8275         (error "No article on current line"))
8276       (if (not (if (or (= mark gnus-unread-mark)
8277                        (= mark gnus-ticked-mark)
8278                        (= mark gnus-dormant-mark))
8279                    (gnus-mark-article-as-unread article mark)
8280                  (gnus-mark-article-as-read article mark)))
8281           t
8282         ;; See whether the article is to be put in the cache.
8283         (and gnus-use-cache
8284              (not (= mark gnus-canceled-mark))
8285              (vectorp (gnus-summary-article-header article))
8286              (save-excursion
8287                (gnus-cache-possibly-enter-article
8288                 gnus-newsgroup-name article
8289                 (= mark gnus-ticked-mark)
8290                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8291
8292         (when (gnus-summary-goto-subject article nil t)
8293           (let ((buffer-read-only nil))
8294             (gnus-summary-show-thread)
8295             ;; Fix the mark.
8296             (gnus-summary-update-mark mark 'unread)
8297             t))))))
8298
8299 (defun gnus-summary-update-secondary-mark (article)
8300   "Update the secondary (read, process, cache) mark."
8301   (gnus-summary-update-mark
8302    (cond ((memq article gnus-newsgroup-processable)
8303           gnus-process-mark)
8304          ((memq article gnus-newsgroup-cached)
8305           gnus-cached-mark)
8306          ((memq article gnus-newsgroup-replied)
8307           gnus-replied-mark)
8308          ((memq article gnus-newsgroup-saved)
8309           gnus-saved-mark)
8310          (t gnus-unread-mark))
8311    'replied)
8312   (when (gnus-visual-p 'summary-highlight 'highlight)
8313     (gnus-run-hooks 'gnus-summary-update-hook))
8314   t)
8315
8316 (defun gnus-summary-update-mark (mark type)
8317   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
8318         (buffer-read-only nil))
8319     (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
8320     (when forward
8321       (when (looking-at "\r")
8322         (incf forward))
8323       (when (<= (+ forward (point)) (point-max))
8324         ;; Go to the right position on the line.
8325         (goto-char (+ forward (point)))
8326         ;; Replace the old mark with the new mark.
8327         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
8328         ;; Optionally update the marks by some user rule.
8329         (when (eq type 'unread)
8330           (gnus-data-set-mark
8331            (gnus-data-find (gnus-summary-article-number)) mark)
8332           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
8333
8334 (defun gnus-mark-article-as-read (article &optional mark)
8335   "Enter ARTICLE in the pertinent lists and remove it from others."
8336   ;; Make the article expirable.
8337   (let ((mark (or mark gnus-del-mark)))
8338     (if (= mark gnus-expirable-mark)
8339         (push article gnus-newsgroup-expirable)
8340       (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)))
8341     ;; Remove from unread and marked lists.
8342     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8343     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8344     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8345     (push (cons article mark) gnus-newsgroup-reads)
8346     ;; Possibly remove from cache, if that is used.
8347     (when gnus-use-cache
8348       (gnus-cache-enter-remove-article article))
8349     t))
8350
8351 (defun gnus-mark-article-as-unread (article &optional mark)
8352   "Enter ARTICLE in the pertinent lists and remove it from others."
8353   (let ((mark (or mark gnus-ticked-mark)))
8354     (if (<= article 0)
8355         (progn
8356           (gnus-error 1 "Can't mark negative article numbers")
8357           nil)
8358       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
8359             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
8360             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
8361             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8362
8363       ;; Unsuppress duplicates?
8364       (when gnus-suppress-duplicates
8365         (gnus-dup-unsuppress-article article))
8366
8367       (cond ((= mark gnus-ticked-mark)
8368              (push article gnus-newsgroup-marked))
8369             ((= mark gnus-dormant-mark)
8370              (push article gnus-newsgroup-dormant))
8371             (t
8372              (push article gnus-newsgroup-unreads)))
8373       (gnus-pull article gnus-newsgroup-reads)
8374       t)))
8375
8376 (defalias 'gnus-summary-mark-as-unread-forward
8377   'gnus-summary-tick-article-forward)
8378 (make-obsolete 'gnus-summary-mark-as-unread-forward
8379                'gnus-summary-tick-article-forward)
8380 (defun gnus-summary-tick-article-forward (n)
8381   "Tick N articles forwards.
8382 If N is negative, tick backwards instead.
8383 The difference between N and the number of articles ticked is returned."
8384   (interactive "p")
8385   (gnus-summary-mark-forward n gnus-ticked-mark))
8386
8387 (defalias 'gnus-summary-mark-as-unread-backward
8388   'gnus-summary-tick-article-backward)
8389 (make-obsolete 'gnus-summary-mark-as-unread-backward
8390                'gnus-summary-tick-article-backward)
8391 (defun gnus-summary-tick-article-backward (n)
8392   "Tick N articles backwards.
8393 The difference between N and the number of articles ticked is returned."
8394   (interactive "p")
8395   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
8396
8397 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8398 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8399 (defun gnus-summary-tick-article (&optional article clear-mark)
8400   "Mark current article as unread.
8401 Optional 1st argument ARTICLE specifies article number to be marked as unread.
8402 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
8403   (interactive)
8404   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
8405                                        gnus-ticked-mark)))
8406
8407 (defun gnus-summary-mark-as-read-forward (n)
8408   "Mark N articles as read forwards.
8409 If N is negative, mark backwards instead.
8410 The difference between N and the actual number of articles marked is
8411 returned."
8412   (interactive "p")
8413   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
8414
8415 (defun gnus-summary-mark-as-read-backward (n)
8416   "Mark the N articles as read backwards.
8417 The difference between N and the actual number of articles marked is
8418 returned."
8419   (interactive "p")
8420   (gnus-summary-mark-forward
8421    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
8422
8423 (defun gnus-summary-mark-as-read (&optional article mark)
8424   "Mark current article as read.
8425 ARTICLE specifies the article to be marked as read.
8426 MARK specifies a string to be inserted at the beginning of the line."
8427   (gnus-summary-mark-article article mark))
8428
8429 (defun gnus-summary-clear-mark-forward (n)
8430   "Clear marks from N articles forward.
8431 If N is negative, clear backward instead.
8432 The difference between N and the number of marks cleared is returned."
8433   (interactive "p")
8434   (gnus-summary-mark-forward n gnus-unread-mark))
8435
8436 (defun gnus-summary-clear-mark-backward (n)
8437   "Clear marks from N articles backward.
8438 The difference between N and the number of marks cleared is returned."
8439   (interactive "p")
8440   (gnus-summary-mark-forward (- n) gnus-unread-mark))
8441
8442 (defun gnus-summary-mark-unread-as-read ()
8443   "Intended to be used by `gnus-summary-mark-article-hook'."
8444   (when (memq gnus-current-article gnus-newsgroup-unreads)
8445     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
8446
8447 (defun gnus-summary-mark-read-and-unread-as-read ()
8448   "Intended to be used by `gnus-summary-mark-article-hook'."
8449   (let ((mark (gnus-summary-article-mark)))
8450     (when (or (gnus-unread-mark-p mark)
8451               (gnus-read-mark-p mark))
8452       (gnus-summary-mark-article gnus-current-article gnus-read-mark))))
8453
8454 (defun gnus-summary-mark-region-as-read (point mark all)
8455   "Mark all unread articles between point and mark as read.
8456 If given a prefix, mark all articles between point and mark as read,
8457 even ticked and dormant ones."
8458   (interactive "r\nP")
8459   (save-excursion
8460     (let (article)
8461       (goto-char point)
8462       (beginning-of-line)
8463       (while (and
8464               (< (point) mark)
8465               (progn
8466                 (when (or all
8467                           (memq (setq article (gnus-summary-article-number))
8468                                 gnus-newsgroup-unreads))
8469                   (gnus-summary-mark-article article gnus-del-mark))
8470                 t)
8471               (gnus-summary-find-next))))))
8472
8473 (defun gnus-summary-mark-below (score mark)
8474   "Mark articles with score less than SCORE with MARK."
8475   (interactive "P\ncMark: ")
8476   (setq score (if score
8477                   (prefix-numeric-value score)
8478                 (or gnus-summary-default-score 0)))
8479   (save-excursion
8480     (set-buffer gnus-summary-buffer)
8481     (goto-char (point-min))
8482     (while
8483         (progn
8484           (and (< (gnus-summary-article-score) score)
8485                (gnus-summary-mark-article nil mark))
8486           (gnus-summary-find-next)))))
8487
8488 (defun gnus-summary-kill-below (&optional score)
8489   "Mark articles with score below SCORE as read."
8490   (interactive "P")
8491   (gnus-summary-mark-below score gnus-killed-mark))
8492
8493 (defun gnus-summary-clear-above (&optional score)
8494   "Clear all marks from articles with score above SCORE."
8495   (interactive "P")
8496   (gnus-summary-mark-above score gnus-unread-mark))
8497
8498 (defun gnus-summary-tick-above (&optional score)
8499   "Tick all articles with score above SCORE."
8500   (interactive "P")
8501   (gnus-summary-mark-above score gnus-ticked-mark))
8502
8503 (defun gnus-summary-mark-above (score mark)
8504   "Mark articles with score over SCORE with MARK."
8505   (interactive "P\ncMark: ")
8506   (setq score (if score
8507                   (prefix-numeric-value score)
8508                 (or gnus-summary-default-score 0)))
8509   (save-excursion
8510     (set-buffer gnus-summary-buffer)
8511     (goto-char (point-min))
8512     (while (and (progn
8513                   (when (> (gnus-summary-article-score) score)
8514                     (gnus-summary-mark-article nil mark))
8515                   t)
8516                 (gnus-summary-find-next)))))
8517
8518 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8519 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
8520 (defun gnus-summary-limit-include-expunged (&optional no-error)
8521   "Display all the hidden articles that were expunged for low scores."
8522   (interactive)
8523   (let ((buffer-read-only nil))
8524     (let ((scored gnus-newsgroup-scored)
8525           headers h)
8526       (while scored
8527         (unless (gnus-summary-goto-subject (caar scored))
8528           (and (setq h (gnus-summary-article-header (caar scored)))
8529                (< (cdar scored) gnus-summary-expunge-below)
8530                (push h headers)))
8531         (setq scored (cdr scored)))
8532       (if (not headers)
8533           (when (not no-error)
8534             (error "No expunged articles hidden"))
8535         (goto-char (point-min))
8536         (gnus-summary-prepare-unthreaded (nreverse headers))
8537         (goto-char (point-min))
8538         (gnus-summary-position-point)
8539         t))))
8540
8541 (defun gnus-summary-catchup (&optional all quietly to-here not-mark)
8542   "Mark all unread articles in this newsgroup as read.
8543 If prefix argument ALL is non-nil, ticked and dormant articles will
8544 also be marked as read.
8545 If QUIETLY is non-nil, no questions will be asked.
8546 If TO-HERE is non-nil, it should be a point in the buffer.  All
8547 articles before this point will be marked as read.
8548 Note that this function will only catch up the unread article
8549 in the current summary buffer limitation.
8550 The number of articles marked as read is returned."
8551   (interactive "P")
8552   (prog1
8553       (save-excursion
8554         (when (or quietly
8555                   (not gnus-interactive-catchup) ;Without confirmation?
8556                   gnus-expert-user
8557                   (gnus-y-or-n-p
8558                    (if all
8559                        "Mark absolutely all articles as read? "
8560                      "Mark all unread articles as read? ")))
8561           (if (and not-mark
8562                    (not gnus-newsgroup-adaptive)
8563                    (not gnus-newsgroup-auto-expire)
8564                    (not gnus-suppress-duplicates)
8565                    (or (not gnus-use-cache)
8566                        (eq gnus-use-cache 'passive)))
8567               (progn
8568                 (when all
8569                   (setq gnus-newsgroup-marked nil
8570                         gnus-newsgroup-dormant nil))
8571                 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable))
8572             ;; We actually mark all articles as canceled, which we
8573             ;; have to do when using auto-expiry or adaptive scoring.
8574             (gnus-summary-show-all-threads)
8575             (when (gnus-summary-first-subject (not all) t)
8576               (while (and
8577                       (if to-here (< (point) to-here) t)
8578                       (gnus-summary-mark-article-as-read gnus-catchup-mark)
8579                       (gnus-summary-find-next (not all) nil nil t))))
8580             (gnus-set-mode-line 'summary))
8581           t))
8582     (gnus-summary-position-point)))
8583
8584 (defun gnus-summary-catchup-to-here (&optional all)
8585   "Mark all unticked articles before the current one as read.
8586 If ALL is non-nil, also mark ticked and dormant articles as read."
8587   (interactive "P")
8588   (save-excursion
8589     (gnus-save-hidden-threads
8590       (let ((beg (point)))
8591         ;; We check that there are unread articles.
8592         (when (or all (gnus-summary-find-prev))
8593           (gnus-summary-catchup all t beg)))))
8594   (gnus-summary-position-point))
8595
8596 (defun gnus-summary-catchup-all (&optional quietly)
8597   "Mark all articles in this newsgroup as read."
8598   (interactive "P")
8599   (gnus-summary-catchup t quietly))
8600
8601 (defun gnus-summary-catchup-and-exit (&optional all quietly)
8602   "Mark all unread articles in this group as read, then exit.
8603 If prefix argument ALL is non-nil, all articles are marked as read."
8604   (interactive "P")
8605   (when (gnus-summary-catchup all quietly nil 'fast)
8606     ;; Select next newsgroup or exit.
8607     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
8608              (eq gnus-auto-select-next 'quietly))
8609         (gnus-summary-next-group nil)
8610       (gnus-summary-exit))))
8611
8612 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
8613   "Mark all articles in this newsgroup as read, and then exit."
8614   (interactive "P")
8615   (gnus-summary-catchup-and-exit t quietly))
8616
8617 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
8618   "Mark all articles in this group as read and select the next group.
8619 If given a prefix, mark all articles, unread as well as ticked, as
8620 read."
8621   (interactive "P")
8622   (save-excursion
8623     (gnus-summary-catchup all))
8624   (gnus-summary-next-group))
8625
8626 ;;;
8627 ;;; with article
8628 ;;;
8629
8630 (defmacro gnus-with-article (article &rest forms)
8631   "Select ARTICLE and perform FORMS in the original article buffer.
8632 Then replace the article with the result."
8633   `(progn
8634      ;; We don't want the article to be marked as read.
8635      (let (gnus-mark-article-hook)
8636        (gnus-summary-select-article t t nil ,article))
8637      (set-buffer gnus-original-article-buffer)
8638      ,@forms
8639      (if (not (gnus-check-backend-function
8640                'request-replace-article (car gnus-article-current)))
8641          (gnus-message 5 "Read-only group; not replacing")
8642        (unless (gnus-request-replace-article
8643                 ,article (car gnus-article-current)
8644                 (current-buffer) t)
8645          (error "Couldn't replace article")))
8646      ;; The cache and backlog have to be flushed somewhat.
8647      (when gnus-keep-backlog
8648        (gnus-backlog-remove-article
8649         (car gnus-article-current) (cdr gnus-article-current)))
8650      (when gnus-use-cache
8651        (gnus-cache-update-article
8652         (car gnus-article-current) (cdr gnus-article-current)))))
8653
8654 (put 'gnus-with-article 'lisp-indent-function 1)
8655 (put 'gnus-with-article 'edebug-form-spec '(form body))
8656
8657 ;; Thread-based commands.
8658
8659 (defun gnus-summary-articles-in-thread (&optional article)
8660   "Return a list of all articles in the current thread.
8661 If ARTICLE is non-nil, return all articles in the thread that starts
8662 with that article."
8663   (let* ((article (or article (gnus-summary-article-number)))
8664          (data (gnus-data-find-list article))
8665          (top-level (gnus-data-level (car data)))
8666          (top-subject
8667           (cond ((null gnus-thread-operation-ignore-subject)
8668                  (gnus-simplify-subject-re
8669                   (mail-header-subject (gnus-data-header (car data)))))
8670                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
8671                  (gnus-simplify-subject-fuzzy
8672                   (mail-header-subject (gnus-data-header (car data)))))
8673                 (t nil)))
8674          (end-point (save-excursion
8675                       (if (gnus-summary-go-to-next-thread)
8676                           (point) (point-max))))
8677          articles)
8678     (while (and data
8679                 (< (gnus-data-pos (car data)) end-point))
8680       (when (or (not top-subject)
8681                 (string= top-subject
8682                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
8683                              (gnus-simplify-subject-fuzzy
8684                               (mail-header-subject
8685                                (gnus-data-header (car data))))
8686                            (gnus-simplify-subject-re
8687                             (mail-header-subject
8688                              (gnus-data-header (car data)))))))
8689         (push (gnus-data-number (car data)) articles))
8690       (unless (and (setq data (cdr data))
8691                    (> (gnus-data-level (car data)) top-level))
8692         (setq data nil)))
8693     ;; Return the list of articles.
8694     (nreverse articles)))
8695
8696 (defun gnus-summary-rethread-current ()
8697   "Rethread the thread the current article is part of."
8698   (interactive)
8699   (let* ((gnus-show-threads t)
8700          (article (gnus-summary-article-number))
8701          (id (mail-header-id (gnus-summary-article-header)))
8702          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
8703     (unless id
8704       (error "No article on the current line"))
8705     (gnus-rebuild-thread id)
8706     (gnus-summary-goto-subject article)))
8707
8708 (defun gnus-summary-reparent-thread ()
8709   "Make the current article child of the marked (or previous) article.
8710
8711 Note that the re-threading will only work if `gnus-thread-ignore-subject'
8712 is non-nil or the Subject: of both articles are the same."
8713   (interactive)
8714   (unless (not (gnus-group-read-only-p))
8715     (error "The current newsgroup does not support article editing"))
8716   (unless (<= (length gnus-newsgroup-processable) 1)
8717     (error "No more than one article may be marked"))
8718   (save-window-excursion
8719     (let ((gnus-article-buffer " *reparent*")
8720           (current-article (gnus-summary-article-number))
8721           ;; First grab the marked article, otherwise one line up.
8722           (parent-article (if (not (null gnus-newsgroup-processable))
8723                               (car gnus-newsgroup-processable)
8724                             (save-excursion
8725                               (if (eq (forward-line -1) 0)
8726                                   (gnus-summary-article-number)
8727                                 (error "Beginning of summary buffer"))))))
8728       (unless (not (eq current-article parent-article))
8729         (error "An article may not be self-referential"))
8730       (let ((message-id (mail-header-id
8731                          (gnus-summary-article-header parent-article))))
8732         (unless (and message-id (not (equal message-id "")))
8733           (error "No message-id in desired parent"))
8734         (gnus-with-article current-article
8735           (save-restriction
8736             (goto-char (point-min))
8737             (message-narrow-to-head)
8738             (if (re-search-forward "^References: " nil t)
8739                 (progn
8740                   (re-search-forward "^[^ \t]" nil t)
8741                   (forward-line -1)
8742                   (end-of-line)
8743                   (insert " " message-id))
8744               (insert "References: " message-id "\n"))))
8745         (set-buffer gnus-summary-buffer)
8746         (gnus-summary-unmark-all-processable)
8747         (gnus-summary-update-article current-article)
8748         (gnus-summary-rethread-current)
8749         (gnus-message 3 "Article %d is now the child of article %d"
8750                       current-article parent-article)))))
8751
8752 (defun gnus-summary-toggle-threads (&optional arg)
8753   "Toggle showing conversation threads.
8754 If ARG is positive number, turn showing conversation threads on."
8755   (interactive "P")
8756   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
8757     (setq gnus-show-threads
8758           (if (null arg) (not gnus-show-threads)
8759             (> (prefix-numeric-value arg) 0)))
8760     (gnus-summary-prepare)
8761     (gnus-summary-goto-subject current)
8762     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
8763     (gnus-summary-position-point)))
8764
8765 (defun gnus-summary-show-all-threads ()
8766   "Show all threads."
8767   (interactive)
8768   (save-excursion
8769     (let ((buffer-read-only nil))
8770       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
8771   (gnus-summary-position-point))
8772
8773 (defun gnus-summary-show-thread ()
8774   "Show thread subtrees.
8775 Returns nil if no thread was there to be shown."
8776   (interactive)
8777   (let ((buffer-read-only nil)
8778         (orig (point))
8779         ;; first goto end then to beg, to have point at beg after let
8780         (end (progn (end-of-line) (point)))
8781         (beg (progn (beginning-of-line) (point))))
8782     (prog1
8783         ;; Any hidden lines here?
8784         (search-forward "\r" end t)
8785       (subst-char-in-region beg end ?\^M ?\n t)
8786       (goto-char orig)
8787       (gnus-summary-position-point))))
8788
8789 (defun gnus-summary-hide-all-threads ()
8790   "Hide all thread subtrees."
8791   (interactive)
8792   (save-excursion
8793     (goto-char (point-min))
8794     (gnus-summary-hide-thread)
8795     (while (zerop (gnus-summary-next-thread 1 t))
8796       (gnus-summary-hide-thread)))
8797   (gnus-summary-position-point))
8798
8799 (defun gnus-summary-hide-thread ()
8800   "Hide thread subtrees.
8801 Returns nil if no threads were there to be hidden."
8802   (interactive)
8803   (let ((buffer-read-only nil)
8804         (start (point))
8805         (article (gnus-summary-article-number)))
8806     (goto-char start)
8807     ;; Go forward until either the buffer ends or the subthread
8808     ;; ends.
8809     (when (and (not (eobp))
8810                (or (zerop (gnus-summary-next-thread 1 t))
8811                    (goto-char (point-max))))
8812       (prog1
8813           (if (and (> (point) start)
8814                    (search-backward "\n" start t))
8815               (progn
8816                 (subst-char-in-region start (point) ?\n ?\^M)
8817                 (gnus-summary-goto-subject article))
8818             (goto-char start)
8819             nil)))))
8820
8821 (defun gnus-summary-go-to-next-thread (&optional previous)
8822   "Go to the same level (or less) next thread.
8823 If PREVIOUS is non-nil, go to previous thread instead.
8824 Return the article number moved to, or nil if moving was impossible."
8825   (let ((level (gnus-summary-thread-level))
8826         (way (if previous -1 1))
8827         (beg (point)))
8828     (forward-line way)
8829     (while (and (not (eobp))
8830                 (< level (gnus-summary-thread-level)))
8831       (forward-line way))
8832     (if (eobp)
8833         (progn
8834           (goto-char beg)
8835           nil)
8836       (setq beg (point))
8837       (prog1
8838           (gnus-summary-article-number)
8839         (goto-char beg)))))
8840
8841 (defun gnus-summary-next-thread (n &optional silent)
8842   "Go to the same level next N'th thread.
8843 If N is negative, search backward instead.
8844 Returns the difference between N and the number of skips actually
8845 done.
8846
8847 If SILENT, don't output messages."
8848   (interactive "p")
8849   (let ((backward (< n 0))
8850         (n (abs n)))
8851     (while (and (> n 0)
8852                 (gnus-summary-go-to-next-thread backward))
8853       (decf n))
8854     (unless silent
8855       (gnus-summary-position-point))
8856     (when (and (not silent) (/= 0 n))
8857       (gnus-message 7 "No more threads"))
8858     n))
8859
8860 (defun gnus-summary-prev-thread (n)
8861   "Go to the same level previous N'th thread.
8862 Returns the difference between N and the number of skips actually
8863 done."
8864   (interactive "p")
8865   (gnus-summary-next-thread (- n)))
8866
8867 (defun gnus-summary-go-down-thread ()
8868   "Go down one level in the current thread."
8869   (let ((children (gnus-summary-article-children)))
8870     (when children
8871       (gnus-summary-goto-subject (car children)))))
8872
8873 (defun gnus-summary-go-up-thread ()
8874   "Go up one level in the current thread."
8875   (let ((parent (gnus-summary-article-parent)))
8876     (when parent
8877       (gnus-summary-goto-subject parent))))
8878
8879 (defun gnus-summary-down-thread (n)
8880   "Go down thread N steps.
8881 If N is negative, go up instead.
8882 Returns the difference between N and how many steps down that were
8883 taken."
8884   (interactive "p")
8885   (let ((up (< n 0))
8886         (n (abs n)))
8887     (while (and (> n 0)
8888                 (if up (gnus-summary-go-up-thread)
8889                   (gnus-summary-go-down-thread)))
8890       (setq n (1- n)))
8891     (gnus-summary-position-point)
8892     (when (/= 0 n)
8893       (gnus-message 7 "Can't go further"))
8894     n))
8895
8896 (defun gnus-summary-up-thread (n)
8897   "Go up thread N steps.
8898 If N is negative, go up instead.
8899 Returns the difference between N and how many steps down that were
8900 taken."
8901   (interactive "p")
8902   (gnus-summary-down-thread (- n)))
8903
8904 (defun gnus-summary-top-thread ()
8905   "Go to the top of the thread."
8906   (interactive)
8907   (while (gnus-summary-go-up-thread))
8908   (gnus-summary-article-number))
8909
8910 (defun gnus-summary-kill-thread (&optional unmark)
8911   "Mark articles under current thread as read.
8912 If the prefix argument is positive, remove any kinds of marks.
8913 If the prefix argument is negative, tick articles instead."
8914   (interactive "P")
8915   (when unmark
8916     (setq unmark (prefix-numeric-value unmark)))
8917   (let ((articles (gnus-summary-articles-in-thread)))
8918     (save-excursion
8919       ;; Expand the thread.
8920       (gnus-summary-show-thread)
8921       ;; Mark all the articles.
8922       (while articles
8923         (gnus-summary-goto-subject (car articles))
8924         (cond ((null unmark)
8925                (gnus-summary-mark-article-as-read gnus-killed-mark))
8926               ((> unmark 0)
8927                (gnus-summary-mark-article-as-unread gnus-unread-mark))
8928               (t
8929                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
8930         (setq articles (cdr articles))))
8931     ;; Hide killed subtrees.
8932     (and (null unmark)
8933          gnus-thread-hide-killed
8934          (gnus-summary-hide-thread))
8935     ;; If marked as read, go to next unread subject.
8936     (when (null unmark)
8937       ;; Go to next unread subject.
8938       (gnus-summary-next-subject 1 t)))
8939   (gnus-set-mode-line 'summary))
8940
8941 ;; Summary sorting commands
8942
8943 (defun gnus-summary-sort-by-number (&optional reverse)
8944   "Sort the summary buffer by article number.
8945 Argument REVERSE means reverse order."
8946   (interactive "P")
8947   (gnus-summary-sort 'number reverse))
8948
8949 (defun gnus-summary-sort-by-author (&optional reverse)
8950   "Sort the summary buffer by author name alphabetically.
8951 If `case-fold-search' is non-nil, case of letters is ignored.
8952 Argument REVERSE means reverse order."
8953   (interactive "P")
8954   (gnus-summary-sort 'author reverse))
8955
8956 (defun gnus-summary-sort-by-subject (&optional reverse)
8957   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
8958 If `case-fold-search' is non-nil, case of letters is ignored.
8959 Argument REVERSE means reverse order."
8960   (interactive "P")
8961   (gnus-summary-sort 'subject reverse))
8962
8963 (defun gnus-summary-sort-by-date (&optional reverse)
8964   "Sort the summary buffer by date.
8965 Argument REVERSE means reverse order."
8966   (interactive "P")
8967   (gnus-summary-sort 'date reverse))
8968
8969 (defun gnus-summary-sort-by-score (&optional reverse)
8970   "Sort the summary buffer by score.
8971 Argument REVERSE means reverse order."
8972   (interactive "P")
8973   (gnus-summary-sort 'score reverse))
8974
8975 (defun gnus-summary-sort-by-lines (&optional reverse)
8976   "Sort the summary buffer by the number of lines.
8977 Argument REVERSE means reverse order."
8978   (interactive "P")
8979   (gnus-summary-sort 'lines reverse))
8980
8981 (defun gnus-summary-sort-by-chars (&optional reverse)
8982   "Sort the summary buffer by article length.
8983 Argument REVERSE means reverse order."
8984   (interactive "P")
8985   (gnus-summary-sort 'chars reverse))
8986
8987 (defun gnus-summary-sort (predicate reverse)
8988   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
8989   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
8990          (article (intern (format "gnus-article-sort-by-%s" predicate)))
8991          (gnus-thread-sort-functions
8992           (if (not reverse)
8993               thread
8994             `(lambda (t1 t2)
8995                (,thread t2 t1))))
8996          (gnus-sort-gathered-threads-function
8997           gnus-thread-sort-functions)
8998          (gnus-article-sort-functions
8999           (if (not reverse)
9000               article
9001             `(lambda (t1 t2)
9002                (,article t2 t1))))
9003          (buffer-read-only)
9004          (gnus-summary-prepare-hook nil))
9005     ;; We do the sorting by regenerating the threads.
9006     (gnus-summary-prepare)
9007     ;; Hide subthreads if needed.
9008     (when (and gnus-show-threads gnus-thread-hide-subtree)
9009       (gnus-summary-hide-all-threads))))
9010
9011 ;; Summary saving commands.
9012
9013 (defun gnus-summary-save-article (&optional n not-saved)
9014   "Save the current article using the default saver function.
9015 If N is a positive number, save the N next articles.
9016 If N is a negative number, save the N previous articles.
9017 If N is nil and any articles have been marked with the process mark,
9018 save those articles instead.
9019 The variable `gnus-default-article-saver' specifies the saver function."
9020   (interactive "P")
9021   (let* ((articles (gnus-summary-work-articles n))
9022          (save-buffer (save-excursion
9023                         (nnheader-set-temp-buffer " *Gnus Save*")))
9024          (num (length articles))
9025          header file)
9026     (dolist (article articles)
9027       (setq header (gnus-summary-article-header article))
9028       (if (not (vectorp header))
9029           ;; This is a pseudo-article.
9030           (if (assq 'name header)
9031               (gnus-copy-file (cdr (assq 'name header)))
9032             (gnus-message 1 "Article %d is unsaveable" article))
9033         ;; This is a real article.
9034         (save-window-excursion
9035           (gnus-summary-select-article t nil nil article))
9036         (save-excursion
9037           (set-buffer save-buffer)
9038           (erase-buffer)
9039           (insert-buffer-substring gnus-original-article-buffer))
9040         (setq file (gnus-article-save save-buffer file num))
9041         (gnus-summary-remove-process-mark article)
9042         (unless not-saved
9043           (gnus-summary-set-saved-mark article))))
9044     (gnus-kill-buffer save-buffer)
9045     (gnus-summary-position-point)
9046     (gnus-set-mode-line 'summary)
9047     n))
9048
9049 (defun gnus-summary-pipe-output (&optional arg)
9050   "Pipe the current article to a subprocess.
9051 If N is a positive number, pipe the N next articles.
9052 If N is a negative number, pipe the N previous articles.
9053 If N is nil and any articles have been marked with the process mark,
9054 pipe those articles instead."
9055   (interactive "P")
9056   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
9057     (gnus-summary-save-article arg t))
9058   (gnus-configure-windows 'pipe))
9059
9060 (defun gnus-summary-save-article-mail (&optional arg)
9061   "Append the current article to an mail file.
9062 If N is a positive number, save the N next articles.
9063 If N is a negative number, save the N previous articles.
9064 If N is nil and any articles have been marked with the process mark,
9065 save those articles instead."
9066   (interactive "P")
9067   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
9068     (gnus-summary-save-article arg)))
9069
9070 (defun gnus-summary-save-article-rmail (&optional arg)
9071   "Append the current article to an rmail file.
9072 If N is a positive number, save the N next articles.
9073 If N is a negative number, save the N previous articles.
9074 If N is nil and any articles have been marked with the process mark,
9075 save those articles instead."
9076   (interactive "P")
9077   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
9078     (gnus-summary-save-article arg)))
9079
9080 (defun gnus-summary-save-article-file (&optional arg)
9081   "Append the current article to a file.
9082 If N is a positive number, save the N next articles.
9083 If N is a negative number, save the N previous articles.
9084 If N is nil and any articles have been marked with the process mark,
9085 save those articles instead."
9086   (interactive "P")
9087   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
9088     (gnus-summary-save-article arg)))
9089
9090 (defun gnus-summary-write-article-file (&optional arg)
9091   "Write the current article to a file, deleting the previous file.
9092 If N is a positive number, save the N next articles.
9093 If N is a negative number, save the N previous articles.
9094 If N is nil and any articles have been marked with the process mark,
9095 save those articles instead."
9096   (interactive "P")
9097   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
9098     (gnus-summary-save-article arg)))
9099
9100 (defun gnus-summary-save-article-body-file (&optional arg)
9101   "Append the current article body to a file.
9102 If N is a positive number, save the N next articles.
9103 If N is a negative number, save the N previous articles.
9104 If N is nil and any articles have been marked with the process mark,
9105 save those articles instead."
9106   (interactive "P")
9107   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
9108     (gnus-summary-save-article arg)))
9109
9110 (defun gnus-summary-pipe-message (program)
9111   "Pipe the current article through PROGRAM."
9112   (interactive "sProgram: ")
9113   (gnus-summary-select-article)
9114   (let ((mail-header-separator ""))
9115     (gnus-eval-in-buffer-window gnus-article-buffer
9116       (save-restriction
9117         (widen)
9118         (let ((start (window-start))
9119               buffer-read-only)
9120           (message-pipe-buffer-body program)
9121           (set-window-start (get-buffer-window (current-buffer)) start))))))
9122
9123 (defun gnus-get-split-value (methods)
9124   "Return a value based on the split METHODS."
9125   (let (split-name method result match)
9126     (when methods
9127       (save-excursion
9128         (set-buffer gnus-original-article-buffer)
9129         (save-restriction
9130           (nnheader-narrow-to-headers)
9131           (while methods
9132             (goto-char (point-min))
9133             (setq method (pop methods))
9134             (setq match (car method))
9135             (when (cond
9136                    ((stringp match)
9137                     ;; Regular expression.
9138                     (ignore-errors
9139                       (re-search-forward match nil t)))
9140                    ((gnus-functionp match)
9141                     ;; Function.
9142                     (save-restriction
9143                       (widen)
9144                       (setq result (funcall match gnus-newsgroup-name))))
9145                    ((consp match)
9146                     ;; Form.
9147                     (save-restriction
9148                       (widen)
9149                       (setq result (eval match)))))
9150               (setq split-name (append (cdr method) split-name))
9151               (cond ((stringp result)
9152                      (push (expand-file-name
9153                             result gnus-article-save-directory)
9154                            split-name))
9155                     ((consp result)
9156                      (setq split-name (append result split-name)))))))))
9157     (nreverse split-name)))
9158
9159 (defun gnus-valid-move-group-p (group)
9160   (and (boundp group)
9161        (symbol-name group)
9162        (symbol-value group)
9163        (gnus-get-function (gnus-find-method-for-group
9164                            (symbol-name group)) 'request-accept-article t)))
9165
9166 (defun gnus-read-move-group-name (prompt default articles prefix)
9167   "Read a group name."
9168   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
9169          (minibuffer-confirm-incomplete nil) ; XEmacs
9170          (prom
9171           (format "%s %s to:"
9172                   prompt
9173                   (if (> (length articles) 1)
9174                       (format "these %d articles" (length articles))
9175                     "this article")))
9176          (to-newsgroup
9177           (cond
9178            ((null split-name)
9179             (gnus-completing-read default prom
9180                                   gnus-active-hashtb
9181                                   'gnus-valid-move-group-p
9182                                   nil prefix
9183                                   'gnus-group-history))
9184            ((= 1 (length split-name))
9185             (gnus-completing-read (car split-name) prom
9186                                   gnus-active-hashtb
9187                                   'gnus-valid-move-group-p
9188                                   nil nil
9189                                   'gnus-group-history))
9190            (t
9191             (gnus-completing-read nil prom
9192                                   (mapcar (lambda (el) (list el))
9193                                           (nreverse split-name))
9194                                   nil nil nil
9195                                   'gnus-group-history))))
9196          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
9197     (when to-newsgroup
9198       (if (or (string= to-newsgroup "")
9199               (string= to-newsgroup prefix))
9200           (setq to-newsgroup default))
9201       (unless to-newsgroup
9202         (error "No group name entered"))
9203       (or (gnus-active to-newsgroup)
9204           (gnus-activate-group to-newsgroup nil nil to-method)
9205           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
9206                                      to-newsgroup))
9207               (or (and (gnus-request-create-group to-newsgroup to-method)
9208                        (gnus-activate-group
9209                         to-newsgroup nil nil to-method)
9210                        (gnus-subscribe-group to-newsgroup))
9211                   (error "Couldn't create group %s" to-newsgroup)))
9212           (error "No such group: %s" to-newsgroup)))
9213     to-newsgroup))
9214
9215 (defun gnus-summary-save-parts (type dir n &optional reverse)
9216   "Save parts matching TYPE to DIR.
9217 If REVERSE, save parts that do not match TYPE."
9218   (interactive
9219    (list (read-string "Save parts of type: " 
9220                       (or (car gnus-summary-save-parts-type-history)
9221                           gnus-summary-save-parts-default-mime)
9222                       'gnus-summary-save-parts-type-history)
9223          (setq gnus-summary-save-parts-last-directory
9224                (read-file-name "Save to directory: " 
9225                                gnus-summary-save-parts-last-directory
9226                                nil t))
9227          current-prefix-arg))
9228   (gnus-summary-iterate n
9229     (let ((gnus-display-mime-function nil)
9230           (gnus-inhibit-treatment t))
9231       (gnus-summary-select-article))
9232     (save-excursion
9233       (set-buffer gnus-article-buffer)
9234       (let ((handles (or gnus-article-mime-handles
9235                          (mm-dissect-buffer) (mm-uu-dissect))))
9236         (when handles
9237           (gnus-summary-save-parts-1 type dir handles reverse)
9238           (unless gnus-article-mime-handles ;; Don't destroy this case.
9239             (mm-destroy-parts handles)))))))
9240
9241 (defun gnus-summary-save-parts-1 (type dir handle reverse)
9242   (if (stringp (car handle))
9243       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
9244               (cdr handle))
9245     (when (if reverse
9246               (not (string-match type (mm-handle-media-type handle)))
9247             (string-match type (mm-handle-media-type handle)))
9248       (let ((file (expand-file-name
9249                    (file-name-nondirectory
9250                     (or
9251                      (mail-content-type-get
9252                       (mm-handle-disposition handle) 'filename)
9253                      (concat gnus-newsgroup-name
9254                              "." (number-to-string
9255                                   (cdr gnus-article-current)))))
9256                    dir)))
9257         (unless (file-exists-p file)
9258           (mm-save-part-to-file handle file))))))
9259
9260 ;; Summary extract commands
9261
9262 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
9263   (let ((buffer-read-only nil)
9264         (article (gnus-summary-article-number))
9265         after-article b e)
9266     (unless (gnus-summary-goto-subject article)
9267       (error "No such article: %d" article))
9268     (gnus-summary-position-point)
9269     ;; If all commands are to be bunched up on one line, we collect
9270     ;; them here.
9271     (unless gnus-view-pseudos-separately
9272       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
9273             files action)
9274         (while ps
9275           (setq action (cdr (assq 'action (car ps))))
9276           (setq files (list (cdr (assq 'name (car ps)))))
9277           (while (and ps (cdr ps)
9278                       (string= (or action "1")
9279                                (or (cdr (assq 'action (cadr ps))) "2")))
9280             (push (cdr (assq 'name (cadr ps))) files)
9281             (setcdr ps (cddr ps)))
9282           (when files
9283             (when (not (string-match "%s" action))
9284               (push " " files))
9285             (push " " files)
9286             (when (assq 'execute (car ps))
9287               (setcdr (assq 'execute (car ps))
9288                       (funcall (if (string-match "%s" action)
9289                                    'format 'concat)
9290                                action
9291                                (mapconcat
9292                                 (lambda (f)
9293                                   (if (equal f " ")
9294                                       f
9295                                     (mm-quote-arg f)))
9296                                 files " ")))))
9297           (setq ps (cdr ps)))))
9298     (if (and gnus-view-pseudos (not not-view))
9299         (while pslist
9300           (when (assq 'execute (car pslist))
9301             (gnus-execute-command (cdr (assq 'execute (car pslist)))
9302                                   (eq gnus-view-pseudos 'not-confirm)))
9303           (setq pslist (cdr pslist)))
9304       (save-excursion
9305         (while pslist
9306           (setq after-article (or (cdr (assq 'article (car pslist)))
9307                                   (gnus-summary-article-number)))
9308           (gnus-summary-goto-subject after-article)
9309           (forward-line 1)
9310           (setq b (point))
9311           (insert "    " (file-name-nondirectory
9312                           (cdr (assq 'name (car pslist))))
9313                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
9314           (setq e (point))
9315           (forward-line -1)             ; back to `b'
9316           (gnus-add-text-properties
9317            b (1- e) (list 'gnus-number gnus-reffed-article-number
9318                           gnus-mouse-face-prop gnus-mouse-face))
9319           (gnus-data-enter
9320            after-article gnus-reffed-article-number
9321            gnus-unread-mark b (car pslist) 0 (- e b))
9322           (push gnus-reffed-article-number gnus-newsgroup-unreads)
9323           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
9324           (setq pslist (cdr pslist)))))))
9325
9326 (defun gnus-pseudos< (p1 p2)
9327   (let ((c1 (cdr (assq 'action p1)))
9328         (c2 (cdr (assq 'action p2))))
9329     (and c1 c2 (string< c1 c2))))
9330
9331 (defun gnus-request-pseudo-article (props)
9332   (cond ((assq 'execute props)
9333          (gnus-execute-command (cdr (assq 'execute props)))))
9334   (let ((gnus-current-article (gnus-summary-article-number)))
9335     (gnus-run-hooks 'gnus-mark-article-hook)))
9336
9337 (defun gnus-execute-command (command &optional automatic)
9338   (save-excursion
9339     (gnus-article-setup-buffer)
9340     (set-buffer gnus-article-buffer)
9341     (setq buffer-read-only nil)
9342     (let ((command (if automatic command
9343                      (read-string "Command: " (cons command 0)))))
9344       (erase-buffer)
9345       (insert "$ " command "\n\n")
9346       (if gnus-view-pseudo-asynchronously
9347           (start-process "gnus-execute" (current-buffer) shell-file-name
9348                          shell-command-switch command)
9349         (call-process shell-file-name nil t nil
9350                       shell-command-switch command)))))
9351
9352 ;; Summary kill commands.
9353
9354 (defun gnus-summary-edit-global-kill (article)
9355   "Edit the \"global\" kill file."
9356   (interactive (list (gnus-summary-article-number)))
9357   (gnus-group-edit-global-kill article))
9358
9359 (defun gnus-summary-edit-local-kill ()
9360   "Edit a local kill file applied to the current newsgroup."
9361   (interactive)
9362   (setq gnus-current-headers (gnus-summary-article-header))
9363   (gnus-group-edit-local-kill
9364    (gnus-summary-article-number) gnus-newsgroup-name))
9365
9366 ;;; Header reading.
9367
9368 (defun gnus-read-header (id &optional header)
9369   "Read the headers of article ID and enter them into the Gnus system."
9370   (let ((group gnus-newsgroup-name)
9371         (gnus-override-method
9372          (or
9373           gnus-override-method
9374           (and (gnus-news-group-p gnus-newsgroup-name)
9375                (car (gnus-refer-article-methods)))))
9376         where)
9377     ;; First we check to see whether the header in question is already
9378     ;; fetched.
9379     (if (stringp id)
9380         ;; This is a Message-ID.
9381         (setq header (or header (gnus-id-to-header id)))
9382       ;; This is an article number.
9383       (setq header (or header (gnus-summary-article-header id))))
9384     (if (and header
9385              (not (gnus-summary-article-sparse-p (mail-header-number header))))
9386         ;; We have found the header.
9387         header
9388       ;; If this is a sparse article, we have to nix out its
9389       ;; previous entry in the thread hashtb.
9390       (when (and header
9391                  (gnus-summary-article-sparse-p (mail-header-number header)))
9392         (let* ((parent (gnus-parent-id (mail-header-references header)))
9393                (thread (and parent (gnus-id-to-thread parent))))
9394           (when thread
9395             (delq (assq header thread) thread))))
9396       ;; We have to really fetch the header to this article.
9397       (save-excursion
9398         (set-buffer nntp-server-buffer)
9399         (when (setq where (gnus-request-head id group))
9400           (nnheader-fold-continuation-lines)
9401           (goto-char (point-max))
9402           (insert ".\n")
9403           (goto-char (point-min))
9404           (insert "211 ")
9405           (princ (cond
9406                   ((numberp id) id)
9407                   ((cdr where) (cdr where))
9408                   (header (mail-header-number header))
9409                   (t gnus-reffed-article-number))
9410                  (current-buffer))
9411           (insert " Article retrieved.\n"))
9412         (if (or (not where)
9413                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
9414             ()                          ; Malformed head.
9415           (unless (gnus-summary-article-sparse-p (mail-header-number header))
9416             (when (and (stringp id)
9417                        (not (string= (gnus-group-real-name group)
9418                                      (car where))))
9419               ;; If we fetched by Message-ID and the article came
9420               ;; from a different group, we fudge some bogus article
9421               ;; numbers for this article.
9422               (mail-header-set-number header gnus-reffed-article-number))
9423             (save-excursion
9424               (set-buffer gnus-summary-buffer)
9425               (decf gnus-reffed-article-number)
9426               (gnus-remove-header (mail-header-number header))
9427               (push header gnus-newsgroup-headers)
9428               (setq gnus-current-headers header)
9429               (push (mail-header-number header) gnus-newsgroup-limit)))
9430           header)))))
9431
9432 (defun gnus-remove-header (number)
9433   "Remove header NUMBER from `gnus-newsgroup-headers'."
9434   (if (and gnus-newsgroup-headers
9435            (= number (mail-header-number (car gnus-newsgroup-headers))))
9436       (pop gnus-newsgroup-headers)
9437     (let ((headers gnus-newsgroup-headers))
9438       (while (and (cdr headers)
9439                   (not (= number (mail-header-number (cadr headers)))))
9440         (pop headers))
9441       (when (cdr headers)
9442         (setcdr headers (cddr headers))))))
9443
9444 ;;;
9445 ;;; summary highlights
9446 ;;;
9447
9448 (defun gnus-highlight-selected-summary ()
9449   "Highlight selected article in summary buffer."
9450   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
9451   (when gnus-summary-selected-face
9452     (save-excursion
9453       (let* ((beg (progn (beginning-of-line) (point)))
9454              (end (progn (end-of-line) (point)))
9455              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
9456              (from (if (get-text-property beg gnus-mouse-face-prop)
9457                        beg
9458                      (or (next-single-property-change
9459                           beg gnus-mouse-face-prop nil end)
9460                          beg)))
9461              (to
9462               (if (= from end)
9463                   (- from 2)
9464                 (or (next-single-property-change
9465                      from gnus-mouse-face-prop nil end)
9466                     end))))
9467         ;; If no mouse-face prop on line we will have to = from = end,
9468         ;; so we highlight the entire line instead.
9469         (when (= (+ to 2) from)
9470           (setq from beg)
9471           (setq to end))
9472         (if gnus-newsgroup-selected-overlay
9473             ;; Move old overlay.
9474             (gnus-move-overlay
9475              gnus-newsgroup-selected-overlay from to (current-buffer))
9476           ;; Create new overlay.
9477           (gnus-overlay-put
9478            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
9479            'face gnus-summary-selected-face))))))
9480
9481 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>.
9482 (defun gnus-summary-highlight-line ()
9483   "Highlight current line according to `gnus-summary-highlight'."
9484   (let* ((list gnus-summary-highlight)
9485          (p (point))
9486          (end (progn (end-of-line) (point)))
9487          ;; now find out where the line starts and leave point there.
9488          (beg (progn (beginning-of-line) (point)))
9489          (article (gnus-summary-article-number))
9490          (score (or (cdr (assq (or article gnus-current-article)
9491                                gnus-newsgroup-scored))
9492                     gnus-summary-default-score 0))
9493          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
9494          (inhibit-read-only t))
9495     ;; Eval the cars of the lists until we find a match.
9496     (let ((default gnus-summary-default-score))
9497       (while (and list
9498                   (not (eval (caar list))))
9499         (setq list (cdr list))))
9500     (let ((face (cdar list)))
9501       (unless (eq face (get-text-property beg 'face))
9502         (gnus-put-text-property-excluding-characters-with-faces
9503          beg end 'face
9504          (setq face (if (boundp face) (symbol-value face) face)))
9505         (when gnus-summary-highlight-line-function
9506           (funcall gnus-summary-highlight-line-function article face))))
9507     (goto-char p)))
9508
9509 (defun gnus-update-read-articles (group unread &optional compute)
9510   "Update the list of read articles in GROUP."
9511   (let* ((active (or gnus-newsgroup-active (gnus-active group)))
9512          (entry (gnus-gethash group gnus-newsrc-hashtb))
9513          (info (nth 2 entry))
9514          (prev 1)
9515          (unread (sort (copy-sequence unread) '<))
9516          read)
9517     (if (or (not info) (not active))
9518         ;; There is no info on this group if it was, in fact,
9519         ;; killed.  Gnus stores no information on killed groups, so
9520         ;; there's nothing to be done.
9521         ;; One could store the information somewhere temporarily,
9522         ;; perhaps...  Hmmm...
9523         ()
9524       ;; Remove any negative articles numbers.
9525       (while (and unread (< (car unread) 0))
9526         (setq unread (cdr unread)))
9527       ;; Remove any expired article numbers
9528       (while (and unread (< (car unread) (car active)))
9529         (setq unread (cdr unread)))
9530       ;; Compute the ranges of read articles by looking at the list of
9531       ;; unread articles.
9532       (while unread
9533         (when (/= (car unread) prev)
9534           (push (if (= prev (1- (car unread))) prev
9535                   (cons prev (1- (car unread))))
9536                 read))
9537         (setq prev (1+ (car unread)))
9538         (setq unread (cdr unread)))
9539       (when (<= prev (cdr active))
9540         (push (cons prev (cdr active)) read))
9541       (setq read (if (> (length read) 1) (nreverse read) read))
9542       (if compute
9543           read
9544         (save-excursion
9545           (let (setmarkundo)
9546             ;; Propagate the read marks to the backend.
9547             (when (gnus-check-backend-function 'request-set-mark group)
9548               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
9549                     (add (gnus-remove-from-range read (gnus-info-read info))))
9550                 (when (or add del)
9551                   (unless (gnus-check-group group)
9552                     (error "Can't open server for %s" group))
9553                   (gnus-request-set-mark
9554                    group (delq nil (list (if add (list add 'add '(read)))
9555                                          (if del (list del 'del '(read))))))
9556                   (setq setmarkundo
9557                         `(gnus-request-set-mark
9558                           ,group
9559                           ',(delq nil (list
9560                                        (if del (list del 'add '(read)))
9561                                        (if add (list add 'del '(read))))))))))
9562             (set-buffer gnus-group-buffer)
9563             (gnus-undo-register
9564               `(progn
9565                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
9566                  (gnus-info-set-read ',info ',(gnus-info-read info))
9567                  (gnus-get-unread-articles-in-group ',info 
9568                                                     (gnus-active ,group))
9569                  (gnus-group-update-group ,group t)
9570                  ,setmarkundo))))
9571         ;; Enter this list into the group info.
9572         (gnus-info-set-read info read)
9573         ;; Set the number of unread articles in gnus-newsrc-hashtb.
9574         (gnus-get-unread-articles-in-group info (gnus-active group))
9575         t))))
9576
9577 (defun gnus-offer-save-summaries ()
9578   "Offer to save all active summary buffers."
9579   (save-excursion
9580     (let ((buflist (buffer-list))
9581           buffers bufname)
9582       ;; Go through all buffers and find all summaries.
9583       (while buflist
9584         (and (setq bufname (buffer-name (car buflist)))
9585              (string-match "Summary" bufname)
9586              (save-excursion
9587                (set-buffer bufname)
9588                ;; We check that this is, indeed, a summary buffer.
9589                (and (eq major-mode 'gnus-summary-mode)
9590                     ;; Also make sure this isn't bogus.
9591                     gnus-newsgroup-prepared
9592                     ;; Also make sure that this isn't a dead summary buffer.
9593                     (not gnus-dead-summary-mode)))
9594              (push bufname buffers))
9595         (setq buflist (cdr buflist)))
9596       ;; Go through all these summary buffers and offer to save them.
9597       (when buffers
9598         (map-y-or-n-p
9599          "Update summary buffer %s? "
9600          (lambda (buf)
9601            (switch-to-buffer buf)
9602            (gnus-summary-exit))
9603          buffers)))))
9604
9605 (defun gnus-summary-setup-default-charset ()
9606   "Setup newsgroup default charset."
9607   (if (equal gnus-newsgroup-name "nndraft:drafts")
9608       (setq gnus-newsgroup-charset nil)
9609     (let* ((name (and gnus-newsgroup-name
9610                       (gnus-group-real-name gnus-newsgroup-name)))
9611            (ignored-charsets
9612             (or gnus-newsgroup-ephemeral-ignored-charsets
9613                 (append
9614                  (and gnus-newsgroup-name
9615                       (or (gnus-group-find-parameter gnus-newsgroup-name
9616                                                      'ignored-charsets t)
9617                           (let ((alist gnus-group-ignored-charsets-alist)
9618                                 elem (charsets nil))
9619                             (while (setq elem (pop alist))
9620                               (when (and name
9621                                          (string-match (car elem) name))
9622                                 (setq alist nil
9623                                       charsets (cdr elem))))
9624                             charsets)))
9625                  gnus-newsgroup-ignored-charsets))))
9626       (setq gnus-newsgroup-charset
9627             (or gnus-newsgroup-ephemeral-charset
9628                 (and gnus-newsgroup-name
9629                      (or (gnus-group-find-parameter gnus-newsgroup-name 'charset)
9630                          (let ((alist gnus-group-charset-alist)
9631                                elem charset)
9632                            (while (setq elem (pop alist))
9633                              (when (and name
9634                                         (string-match (car elem) name))
9635                                (setq alist nil
9636                                      charset (cadr elem))))
9637                            charset)))
9638                 gnus-default-charset))
9639       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
9640            ignored-charsets))))
9641
9642 ;;;
9643 ;;; Mime Commands
9644 ;;;
9645
9646 (defun gnus-summary-display-buttonized (&optional show-all-parts)
9647   "Display the current article buffer fully MIME-buttonized.
9648 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
9649 treated as multipart/mixed."
9650   (interactive "P")
9651   (require 'gnus-art)
9652   (let ((gnus-unbuttonized-mime-types nil)
9653         (gnus-mime-display-multipart-as-mixed show-all-parts))
9654     (gnus-summary-show-article)))
9655
9656 (defun gnus-summary-repair-multipart (article)
9657   "Add a Content-Type header to a multipart article without one."
9658   (interactive (list (gnus-summary-article-number)))
9659   (gnus-with-article article
9660     (message-narrow-to-head)
9661     (goto-char (point-max))
9662     (widen)
9663     (when (search-forward "\n--" nil t)
9664       (let ((separator (buffer-substring (point) (gnus-point-at-eol))))
9665         (message-narrow-to-head)
9666         (message-remove-header "Mime-Version")
9667         (message-remove-header "Content-Type")
9668         (goto-char (point-max))
9669         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
9670                         separator))
9671         (insert "Mime-Version: 1.0\n")
9672         (widen))))
9673   (let (gnus-mark-article-hook)
9674     (gnus-summary-select-article t t nil article)))
9675
9676 (defun gnus-summary-toggle-display-buttonized ()
9677   "Toggle the buttonizing of the article buffer."
9678   (interactive)
9679   (require 'gnus-art)
9680   (if (setq gnus-inhibit-mime-unbuttonizing
9681             (not gnus-inhibit-mime-unbuttonizing))
9682       (let ((gnus-unbuttonized-mime-types nil))
9683         (gnus-summary-show-article))
9684     (gnus-summary-show-article)))
9685
9686 ;;;
9687 ;;; Generic summary marking commands
9688 ;;;
9689
9690 (defvar gnus-summary-marking-alist
9691   '((read gnus-del-mark "d")
9692     (unread gnus-unread-mark "u")
9693     (ticked gnus-ticked-mark "!")
9694     (dormant gnus-dormant-mark "?")
9695     (expirable gnus-expirable-mark "e"))
9696   "An alist of names/marks/keystrokes.")
9697
9698 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
9699 (defvar gnus-summary-mark-map)
9700
9701 (defun gnus-summary-make-all-marking-commands ()
9702   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
9703   (dolist (elem gnus-summary-marking-alist)
9704     (apply 'gnus-summary-make-marking-command elem)))
9705
9706 (defun gnus-summary-make-marking-command (name mark keystroke)
9707   (let ((map (make-sparse-keymap)))
9708     (define-key gnus-summary-generic-mark-map keystroke map)
9709     (dolist (lway `((next "next" next nil "n")
9710                     (next-unread "next unread" next t "N")
9711                     (prev "previous" prev nil "p")
9712                     (prev-unread "previous unread" prev t "P")
9713                     (nomove "" nil nil ,keystroke)))
9714       (let ((func (gnus-summary-make-marking-command-1
9715                    mark (car lway) lway name)))
9716         (setq func (eval func))
9717         (define-key map (nth 4 lway) func)))))
9718       
9719 (defun gnus-summary-make-marking-command-1 (mark way lway name)
9720   `(defun ,(intern
9721             (format "gnus-summary-put-mark-as-%s%s"
9722                     name (if (eq way 'nomove)
9723                              ""
9724                            (concat "-" (symbol-name way)))))
9725      (n)
9726      ,(format
9727        "Mark the current article as %s%s.
9728 If N, the prefix, then repeat N times.
9729 If N is negative, move in reverse order.
9730 The difference between N and the actual number of articles marked is
9731 returned."
9732        name (cadr lway))
9733      (interactive "p")
9734      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
9735     
9736 (defun gnus-summary-generic-mark (n mark move unread)
9737   "Mark N articles with MARK."
9738   (unless (eq major-mode 'gnus-summary-mode)
9739     (error "This command can only be used in the summary buffer"))
9740   (gnus-summary-show-thread)
9741   (let ((nummove
9742          (cond
9743           ((eq move 'next) 1)
9744           ((eq move 'prev) -1)
9745           (t 0))))
9746     (if (zerop nummove)
9747         (setq n 1)
9748       (when (< n 0)
9749         (setq n (abs n)
9750               nummove (* -1 nummove))))
9751     (while (and (> n 0)
9752                 (gnus-summary-mark-article nil mark)
9753                 (zerop (gnus-summary-next-subject nummove unread t)))
9754       (setq n (1- n)))
9755     (when (/= 0 n)
9756       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9757     (gnus-summary-recenter)
9758     (gnus-summary-position-point)
9759     (gnus-set-mode-line 'summary)
9760     n))
9761
9762 (gnus-summary-make-all-marking-commands)
9763
9764 (gnus-ems-redefine)
9765
9766 (provide 'gnus-sum)
9767
9768 (run-hooks 'gnus-sum-load-hook)
9769
9770 ;;; gnus-sum.el ends here