2000-10-08 08:57:13 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   (when (gnus-buffer-live-p gnus-article-buffer)
5849     (with-current-buffer gnus-article-buffer
5850       (mm-enable-multibyte-mule4)))
5851   (gnus-set-global-variables)
5852   (if (null article)
5853       nil
5854     (prog1
5855         (if gnus-summary-display-article-function
5856             (funcall gnus-summary-display-article-function article all-header)
5857           (gnus-article-prepare article all-header))
5858       (gnus-run-hooks 'gnus-select-article-hook)
5859       (when (and gnus-current-article
5860                  (not (zerop gnus-current-article)))
5861         (gnus-summary-goto-subject gnus-current-article))
5862       (gnus-summary-recenter)
5863       (when (and gnus-use-trees gnus-show-threads)
5864         (gnus-possibly-generate-tree article)
5865         (gnus-highlight-selected-tree article))
5866       ;; Successfully display article.
5867       (gnus-article-set-window-start
5868        (cdr (assq article gnus-newsgroup-bookmarks))))))
5869
5870 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
5871   "Select the current article.
5872 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
5873 non-nil, the article will be re-fetched even if it already present in
5874 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
5875 be displayed."
5876   ;; Make sure we are in the summary buffer to work around bbdb bug.
5877   (unless (eq major-mode 'gnus-summary-mode)
5878     (set-buffer gnus-summary-buffer))
5879   (let ((article (or article (gnus-summary-article-number)))
5880         (all-headers (not (not all-headers))) ;Must be T or NIL.
5881         gnus-summary-display-article-function)
5882     (and (not pseudo)
5883          (gnus-summary-article-pseudo-p article)
5884          (error "This is a pseudo-article"))
5885     (save-excursion
5886       (set-buffer gnus-summary-buffer)
5887       (if (or (and gnus-single-article-buffer
5888                    (or (null gnus-current-article)
5889                        (null gnus-article-current)
5890                        (null (get-buffer gnus-article-buffer))
5891                        (not (eq article (cdr gnus-article-current)))
5892                        (not (equal (car gnus-article-current)
5893                                    gnus-newsgroup-name))))
5894               (and (not gnus-single-article-buffer)
5895                    (or (null gnus-current-article)
5896                        (not (eq gnus-current-article article))))
5897               force)
5898           ;; The requested article is different from the current article.
5899           (progn
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   (prog1
6245       (if (and (stringp article)
6246                (string-match "@" article))
6247           (gnus-summary-refer-article article)
6248         (when (stringp article)
6249           (setq article (string-to-number article)))
6250         (if (gnus-summary-goto-subject article force)
6251             (gnus-summary-display-article article all-headers)
6252           (gnus-message 4 "Couldn't go to article %s" article) nil))
6253     (gnus-summary-position-point)))
6254
6255 (defun gnus-summary-goto-last-article ()
6256   "Go to the previously read article."
6257   (interactive)
6258   (prog1
6259       (when gnus-last-article
6260         (gnus-summary-goto-article gnus-last-article nil t))
6261     (gnus-summary-position-point)))
6262
6263 (defun gnus-summary-pop-article (number)
6264   "Pop one article off the history and go to the previous.
6265 NUMBER articles will be popped off."
6266   (interactive "p")
6267   (let (to)
6268     (setq gnus-newsgroup-history
6269           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
6270     (if to
6271         (gnus-summary-goto-article (car to) nil t)
6272       (error "Article history empty")))
6273   (gnus-summary-position-point))
6274
6275 ;; Summary commands and functions for limiting the summary buffer.
6276
6277 (defun gnus-summary-limit-to-articles (n)
6278   "Limit the summary buffer to the next N articles.
6279 If not given a prefix, use the process marked articles instead."
6280   (interactive "P")
6281   (prog1
6282       (let ((articles (gnus-summary-work-articles n)))
6283         (setq gnus-newsgroup-processable nil)
6284         (gnus-summary-limit articles))
6285     (gnus-summary-position-point)))
6286
6287 (defun gnus-summary-pop-limit (&optional total)
6288   "Restore the previous limit.
6289 If given a prefix, remove all limits."
6290   (interactive "P")
6291   (when total
6292     (setq gnus-newsgroup-limits
6293           (list (mapcar (lambda (h) (mail-header-number h))
6294                         gnus-newsgroup-headers))))
6295   (unless gnus-newsgroup-limits
6296     (error "No limit to pop"))
6297   (prog1
6298       (gnus-summary-limit nil 'pop)
6299     (gnus-summary-position-point)))
6300
6301 (defun gnus-summary-limit-to-subject (subject &optional header)
6302   "Limit the summary buffer to articles that have subjects that match a regexp."
6303   (interactive "sLimit to subject (regexp): ")
6304   (unless header
6305     (setq header "subject"))
6306   (when (not (equal "" subject))
6307     (prog1
6308         (let ((articles (gnus-summary-find-matching
6309                          (or header "subject") subject 'all)))
6310           (unless articles
6311             (error "Found no matches for \"%s\"" subject))
6312           (gnus-summary-limit articles))
6313       (gnus-summary-position-point))))
6314
6315 (defun gnus-summary-limit-to-author (from)
6316   "Limit the summary buffer to articles that have authors that match a regexp."
6317   (interactive "sLimit to author (regexp): ")
6318   (gnus-summary-limit-to-subject from "from"))
6319
6320 (defun gnus-summary-limit-to-age (age &optional younger-p)
6321   "Limit the summary buffer to articles that are older than (or equal) AGE days.
6322 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
6323 articles that are younger than AGE days."
6324   (interactive
6325    (let ((younger current-prefix-arg)
6326          (days-got nil)
6327          days)
6328      (while (not days-got)
6329        (setq days (if younger
6330                       (read-string "Limit to articles within (in days): ")
6331                     (read-string "Limit to articles old than (in days): ")))
6332        (when (> (length days) 0)
6333          (setq days (read days)))
6334        (if (numberp days)
6335            (setq days-got t)
6336          (message "Please enter a number.")
6337          (sleep-for 1)))
6338      (list days younger)))
6339   (prog1
6340       (let ((data gnus-newsgroup-data)
6341             (cutoff (days-to-time age))
6342             articles d date is-younger)
6343         (while (setq d (pop data))
6344           (when (and (vectorp (gnus-data-header d))
6345                      (setq date (mail-header-date (gnus-data-header d))))
6346             (setq is-younger (time-less-p
6347                               (time-since (condition-case ()
6348                                               (date-to-time date)
6349                                             (error '(0 0))))
6350                               cutoff))
6351             (when (if younger-p
6352                       is-younger
6353                     (not is-younger))
6354               (push (gnus-data-number d) articles))))
6355         (gnus-summary-limit (nreverse articles)))
6356     (gnus-summary-position-point)))
6357
6358 (defun gnus-summary-limit-to-extra (header regexp)
6359   "Limit the summary buffer to articles that match an 'extra' header."
6360   (interactive
6361    (let ((header
6362           (intern
6363            (gnus-completing-read
6364             (symbol-name (car gnus-extra-headers))
6365             "Limit extra header:"
6366             (mapcar (lambda (x)
6367                       (cons (symbol-name x) x))
6368                     gnus-extra-headers)
6369             nil
6370             t))))
6371      (list header
6372            (read-string (format "Limit to header %s (regexp): " header)))))
6373   (when (not (equal "" regexp))
6374     (prog1
6375         (let ((articles (gnus-summary-find-matching
6376                          (cons 'extra header) regexp 'all)))
6377           (unless articles
6378             (error "Found no matches for \"%s\"" regexp))
6379           (gnus-summary-limit articles))
6380       (gnus-summary-position-point))))
6381
6382 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6383 (make-obsolete
6384  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
6385
6386 (defun gnus-summary-limit-to-unread (&optional all)
6387   "Limit the summary buffer to articles that are not marked as read.
6388 If ALL is non-nil, limit strictly to unread articles."
6389   (interactive "P")
6390   (if all
6391       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
6392     (gnus-summary-limit-to-marks
6393      ;; Concat all the marks that say that an article is read and have
6394      ;; those removed.
6395      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
6396            gnus-killed-mark gnus-kill-file-mark
6397            gnus-low-score-mark gnus-expirable-mark
6398            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
6399            gnus-duplicate-mark gnus-souped-mark)
6400      'reverse)))
6401
6402 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
6403 (make-obsolete 'gnus-summary-delete-marked-with
6404                'gnus-summary-limit-exlude-marks)
6405
6406 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
6407   "Exclude articles that are marked with MARKS (e.g. \"DK\").
6408 If REVERSE, limit the summary buffer to articles that are marked
6409 with MARKS.  MARKS can either be a string of marks or a list of marks.
6410 Returns how many articles were removed."
6411   (interactive "sMarks: ")
6412   (gnus-summary-limit-to-marks marks t))
6413
6414 (defun gnus-summary-limit-to-marks (marks &optional reverse)
6415   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
6416 If REVERSE (the prefix), limit the summary buffer to articles that are
6417 not marked with MARKS.  MARKS can either be a string of marks or a
6418 list of marks.
6419 Returns how many articles were removed."
6420   (interactive "sMarks: \nP")
6421   (prog1
6422       (let ((data gnus-newsgroup-data)
6423             (marks (if (listp marks) marks
6424                      (append marks nil))) ; Transform to list.
6425             articles)
6426         (while data
6427           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
6428                   (memq (gnus-data-mark (car data)) marks))
6429             (push (gnus-data-number (car data)) articles))
6430           (setq data (cdr data)))
6431         (gnus-summary-limit articles))
6432     (gnus-summary-position-point)))
6433
6434 (defun gnus-summary-limit-to-score (&optional score)
6435   "Limit to articles with score at or above SCORE."
6436   (interactive "P")
6437   (setq score (if score
6438                   (prefix-numeric-value score)
6439                 (or gnus-summary-default-score 0)))
6440   (let ((data gnus-newsgroup-data)
6441         articles)
6442     (while data
6443       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
6444                 score)
6445         (push (gnus-data-number (car data)) articles))
6446       (setq data (cdr data)))
6447     (prog1
6448         (gnus-summary-limit articles)
6449       (gnus-summary-position-point))))
6450
6451 (defun gnus-summary-limit-include-thread (id)
6452   "Display all the hidden articles that in the current thread."
6453   (interactive (list (mail-header-id (gnus-summary-article-header))))
6454   (let ((articles (gnus-articles-in-thread
6455                    (gnus-id-to-thread (gnus-root-id id)))))
6456     (prog1
6457         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
6458       (gnus-summary-position-point))))
6459
6460 (defun gnus-summary-limit-include-dormant ()
6461   "Display all the hidden articles that are marked as dormant.
6462 Note that this command only works on a subset of the articles currently
6463 fetched for this group."
6464   (interactive)
6465   (unless gnus-newsgroup-dormant
6466     (error "There are no dormant articles in this group"))
6467   (prog1
6468       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
6469     (gnus-summary-position-point)))
6470
6471 (defun gnus-summary-limit-exclude-dormant ()
6472   "Hide all dormant articles."
6473   (interactive)
6474   (prog1
6475       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
6476     (gnus-summary-position-point)))
6477
6478 (defun gnus-summary-limit-exclude-childless-dormant ()
6479   "Hide all dormant articles that have no children."
6480   (interactive)
6481   (let ((data (gnus-data-list t))
6482         articles d children)
6483     ;; Find all articles that are either not dormant or have
6484     ;; children.
6485     (while (setq d (pop data))
6486       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
6487                 (and (setq children
6488                            (gnus-article-children (gnus-data-number d)))
6489                      (let (found)
6490                        (while children
6491                          (when (memq (car children) articles)
6492                            (setq children nil
6493                                  found t))
6494                          (pop children))
6495                        found)))
6496         (push (gnus-data-number d) articles)))
6497     ;; Do the limiting.
6498     (prog1
6499         (gnus-summary-limit articles)
6500       (gnus-summary-position-point))))
6501
6502 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
6503   "Mark all unread excluded articles as read.
6504 If ALL, mark even excluded ticked and dormants as read."
6505   (interactive "P")
6506   (let ((articles (gnus-sorted-complement
6507                    (sort
6508                     (mapcar (lambda (h) (mail-header-number h))
6509                             gnus-newsgroup-headers)
6510                     '<)
6511                    (sort gnus-newsgroup-limit '<)))
6512         article)
6513     (setq gnus-newsgroup-unreads
6514           (gnus-intersection gnus-newsgroup-unreads gnus-newsgroup-limit))
6515     (if all
6516         (setq gnus-newsgroup-dormant nil
6517               gnus-newsgroup-marked nil
6518               gnus-newsgroup-reads
6519               (nconc
6520                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
6521                gnus-newsgroup-reads))
6522       (while (setq article (pop articles))
6523         (unless (or (memq article gnus-newsgroup-dormant)
6524                     (memq article gnus-newsgroup-marked))
6525           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
6526
6527 (defun gnus-summary-limit (articles &optional pop)
6528   (if pop
6529       ;; We pop the previous limit off the stack and use that.
6530       (setq articles (car gnus-newsgroup-limits)
6531             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
6532     ;; We use the new limit, so we push the old limit on the stack.
6533     (push gnus-newsgroup-limit gnus-newsgroup-limits))
6534   ;; Set the limit.
6535   (setq gnus-newsgroup-limit articles)
6536   (let ((total (length gnus-newsgroup-data))
6537         (data (gnus-data-find-list (gnus-summary-article-number)))
6538         (gnus-summary-mark-below nil)   ; Inhibit this.
6539         found)
6540     ;; This will do all the work of generating the new summary buffer
6541     ;; according to the new limit.
6542     (gnus-summary-prepare)
6543     ;; Hide any threads, possibly.
6544     (and gnus-show-threads
6545          gnus-thread-hide-subtree
6546          (gnus-summary-hide-all-threads))
6547     ;; Try to return to the article you were at, or one in the
6548     ;; neighborhood.
6549     (when data
6550       ;; We try to find some article after the current one.
6551       (while data
6552         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
6553           (setq data nil
6554                 found t))
6555         (setq data (cdr data))))
6556     (unless found
6557       ;; If there is no data, that means that we were after the last
6558       ;; article.  The same goes when we can't find any articles
6559       ;; after the current one.
6560       (goto-char (point-max))
6561       (gnus-summary-find-prev))
6562     (gnus-set-mode-line 'summary)
6563     ;; We return how many articles were removed from the summary
6564     ;; buffer as a result of the new limit.
6565     (- total (length gnus-newsgroup-data))))
6566
6567 (defsubst gnus-invisible-cut-children (threads)
6568   (let ((num 0))
6569     (while threads
6570       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
6571         (incf num))
6572       (pop threads))
6573     (< num 2)))
6574
6575 (defsubst gnus-cut-thread (thread)
6576   "Go forwards in the thread until we find an article that we want to display."
6577   (when (or (eq gnus-fetch-old-headers 'some)
6578             (eq gnus-fetch-old-headers 'invisible)
6579             (numberp gnus-fetch-old-headers)
6580             (eq gnus-build-sparse-threads 'some)
6581             (eq gnus-build-sparse-threads 'more))
6582     ;; Deal with old-fetched headers and sparse threads.
6583     (while (and
6584             thread
6585             (or
6586              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
6587              (gnus-summary-article-ancient-p
6588               (mail-header-number (car thread))))
6589             (if (or (<= (length (cdr thread)) 1)
6590                     (eq gnus-fetch-old-headers 'invisible))
6591                 (setq gnus-newsgroup-limit
6592                       (delq (mail-header-number (car thread))
6593                             gnus-newsgroup-limit)
6594                       thread (cadr thread))
6595               (when (gnus-invisible-cut-children (cdr thread))
6596                 (let ((th (cdr thread)))
6597                   (while th
6598                     (if (memq (mail-header-number (caar th))
6599                               gnus-newsgroup-limit)
6600                         (setq thread (car th)
6601                               th nil)
6602                       (setq th (cdr th))))))))))
6603   thread)
6604
6605 (defun gnus-cut-threads (threads)
6606   "Cut off all uninteresting articles from the beginning of threads."
6607   (when (or (eq gnus-fetch-old-headers 'some)
6608             (eq gnus-fetch-old-headers 'invisible)
6609             (numberp gnus-fetch-old-headers)
6610             (eq gnus-build-sparse-threads 'some)
6611             (eq gnus-build-sparse-threads 'more))
6612     (let ((th threads))
6613       (while th
6614         (setcar th (gnus-cut-thread (car th)))
6615         (setq th (cdr th)))))
6616   ;; Remove nixed out threads.
6617   (delq nil threads))
6618
6619 (defun gnus-summary-initial-limit (&optional show-if-empty)
6620   "Figure out what the initial limit is supposed to be on group entry.
6621 This entails weeding out unwanted dormants, low-scored articles,
6622 fetch-old-headers verbiage, and so on."
6623   ;; Most groups have nothing to remove.
6624   (if (or gnus-inhibit-limiting
6625           (and (null gnus-newsgroup-dormant)
6626                (not (eq gnus-fetch-old-headers 'some))
6627                (not (numberp gnus-fetch-old-headers))
6628                (not (eq gnus-fetch-old-headers 'invisible))
6629                (null gnus-summary-expunge-below)
6630                (not (eq gnus-build-sparse-threads 'some))
6631                (not (eq gnus-build-sparse-threads 'more))
6632                (null gnus-thread-expunge-below)
6633                (not gnus-use-nocem)))
6634       ()                                ; Do nothing.
6635     (push gnus-newsgroup-limit gnus-newsgroup-limits)
6636     (setq gnus-newsgroup-limit nil)
6637     (mapatoms
6638      (lambda (node)
6639        (unless (car (symbol-value node))
6640          ;; These threads have no parents -- they are roots.
6641          (let ((nodes (cdr (symbol-value node)))
6642                thread)
6643            (while nodes
6644              (if (and gnus-thread-expunge-below
6645                       (< (gnus-thread-total-score (car nodes))
6646                          gnus-thread-expunge-below))
6647                  (gnus-expunge-thread (pop nodes))
6648                (setq thread (pop nodes))
6649                (gnus-summary-limit-children thread))))))
6650      gnus-newsgroup-dependencies)
6651     ;; If this limitation resulted in an empty group, we might
6652     ;; pop the previous limit and use it instead.
6653     (when (and (not gnus-newsgroup-limit)
6654                show-if-empty)
6655       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
6656     gnus-newsgroup-limit))
6657
6658 (defun gnus-summary-limit-children (thread)
6659   "Return 1 if this subthread is visible and 0 if it is not."
6660   ;; First we get the number of visible children to this thread.  This
6661   ;; is done by recursing down the thread using this function, so this
6662   ;; will really go down to a leaf article first, before slowly
6663   ;; working its way up towards the root.
6664   (when thread
6665     (let ((children
6666            (if (cdr thread)
6667                (apply '+ (mapcar 'gnus-summary-limit-children
6668                                  (cdr thread)))
6669              0))
6670           (number (mail-header-number (car thread)))
6671           score)
6672       (if (and
6673            (not (memq number gnus-newsgroup-marked))
6674            (or
6675             ;; If this article is dormant and has absolutely no visible
6676             ;; children, then this article isn't visible.
6677             (and (memq number gnus-newsgroup-dormant)
6678                  (zerop children))
6679             ;; If this is "fetch-old-headered" and there is no
6680             ;; visible children, then we don't want this article.
6681             (and (or (eq gnus-fetch-old-headers 'some)
6682                      (numberp gnus-fetch-old-headers))
6683                  (gnus-summary-article-ancient-p number)
6684                  (zerop children))
6685             ;; If this is "fetch-old-headered" and `invisible', then
6686             ;; we don't want this article.
6687             (and (eq gnus-fetch-old-headers 'invisible)
6688                  (gnus-summary-article-ancient-p number))
6689             ;; If this is a sparsely inserted article with no children,
6690             ;; we don't want it.
6691             (and (eq gnus-build-sparse-threads 'some)
6692                  (gnus-summary-article-sparse-p number)
6693                  (zerop children))
6694             ;; If we use expunging, and this article is really
6695             ;; low-scored, then we don't want this article.
6696             (when (and gnus-summary-expunge-below
6697                        (< (setq score
6698                                 (or (cdr (assq number gnus-newsgroup-scored))
6699                                     gnus-summary-default-score))
6700                           gnus-summary-expunge-below))
6701               ;; We increase the expunge-tally here, but that has
6702               ;; nothing to do with the limits, really.
6703               (incf gnus-newsgroup-expunged-tally)
6704               ;; We also mark as read here, if that's wanted.
6705               (when (and gnus-summary-mark-below
6706                          (< score gnus-summary-mark-below))
6707                 (setq gnus-newsgroup-unreads
6708                       (delq number gnus-newsgroup-unreads))
6709                 (if gnus-newsgroup-auto-expire
6710                     (push number gnus-newsgroup-expirable)
6711                   (push (cons number gnus-low-score-mark)
6712                         gnus-newsgroup-reads)))
6713               t)
6714             ;; Check NoCeM things.
6715             (if (and gnus-use-nocem
6716                      (gnus-nocem-unwanted-article-p
6717                       (mail-header-id (car thread))))
6718                 (progn
6719                   (setq gnus-newsgroup-unreads
6720                         (delq number gnus-newsgroup-unreads))
6721                   t))))
6722           ;; Nope, invisible article.
6723           0
6724         ;; Ok, this article is to be visible, so we add it to the limit
6725         ;; and return 1.
6726         (push number gnus-newsgroup-limit)
6727         1))))
6728
6729 (defun gnus-expunge-thread (thread)
6730   "Mark all articles in THREAD as read."
6731   (let* ((number (mail-header-number (car thread))))
6732     (incf gnus-newsgroup-expunged-tally)
6733     ;; We also mark as read here, if that's wanted.
6734     (setq gnus-newsgroup-unreads
6735           (delq number gnus-newsgroup-unreads))
6736     (if gnus-newsgroup-auto-expire
6737         (push number gnus-newsgroup-expirable)
6738       (push (cons number gnus-low-score-mark)
6739             gnus-newsgroup-reads)))
6740   ;; Go recursively through all subthreads.
6741   (mapcar 'gnus-expunge-thread (cdr thread)))
6742
6743 ;; Summary article oriented commands
6744
6745 (defun gnus-summary-refer-parent-article (n)
6746   "Refer parent article N times.
6747 If N is negative, go to ancestor -N instead.
6748 The difference between N and the number of articles fetched is returned."
6749   (interactive "p")
6750   (let ((skip 1)
6751         error header ref)
6752     (when (not (natnump n))
6753       (setq skip (abs n)
6754             n 1))
6755     (while (and (> n 0)
6756                 (not error))
6757       (setq header (gnus-summary-article-header))
6758       (if (and (eq (mail-header-number header)
6759                    (cdr gnus-article-current))
6760                (equal gnus-newsgroup-name
6761                       (car gnus-article-current)))
6762           ;; If we try to find the parent of the currently
6763           ;; displayed article, then we take a look at the actual
6764           ;; References header, since this is slightly more
6765           ;; reliable than the References field we got from the
6766           ;; server.
6767           (save-excursion
6768             (set-buffer gnus-original-article-buffer)
6769             (nnheader-narrow-to-headers)
6770             (unless (setq ref (message-fetch-field "references"))
6771               (setq ref (message-fetch-field "in-reply-to")))
6772             (widen))
6773         (setq ref
6774               ;; It's not the current article, so we take a bet on
6775               ;; the value we got from the server.
6776               (mail-header-references header)))
6777       (if (and ref
6778                (not (equal ref "")))
6779           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
6780             (gnus-message 1 "Couldn't find parent"))
6781         (gnus-message 1 "No references in article %d"
6782                       (gnus-summary-article-number))
6783         (setq error t))
6784       (decf n))
6785     (gnus-summary-position-point)
6786     n))
6787
6788 (defun gnus-summary-refer-references ()
6789   "Fetch all articles mentioned in the References header.
6790 Return the number of articles fetched."
6791   (interactive)
6792   (let ((ref (mail-header-references (gnus-summary-article-header)))
6793         (current (gnus-summary-article-number))
6794         (n 0))
6795     (if (or (not ref)
6796             (equal ref ""))
6797         (error "No References in the current article")
6798       ;; For each Message-ID in the References header...
6799       (while (string-match "<[^>]*>" ref)
6800         (incf n)
6801         ;; ... fetch that article.
6802         (gnus-summary-refer-article
6803          (prog1 (match-string 0 ref)
6804            (setq ref (substring ref (match-end 0))))))
6805       (gnus-summary-goto-subject current)
6806       (gnus-summary-position-point)
6807       n)))
6808
6809 (defun gnus-summary-refer-thread (&optional limit)
6810   "Fetch all articles in the current thread.
6811 If LIMIT (the numerical prefix), fetch that many old headers instead
6812 of what's specified by the `gnus-refer-thread-limit' variable."
6813   (interactive "P")
6814   (let ((id (mail-header-id (gnus-summary-article-header)))
6815         (limit (if limit (prefix-numeric-value limit)
6816                  gnus-refer-thread-limit)))
6817     ;; We want to fetch LIMIT *old* headers, but we also have to
6818     ;; re-fetch all the headers in the current buffer, because many of
6819     ;; them may be undisplayed.  So we adjust LIMIT.
6820     (when (numberp limit)
6821       (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin)))
6822     (unless (eq gnus-fetch-old-headers 'invisible)
6823       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
6824       ;; Retrieve the headers and read them in.
6825       (if (eq (gnus-retrieve-headers
6826                (list gnus-newsgroup-end) gnus-newsgroup-name limit)
6827               'nov)
6828           (gnus-build-all-threads)
6829         (error "Can't fetch thread from backends that don't support NOV"))
6830       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
6831     (gnus-summary-limit-include-thread id)))
6832
6833 (defun gnus-summary-refer-article (message-id)
6834   "Fetch an article specified by MESSAGE-ID."
6835   (interactive "sMessage-ID: ")
6836   (when (and (stringp message-id)
6837              (not (zerop (length message-id))))
6838     ;; Construct the correct Message-ID if necessary.
6839     ;; Suggested by tale@pawl.rpi.edu.
6840     (unless (string-match "^<" message-id)
6841       (setq message-id (concat "<" message-id)))
6842     (unless (string-match ">$" message-id)
6843       (setq message-id (concat message-id ">")))
6844     (let* ((header (gnus-id-to-header message-id))
6845            (sparse (and header
6846                         (gnus-summary-article-sparse-p
6847                          (mail-header-number header))
6848                         (memq (mail-header-number header)
6849                               gnus-newsgroup-limit)))
6850            number)
6851       (cond
6852        ;; If the article is present in the buffer we just go to it.
6853        ((and header
6854              (or (not (gnus-summary-article-sparse-p
6855                        (mail-header-number header)))
6856                  sparse))
6857         (prog1
6858             (gnus-summary-goto-article
6859              (mail-header-number header) nil t)
6860           (when sparse
6861             (gnus-summary-update-article (mail-header-number header)))))
6862        (t
6863         ;; We fetch the article.
6864         (catch 'found
6865           (dolist (gnus-override-method (gnus-refer-article-methods))
6866             (gnus-check-server gnus-override-method)
6867             ;; Fetch the header, and display the article.
6868             (when (setq number (gnus-summary-insert-subject message-id))
6869               (gnus-summary-select-article nil nil nil number)
6870               (throw 'found t)))
6871           (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
6872
6873 (defun gnus-refer-article-methods ()
6874   "Return a list of referrable methods."
6875   (cond
6876    ;; No method, so we default to current and native.
6877    ((null gnus-refer-article-method)
6878     (list gnus-current-select-method gnus-select-method))
6879    ;; Current.
6880    ((eq 'current gnus-refer-article-method)
6881     (list gnus-current-select-method))
6882    ;; List of select methods.
6883    ((not (stringp (cadr gnus-refer-article-method)))
6884     (let (out)
6885       (dolist (method gnus-refer-article-method)
6886         (push (if (eq 'current method)
6887                   gnus-current-select-method
6888                 method)
6889               out))
6890       (nreverse out)))
6891    ;; One single select method.
6892    (t
6893     (list gnus-refer-article-method))))
6894
6895 (defun gnus-summary-edit-parameters ()
6896   "Edit the group parameters of the current group."
6897   (interactive)
6898   (gnus-group-edit-group gnus-newsgroup-name 'params))
6899
6900 (defun gnus-summary-customize-parameters ()
6901   "Customize the group parameters of the current group."
6902   (interactive)
6903   (gnus-group-customize gnus-newsgroup-name))
6904
6905 (defun gnus-summary-enter-digest-group (&optional force)
6906   "Enter an nndoc group based on the current article.
6907 If FORCE, force a digest interpretation.  If not, try
6908 to guess what the document format is."
6909   (interactive "P")
6910   (let ((conf gnus-current-window-configuration))
6911     (save-excursion
6912       (gnus-summary-select-article))
6913     (setq gnus-current-window-configuration conf)
6914     (let* ((name (format "%s-%d"
6915                          (gnus-group-prefixed-name
6916                           gnus-newsgroup-name (list 'nndoc ""))
6917                          (save-excursion
6918                            (set-buffer gnus-summary-buffer)
6919                            gnus-current-article)))
6920            (ogroup gnus-newsgroup-name)
6921            (params (append (gnus-info-params (gnus-get-info ogroup))
6922                            (list (cons 'to-group ogroup))
6923                            (list (cons 'save-article-group ogroup))))
6924            (case-fold-search t)
6925            (buf (current-buffer))
6926            dig to-address)
6927       (save-excursion
6928         (set-buffer gnus-original-article-buffer)
6929         ;; Have the digest group inherit the main mail address of
6930         ;; the parent article.
6931         (when (setq to-address (or (message-fetch-field "reply-to")
6932                                    (message-fetch-field "from")))
6933           (setq params (append 
6934                         (list (cons 'to-address 
6935                                     (funcall gnus-decode-encoded-word-function
6936                                              to-address))))))
6937         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
6938         (insert-buffer-substring gnus-original-article-buffer)
6939         ;; Remove lines that may lead nndoc to misinterpret the
6940         ;; document type.
6941         (narrow-to-region
6942          (goto-char (point-min))
6943          (or (search-forward "\n\n" nil t) (point)))
6944         (goto-char (point-min))
6945         (delete-matching-lines "^Path:\\|^From ")
6946         (widen))
6947       (unwind-protect
6948           (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
6949                     (gnus-newsgroup-ephemeral-ignored-charsets
6950                      gnus-newsgroup-ignored-charsets))
6951                 (gnus-group-read-ephemeral-group
6952                  name `(nndoc ,name (nndoc-address ,(get-buffer dig))
6953                               (nndoc-article-type
6954                                ,(if force 'mbox 'guess))) t))
6955               ;; Make all postings to this group go to the parent group.
6956               (nconc (gnus-info-params (gnus-get-info name))
6957                      params)
6958             ;; Couldn't select this doc group.
6959             (switch-to-buffer buf)
6960             (gnus-set-global-variables)
6961             (gnus-configure-windows 'summary)
6962             (gnus-message 3 "Article couldn't be entered?"))
6963         (kill-buffer dig)))))
6964
6965 (defun gnus-summary-read-document (n)
6966   "Open a new group based on the current article(s).
6967 This will allow you to read digests and other similar
6968 documents as newsgroups.
6969 Obeys the standard process/prefix convention."
6970   (interactive "P")
6971   (let* ((articles (gnus-summary-work-articles n))
6972          (ogroup gnus-newsgroup-name)
6973          (params (append (gnus-info-params (gnus-get-info ogroup))
6974                          (list (cons 'to-group ogroup))))
6975          article group egroup groups vgroup)
6976     (while (setq article (pop articles))
6977       (setq group (format "%s-%d" gnus-newsgroup-name article))
6978       (gnus-summary-remove-process-mark article)
6979       (when (gnus-summary-display-article article)
6980         (save-excursion
6981           (with-temp-buffer
6982             (insert-buffer-substring gnus-original-article-buffer)
6983             ;; Remove some headers that may lead nndoc to make
6984             ;; the wrong guess.
6985             (message-narrow-to-head)
6986             (goto-char (point-min))
6987             (delete-matching-lines "^\\(Path\\):\\|^From ")
6988             (widen)
6989             (if (setq egroup
6990                       (gnus-group-read-ephemeral-group
6991                        group `(nndoc ,group (nndoc-address ,(current-buffer))
6992                                      (nndoc-article-type guess))
6993                        t nil t))
6994                 (progn
6995                   ;; Make all postings to this group go to the parent group.
6996                   (nconc (gnus-info-params (gnus-get-info egroup))
6997                          params)
6998                   (push egroup groups))
6999               ;; Couldn't select this doc group.
7000               (gnus-error 3 "Article couldn't be entered"))))))
7001     ;; Now we have selected all the documents.
7002     (cond
7003      ((not groups)
7004       (error "None of the articles could be interpreted as documents"))
7005      ((gnus-group-read-ephemeral-group
7006        (setq vgroup (format
7007                      "nnvirtual:%s-%s" gnus-newsgroup-name
7008                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
7009        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
7010        t
7011        (cons (current-buffer) 'summary)))
7012      (t
7013       (error "Couldn't select virtual nndoc group")))))
7014
7015 (defun gnus-summary-isearch-article (&optional regexp-p)
7016   "Do incremental search forward on the current article.
7017 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
7018   (interactive "P")
7019   (gnus-summary-select-article)
7020   (gnus-configure-windows 'article)
7021   (gnus-eval-in-buffer-window gnus-article-buffer
7022     (save-restriction
7023       (widen)
7024       (isearch-forward regexp-p))))
7025
7026 (defun gnus-summary-search-article-forward (regexp &optional backward)
7027   "Search for an article containing REGEXP forward.
7028 If BACKWARD, search backward instead."
7029   (interactive
7030    (list (read-string
7031           (format "Search article %s (regexp%s): "
7032                   (if current-prefix-arg "backward" "forward")
7033                   (if gnus-last-search-regexp
7034                       (concat ", default " gnus-last-search-regexp)
7035                     "")))
7036          current-prefix-arg))
7037   (if (string-equal regexp "")
7038       (setq regexp (or gnus-last-search-regexp ""))
7039     (setq gnus-last-search-regexp regexp))
7040   (if (gnus-summary-search-article regexp backward)
7041       (gnus-summary-show-thread)
7042     (error "Search failed: \"%s\"" regexp)))
7043
7044 (defun gnus-summary-search-article-backward (regexp)
7045   "Search for an article containing REGEXP backward."
7046   (interactive
7047    (list (read-string
7048           (format "Search article backward (regexp%s): "
7049                   (if gnus-last-search-regexp
7050                       (concat ", default " gnus-last-search-regexp)
7051                     "")))))
7052   (gnus-summary-search-article-forward regexp 'backward))
7053
7054 (defun gnus-summary-search-article (regexp &optional backward)
7055   "Search for an article containing REGEXP.
7056 Optional argument BACKWARD means do search for backward.
7057 `gnus-select-article-hook' is not called during the search."
7058   ;; We have to require this here to make sure that the following
7059   ;; dynamic binding isn't shadowed by autoloading.
7060   (require 'gnus-async)
7061   (require 'gnus-art)
7062   (let ((gnus-select-article-hook nil)  ;Disable hook.
7063         (gnus-article-prepare-hook nil)
7064         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
7065         (gnus-use-article-prefetch nil)
7066         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
7067         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
7068         (sum (current-buffer))
7069         (gnus-display-mime-function nil)
7070         (found nil)
7071         point)
7072     (gnus-save-hidden-threads
7073       (gnus-summary-select-article)
7074       (set-buffer gnus-article-buffer)
7075       (goto-char (window-point (get-buffer-window (current-buffer))))
7076       (when backward
7077         (forward-line -1))
7078       (while (not found)
7079         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
7080         (if (if backward
7081                 (re-search-backward regexp nil t)
7082               (re-search-forward regexp nil t))
7083             ;; We found the regexp.
7084             (progn
7085               (setq found 'found)
7086               (beginning-of-line)
7087               (set-window-start
7088                (get-buffer-window (current-buffer))
7089                (point))
7090               (forward-line 1)
7091               (set-window-point
7092                (get-buffer-window (current-buffer))
7093                (point))
7094               (set-buffer sum)
7095               (setq point (point)))
7096           ;; We didn't find it, so we go to the next article.
7097           (set-buffer sum)
7098           (setq found 'not)
7099           (while (eq found 'not)
7100             (if (not (if backward (gnus-summary-find-prev)
7101                        (gnus-summary-find-next)))
7102                 ;; No more articles.
7103                 (setq found t)
7104               ;; Select the next article and adjust point.
7105               (unless (gnus-summary-article-sparse-p
7106                        (gnus-summary-article-number))
7107                 (setq found nil)
7108                 (gnus-summary-select-article)
7109                 (set-buffer gnus-article-buffer)
7110                 (widen)
7111                 (goto-char (if backward (point-max) (point-min))))))))
7112       (gnus-message 7 ""))
7113     ;; Return whether we found the regexp.
7114     (when (eq found 'found)
7115       (goto-char point)
7116       (gnus-summary-show-thread)
7117       (gnus-summary-goto-subject gnus-current-article)
7118       (gnus-summary-position-point)
7119       t)))
7120
7121 (defun gnus-summary-find-matching (header regexp &optional backward unread
7122                                           not-case-fold)
7123   "Return a list of all articles that match REGEXP on HEADER.
7124 The search stars on the current article and goes forwards unless
7125 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
7126 If UNREAD is non-nil, only unread articles will
7127 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
7128 in the comparisons."
7129   (let ((data (if (eq backward 'all) gnus-newsgroup-data
7130                 (gnus-data-find-list
7131                  (gnus-summary-article-number) (gnus-data-list backward))))
7132         (case-fold-search (not not-case-fold))
7133         articles d func)
7134     (if (consp header)
7135         (if (eq (car header) 'extra)
7136             (setq func
7137                   `(lambda (h)
7138                      (or (cdr (assq ',(cdr header) (mail-header-extra h)))
7139                          "")))
7140           (error "%s is an invalid header" header))
7141       (unless (fboundp (intern (concat "mail-header-" header)))
7142         (error "%s is not a valid header" header))
7143       (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
7144     (while data
7145       (setq d (car data))
7146       (and (or (not unread)             ; We want all articles...
7147                (gnus-data-unread-p d))  ; Or just unreads.
7148            (vectorp (gnus-data-header d)) ; It's not a pseudo.
7149            (string-match regexp (funcall func (gnus-data-header d))) ; Match.
7150            (push (gnus-data-number d) articles)) ; Success!
7151       (setq data (cdr data)))
7152     (nreverse articles)))
7153
7154 (defun gnus-summary-execute-command (header regexp command &optional backward)
7155   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
7156 If HEADER is an empty string (or nil), the match is done on the entire
7157 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
7158   (interactive
7159    (list (let ((completion-ignore-case t))
7160            (completing-read
7161             "Header name: "
7162             (mapcar (lambda (string) (list string))
7163                     '("Number" "Subject" "From" "Lines" "Date"
7164                       "Message-ID" "Xref" "References" "Body"))
7165             nil 'require-match))
7166          (read-string "Regexp: ")
7167          (read-key-sequence "Command: ")
7168          current-prefix-arg))
7169   (when (equal header "Body")
7170     (setq header ""))
7171   ;; Hidden thread subtrees must be searched as well.
7172   (gnus-summary-show-all-threads)
7173   ;; We don't want to change current point nor window configuration.
7174   (save-excursion
7175     (save-window-excursion
7176       (gnus-message 6 "Executing %s..." (key-description command))
7177       ;; We'd like to execute COMMAND interactively so as to give arguments.
7178       (gnus-execute header regexp
7179                     `(call-interactively ',(key-binding command))
7180                     backward)
7181       (gnus-message 6 "Executing %s...done" (key-description command)))))
7182
7183 (defun gnus-summary-beginning-of-article ()
7184   "Scroll the article back to the beginning."
7185   (interactive)
7186   (gnus-summary-select-article)
7187   (gnus-configure-windows 'article)
7188   (gnus-eval-in-buffer-window gnus-article-buffer
7189     (widen)
7190     (goto-char (point-min))
7191     (when gnus-page-broken
7192       (gnus-narrow-to-page))))
7193
7194 (defun gnus-summary-end-of-article ()
7195   "Scroll to the end of the article."
7196   (interactive)
7197   (gnus-summary-select-article)
7198   (gnus-configure-windows 'article)
7199   (gnus-eval-in-buffer-window gnus-article-buffer
7200     (widen)
7201     (goto-char (point-max))
7202     (recenter -3)
7203     (when gnus-page-broken
7204       (gnus-narrow-to-page))))
7205
7206 (defun gnus-summary-print-article (&optional filename n)
7207   "Generate and print a PostScript image of the N next (mail) articles.
7208
7209 If N is negative, print the N previous articles.  If N is nil and articles
7210 have been marked with the process mark, print these instead.
7211
7212 If the optional first argument FILENAME is nil, send the image to the
7213 printer.  If FILENAME is a string, save the PostScript image in a file with
7214 that name.  If FILENAME is a number, prompt the user for the name of the file
7215 to save in."
7216   (interactive (list (ps-print-preprint current-prefix-arg)
7217                      current-prefix-arg))
7218   (dolist (article (gnus-summary-work-articles n))
7219     (gnus-summary-select-article nil nil 'pseudo article)
7220     (gnus-eval-in-buffer-window gnus-article-buffer
7221       (let ((buffer (generate-new-buffer " *print*")))
7222         (unwind-protect
7223             (progn
7224               (copy-to-buffer buffer (point-min) (point-max))
7225               (set-buffer buffer)
7226               (gnus-article-delete-invisible-text)
7227               (let ((ps-left-header
7228                      (list
7229                       (concat "("
7230                               (mail-header-subject gnus-current-headers) ")")
7231                       (concat "("
7232                               (mail-header-from gnus-current-headers) ")")))
7233                     (ps-right-header
7234                      (list
7235                       "/pagenumberstring load"
7236                       (concat "("
7237                               (mail-header-date gnus-current-headers) ")"))))
7238                 (gnus-run-hooks 'gnus-ps-print-hook)
7239                 (save-excursion
7240                   (ps-print-buffer-with-faces filename))))
7241           (kill-buffer buffer))))))
7242
7243 (defun gnus-summary-show-article (&optional arg)
7244   "Force re-fetching of the current article.
7245 If ARG (the prefix) is a number, show the article with the charset
7246 defined in `gnus-summary-show-article-charset-alist', or the charset
7247 inputed.
7248 If ARG (the prefix) is non-nil and not a number, show the raw article
7249 without any article massaging functions being run."
7250   (interactive "P")
7251   (cond
7252    ((numberp arg)
7253     (let ((gnus-newsgroup-charset
7254            (or (cdr (assq arg gnus-summary-show-article-charset-alist))
7255                (read-coding-system "Charset: ")))
7256           (gnus-newsgroup-ignored-charsets 'gnus-all))
7257       (gnus-summary-select-article nil 'force)))
7258    ((not arg)
7259     ;; Select the article the normal way.
7260     (gnus-summary-select-article nil 'force))
7261    (t
7262     ;; We have to require this here to make sure that the following
7263     ;; dynamic binding isn't shadowed by autoloading.
7264     (require 'gnus-async)
7265     (require 'gnus-art)
7266     ;; Bind the article treatment functions to nil.
7267     (let ((gnus-have-all-headers t)
7268           gnus-article-prepare-hook
7269           gnus-article-decode-hook
7270           gnus-display-mime-function
7271           gnus-break-pages)
7272       ;; Destroy any MIME parts.
7273       (when (gnus-buffer-live-p gnus-article-buffer)
7274         (save-excursion
7275           (set-buffer gnus-article-buffer)
7276           (mm-destroy-parts gnus-article-mime-handles)
7277           ;; Set it to nil for safety reason.
7278           (setq gnus-article-mime-handle-alist nil)
7279           (setq gnus-article-mime-handles nil)))
7280       (gnus-summary-select-article nil 'force))))
7281   (gnus-summary-goto-subject gnus-current-article)
7282   (gnus-summary-position-point))
7283
7284 (defun gnus-summary-verbose-headers (&optional arg)
7285   "Toggle permanent full header display.
7286 If ARG is a positive number, turn header display on.
7287 If ARG is a negative number, turn header display off."
7288   (interactive "P")
7289   (setq gnus-show-all-headers
7290         (cond ((or (not (numberp arg))
7291                    (zerop arg))
7292                (not gnus-show-all-headers))
7293               ((natnump arg)
7294                t)))
7295   (gnus-summary-show-article))
7296
7297 (defun gnus-summary-toggle-header (&optional arg)
7298   "Show the headers if they are hidden, or hide them if they are shown.
7299 If ARG is a positive number, show the entire header.
7300 If ARG is a negative number, hide the unwanted header lines."
7301   (interactive "P")
7302   (save-excursion
7303     (set-buffer gnus-article-buffer)
7304     (save-restriction
7305       (let* ((buffer-read-only nil)
7306              (inhibit-point-motion-hooks t)
7307              hidden e)
7308         (setq hidden
7309               (if (numberp arg)
7310                   (>= arg 0)
7311                 (save-restriction
7312                   (article-narrow-to-head)
7313                   (gnus-article-hidden-text-p 'headers))))
7314         (goto-char (point-min))
7315         (when (search-forward "\n\n" nil t)
7316           (delete-region (point-min) (1- (point))))
7317         (goto-char (point-min))
7318         (save-excursion
7319           (set-buffer gnus-original-article-buffer)
7320           (goto-char (point-min))
7321           (setq e (1- (or (search-forward "\n\n" nil t) (point-max)))))
7322         (insert-buffer-substring gnus-original-article-buffer 1 e)
7323         (save-restriction
7324           (narrow-to-region (point-min) (point))
7325           (article-decode-encoded-words)
7326           (if  hidden
7327               (let ((gnus-treat-hide-headers nil)
7328                     (gnus-treat-hide-boring-headers nil))
7329                 (setq gnus-article-wash-types
7330                       (delq 'headers gnus-article-wash-types))
7331                 (gnus-treat-article 'head))
7332             (gnus-treat-article 'head)))
7333         (gnus-set-mode-line 'article)))))
7334
7335 (defun gnus-summary-show-all-headers ()
7336   "Make all header lines visible."
7337   (interactive)
7338   (gnus-article-show-all-headers))
7339
7340 (defun gnus-summary-caesar-message (&optional arg)
7341   "Caesar rotate the current article by 13.
7342 The numerical prefix specifies how many places to rotate each letter
7343 forward."
7344   (interactive "P")
7345   (gnus-summary-select-article)
7346   (let ((mail-header-separator ""))
7347     (gnus-eval-in-buffer-window gnus-article-buffer
7348       (save-restriction
7349         (widen)
7350         (let ((start (window-start))
7351               buffer-read-only)
7352           (message-caesar-buffer-body arg)
7353           (set-window-start (get-buffer-window (current-buffer)) start))))))
7354
7355 (defun gnus-summary-stop-page-breaking ()
7356   "Stop page breaking in the current article."
7357   (interactive)
7358   (gnus-summary-select-article)
7359   (gnus-eval-in-buffer-window gnus-article-buffer
7360     (widen)
7361     (when (gnus-visual-p 'page-marker)
7362       (let ((buffer-read-only nil))
7363         (gnus-remove-text-with-property 'gnus-prev)
7364         (gnus-remove-text-with-property 'gnus-next))
7365       (setq gnus-page-broken nil))))
7366
7367 (defun gnus-summary-move-article (&optional n to-newsgroup
7368                                             select-method action)
7369   "Move the current article to a different newsgroup.
7370 If N is a positive number, move the N next articles.
7371 If N is a negative number, move the N previous articles.
7372 If N is nil and any articles have been marked with the process mark,
7373 move those articles instead.
7374 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7375 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7376 re-spool using this method.
7377
7378 For this function to work, both the current newsgroup and the
7379 newsgroup that you want to move to have to support the `request-move'
7380 and `request-accept' functions.
7381
7382 ACTION can be either `move' (the default), `crosspost' or `copy'."
7383   (interactive "P")
7384   (unless action
7385     (setq action 'move))
7386   ;; Disable marking as read.
7387   (let (gnus-mark-article-hook)
7388     (save-window-excursion
7389       (gnus-summary-select-article)))
7390   ;; Check whether the source group supports the required functions.
7391   (cond ((and (eq action 'move)
7392               (not (gnus-check-backend-function
7393                     'request-move-article gnus-newsgroup-name)))
7394          (error "The current group does not support article moving"))
7395         ((and (eq action 'crosspost)
7396               (not (gnus-check-backend-function
7397                     'request-replace-article gnus-newsgroup-name)))
7398          (error "The current group does not support article editing")))
7399   (let ((articles (gnus-summary-work-articles n))
7400         (prefix (if (gnus-check-backend-function
7401                     'request-move-article gnus-newsgroup-name)
7402                     (gnus-group-real-prefix gnus-newsgroup-name)
7403                   ""))
7404         (names '((move "Move" "Moving")
7405                  (copy "Copy" "Copying")
7406                  (crosspost "Crosspost" "Crossposting")))
7407         (copy-buf (save-excursion
7408                     (nnheader-set-temp-buffer " *copy article*")))
7409         art-group to-method new-xref article to-groups)
7410     (unless (assq action names)
7411       (error "Unknown action %s" action))
7412     ;; Read the newsgroup name.
7413     (when (and (not to-newsgroup)
7414                (not select-method))
7415       (setq to-newsgroup
7416             (gnus-read-move-group-name
7417              (cadr (assq action names))
7418              (symbol-value (intern (format "gnus-current-%s-group" action)))
7419              articles prefix))
7420       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
7421     (setq to-method (or select-method
7422                         (gnus-server-to-method
7423                          (gnus-group-method to-newsgroup))))
7424     ;; Check the method we are to move this article to...
7425     (unless (gnus-check-backend-function
7426              'request-accept-article (car to-method))
7427       (error "%s does not support article copying" (car to-method)))
7428     (unless (gnus-check-server to-method)
7429       (error "Can't open server %s" (car to-method)))
7430     (gnus-message 6 "%s to %s: %s..."
7431                   (caddr (assq action names))
7432                   (or (car select-method) to-newsgroup) articles)
7433     (while articles
7434       (setq article (pop articles))
7435       (setq
7436        art-group
7437        (cond
7438         ;; Move the article.
7439         ((eq action 'move)
7440          ;; Remove this article from future suppression.
7441          (gnus-dup-unsuppress-article article)
7442          (gnus-request-move-article
7443           article                       ; Article to move
7444           gnus-newsgroup-name           ; From newsgroup
7445           (nth 1 (gnus-find-method-for-group
7446                   gnus-newsgroup-name)) ; Server
7447           (list 'gnus-request-accept-article
7448                 to-newsgroup (list 'quote select-method)
7449                 (not articles) t)       ; Accept form
7450           (not articles)))              ; Only save nov last time
7451         ;; Copy the article.
7452         ((eq action 'copy)
7453          (save-excursion
7454            (set-buffer copy-buf)
7455            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
7456              (gnus-request-accept-article
7457               to-newsgroup select-method (not articles) t))))
7458         ;; Crosspost the article.
7459         ((eq action 'crosspost)
7460          (let ((xref (message-tokenize-header
7461                       (mail-header-xref (gnus-summary-article-header article))
7462                       " ")))
7463            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
7464                                   ":" article))
7465            (unless xref
7466              (setq xref (list (system-name))))
7467            (setq new-xref
7468                  (concat
7469                   (mapconcat 'identity
7470                              (delete "Xref:" (delete new-xref xref))
7471                              " ")
7472                   " " new-xref))
7473            (save-excursion
7474              (set-buffer copy-buf)
7475              ;; First put the article in the destination group.
7476              (gnus-request-article-this-buffer article gnus-newsgroup-name)
7477              (when (consp (setq art-group
7478                                 (gnus-request-accept-article
7479                                  to-newsgroup select-method (not articles))))
7480                (setq new-xref (concat new-xref " " (car art-group)
7481                                       ":" (cdr art-group)))
7482                ;; Now we have the new Xrefs header, so we insert
7483                ;; it and replace the new article.
7484                (nnheader-replace-header "Xref" new-xref)
7485                (gnus-request-replace-article
7486                 (cdr art-group) to-newsgroup (current-buffer))
7487                art-group))))))
7488       (cond
7489        ((not art-group)
7490         (gnus-message 1 "Couldn't %s article %s: %s"
7491                       (cadr (assq action names)) article
7492                       (nnheader-get-report (car to-method))))
7493        ((eq art-group 'junk)
7494         (when (eq action 'move)
7495           (gnus-summary-mark-article article gnus-canceled-mark)
7496           (gnus-message 4 "Deleted article %s" article)))
7497        (t
7498         (let* ((pto-group (gnus-group-prefixed-name
7499                            (car art-group) to-method))
7500                (entry
7501                 (gnus-gethash pto-group gnus-newsrc-hashtb))
7502                (info (nth 2 entry))
7503                (to-group (gnus-info-group info))
7504                to-marks)
7505           ;; Update the group that has been moved to.
7506           (when (and info
7507                      (memq action '(move copy)))
7508             (unless (member to-group to-groups)
7509               (push to-group to-groups))
7510
7511             (unless (memq article gnus-newsgroup-unreads)
7512               (push 'read to-marks)
7513               (gnus-info-set-read
7514                info (gnus-add-to-range (gnus-info-read info)
7515                                        (list (cdr art-group)))))
7516
7517             ;; See whether the article is to be put in the cache.
7518             (let ((marks gnus-article-mark-lists)
7519                   (to-article (cdr art-group)))
7520
7521               ;; Enter the article into the cache in the new group,
7522               ;; if that is required.
7523               (when gnus-use-cache
7524                 (gnus-cache-possibly-enter-article
7525                  to-group to-article
7526                  (memq article gnus-newsgroup-marked)
7527                  (memq article gnus-newsgroup-dormant)
7528                  (memq article gnus-newsgroup-unreads)))
7529
7530               (when gnus-preserve-marks
7531                 ;; Copy any marks over to the new group.
7532                 (when (and (equal to-group gnus-newsgroup-name)
7533                            (not (memq article gnus-newsgroup-unreads)))
7534                   ;; Mark this article as read in this group.
7535                   (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
7536                   (setcdr (gnus-active to-group) to-article)
7537                   (setcdr gnus-newsgroup-active to-article))
7538
7539                 (while marks
7540                   (when (memq article (symbol-value
7541                                        (intern (format "gnus-newsgroup-%s"
7542                                                        (caar marks)))))
7543                     (push (cdar marks) to-marks)
7544                     ;; If the other group is the same as this group,
7545                     ;; then we have to add the mark to the list.
7546                     (when (equal to-group gnus-newsgroup-name)
7547                       (set (intern (format "gnus-newsgroup-%s" (caar marks)))
7548                            (cons to-article
7549                                  (symbol-value
7550                                   (intern (format "gnus-newsgroup-%s"
7551                                                   (caar marks)))))))
7552                     ;; Copy the marks to other group.
7553                     (gnus-add-marked-articles
7554                      to-group (cdar marks) (list to-article) info))
7555                   (setq marks (cdr marks)))
7556
7557                 (gnus-request-set-mark to-group (list (list (list to-article)
7558                                                             'set
7559                                                             to-marks))))
7560
7561               (gnus-dribble-enter
7562                (concat "(gnus-group-set-info '"
7563                        (gnus-prin1-to-string (gnus-get-info to-group))
7564                        ")"))))
7565
7566           ;; Update the Xref header in this article to point to
7567           ;; the new crossposted article we have just created.
7568           (when (eq action 'crosspost)
7569             (save-excursion
7570               (set-buffer copy-buf)
7571               (gnus-request-article-this-buffer article gnus-newsgroup-name)
7572               (nnheader-replace-header "Xref" new-xref)
7573               (gnus-request-replace-article
7574                article gnus-newsgroup-name (current-buffer)))))
7575
7576         ;;;!!!Why is this necessary?
7577         (set-buffer gnus-summary-buffer)
7578
7579         (gnus-summary-goto-subject article)
7580         (when (eq action 'move)
7581           (gnus-summary-mark-article article gnus-canceled-mark))))
7582       (gnus-summary-remove-process-mark article))
7583     ;; Re-activate all groups that have been moved to.
7584     (while to-groups
7585       (save-excursion
7586         (set-buffer gnus-group-buffer)
7587         (when (gnus-group-goto-group (car to-groups) t)
7588           (gnus-group-get-new-news-this-group 1 t))
7589         (pop to-groups)))
7590
7591     (gnus-kill-buffer copy-buf)
7592     (gnus-summary-position-point)
7593     (gnus-set-mode-line 'summary)))
7594
7595 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
7596   "Move the current article to a different newsgroup.
7597 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7598 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7599 re-spool using this method."
7600   (interactive "P")
7601   (gnus-summary-move-article n to-newsgroup select-method 'copy))
7602
7603 (defun gnus-summary-crosspost-article (&optional n)
7604   "Crosspost the current article to some other group."
7605   (interactive "P")
7606   (gnus-summary-move-article n nil nil 'crosspost))
7607
7608 (defcustom gnus-summary-respool-default-method nil
7609   "Default method for respooling an article.
7610 If nil, use to the current newsgroup method."
7611   :type '(choice (gnus-select-method :value (nnml ""))
7612                  (const nil))
7613   :group 'gnus-summary-mail)
7614
7615 (defun gnus-summary-respool-article (&optional n method)
7616   "Respool the current article.
7617 The article will be squeezed through the mail spooling process again,
7618 which means that it will be put in some mail newsgroup or other
7619 depending on `nnmail-split-methods'.
7620 If N is a positive number, respool the N next articles.
7621 If N is a negative number, respool the N previous articles.
7622 If N is nil and any articles have been marked with the process mark,
7623 respool those articles instead.
7624
7625 Respooling can be done both from mail groups and \"real\" newsgroups.
7626 In the former case, the articles in question will be moved from the
7627 current group into whatever groups they are destined to.  In the
7628 latter case, they will be copied into the relevant groups."
7629   (interactive
7630    (list current-prefix-arg
7631          (let* ((methods (gnus-methods-using 'respool))
7632                 (methname
7633                  (symbol-name (or gnus-summary-respool-default-method
7634                                   (car (gnus-find-method-for-group
7635                                         gnus-newsgroup-name)))))
7636                 (method
7637                  (gnus-completing-read
7638                   methname "What backend do you want to use when respooling?"
7639                   methods nil t nil 'gnus-mail-method-history))
7640                 ms)
7641            (cond
7642             ((zerop (length (setq ms (gnus-servers-using-backend
7643                                       (intern method)))))
7644              (list (intern method) ""))
7645             ((= 1 (length ms))
7646              (car ms))
7647             (t
7648              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
7649                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
7650                            ms-alist))))))))
7651   (unless method
7652     (error "No method given for respooling"))
7653   (if (assoc (symbol-name
7654               (car (gnus-find-method-for-group gnus-newsgroup-name)))
7655              (gnus-methods-using 'respool))
7656       (gnus-summary-move-article n nil method)
7657     (gnus-summary-copy-article n nil method)))
7658
7659 (defun gnus-summary-import-article (file)
7660   "Import an arbitrary file into a mail newsgroup."
7661   (interactive "fImport file: ")
7662   (let ((group gnus-newsgroup-name)
7663         (now (current-time))
7664         atts lines)
7665     (unless (gnus-check-backend-function 'request-accept-article group)
7666       (error "%s does not support article importing" group))
7667     (or (file-readable-p file)
7668         (not (file-regular-p file))
7669         (error "Can't read %s" file))
7670     (save-excursion
7671       (set-buffer (gnus-get-buffer-create " *import file*"))
7672       (erase-buffer)
7673       (nnheader-insert-file-contents file)
7674       (goto-char (point-min))
7675       (unless (nnheader-article-p)
7676         ;; This doesn't look like an article, so we fudge some headers.
7677         (setq atts (file-attributes file)
7678               lines (count-lines (point-min) (point-max)))
7679         (insert "From: " (read-string "From: ") "\n"
7680                 "Subject: " (read-string "Subject: ") "\n"
7681                 "Date: " (message-make-date (nth 5 atts))
7682                 "\n"
7683                 "Message-ID: " (message-make-message-id) "\n"
7684                 "Lines: " (int-to-string lines) "\n"
7685                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
7686       (gnus-request-accept-article group nil t)
7687       (kill-buffer (current-buffer)))))
7688
7689 (defun gnus-summary-article-posted-p ()
7690   "Say whether the current (mail) article is available from news as well.
7691 This will be the case if the article has both been mailed and posted."
7692   (interactive)
7693   (let ((id (mail-header-references (gnus-summary-article-header)))
7694         (gnus-override-method (car (gnus-refer-article-methods))))
7695     (if (gnus-request-head id "")
7696         (gnus-message 2 "The current message was found on %s"
7697                       gnus-override-method)
7698       (gnus-message 2 "The current message couldn't be found on %s"
7699                     gnus-override-method)
7700       nil)))
7701
7702 (defun gnus-summary-expire-articles (&optional now)
7703   "Expire all articles that are marked as expirable in the current group."
7704   (interactive)
7705   (when (gnus-check-backend-function
7706          'request-expire-articles gnus-newsgroup-name)
7707     ;; This backend supports expiry.
7708     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
7709            (expirable (if total
7710                           (progn
7711                             ;; We need to update the info for
7712                             ;; this group for `gnus-list-of-read-articles'
7713                             ;; to give us the right answer.
7714                             (gnus-run-hooks 'gnus-exit-group-hook)
7715                             (gnus-summary-update-info)
7716                             (gnus-list-of-read-articles gnus-newsgroup-name))
7717                         (setq gnus-newsgroup-expirable
7718                               (sort gnus-newsgroup-expirable '<))))
7719            (expiry-wait (if now 'immediate
7720                           (gnus-group-find-parameter
7721                            gnus-newsgroup-name 'expiry-wait)))
7722            (nnmail-expiry-target
7723             (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
7724                 nnmail-expiry-target))
7725            es)
7726       (when expirable
7727         ;; There are expirable articles in this group, so we run them
7728         ;; through the expiry process.
7729         (gnus-message 6 "Expiring articles...")
7730         (unless (gnus-check-group gnus-newsgroup-name)
7731           (error "Can't open server for %s" gnus-newsgroup-name))
7732         ;; The list of articles that weren't expired is returned.
7733         (save-excursion
7734           (if expiry-wait
7735               (let ((nnmail-expiry-wait-function nil)
7736                     (nnmail-expiry-wait expiry-wait))
7737                 (setq es (gnus-request-expire-articles
7738                           expirable gnus-newsgroup-name)))
7739             (setq es (gnus-request-expire-articles
7740                       expirable gnus-newsgroup-name))))
7741         (unless total
7742           (setq gnus-newsgroup-expirable es))
7743         ;; We go through the old list of expirable, and mark all
7744         ;; really expired articles as nonexistent.
7745         (unless (eq es expirable)       ;If nothing was expired, we don't mark.
7746           (let ((gnus-use-cache nil))
7747             (while expirable
7748               (unless (memq (car expirable) es)
7749                 (when (gnus-data-find (car expirable))
7750                   (gnus-summary-mark-article
7751                    (car expirable) gnus-canceled-mark)))
7752               (setq expirable (cdr expirable)))))
7753         (gnus-message 6 "Expiring articles...done")))))
7754
7755 (defun gnus-summary-expire-articles-now ()
7756   "Expunge all expirable articles in the current group.
7757 This means that *all* articles that are marked as expirable will be
7758 deleted forever, right now."
7759   (interactive)
7760   (or gnus-expert-user
7761       (gnus-yes-or-no-p
7762        "Are you really, really, really sure you want to delete all these messages? ")
7763       (error "Phew!"))
7764   (gnus-summary-expire-articles t))
7765
7766 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
7767 (defun gnus-summary-delete-article (&optional n)
7768   "Delete the N next (mail) articles.
7769 This command actually deletes articles.  This is not a marking
7770 command.  The article will disappear forever from your life, never to
7771 return.
7772 If N is negative, delete backwards.
7773 If N is nil and articles have been marked with the process mark,
7774 delete these instead."
7775   (interactive "P")
7776   (unless (gnus-check-backend-function 'request-expire-articles
7777                                        gnus-newsgroup-name)
7778     (error "The current newsgroup does not support article deletion"))
7779   (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
7780     (error "Couldn't open server"))
7781   ;; Compute the list of articles to delete.
7782   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
7783         not-deleted)
7784     (if (and gnus-novice-user
7785              (not (gnus-yes-or-no-p
7786                    (format "Do you really want to delete %s forever? "
7787                            (if (> (length articles) 1)
7788                                (format "these %s articles" (length articles))
7789                              "this article")))))
7790         ()
7791       ;; Delete the articles.
7792       (setq not-deleted (gnus-request-expire-articles
7793                          articles gnus-newsgroup-name 'force))
7794       (while articles
7795         (gnus-summary-remove-process-mark (car articles))
7796         ;; The backend might not have been able to delete the article
7797         ;; after all.
7798         (unless (memq (car articles) not-deleted)
7799           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
7800         (setq articles (cdr articles)))
7801       (when not-deleted
7802         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
7803     (gnus-summary-position-point)
7804     (gnus-set-mode-line 'summary)
7805     not-deleted))
7806
7807 (defun gnus-summary-edit-article (&optional arg)
7808   "Edit the current article.
7809 This will have permanent effect only in mail groups.
7810 If ARG is nil, edit the decoded articles.
7811 If ARG is 1, edit the raw articles. 
7812 If ARG is 2, edit the raw articles even in read-only groups.
7813 Otherwise, allow editing of articles even in read-only
7814 groups."
7815   (interactive "P")
7816   (let (force raw)
7817     (cond 
7818      ((null arg))
7819      ((eq arg 1) (setq raw t))
7820      ((eq arg 2) (setq raw t
7821                        force t))
7822      (t (setq force t)))
7823     (if (and raw (not force) (equal gnus-newsgroup-name "nndraft:drafts"))
7824         (error "Can't edit the raw article in group nndraft:drafts."))
7825     (save-excursion
7826       (set-buffer gnus-summary-buffer)
7827       (let ((mail-parse-charset gnus-newsgroup-charset)
7828             (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
7829         (gnus-set-global-variables)
7830         (when (and (not force)
7831                    (gnus-group-read-only-p))
7832           (error "The current newsgroup does not support article editing"))
7833         (gnus-summary-show-article t)
7834         (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
7835           (with-current-buffer gnus-article-buffer
7836             (mm-enable-multibyte-mule4)))
7837         (if (equal gnus-newsgroup-name "nndraft:drafts")
7838             (setq raw t))
7839         (gnus-article-edit-article
7840          (if raw 'ignore 
7841            #'(lambda () 
7842                (let ((mbl mml-buffer-list))
7843                  (setq mml-buffer-list nil)
7844                  (mime-to-mml)
7845                  (make-local-hook 'kill-buffer-hook)
7846                  (let ((mml-buffer-list mml-buffer-list))
7847                    (setq mml-buffer-list mbl)
7848                    (make-local-variable 'mml-buffer-list))
7849                  (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
7850          `(lambda (no-highlight)
7851             (let ((mail-parse-charset ',gnus-newsgroup-charset)
7852                   (mail-parse-ignored-charsets 
7853                    ',gnus-newsgroup-ignored-charsets))
7854               ,(if (not raw) '(progn 
7855                                 (mml-to-mime)
7856                                 (mml-destroy-buffers)
7857                                 (remove-hook 'kill-buffer-hook 
7858                                              'mml-destroy-buffers t)
7859                                 (kill-local-variable 'mml-buffer-list)))
7860               (gnus-summary-edit-article-done
7861                ,(or (mail-header-references gnus-current-headers) "")
7862                ,(gnus-group-read-only-p) 
7863                ,gnus-summary-buffer no-highlight))))))))
7864
7865 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
7866
7867 (defun gnus-summary-edit-article-done (&optional references read-only buffer
7868                                                  no-highlight)
7869   "Make edits to the current article permanent."
7870   (interactive)
7871   ;; Replace the article.
7872   (let ((buf (current-buffer)))
7873     (with-temp-buffer
7874       (insert-buffer-substring buf)
7875       (if (and (not read-only)
7876                (not (gnus-request-replace-article
7877                      (cdr gnus-article-current) (car gnus-article-current)
7878                      (current-buffer) t)))
7879           (error "Couldn't replace article")
7880         ;; Update the summary buffer.
7881         (if (and references
7882                  (equal (message-tokenize-header references " ")
7883                         (message-tokenize-header
7884                          (or (message-fetch-field "references") "") " ")))
7885             ;; We only have to update this line.
7886             (save-excursion
7887               (save-restriction
7888                 (message-narrow-to-head)
7889                 (let ((head (buffer-string))
7890                       header)
7891                   (with-temp-buffer
7892                     (insert (format "211 %d Article retrieved.\n"
7893                                     (cdr gnus-article-current)))
7894                     (insert head)
7895                     (insert ".\n")
7896                     (let ((nntp-server-buffer (current-buffer)))
7897                       (setq header (car (gnus-get-newsgroup-headers
7898                                          (save-excursion
7899                                            (set-buffer gnus-summary-buffer)
7900                                            gnus-newsgroup-dependencies)
7901                                          t))))
7902                     (save-excursion
7903                       (set-buffer gnus-summary-buffer)
7904                       (gnus-data-set-header
7905                        (gnus-data-find (cdr gnus-article-current))
7906                        header)
7907                       (gnus-summary-update-article-line
7908                        (cdr gnus-article-current) header))))))
7909           ;; Update threads.
7910           (set-buffer (or buffer gnus-summary-buffer))
7911           (gnus-summary-update-article (cdr gnus-article-current)))
7912         ;; Prettify the article buffer again.
7913         (unless no-highlight
7914           (save-excursion
7915             (set-buffer gnus-article-buffer)
7916             ;;;!!! Fix this -- article should be rehighlighted.
7917             ;;;(gnus-run-hooks 'gnus-article-display-hook)
7918             (set-buffer gnus-original-article-buffer)
7919             (gnus-request-article
7920              (cdr gnus-article-current)
7921              (car gnus-article-current) (current-buffer))))
7922         ;; Prettify the summary buffer line.
7923         (when (gnus-visual-p 'summary-highlight 'highlight)
7924           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
7925
7926 (defun gnus-summary-edit-wash (key)
7927   "Perform editing command KEY in the article buffer."
7928   (interactive
7929    (list
7930     (progn
7931       (message "%s" (concat (this-command-keys) "- "))
7932       (read-char))))
7933   (message "")
7934   (gnus-summary-edit-article)
7935   (execute-kbd-macro (concat (this-command-keys) key))
7936   (gnus-article-edit-done))
7937
7938 ;;; Respooling
7939
7940 (defun gnus-summary-respool-query (&optional silent trace)
7941   "Query where the respool algorithm would put this article."
7942   (interactive)
7943   (let (gnus-mark-article-hook)
7944     (gnus-summary-select-article)
7945     (save-excursion
7946       (set-buffer gnus-original-article-buffer)
7947       (save-restriction
7948         (message-narrow-to-head)
7949         (let ((groups (nnmail-article-group 'identity trace)))
7950           (unless silent
7951             (if groups
7952                 (message "This message would go to %s"
7953                          (mapconcat 'car groups ", "))
7954               (message "This message would go to no groups"))
7955             groups))))))
7956
7957 (defun gnus-summary-respool-trace ()
7958   "Trace where the respool algorithm would put this article.
7959 Display a buffer showing all fancy splitting patterns which matched."
7960   (interactive)
7961   (gnus-summary-respool-query nil t))
7962
7963 ;; Summary marking commands.
7964
7965 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
7966   "Mark articles which has the same subject as read, and then select the next.
7967 If UNMARK is positive, remove any kind of mark.
7968 If UNMARK is negative, tick articles."
7969   (interactive "P")
7970   (when unmark
7971     (setq unmark (prefix-numeric-value unmark)))
7972   (let ((count
7973          (gnus-summary-mark-same-subject
7974           (gnus-summary-article-subject) unmark)))
7975     ;; Select next unread article.  If auto-select-same mode, should
7976     ;; select the first unread article.
7977     (gnus-summary-next-article t (and gnus-auto-select-same
7978                                       (gnus-summary-article-subject)))
7979     (gnus-message 7 "%d article%s marked as %s"
7980                   count (if (= count 1) " is" "s are")
7981                   (if unmark "unread" "read"))))
7982
7983 (defun gnus-summary-kill-same-subject (&optional unmark)
7984   "Mark articles which has the same subject as read.
7985 If UNMARK is positive, remove any kind of mark.
7986 If UNMARK is negative, tick articles."
7987   (interactive "P")
7988   (when unmark
7989     (setq unmark (prefix-numeric-value unmark)))
7990   (let ((count
7991          (gnus-summary-mark-same-subject
7992           (gnus-summary-article-subject) unmark)))
7993     ;; If marked as read, go to next unread subject.
7994     (when (null unmark)
7995       ;; Go to next unread subject.
7996       (gnus-summary-next-subject 1 t))
7997     (gnus-message 7 "%d articles are marked as %s"
7998                   count (if unmark "unread" "read"))))
7999
8000 (defun gnus-summary-mark-same-subject (subject &optional unmark)
8001   "Mark articles with same SUBJECT as read, and return marked number.
8002 If optional argument UNMARK is positive, remove any kinds of marks.
8003 If optional argument UNMARK is negative, mark articles as unread instead."
8004   (let ((count 1))
8005     (save-excursion
8006       (cond
8007        ((null unmark)                   ; Mark as read.
8008         (while (and
8009                 (progn
8010                   (gnus-summary-mark-article-as-read gnus-killed-mark)
8011                   (gnus-summary-show-thread) t)
8012                 (gnus-summary-find-subject subject))
8013           (setq count (1+ count))))
8014        ((> unmark 0)                    ; Tick.
8015         (while (and
8016                 (progn
8017                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
8018                   (gnus-summary-show-thread) t)
8019                 (gnus-summary-find-subject subject))
8020           (setq count (1+ count))))
8021        (t                               ; Mark as unread.
8022         (while (and
8023                 (progn
8024                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
8025                   (gnus-summary-show-thread) t)
8026                 (gnus-summary-find-subject subject))
8027           (setq count (1+ count)))))
8028       (gnus-set-mode-line 'summary)
8029       ;; Return the number of marked articles.
8030       count)))
8031
8032 (defun gnus-summary-mark-as-processable (n &optional unmark)
8033   "Set the process mark on the next N articles.
8034 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
8035 the process mark instead.  The difference between N and the actual
8036 number of articles marked is returned."
8037   (interactive "p")
8038   (let ((backward (< n 0))
8039         (n (abs n)))
8040     (while (and
8041             (> n 0)
8042             (if unmark
8043                 (gnus-summary-remove-process-mark
8044                  (gnus-summary-article-number))
8045               (gnus-summary-set-process-mark (gnus-summary-article-number)))
8046             (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
8047       (setq n (1- n)))
8048     (when (/= 0 n)
8049       (gnus-message 7 "No more articles"))
8050     (gnus-summary-recenter)
8051     (gnus-summary-position-point)
8052     n))
8053
8054 (defun gnus-summary-unmark-as-processable (n)
8055   "Remove the process mark from the next N articles.
8056 If N is negative, unmark backward instead.  The difference between N and
8057 the actual number of articles unmarked is returned."
8058   (interactive "p")
8059   (gnus-summary-mark-as-processable n t))
8060
8061 (defun gnus-summary-unmark-all-processable ()
8062   "Remove the process mark from all articles."
8063   (interactive)
8064   (save-excursion
8065     (while gnus-newsgroup-processable
8066       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
8067   (gnus-summary-position-point))
8068
8069 (defun gnus-summary-mark-as-expirable (n)
8070   "Mark N articles forward as expirable.
8071 If N is negative, mark backward instead.  The difference between N and
8072 the actual number of articles marked is returned."
8073   (interactive "p")
8074   (gnus-summary-mark-forward n gnus-expirable-mark))
8075
8076 (defun gnus-summary-mark-article-as-replied (article)
8077   "Mark ARTICLE replied and update the summary line."
8078   (push article gnus-newsgroup-replied)
8079   (let ((buffer-read-only nil))
8080     (when (gnus-summary-goto-subject article nil t)
8081       (gnus-summary-update-secondary-mark article))))
8082
8083 (defun gnus-summary-set-bookmark (article)
8084   "Set a bookmark in current article."
8085   (interactive (list (gnus-summary-article-number)))
8086   (when (or (not (get-buffer gnus-article-buffer))
8087             (not gnus-current-article)
8088             (not gnus-article-current)
8089             (not (equal gnus-newsgroup-name (car gnus-article-current))))
8090     (error "No current article selected"))
8091   ;; Remove old bookmark, if one exists.
8092   (let ((old (assq article gnus-newsgroup-bookmarks)))
8093     (when old
8094       (setq gnus-newsgroup-bookmarks
8095             (delq old gnus-newsgroup-bookmarks))))
8096   ;; Set the new bookmark, which is on the form
8097   ;; (article-number . line-number-in-body).
8098   (push
8099    (cons article
8100          (save-excursion
8101            (set-buffer gnus-article-buffer)
8102            (count-lines
8103             (min (point)
8104                  (save-excursion
8105                    (goto-char (point-min))
8106                    (search-forward "\n\n" nil t)
8107                    (point)))
8108             (point))))
8109    gnus-newsgroup-bookmarks)
8110   (gnus-message 6 "A bookmark has been added to the current article."))
8111
8112 (defun gnus-summary-remove-bookmark (article)
8113   "Remove the bookmark from the current article."
8114   (interactive (list (gnus-summary-article-number)))
8115   ;; Remove old bookmark, if one exists.
8116   (let ((old (assq article gnus-newsgroup-bookmarks)))
8117     (if old
8118         (progn
8119           (setq gnus-newsgroup-bookmarks
8120                 (delq old gnus-newsgroup-bookmarks))
8121           (gnus-message 6 "Removed bookmark."))
8122       (gnus-message 6 "No bookmark in current article."))))
8123
8124 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8125 (defun gnus-summary-mark-as-dormant (n)
8126   "Mark N articles forward as dormant.
8127 If N is negative, mark backward instead.  The difference between N and
8128 the actual number of articles marked is returned."
8129   (interactive "p")
8130   (gnus-summary-mark-forward n gnus-dormant-mark))
8131
8132 (defun gnus-summary-set-process-mark (article)
8133   "Set the process mark on ARTICLE and update the summary line."
8134   (setq gnus-newsgroup-processable
8135         (cons article
8136               (delq article gnus-newsgroup-processable)))
8137   (when (gnus-summary-goto-subject article)
8138     (gnus-summary-show-thread)
8139     (gnus-summary-goto-subject article)
8140     (gnus-summary-update-secondary-mark article)))
8141
8142 (defun gnus-summary-remove-process-mark (article)
8143   "Remove the process mark from ARTICLE and update the summary line."
8144   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
8145   (when (gnus-summary-goto-subject article)
8146     (gnus-summary-show-thread)
8147     (gnus-summary-goto-subject article)
8148     (gnus-summary-update-secondary-mark article)))
8149
8150 (defun gnus-summary-set-saved-mark (article)
8151   "Set the process mark on ARTICLE and update the summary line."
8152   (push article gnus-newsgroup-saved)
8153   (when (gnus-summary-goto-subject article)
8154     (gnus-summary-update-secondary-mark article)))
8155
8156 (defun gnus-summary-mark-forward (n &optional mark no-expire)
8157   "Mark N articles as read forwards.
8158 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
8159 The difference between N and the actual number of articles marked is
8160 returned.
8161 Iff NO-EXPIRE, auto-expiry will be inhibited."
8162   (interactive "p")
8163   (gnus-summary-show-thread)
8164   (let ((backward (< n 0))
8165         (gnus-summary-goto-unread
8166          (and gnus-summary-goto-unread
8167               (not (eq gnus-summary-goto-unread 'never))
8168               (not (memq mark (list gnus-unread-mark
8169                                     gnus-ticked-mark gnus-dormant-mark)))))
8170         (n (abs n))
8171         (mark (or mark gnus-del-mark)))
8172     (while (and (> n 0)
8173                 (gnus-summary-mark-article nil mark no-expire)
8174                 (zerop (gnus-summary-next-subject
8175                         (if backward -1 1)
8176                         (and gnus-summary-goto-unread
8177                              (not (eq gnus-summary-goto-unread 'never)))
8178                         t)))
8179       (setq n (1- n)))
8180     (when (/= 0 n)
8181       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
8182     (gnus-summary-recenter)
8183     (gnus-summary-position-point)
8184     (gnus-set-mode-line 'summary)
8185     n))
8186
8187 (defun gnus-summary-mark-article-as-read (mark)
8188   "Mark the current article quickly as read with MARK."
8189   (let ((article (gnus-summary-article-number)))
8190     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8191     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8192     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8193     (push (cons article mark) gnus-newsgroup-reads)
8194     ;; Possibly remove from cache, if that is used.
8195     (when gnus-use-cache
8196       (gnus-cache-enter-remove-article article))
8197     ;; Allow the backend to change the mark.
8198     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8199     ;; Check for auto-expiry.
8200     (when (and gnus-newsgroup-auto-expire
8201                (memq mark gnus-auto-expirable-marks))
8202       (setq mark gnus-expirable-mark)
8203       ;; Let the backend know about the mark change.
8204       (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8205       (push article gnus-newsgroup-expirable))
8206     ;; Set the mark in the buffer.
8207     (gnus-summary-update-mark mark 'unread)
8208     t))
8209
8210 (defun gnus-summary-mark-article-as-unread (mark)
8211   "Mark the current article quickly as unread with MARK."
8212   (let* ((article (gnus-summary-article-number))
8213          (old-mark (gnus-summary-article-mark article)))
8214     ;; Allow the backend to change the mark.
8215     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8216     (if (eq mark old-mark)
8217         t
8218       (if (<= article 0)
8219           (progn
8220             (gnus-error 1 "Can't mark negative article numbers")
8221             nil)
8222         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8223         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8224         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
8225         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
8226         (cond ((= mark gnus-ticked-mark)
8227                (push article gnus-newsgroup-marked))
8228               ((= mark gnus-dormant-mark)
8229                (push article gnus-newsgroup-dormant))
8230               (t
8231                (push article gnus-newsgroup-unreads)))
8232         (gnus-pull article gnus-newsgroup-reads)
8233
8234         ;; See whether the article is to be put in the cache.
8235         (and gnus-use-cache
8236              (vectorp (gnus-summary-article-header article))
8237              (save-excursion
8238                (gnus-cache-possibly-enter-article
8239                 gnus-newsgroup-name article
8240                 (= mark gnus-ticked-mark)
8241                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8242
8243         ;; Fix the mark.
8244         (gnus-summary-update-mark mark 'unread)
8245         t))))
8246
8247 (defun gnus-summary-mark-article (&optional article mark no-expire)
8248   "Mark ARTICLE with MARK.  MARK can be any character.
8249 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
8250 `??' (dormant) and `?E' (expirable).
8251 If MARK is nil, then the default character `?r' is used.
8252 If ARTICLE is nil, then the article on the current line will be
8253 marked.
8254 Iff NO-EXPIRE, auto-expiry will be inhibited."
8255   ;; The mark might be a string.
8256   (when (stringp mark)
8257     (setq mark (aref mark 0)))
8258   ;; If no mark is given, then we check auto-expiring.
8259   (when (null mark)
8260     (setq mark gnus-del-mark))
8261   (when (and (not no-expire)
8262              gnus-newsgroup-auto-expire
8263              (memq mark gnus-auto-expirable-marks))
8264     (setq mark gnus-expirable-mark))
8265   (let ((article (or article (gnus-summary-article-number)))
8266         (old-mark (gnus-summary-article-mark article)))
8267     ;; Allow the backend to change the mark.
8268     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
8269     (if (eq mark old-mark)
8270         t
8271       (unless article
8272         (error "No article on current line"))
8273       (if (not (if (or (= mark gnus-unread-mark)
8274                        (= mark gnus-ticked-mark)
8275                        (= mark gnus-dormant-mark))
8276                    (gnus-mark-article-as-unread article mark)
8277                  (gnus-mark-article-as-read article mark)))
8278           t
8279         ;; See whether the article is to be put in the cache.
8280         (and gnus-use-cache
8281              (not (= mark gnus-canceled-mark))
8282              (vectorp (gnus-summary-article-header article))
8283              (save-excursion
8284                (gnus-cache-possibly-enter-article
8285                 gnus-newsgroup-name article
8286                 (= mark gnus-ticked-mark)
8287                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
8288
8289         (when (gnus-summary-goto-subject article nil t)
8290           (let ((buffer-read-only nil))
8291             (gnus-summary-show-thread)
8292             ;; Fix the mark.
8293             (gnus-summary-update-mark mark 'unread)
8294             t))))))
8295
8296 (defun gnus-summary-update-secondary-mark (article)
8297   "Update the secondary (read, process, cache) mark."
8298   (gnus-summary-update-mark
8299    (cond ((memq article gnus-newsgroup-processable)
8300           gnus-process-mark)
8301          ((memq article gnus-newsgroup-cached)
8302           gnus-cached-mark)
8303          ((memq article gnus-newsgroup-replied)
8304           gnus-replied-mark)
8305          ((memq article gnus-newsgroup-saved)
8306           gnus-saved-mark)
8307          (t gnus-unread-mark))
8308    'replied)
8309   (when (gnus-visual-p 'summary-highlight 'highlight)
8310     (gnus-run-hooks 'gnus-summary-update-hook))
8311   t)
8312
8313 (defun gnus-summary-update-mark (mark type)
8314   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
8315         (buffer-read-only nil))
8316     (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
8317     (when forward
8318       (when (looking-at "\r")
8319         (incf forward))
8320       (when (<= (+ forward (point)) (point-max))
8321         ;; Go to the right position on the line.
8322         (goto-char (+ forward (point)))
8323         ;; Replace the old mark with the new mark.
8324         (subst-char-in-region (point) (1+ (point)) (char-after) mark)
8325         ;; Optionally update the marks by some user rule.
8326         (when (eq type 'unread)
8327           (gnus-data-set-mark
8328            (gnus-data-find (gnus-summary-article-number)) mark)
8329           (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
8330
8331 (defun gnus-mark-article-as-read (article &optional mark)
8332   "Enter ARTICLE in the pertinent lists and remove it from others."
8333   ;; Make the article expirable.
8334   (let ((mark (or mark gnus-del-mark)))
8335     (if (= mark gnus-expirable-mark)
8336         (push article gnus-newsgroup-expirable)
8337       (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)))
8338     ;; Remove from unread and marked lists.
8339     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8340     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
8341     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
8342     (push (cons article mark) gnus-newsgroup-reads)
8343     ;; Possibly remove from cache, if that is used.
8344     (when gnus-use-cache
8345       (gnus-cache-enter-remove-article article))
8346     t))
8347
8348 (defun gnus-mark-article-as-unread (article &optional mark)
8349   "Enter ARTICLE in the pertinent lists and remove it from others."
8350   (let ((mark (or mark gnus-ticked-mark)))
8351     (if (<= article 0)
8352         (progn
8353           (gnus-error 1 "Can't mark negative article numbers")
8354           nil)
8355       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
8356             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
8357             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
8358             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
8359
8360       ;; Unsuppress duplicates?
8361       (when gnus-suppress-duplicates
8362         (gnus-dup-unsuppress-article article))
8363
8364       (cond ((= mark gnus-ticked-mark)
8365              (push article gnus-newsgroup-marked))
8366             ((= mark gnus-dormant-mark)
8367              (push article gnus-newsgroup-dormant))
8368             (t
8369              (push article gnus-newsgroup-unreads)))
8370       (gnus-pull article gnus-newsgroup-reads)
8371       t)))
8372
8373 (defalias 'gnus-summary-mark-as-unread-forward
8374   'gnus-summary-tick-article-forward)
8375 (make-obsolete 'gnus-summary-mark-as-unread-forward
8376                'gnus-summary-tick-article-forward)
8377 (defun gnus-summary-tick-article-forward (n)
8378   "Tick N articles forwards.
8379 If N is negative, tick backwards instead.
8380 The difference between N and the number of articles ticked is returned."
8381   (interactive "p")
8382   (gnus-summary-mark-forward n gnus-ticked-mark))
8383
8384 (defalias 'gnus-summary-mark-as-unread-backward
8385   'gnus-summary-tick-article-backward)
8386 (make-obsolete 'gnus-summary-mark-as-unread-backward
8387                'gnus-summary-tick-article-backward)
8388 (defun gnus-summary-tick-article-backward (n)
8389   "Tick N articles backwards.
8390 The difference between N and the number of articles ticked is returned."
8391   (interactive "p")
8392   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
8393
8394 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8395 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
8396 (defun gnus-summary-tick-article (&optional article clear-mark)
8397   "Mark current article as unread.
8398 Optional 1st argument ARTICLE specifies article number to be marked as unread.
8399 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
8400   (interactive)
8401   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
8402                                        gnus-ticked-mark)))
8403
8404 (defun gnus-summary-mark-as-read-forward (n)
8405   "Mark N articles as read forwards.
8406 If N is negative, mark backwards instead.
8407 The difference between N and the actual number of articles marked is
8408 returned."
8409   (interactive "p")
8410   (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
8411
8412 (defun gnus-summary-mark-as-read-backward (n)
8413   "Mark the N articles as read backwards.
8414 The difference between N and the actual number of articles marked is
8415 returned."
8416   (interactive "p")
8417   (gnus-summary-mark-forward
8418    (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
8419
8420 (defun gnus-summary-mark-as-read (&optional article mark)
8421   "Mark current article as read.
8422 ARTICLE specifies the article to be marked as read.
8423 MARK specifies a string to be inserted at the beginning of the line."
8424   (gnus-summary-mark-article article mark))
8425
8426 (defun gnus-summary-clear-mark-forward (n)
8427   "Clear marks from N articles forward.
8428 If N is negative, clear backward instead.
8429 The difference between N and the number of marks cleared is returned."
8430   (interactive "p")
8431   (gnus-summary-mark-forward n gnus-unread-mark))
8432
8433 (defun gnus-summary-clear-mark-backward (n)
8434   "Clear marks from N articles backward.
8435 The difference between N and the number of marks cleared is returned."
8436   (interactive "p")
8437   (gnus-summary-mark-forward (- n) gnus-unread-mark))
8438
8439 (defun gnus-summary-mark-unread-as-read ()
8440   "Intended to be used by `gnus-summary-mark-article-hook'."
8441   (when (memq gnus-current-article gnus-newsgroup-unreads)
8442     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
8443
8444 (defun gnus-summary-mark-read-and-unread-as-read ()
8445   "Intended to be used by `gnus-summary-mark-article-hook'."
8446   (let ((mark (gnus-summary-article-mark)))
8447     (when (or (gnus-unread-mark-p mark)
8448               (gnus-read-mark-p mark))
8449       (gnus-summary-mark-article gnus-current-article gnus-read-mark))))
8450
8451 (defun gnus-summary-mark-region-as-read (point mark all)
8452   "Mark all unread articles between point and mark as read.
8453 If given a prefix, mark all articles between point and mark as read,
8454 even ticked and dormant ones."
8455   (interactive "r\nP")
8456   (save-excursion
8457     (let (article)
8458       (goto-char point)
8459       (beginning-of-line)
8460       (while (and
8461               (< (point) mark)
8462               (progn
8463                 (when (or all
8464                           (memq (setq article (gnus-summary-article-number))
8465                                 gnus-newsgroup-unreads))
8466                   (gnus-summary-mark-article article gnus-del-mark))
8467                 t)
8468               (gnus-summary-find-next))))))
8469
8470 (defun gnus-summary-mark-below (score mark)
8471   "Mark articles with score less than SCORE with MARK."
8472   (interactive "P\ncMark: ")
8473   (setq score (if score
8474                   (prefix-numeric-value score)
8475                 (or gnus-summary-default-score 0)))
8476   (save-excursion
8477     (set-buffer gnus-summary-buffer)
8478     (goto-char (point-min))
8479     (while
8480         (progn
8481           (and (< (gnus-summary-article-score) score)
8482                (gnus-summary-mark-article nil mark))
8483           (gnus-summary-find-next)))))
8484
8485 (defun gnus-summary-kill-below (&optional score)
8486   "Mark articles with score below SCORE as read."
8487   (interactive "P")
8488   (gnus-summary-mark-below score gnus-killed-mark))
8489
8490 (defun gnus-summary-clear-above (&optional score)
8491   "Clear all marks from articles with score above SCORE."
8492   (interactive "P")
8493   (gnus-summary-mark-above score gnus-unread-mark))
8494
8495 (defun gnus-summary-tick-above (&optional score)
8496   "Tick all articles with score above SCORE."
8497   (interactive "P")
8498   (gnus-summary-mark-above score gnus-ticked-mark))
8499
8500 (defun gnus-summary-mark-above (score mark)
8501   "Mark articles with score over SCORE with MARK."
8502   (interactive "P\ncMark: ")
8503   (setq score (if score
8504                   (prefix-numeric-value score)
8505                 (or gnus-summary-default-score 0)))
8506   (save-excursion
8507     (set-buffer gnus-summary-buffer)
8508     (goto-char (point-min))
8509     (while (and (progn
8510                   (when (> (gnus-summary-article-score) score)
8511                     (gnus-summary-mark-article nil mark))
8512                   t)
8513                 (gnus-summary-find-next)))))
8514
8515 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
8516 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
8517 (defun gnus-summary-limit-include-expunged (&optional no-error)
8518   "Display all the hidden articles that were expunged for low scores."
8519   (interactive)
8520   (let ((buffer-read-only nil))
8521     (let ((scored gnus-newsgroup-scored)
8522           headers h)
8523       (while scored
8524         (unless (gnus-summary-goto-subject (caar scored))
8525           (and (setq h (gnus-summary-article-header (caar scored)))
8526                (< (cdar scored) gnus-summary-expunge-below)
8527                (push h headers)))
8528         (setq scored (cdr scored)))
8529       (if (not headers)
8530           (when (not no-error)
8531             (error "No expunged articles hidden"))
8532         (goto-char (point-min))
8533         (gnus-summary-prepare-unthreaded (nreverse headers))
8534         (goto-char (point-min))
8535         (gnus-summary-position-point)
8536         t))))
8537
8538 (defun gnus-summary-catchup (&optional all quietly to-here not-mark)
8539   "Mark all unread articles in this newsgroup as read.
8540 If prefix argument ALL is non-nil, ticked and dormant articles will
8541 also be marked as read.
8542 If QUIETLY is non-nil, no questions will be asked.
8543 If TO-HERE is non-nil, it should be a point in the buffer.  All
8544 articles before this point will be marked as read.
8545 Note that this function will only catch up the unread article
8546 in the current summary buffer limitation.
8547 The number of articles marked as read is returned."
8548   (interactive "P")
8549   (prog1
8550       (save-excursion
8551         (when (or quietly
8552                   (not gnus-interactive-catchup) ;Without confirmation?
8553                   gnus-expert-user
8554                   (gnus-y-or-n-p
8555                    (if all
8556                        "Mark absolutely all articles as read? "
8557                      "Mark all unread articles as read? ")))
8558           (if (and not-mark
8559                    (not gnus-newsgroup-adaptive)
8560                    (not gnus-newsgroup-auto-expire)
8561                    (not gnus-suppress-duplicates)
8562                    (or (not gnus-use-cache)
8563                        (eq gnus-use-cache 'passive)))
8564               (progn
8565                 (when all
8566                   (setq gnus-newsgroup-marked nil
8567                         gnus-newsgroup-dormant nil))
8568                 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable))
8569             ;; We actually mark all articles as canceled, which we
8570             ;; have to do when using auto-expiry or adaptive scoring.
8571             (gnus-summary-show-all-threads)
8572             (when (gnus-summary-first-subject (not all) t)
8573               (while (and
8574                       (if to-here (< (point) to-here) t)
8575                       (gnus-summary-mark-article-as-read gnus-catchup-mark)
8576                       (gnus-summary-find-next (not all) nil nil t))))
8577             (gnus-set-mode-line 'summary))
8578           t))
8579     (gnus-summary-position-point)))
8580
8581 (defun gnus-summary-catchup-to-here (&optional all)
8582   "Mark all unticked articles before the current one as read.
8583 If ALL is non-nil, also mark ticked and dormant articles as read."
8584   (interactive "P")
8585   (save-excursion
8586     (gnus-save-hidden-threads
8587       (let ((beg (point)))
8588         ;; We check that there are unread articles.
8589         (when (or all (gnus-summary-find-prev))
8590           (gnus-summary-catchup all t beg)))))
8591   (gnus-summary-position-point))
8592
8593 (defun gnus-summary-catchup-all (&optional quietly)
8594   "Mark all articles in this newsgroup as read."
8595   (interactive "P")
8596   (gnus-summary-catchup t quietly))
8597
8598 (defun gnus-summary-catchup-and-exit (&optional all quietly)
8599   "Mark all unread articles in this group as read, then exit.
8600 If prefix argument ALL is non-nil, all articles are marked as read."
8601   (interactive "P")
8602   (when (gnus-summary-catchup all quietly nil 'fast)
8603     ;; Select next newsgroup or exit.
8604     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
8605              (eq gnus-auto-select-next 'quietly))
8606         (gnus-summary-next-group nil)
8607       (gnus-summary-exit))))
8608
8609 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
8610   "Mark all articles in this newsgroup as read, and then exit."
8611   (interactive "P")
8612   (gnus-summary-catchup-and-exit t quietly))
8613
8614 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
8615   "Mark all articles in this group as read and select the next group.
8616 If given a prefix, mark all articles, unread as well as ticked, as
8617 read."
8618   (interactive "P")
8619   (save-excursion
8620     (gnus-summary-catchup all))
8621   (gnus-summary-next-group))
8622
8623 ;;;
8624 ;;; with article
8625 ;;;
8626
8627 (defmacro gnus-with-article (article &rest forms)
8628   "Select ARTICLE and perform FORMS in the original article buffer.
8629 Then replace the article with the result."
8630   `(progn
8631      ;; We don't want the article to be marked as read.
8632      (let (gnus-mark-article-hook)
8633        (gnus-summary-select-article t t nil ,article))
8634      (set-buffer gnus-original-article-buffer)
8635      ,@forms
8636      (if (not (gnus-check-backend-function
8637                'request-replace-article (car gnus-article-current)))
8638          (gnus-message 5 "Read-only group; not replacing")
8639        (unless (gnus-request-replace-article
8640                 ,article (car gnus-article-current)
8641                 (current-buffer) t)
8642          (error "Couldn't replace article")))
8643      ;; The cache and backlog have to be flushed somewhat.
8644      (when gnus-keep-backlog
8645        (gnus-backlog-remove-article
8646         (car gnus-article-current) (cdr gnus-article-current)))
8647      (when gnus-use-cache
8648        (gnus-cache-update-article
8649         (car gnus-article-current) (cdr gnus-article-current)))))
8650
8651 (put 'gnus-with-article 'lisp-indent-function 1)
8652 (put 'gnus-with-article 'edebug-form-spec '(form body))
8653
8654 ;; Thread-based commands.
8655
8656 (defun gnus-summary-articles-in-thread (&optional article)
8657   "Return a list of all articles in the current thread.
8658 If ARTICLE is non-nil, return all articles in the thread that starts
8659 with that article."
8660   (let* ((article (or article (gnus-summary-article-number)))
8661          (data (gnus-data-find-list article))
8662          (top-level (gnus-data-level (car data)))
8663          (top-subject
8664           (cond ((null gnus-thread-operation-ignore-subject)
8665                  (gnus-simplify-subject-re
8666                   (mail-header-subject (gnus-data-header (car data)))))
8667                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
8668                  (gnus-simplify-subject-fuzzy
8669                   (mail-header-subject (gnus-data-header (car data)))))
8670                 (t nil)))
8671          (end-point (save-excursion
8672                       (if (gnus-summary-go-to-next-thread)
8673                           (point) (point-max))))
8674          articles)
8675     (while (and data
8676                 (< (gnus-data-pos (car data)) end-point))
8677       (when (or (not top-subject)
8678                 (string= top-subject
8679                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
8680                              (gnus-simplify-subject-fuzzy
8681                               (mail-header-subject
8682                                (gnus-data-header (car data))))
8683                            (gnus-simplify-subject-re
8684                             (mail-header-subject
8685                              (gnus-data-header (car data)))))))
8686         (push (gnus-data-number (car data)) articles))
8687       (unless (and (setq data (cdr data))
8688                    (> (gnus-data-level (car data)) top-level))
8689         (setq data nil)))
8690     ;; Return the list of articles.
8691     (nreverse articles)))
8692
8693 (defun gnus-summary-rethread-current ()
8694   "Rethread the thread the current article is part of."
8695   (interactive)
8696   (let* ((gnus-show-threads t)
8697          (article (gnus-summary-article-number))
8698          (id (mail-header-id (gnus-summary-article-header)))
8699          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
8700     (unless id
8701       (error "No article on the current line"))
8702     (gnus-rebuild-thread id)
8703     (gnus-summary-goto-subject article)))
8704
8705 (defun gnus-summary-reparent-thread ()
8706   "Make the current article child of the marked (or previous) article.
8707
8708 Note that the re-threading will only work if `gnus-thread-ignore-subject'
8709 is non-nil or the Subject: of both articles are the same."
8710   (interactive)
8711   (unless (not (gnus-group-read-only-p))
8712     (error "The current newsgroup does not support article editing"))
8713   (unless (<= (length gnus-newsgroup-processable) 1)
8714     (error "No more than one article may be marked"))
8715   (save-window-excursion
8716     (let ((gnus-article-buffer " *reparent*")
8717           (current-article (gnus-summary-article-number))
8718           ;; First grab the marked article, otherwise one line up.
8719           (parent-article (if (not (null gnus-newsgroup-processable))
8720                               (car gnus-newsgroup-processable)
8721                             (save-excursion
8722                               (if (eq (forward-line -1) 0)
8723                                   (gnus-summary-article-number)
8724                                 (error "Beginning of summary buffer"))))))
8725       (unless (not (eq current-article parent-article))
8726         (error "An article may not be self-referential"))
8727       (let ((message-id (mail-header-id
8728                          (gnus-summary-article-header parent-article))))
8729         (unless (and message-id (not (equal message-id "")))
8730           (error "No message-id in desired parent"))
8731         (gnus-with-article current-article
8732           (save-restriction
8733             (goto-char (point-min))
8734             (message-narrow-to-head)
8735             (if (re-search-forward "^References: " nil t)
8736                 (progn
8737                   (re-search-forward "^[^ \t]" nil t)
8738                   (forward-line -1)
8739                   (end-of-line)
8740                   (insert " " message-id))
8741               (insert "References: " message-id "\n"))))
8742         (set-buffer gnus-summary-buffer)
8743         (gnus-summary-unmark-all-processable)
8744         (gnus-summary-update-article current-article)
8745         (gnus-summary-rethread-current)
8746         (gnus-message 3 "Article %d is now the child of article %d"
8747                       current-article parent-article)))))
8748
8749 (defun gnus-summary-toggle-threads (&optional arg)
8750   "Toggle showing conversation threads.
8751 If ARG is positive number, turn showing conversation threads on."
8752   (interactive "P")
8753   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
8754     (setq gnus-show-threads
8755           (if (null arg) (not gnus-show-threads)
8756             (> (prefix-numeric-value arg) 0)))
8757     (gnus-summary-prepare)
8758     (gnus-summary-goto-subject current)
8759     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
8760     (gnus-summary-position-point)))
8761
8762 (defun gnus-summary-show-all-threads ()
8763   "Show all threads."
8764   (interactive)
8765   (save-excursion
8766     (let ((buffer-read-only nil))
8767       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
8768   (gnus-summary-position-point))
8769
8770 (defun gnus-summary-show-thread ()
8771   "Show thread subtrees.
8772 Returns nil if no thread was there to be shown."
8773   (interactive)
8774   (let ((buffer-read-only nil)
8775         (orig (point))
8776         ;; first goto end then to beg, to have point at beg after let
8777         (end (progn (end-of-line) (point)))
8778         (beg (progn (beginning-of-line) (point))))
8779     (prog1
8780         ;; Any hidden lines here?
8781         (search-forward "\r" end t)
8782       (subst-char-in-region beg end ?\^M ?\n t)
8783       (goto-char orig)
8784       (gnus-summary-position-point))))
8785
8786 (defun gnus-summary-hide-all-threads ()
8787   "Hide all thread subtrees."
8788   (interactive)
8789   (save-excursion
8790     (goto-char (point-min))
8791     (gnus-summary-hide-thread)
8792     (while (zerop (gnus-summary-next-thread 1 t))
8793       (gnus-summary-hide-thread)))
8794   (gnus-summary-position-point))
8795
8796 (defun gnus-summary-hide-thread ()
8797   "Hide thread subtrees.
8798 Returns nil if no threads were there to be hidden."
8799   (interactive)
8800   (let ((buffer-read-only nil)
8801         (start (point))
8802         (article (gnus-summary-article-number)))
8803     (goto-char start)
8804     ;; Go forward until either the buffer ends or the subthread
8805     ;; ends.
8806     (when (and (not (eobp))
8807                (or (zerop (gnus-summary-next-thread 1 t))
8808                    (goto-char (point-max))))
8809       (prog1
8810           (if (and (> (point) start)
8811                    (search-backward "\n" start t))
8812               (progn
8813                 (subst-char-in-region start (point) ?\n ?\^M)
8814                 (gnus-summary-goto-subject article))
8815             (goto-char start)
8816             nil)))))
8817
8818 (defun gnus-summary-go-to-next-thread (&optional previous)
8819   "Go to the same level (or less) next thread.
8820 If PREVIOUS is non-nil, go to previous thread instead.
8821 Return the article number moved to, or nil if moving was impossible."
8822   (let ((level (gnus-summary-thread-level))
8823         (way (if previous -1 1))
8824         (beg (point)))
8825     (forward-line way)
8826     (while (and (not (eobp))
8827                 (< level (gnus-summary-thread-level)))
8828       (forward-line way))
8829     (if (eobp)
8830         (progn
8831           (goto-char beg)
8832           nil)
8833       (setq beg (point))
8834       (prog1
8835           (gnus-summary-article-number)
8836         (goto-char beg)))))
8837
8838 (defun gnus-summary-next-thread (n &optional silent)
8839   "Go to the same level next N'th thread.
8840 If N is negative, search backward instead.
8841 Returns the difference between N and the number of skips actually
8842 done.
8843
8844 If SILENT, don't output messages."
8845   (interactive "p")
8846   (let ((backward (< n 0))
8847         (n (abs n)))
8848     (while (and (> n 0)
8849                 (gnus-summary-go-to-next-thread backward))
8850       (decf n))
8851     (unless silent
8852       (gnus-summary-position-point))
8853     (when (and (not silent) (/= 0 n))
8854       (gnus-message 7 "No more threads"))
8855     n))
8856
8857 (defun gnus-summary-prev-thread (n)
8858   "Go to the same level previous N'th thread.
8859 Returns the difference between N and the number of skips actually
8860 done."
8861   (interactive "p")
8862   (gnus-summary-next-thread (- n)))
8863
8864 (defun gnus-summary-go-down-thread ()
8865   "Go down one level in the current thread."
8866   (let ((children (gnus-summary-article-children)))
8867     (when children
8868       (gnus-summary-goto-subject (car children)))))
8869
8870 (defun gnus-summary-go-up-thread ()
8871   "Go up one level in the current thread."
8872   (let ((parent (gnus-summary-article-parent)))
8873     (when parent
8874       (gnus-summary-goto-subject parent))))
8875
8876 (defun gnus-summary-down-thread (n)
8877   "Go down thread N steps.
8878 If N is negative, go up instead.
8879 Returns the difference between N and how many steps down that were
8880 taken."
8881   (interactive "p")
8882   (let ((up (< n 0))
8883         (n (abs n)))
8884     (while (and (> n 0)
8885                 (if up (gnus-summary-go-up-thread)
8886                   (gnus-summary-go-down-thread)))
8887       (setq n (1- n)))
8888     (gnus-summary-position-point)
8889     (when (/= 0 n)
8890       (gnus-message 7 "Can't go further"))
8891     n))
8892
8893 (defun gnus-summary-up-thread (n)
8894   "Go up thread N steps.
8895 If N is negative, go up instead.
8896 Returns the difference between N and how many steps down that were
8897 taken."
8898   (interactive "p")
8899   (gnus-summary-down-thread (- n)))
8900
8901 (defun gnus-summary-top-thread ()
8902   "Go to the top of the thread."
8903   (interactive)
8904   (while (gnus-summary-go-up-thread))
8905   (gnus-summary-article-number))
8906
8907 (defun gnus-summary-kill-thread (&optional unmark)
8908   "Mark articles under current thread as read.
8909 If the prefix argument is positive, remove any kinds of marks.
8910 If the prefix argument is negative, tick articles instead."
8911   (interactive "P")
8912   (when unmark
8913     (setq unmark (prefix-numeric-value unmark)))
8914   (let ((articles (gnus-summary-articles-in-thread)))
8915     (save-excursion
8916       ;; Expand the thread.
8917       (gnus-summary-show-thread)
8918       ;; Mark all the articles.
8919       (while articles
8920         (gnus-summary-goto-subject (car articles))
8921         (cond ((null unmark)
8922                (gnus-summary-mark-article-as-read gnus-killed-mark))
8923               ((> unmark 0)
8924                (gnus-summary-mark-article-as-unread gnus-unread-mark))
8925               (t
8926                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
8927         (setq articles (cdr articles))))
8928     ;; Hide killed subtrees.
8929     (and (null unmark)
8930          gnus-thread-hide-killed
8931          (gnus-summary-hide-thread))
8932     ;; If marked as read, go to next unread subject.
8933     (when (null unmark)
8934       ;; Go to next unread subject.
8935       (gnus-summary-next-subject 1 t)))
8936   (gnus-set-mode-line 'summary))
8937
8938 ;; Summary sorting commands
8939
8940 (defun gnus-summary-sort-by-number (&optional reverse)
8941   "Sort the summary buffer by article number.
8942 Argument REVERSE means reverse order."
8943   (interactive "P")
8944   (gnus-summary-sort 'number reverse))
8945
8946 (defun gnus-summary-sort-by-author (&optional reverse)
8947   "Sort the summary buffer by author name alphabetically.
8948 If `case-fold-search' is non-nil, case of letters is ignored.
8949 Argument REVERSE means reverse order."
8950   (interactive "P")
8951   (gnus-summary-sort 'author reverse))
8952
8953 (defun gnus-summary-sort-by-subject (&optional reverse)
8954   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
8955 If `case-fold-search' is non-nil, case of letters is ignored.
8956 Argument REVERSE means reverse order."
8957   (interactive "P")
8958   (gnus-summary-sort 'subject reverse))
8959
8960 (defun gnus-summary-sort-by-date (&optional reverse)
8961   "Sort the summary buffer by date.
8962 Argument REVERSE means reverse order."
8963   (interactive "P")
8964   (gnus-summary-sort 'date reverse))
8965
8966 (defun gnus-summary-sort-by-score (&optional reverse)
8967   "Sort the summary buffer by score.
8968 Argument REVERSE means reverse order."
8969   (interactive "P")
8970   (gnus-summary-sort 'score reverse))
8971
8972 (defun gnus-summary-sort-by-lines (&optional reverse)
8973   "Sort the summary buffer by the number of lines.
8974 Argument REVERSE means reverse order."
8975   (interactive "P")
8976   (gnus-summary-sort 'lines reverse))
8977
8978 (defun gnus-summary-sort-by-chars (&optional reverse)
8979   "Sort the summary buffer by article length.
8980 Argument REVERSE means reverse order."
8981   (interactive "P")
8982   (gnus-summary-sort 'chars reverse))
8983
8984 (defun gnus-summary-sort (predicate reverse)
8985   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
8986   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
8987          (article (intern (format "gnus-article-sort-by-%s" predicate)))
8988          (gnus-thread-sort-functions
8989           (if (not reverse)
8990               thread
8991             `(lambda (t1 t2)
8992                (,thread t2 t1))))
8993          (gnus-sort-gathered-threads-function
8994           gnus-thread-sort-functions)
8995          (gnus-article-sort-functions
8996           (if (not reverse)
8997               article
8998             `(lambda (t1 t2)
8999                (,article t2 t1))))
9000          (buffer-read-only)
9001          (gnus-summary-prepare-hook nil))
9002     ;; We do the sorting by regenerating the threads.
9003     (gnus-summary-prepare)
9004     ;; Hide subthreads if needed.
9005     (when (and gnus-show-threads gnus-thread-hide-subtree)
9006       (gnus-summary-hide-all-threads))))
9007
9008 ;; Summary saving commands.
9009
9010 (defun gnus-summary-save-article (&optional n not-saved)
9011   "Save the current article using the default saver function.
9012 If N is a positive number, save the N next articles.
9013 If N is a negative number, save the N previous articles.
9014 If N is nil and any articles have been marked with the process mark,
9015 save those articles instead.
9016 The variable `gnus-default-article-saver' specifies the saver function."
9017   (interactive "P")
9018   (let* ((articles (gnus-summary-work-articles n))
9019          (save-buffer (save-excursion
9020                         (nnheader-set-temp-buffer " *Gnus Save*")))
9021          (num (length articles))
9022          header file)
9023     (dolist (article articles)
9024       (setq header (gnus-summary-article-header article))
9025       (if (not (vectorp header))
9026           ;; This is a pseudo-article.
9027           (if (assq 'name header)
9028               (gnus-copy-file (cdr (assq 'name header)))
9029             (gnus-message 1 "Article %d is unsaveable" article))
9030         ;; This is a real article.
9031         (save-window-excursion
9032           (gnus-summary-select-article t nil nil article))
9033         (save-excursion
9034           (set-buffer save-buffer)
9035           (erase-buffer)
9036           (insert-buffer-substring gnus-original-article-buffer))
9037         (setq file (gnus-article-save save-buffer file num))
9038         (gnus-summary-remove-process-mark article)
9039         (unless not-saved
9040           (gnus-summary-set-saved-mark article))))
9041     (gnus-kill-buffer save-buffer)
9042     (gnus-summary-position-point)
9043     (gnus-set-mode-line 'summary)
9044     n))
9045
9046 (defun gnus-summary-pipe-output (&optional arg)
9047   "Pipe the current article to a subprocess.
9048 If N is a positive number, pipe the N next articles.
9049 If N is a negative number, pipe the N previous articles.
9050 If N is nil and any articles have been marked with the process mark,
9051 pipe those articles instead."
9052   (interactive "P")
9053   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
9054     (gnus-summary-save-article arg t))
9055   (gnus-configure-windows 'pipe))
9056
9057 (defun gnus-summary-save-article-mail (&optional arg)
9058   "Append the current article to an mail file.
9059 If N is a positive number, save the N next articles.
9060 If N is a negative number, save the N previous articles.
9061 If N is nil and any articles have been marked with the process mark,
9062 save those articles instead."
9063   (interactive "P")
9064   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
9065     (gnus-summary-save-article arg)))
9066
9067 (defun gnus-summary-save-article-rmail (&optional arg)
9068   "Append the current article to an rmail file.
9069 If N is a positive number, save the N next articles.
9070 If N is a negative number, save the N previous articles.
9071 If N is nil and any articles have been marked with the process mark,
9072 save those articles instead."
9073   (interactive "P")
9074   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
9075     (gnus-summary-save-article arg)))
9076
9077 (defun gnus-summary-save-article-file (&optional arg)
9078   "Append the current article to a file.
9079 If N is a positive number, save the N next articles.
9080 If N is a negative number, save the N previous articles.
9081 If N is nil and any articles have been marked with the process mark,
9082 save those articles instead."
9083   (interactive "P")
9084   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
9085     (gnus-summary-save-article arg)))
9086
9087 (defun gnus-summary-write-article-file (&optional arg)
9088   "Write the current article to a file, deleting the previous file.
9089 If N is a positive number, save the N next articles.
9090 If N is a negative number, save the N previous articles.
9091 If N is nil and any articles have been marked with the process mark,
9092 save those articles instead."
9093   (interactive "P")
9094   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
9095     (gnus-summary-save-article arg)))
9096
9097 (defun gnus-summary-save-article-body-file (&optional arg)
9098   "Append the current article body to a file.
9099 If N is a positive number, save the N next articles.
9100 If N is a negative number, save the N previous articles.
9101 If N is nil and any articles have been marked with the process mark,
9102 save those articles instead."
9103   (interactive "P")
9104   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
9105     (gnus-summary-save-article arg)))
9106
9107 (defun gnus-summary-pipe-message (program)
9108   "Pipe the current article through PROGRAM."
9109   (interactive "sProgram: ")
9110   (gnus-summary-select-article)
9111   (let ((mail-header-separator ""))
9112     (gnus-eval-in-buffer-window gnus-article-buffer
9113       (save-restriction
9114         (widen)
9115         (let ((start (window-start))
9116               buffer-read-only)
9117           (message-pipe-buffer-body program)
9118           (set-window-start (get-buffer-window (current-buffer)) start))))))
9119
9120 (defun gnus-get-split-value (methods)
9121   "Return a value based on the split METHODS."
9122   (let (split-name method result match)
9123     (when methods
9124       (save-excursion
9125         (set-buffer gnus-original-article-buffer)
9126         (save-restriction
9127           (nnheader-narrow-to-headers)
9128           (while methods
9129             (goto-char (point-min))
9130             (setq method (pop methods))
9131             (setq match (car method))
9132             (when (cond
9133                    ((stringp match)
9134                     ;; Regular expression.
9135                     (ignore-errors
9136                       (re-search-forward match nil t)))
9137                    ((gnus-functionp match)
9138                     ;; Function.
9139                     (save-restriction
9140                       (widen)
9141                       (setq result (funcall match gnus-newsgroup-name))))
9142                    ((consp match)
9143                     ;; Form.
9144                     (save-restriction
9145                       (widen)
9146                       (setq result (eval match)))))
9147               (setq split-name (append (cdr method) split-name))
9148               (cond ((stringp result)
9149                      (push (expand-file-name
9150                             result gnus-article-save-directory)
9151                            split-name))
9152                     ((consp result)
9153                      (setq split-name (append result split-name)))))))))
9154     (nreverse split-name)))
9155
9156 (defun gnus-valid-move-group-p (group)
9157   (and (boundp group)
9158        (symbol-name group)
9159        (symbol-value group)
9160        (gnus-get-function (gnus-find-method-for-group
9161                            (symbol-name group)) 'request-accept-article t)))
9162
9163 (defun gnus-read-move-group-name (prompt default articles prefix)
9164   "Read a group name."
9165   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
9166          (minibuffer-confirm-incomplete nil) ; XEmacs
9167          (prom
9168           (format "%s %s to:"
9169                   prompt
9170                   (if (> (length articles) 1)
9171                       (format "these %d articles" (length articles))
9172                     "this article")))
9173          (to-newsgroup
9174           (cond
9175            ((null split-name)
9176             (gnus-completing-read default prom
9177                                   gnus-active-hashtb
9178                                   'gnus-valid-move-group-p
9179                                   nil prefix
9180                                   'gnus-group-history))
9181            ((= 1 (length split-name))
9182             (gnus-completing-read (car split-name) prom
9183                                   gnus-active-hashtb
9184                                   'gnus-valid-move-group-p
9185                                   nil nil
9186                                   'gnus-group-history))
9187            (t
9188             (gnus-completing-read nil prom
9189                                   (mapcar (lambda (el) (list el))
9190                                           (nreverse split-name))
9191                                   nil nil nil
9192                                   'gnus-group-history))))
9193          (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
9194     (when to-newsgroup
9195       (if (or (string= to-newsgroup "")
9196               (string= to-newsgroup prefix))
9197           (setq to-newsgroup default))
9198       (unless to-newsgroup
9199         (error "No group name entered"))
9200       (or (gnus-active to-newsgroup)
9201           (gnus-activate-group to-newsgroup nil nil to-method)
9202           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
9203                                      to-newsgroup))
9204               (or (and (gnus-request-create-group to-newsgroup to-method)
9205                        (gnus-activate-group
9206                         to-newsgroup nil nil to-method)
9207                        (gnus-subscribe-group to-newsgroup))
9208                   (error "Couldn't create group %s" to-newsgroup)))
9209           (error "No such group: %s" to-newsgroup)))
9210     to-newsgroup))
9211
9212 (defun gnus-summary-save-parts (type dir n &optional reverse)
9213   "Save parts matching TYPE to DIR.
9214 If REVERSE, save parts that do not match TYPE."
9215   (interactive
9216    (list (read-string "Save parts of type: " 
9217                       (or (car gnus-summary-save-parts-type-history)
9218                           gnus-summary-save-parts-default-mime)
9219                       'gnus-summary-save-parts-type-history)
9220          (setq gnus-summary-save-parts-last-directory
9221                (read-file-name "Save to directory: " 
9222                                gnus-summary-save-parts-last-directory
9223                                nil t))
9224          current-prefix-arg))
9225   (gnus-summary-iterate n
9226     (let ((gnus-display-mime-function nil)
9227           (gnus-inhibit-treatment t))
9228       (gnus-summary-select-article))
9229     (save-excursion
9230       (set-buffer gnus-article-buffer)
9231       (let ((handles (or gnus-article-mime-handles
9232                          (mm-dissect-buffer) (mm-uu-dissect))))
9233         (when handles
9234           (gnus-summary-save-parts-1 type dir handles reverse)
9235           (unless gnus-article-mime-handles ;; Don't destroy this case.
9236             (mm-destroy-parts handles)))))))
9237
9238 (defun gnus-summary-save-parts-1 (type dir handle reverse)
9239   (if (stringp (car handle))
9240       (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
9241               (cdr handle))
9242     (when (if reverse
9243               (not (string-match type (mm-handle-media-type handle)))
9244             (string-match type (mm-handle-media-type handle)))
9245       (let ((file (expand-file-name
9246                    (file-name-nondirectory
9247                     (or
9248                      (mail-content-type-get
9249                       (mm-handle-disposition handle) 'filename)
9250                      (concat gnus-newsgroup-name
9251                              "." (number-to-string
9252                                   (cdr gnus-article-current)))))
9253                    dir)))
9254         (unless (file-exists-p file)
9255           (mm-save-part-to-file handle file))))))
9256
9257 ;; Summary extract commands
9258
9259 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
9260   (let ((buffer-read-only nil)
9261         (article (gnus-summary-article-number))
9262         after-article b e)
9263     (unless (gnus-summary-goto-subject article)
9264       (error "No such article: %d" article))
9265     (gnus-summary-position-point)
9266     ;; If all commands are to be bunched up on one line, we collect
9267     ;; them here.
9268     (unless gnus-view-pseudos-separately
9269       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
9270             files action)
9271         (while ps
9272           (setq action (cdr (assq 'action (car ps))))
9273           (setq files (list (cdr (assq 'name (car ps)))))
9274           (while (and ps (cdr ps)
9275                       (string= (or action "1")
9276                                (or (cdr (assq 'action (cadr ps))) "2")))
9277             (push (cdr (assq 'name (cadr ps))) files)
9278             (setcdr ps (cddr ps)))
9279           (when files
9280             (when (not (string-match "%s" action))
9281               (push " " files))
9282             (push " " files)
9283             (when (assq 'execute (car ps))
9284               (setcdr (assq 'execute (car ps))
9285                       (funcall (if (string-match "%s" action)
9286                                    'format 'concat)
9287                                action
9288                                (mapconcat
9289                                 (lambda (f)
9290                                   (if (equal f " ")
9291                                       f
9292                                     (mm-quote-arg f)))
9293                                 files " ")))))
9294           (setq ps (cdr ps)))))
9295     (if (and gnus-view-pseudos (not not-view))
9296         (while pslist
9297           (when (assq 'execute (car pslist))
9298             (gnus-execute-command (cdr (assq 'execute (car pslist)))
9299                                   (eq gnus-view-pseudos 'not-confirm)))
9300           (setq pslist (cdr pslist)))
9301       (save-excursion
9302         (while pslist
9303           (setq after-article (or (cdr (assq 'article (car pslist)))
9304                                   (gnus-summary-article-number)))
9305           (gnus-summary-goto-subject after-article)
9306           (forward-line 1)
9307           (setq b (point))
9308           (insert "    " (file-name-nondirectory
9309                           (cdr (assq 'name (car pslist))))
9310                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
9311           (setq e (point))
9312           (forward-line -1)             ; back to `b'
9313           (gnus-add-text-properties
9314            b (1- e) (list 'gnus-number gnus-reffed-article-number
9315                           gnus-mouse-face-prop gnus-mouse-face))
9316           (gnus-data-enter
9317            after-article gnus-reffed-article-number
9318            gnus-unread-mark b (car pslist) 0 (- e b))
9319           (push gnus-reffed-article-number gnus-newsgroup-unreads)
9320           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
9321           (setq pslist (cdr pslist)))))))
9322
9323 (defun gnus-pseudos< (p1 p2)
9324   (let ((c1 (cdr (assq 'action p1)))
9325         (c2 (cdr (assq 'action p2))))
9326     (and c1 c2 (string< c1 c2))))
9327
9328 (defun gnus-request-pseudo-article (props)
9329   (cond ((assq 'execute props)
9330          (gnus-execute-command (cdr (assq 'execute props)))))
9331   (let ((gnus-current-article (gnus-summary-article-number)))
9332     (gnus-run-hooks 'gnus-mark-article-hook)))
9333
9334 (defun gnus-execute-command (command &optional automatic)
9335   (save-excursion
9336     (gnus-article-setup-buffer)
9337     (set-buffer gnus-article-buffer)
9338     (setq buffer-read-only nil)
9339     (let ((command (if automatic command
9340                      (read-string "Command: " (cons command 0)))))
9341       (erase-buffer)
9342       (insert "$ " command "\n\n")
9343       (if gnus-view-pseudo-asynchronously
9344           (start-process "gnus-execute" (current-buffer) shell-file-name
9345                          shell-command-switch command)
9346         (call-process shell-file-name nil t nil
9347                       shell-command-switch command)))))
9348
9349 ;; Summary kill commands.
9350
9351 (defun gnus-summary-edit-global-kill (article)
9352   "Edit the \"global\" kill file."
9353   (interactive (list (gnus-summary-article-number)))
9354   (gnus-group-edit-global-kill article))
9355
9356 (defun gnus-summary-edit-local-kill ()
9357   "Edit a local kill file applied to the current newsgroup."
9358   (interactive)
9359   (setq gnus-current-headers (gnus-summary-article-header))
9360   (gnus-group-edit-local-kill
9361    (gnus-summary-article-number) gnus-newsgroup-name))
9362
9363 ;;; Header reading.
9364
9365 (defun gnus-read-header (id &optional header)
9366   "Read the headers of article ID and enter them into the Gnus system."
9367   (let ((group gnus-newsgroup-name)
9368         (gnus-override-method
9369          (or
9370           gnus-override-method
9371           (and (gnus-news-group-p gnus-newsgroup-name)
9372                (car (gnus-refer-article-methods)))))
9373         where)
9374     ;; First we check to see whether the header in question is already
9375     ;; fetched.
9376     (if (stringp id)
9377         ;; This is a Message-ID.
9378         (setq header (or header (gnus-id-to-header id)))
9379       ;; This is an article number.
9380       (setq header (or header (gnus-summary-article-header id))))
9381     (if (and header
9382              (not (gnus-summary-article-sparse-p (mail-header-number header))))
9383         ;; We have found the header.
9384         header
9385       ;; If this is a sparse article, we have to nix out its
9386       ;; previous entry in the thread hashtb.
9387       (when (and header
9388                  (gnus-summary-article-sparse-p (mail-header-number header)))
9389         (let* ((parent (gnus-parent-id (mail-header-references header)))
9390                (thread (and parent (gnus-id-to-thread parent))))
9391           (when thread
9392             (delq (assq header thread) thread))))
9393       ;; We have to really fetch the header to this article.
9394       (save-excursion
9395         (set-buffer nntp-server-buffer)
9396         (when (setq where (gnus-request-head id group))
9397           (nnheader-fold-continuation-lines)
9398           (goto-char (point-max))
9399           (insert ".\n")
9400           (goto-char (point-min))
9401           (insert "211 ")
9402           (princ (cond
9403                   ((numberp id) id)
9404                   ((cdr where) (cdr where))
9405                   (header (mail-header-number header))
9406                   (t gnus-reffed-article-number))
9407                  (current-buffer))
9408           (insert " Article retrieved.\n"))
9409         (if (or (not where)
9410                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
9411             ()                          ; Malformed head.
9412           (unless (gnus-summary-article-sparse-p (mail-header-number header))
9413             (when (and (stringp id)
9414                        (not (string= (gnus-group-real-name group)
9415                                      (car where))))
9416               ;; If we fetched by Message-ID and the article came
9417               ;; from a different group, we fudge some bogus article
9418               ;; numbers for this article.
9419               (mail-header-set-number header gnus-reffed-article-number))
9420             (save-excursion
9421               (set-buffer gnus-summary-buffer)
9422               (decf gnus-reffed-article-number)
9423               (gnus-remove-header (mail-header-number header))
9424               (push header gnus-newsgroup-headers)
9425               (setq gnus-current-headers header)
9426               (push (mail-header-number header) gnus-newsgroup-limit)))
9427           header)))))
9428
9429 (defun gnus-remove-header (number)
9430   "Remove header NUMBER from `gnus-newsgroup-headers'."
9431   (if (and gnus-newsgroup-headers
9432            (= number (mail-header-number (car gnus-newsgroup-headers))))
9433       (pop gnus-newsgroup-headers)
9434     (let ((headers gnus-newsgroup-headers))
9435       (while (and (cdr headers)
9436                   (not (= number (mail-header-number (cadr headers)))))
9437         (pop headers))
9438       (when (cdr headers)
9439         (setcdr headers (cddr headers))))))
9440
9441 ;;;
9442 ;;; summary highlights
9443 ;;;
9444
9445 (defun gnus-highlight-selected-summary ()
9446   "Highlight selected article in summary buffer."
9447   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
9448   (when gnus-summary-selected-face
9449     (save-excursion
9450       (let* ((beg (progn (beginning-of-line) (point)))
9451              (end (progn (end-of-line) (point)))
9452              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
9453              (from (if (get-text-property beg gnus-mouse-face-prop)
9454                        beg
9455                      (or (next-single-property-change
9456                           beg gnus-mouse-face-prop nil end)
9457                          beg)))
9458              (to
9459               (if (= from end)
9460                   (- from 2)
9461                 (or (next-single-property-change
9462                      from gnus-mouse-face-prop nil end)
9463                     end))))
9464         ;; If no mouse-face prop on line we will have to = from = end,
9465         ;; so we highlight the entire line instead.
9466         (when (= (+ to 2) from)
9467           (setq from beg)
9468           (setq to end))
9469         (if gnus-newsgroup-selected-overlay
9470             ;; Move old overlay.
9471             (gnus-move-overlay
9472              gnus-newsgroup-selected-overlay from to (current-buffer))
9473           ;; Create new overlay.
9474           (gnus-overlay-put
9475            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
9476            'face gnus-summary-selected-face))))))
9477
9478 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>.
9479 (defun gnus-summary-highlight-line ()
9480   "Highlight current line according to `gnus-summary-highlight'."
9481   (let* ((list gnus-summary-highlight)
9482          (p (point))
9483          (end (progn (end-of-line) (point)))
9484          ;; now find out where the line starts and leave point there.
9485          (beg (progn (beginning-of-line) (point)))
9486          (article (gnus-summary-article-number))
9487          (score (or (cdr (assq (or article gnus-current-article)
9488                                gnus-newsgroup-scored))
9489                     gnus-summary-default-score 0))
9490          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
9491          (inhibit-read-only t))
9492     ;; Eval the cars of the lists until we find a match.
9493     (let ((default gnus-summary-default-score))
9494       (while (and list
9495                   (not (eval (caar list))))
9496         (setq list (cdr list))))
9497     (let ((face (cdar list)))
9498       (unless (eq face (get-text-property beg 'face))
9499         (gnus-put-text-property-excluding-characters-with-faces
9500          beg end 'face
9501          (setq face (if (boundp face) (symbol-value face) face)))
9502         (when gnus-summary-highlight-line-function
9503           (funcall gnus-summary-highlight-line-function article face))))
9504     (goto-char p)))
9505
9506 (defun gnus-update-read-articles (group unread &optional compute)
9507   "Update the list of read articles in GROUP."
9508   (let* ((active (or gnus-newsgroup-active (gnus-active group)))
9509          (entry (gnus-gethash group gnus-newsrc-hashtb))
9510          (info (nth 2 entry))
9511          (prev 1)
9512          (unread (sort (copy-sequence unread) '<))
9513          read)
9514     (if (or (not info) (not active))
9515         ;; There is no info on this group if it was, in fact,
9516         ;; killed.  Gnus stores no information on killed groups, so
9517         ;; there's nothing to be done.
9518         ;; One could store the information somewhere temporarily,
9519         ;; perhaps...  Hmmm...
9520         ()
9521       ;; Remove any negative articles numbers.
9522       (while (and unread (< (car unread) 0))
9523         (setq unread (cdr unread)))
9524       ;; Remove any expired article numbers
9525       (while (and unread (< (car unread) (car active)))
9526         (setq unread (cdr unread)))
9527       ;; Compute the ranges of read articles by looking at the list of
9528       ;; unread articles.
9529       (while unread
9530         (when (/= (car unread) prev)
9531           (push (if (= prev (1- (car unread))) prev
9532                   (cons prev (1- (car unread))))
9533                 read))
9534         (setq prev (1+ (car unread)))
9535         (setq unread (cdr unread)))
9536       (when (<= prev (cdr active))
9537         (push (cons prev (cdr active)) read))
9538       (setq read (if (> (length read) 1) (nreverse read) read))
9539       (if compute
9540           read
9541         (save-excursion
9542           (let (setmarkundo)
9543             ;; Propagate the read marks to the backend.
9544             (when (gnus-check-backend-function 'request-set-mark group)
9545               (let ((del (gnus-remove-from-range (gnus-info-read info) read))
9546                     (add (gnus-remove-from-range read (gnus-info-read info))))
9547                 (when (or add del)
9548                   (unless (gnus-check-group group)
9549                     (error "Can't open server for %s" group))
9550                   (gnus-request-set-mark
9551                    group (delq nil (list (if add (list add 'add '(read)))
9552                                          (if del (list del 'del '(read))))))
9553                   (setq setmarkundo
9554                         `(gnus-request-set-mark
9555                           ,group
9556                           ',(delq nil (list
9557                                        (if del (list del 'add '(read)))
9558                                        (if add (list add 'del '(read))))))))))
9559             (set-buffer gnus-group-buffer)
9560             (gnus-undo-register
9561               `(progn
9562                  (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
9563                  (gnus-info-set-read ',info ',(gnus-info-read info))
9564                  (gnus-get-unread-articles-in-group ',info 
9565                                                     (gnus-active ,group))
9566                  (gnus-group-update-group ,group t)
9567                  ,setmarkundo))))
9568         ;; Enter this list into the group info.
9569         (gnus-info-set-read info read)
9570         ;; Set the number of unread articles in gnus-newsrc-hashtb.
9571         (gnus-get-unread-articles-in-group info (gnus-active group))
9572         t))))
9573
9574 (defun gnus-offer-save-summaries ()
9575   "Offer to save all active summary buffers."
9576   (save-excursion
9577     (let ((buflist (buffer-list))
9578           buffers bufname)
9579       ;; Go through all buffers and find all summaries.
9580       (while buflist
9581         (and (setq bufname (buffer-name (car buflist)))
9582              (string-match "Summary" bufname)
9583              (save-excursion
9584                (set-buffer bufname)
9585                ;; We check that this is, indeed, a summary buffer.
9586                (and (eq major-mode 'gnus-summary-mode)
9587                     ;; Also make sure this isn't bogus.
9588                     gnus-newsgroup-prepared
9589                     ;; Also make sure that this isn't a dead summary buffer.
9590                     (not gnus-dead-summary-mode)))
9591              (push bufname buffers))
9592         (setq buflist (cdr buflist)))
9593       ;; Go through all these summary buffers and offer to save them.
9594       (when buffers
9595         (map-y-or-n-p
9596          "Update summary buffer %s? "
9597          (lambda (buf)
9598            (switch-to-buffer buf)
9599            (gnus-summary-exit))
9600          buffers)))))
9601
9602 (defun gnus-summary-setup-default-charset ()
9603   "Setup newsgroup default charset."
9604   (if (equal gnus-newsgroup-name "nndraft:drafts")
9605       (setq gnus-newsgroup-charset nil)
9606     (let* ((name (and gnus-newsgroup-name
9607                       (gnus-group-real-name gnus-newsgroup-name)))
9608            (ignored-charsets
9609             (or gnus-newsgroup-ephemeral-ignored-charsets
9610                 (append
9611                  (and gnus-newsgroup-name
9612                       (or (gnus-group-find-parameter gnus-newsgroup-name
9613                                                      'ignored-charsets t)
9614                           (let ((alist gnus-group-ignored-charsets-alist)
9615                                 elem (charsets nil))
9616                             (while (setq elem (pop alist))
9617                               (when (and name
9618                                          (string-match (car elem) name))
9619                                 (setq alist nil
9620                                       charsets (cdr elem))))
9621                             charsets)))
9622                  gnus-newsgroup-ignored-charsets))))
9623       (setq gnus-newsgroup-charset
9624             (or gnus-newsgroup-ephemeral-charset
9625                 (and gnus-newsgroup-name
9626                      (or (gnus-group-find-parameter gnus-newsgroup-name 'charset)
9627                          (let ((alist gnus-group-charset-alist)
9628                                elem charset)
9629                            (while (setq elem (pop alist))
9630                              (when (and name
9631                                         (string-match (car elem) name))
9632                                (setq alist nil
9633                                      charset (cadr elem))))
9634                            charset)))
9635                 gnus-default-charset))
9636       (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
9637            ignored-charsets))))
9638
9639 ;;;
9640 ;;; Mime Commands
9641 ;;;
9642
9643 (defun gnus-summary-display-buttonized (&optional show-all-parts)
9644   "Display the current article buffer fully MIME-buttonized.
9645 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
9646 treated as multipart/mixed."
9647   (interactive "P")
9648   (require 'gnus-art)
9649   (let ((gnus-unbuttonized-mime-types nil)
9650         (gnus-mime-display-multipart-as-mixed show-all-parts))
9651     (gnus-summary-show-article)))
9652
9653 (defun gnus-summary-repair-multipart (article)
9654   "Add a Content-Type header to a multipart article without one."
9655   (interactive (list (gnus-summary-article-number)))
9656   (gnus-with-article article
9657     (message-narrow-to-head)
9658     (goto-char (point-max))
9659     (widen)
9660     (when (search-forward "\n--" nil t)
9661       (let ((separator (buffer-substring (point) (gnus-point-at-eol))))
9662         (message-narrow-to-head)
9663         (message-remove-header "Mime-Version")
9664         (message-remove-header "Content-Type")
9665         (goto-char (point-max))
9666         (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
9667                         separator))
9668         (insert "Mime-Version: 1.0\n")
9669         (widen))))
9670   (let (gnus-mark-article-hook)
9671     (gnus-summary-select-article t t nil article)))
9672
9673 (defun gnus-summary-toggle-display-buttonized ()
9674   "Toggle the buttonizing of the article buffer."
9675   (interactive)
9676   (require 'gnus-art)
9677   (if (setq gnus-inhibit-mime-unbuttonizing
9678             (not gnus-inhibit-mime-unbuttonizing))
9679       (let ((gnus-unbuttonized-mime-types nil))
9680         (gnus-summary-show-article))
9681     (gnus-summary-show-article)))
9682
9683 ;;;
9684 ;;; Generic summary marking commands
9685 ;;;
9686
9687 (defvar gnus-summary-marking-alist
9688   '((read gnus-del-mark "d")
9689     (unread gnus-unread-mark "u")
9690     (ticked gnus-ticked-mark "!")
9691     (dormant gnus-dormant-mark "?")
9692     (expirable gnus-expirable-mark "e"))
9693   "An alist of names/marks/keystrokes.")
9694
9695 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
9696 (defvar gnus-summary-mark-map)
9697
9698 (defun gnus-summary-make-all-marking-commands ()
9699   (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
9700   (dolist (elem gnus-summary-marking-alist)
9701     (apply 'gnus-summary-make-marking-command elem)))
9702
9703 (defun gnus-summary-make-marking-command (name mark keystroke)
9704   (let ((map (make-sparse-keymap)))
9705     (define-key gnus-summary-generic-mark-map keystroke map)
9706     (dolist (lway `((next "next" next nil "n")
9707                     (next-unread "next unread" next t "N")
9708                     (prev "previous" prev nil "p")
9709                     (prev-unread "previous unread" prev t "P")
9710                     (nomove "" nil nil ,keystroke)))
9711       (let ((func (gnus-summary-make-marking-command-1
9712                    mark (car lway) lway name)))
9713         (setq func (eval func))
9714         (define-key map (nth 4 lway) func)))))
9715       
9716 (defun gnus-summary-make-marking-command-1 (mark way lway name)
9717   `(defun ,(intern
9718             (format "gnus-summary-put-mark-as-%s%s"
9719                     name (if (eq way 'nomove)
9720                              ""
9721                            (concat "-" (symbol-name way)))))
9722      (n)
9723      ,(format
9724        "Mark the current article as %s%s.
9725 If N, the prefix, then repeat N times.
9726 If N is negative, move in reverse order.
9727 The difference between N and the actual number of articles marked is
9728 returned."
9729        name (cadr lway))
9730      (interactive "p")
9731      (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
9732     
9733 (defun gnus-summary-generic-mark (n mark move unread)
9734   "Mark N articles with MARK."
9735   (unless (eq major-mode 'gnus-summary-mode)
9736     (error "This command can only be used in the summary buffer"))
9737   (gnus-summary-show-thread)
9738   (let ((nummove
9739          (cond
9740           ((eq move 'next) 1)
9741           ((eq move 'prev) -1)
9742           (t 0))))
9743     (if (zerop nummove)
9744         (setq n 1)
9745       (when (< n 0)
9746         (setq n (abs n)
9747               nummove (* -1 nummove))))
9748     (while (and (> n 0)
9749                 (gnus-summary-mark-article nil mark)
9750                 (zerop (gnus-summary-next-subject nummove unread t)))
9751       (setq n (1- n)))
9752     (when (/= 0 n)
9753       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9754     (gnus-summary-recenter)
9755     (gnus-summary-position-point)
9756     (gnus-set-mode-line 'summary)
9757     n))
9758
9759 (gnus-summary-make-all-marking-commands)
9760
9761 (gnus-ems-redefine)
9762
9763 (provide 'gnus-sum)
9764
9765 (run-hooks 'gnus-sum-load-hook)
9766
9767 ;;; gnus-sum.el ends here