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