1e2ab96a5e85a43decde7f2908631fe62780d850
[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-excluding-characters-with-faces
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-excluding-characters-with-faces
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       (gnus-summary-position-point)
5446       article)))
5447
5448 ;; Walking around summary lines with displaying articles.
5449
5450 (defun gnus-summary-expand-window (&optional arg)
5451   "Make the summary buffer take up the entire Emacs frame.
5452 Given a prefix, will force an `article' buffer configuration."
5453   (interactive "P")
5454   (if arg
5455       (gnus-configure-windows 'article 'force)
5456     (gnus-configure-windows 'summary 'force)))
5457
5458 (defun gnus-summary-display-article (article &optional all-header)
5459   "Display ARTICLE in article buffer."
5460   (gnus-set-global-variables)
5461   (if (null article)
5462       nil
5463     (prog1
5464         (if gnus-summary-display-article-function
5465             (funcall gnus-summary-display-article-function article all-header)
5466           (gnus-article-prepare article all-header))
5467       (gnus-run-hooks 'gnus-select-article-hook)
5468       (when (and gnus-current-article
5469                  (not (zerop gnus-current-article)))
5470         (gnus-summary-goto-subject gnus-current-article))
5471       (gnus-summary-recenter)
5472       (when (and gnus-use-trees gnus-show-threads)
5473         (gnus-possibly-generate-tree article)
5474         (gnus-highlight-selected-tree article))
5475       ;; Successfully display article.
5476       (gnus-article-set-window-start
5477        (cdr (assq article gnus-newsgroup-bookmarks))))))
5478
5479 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
5480   "Select the current article.
5481 If ALL-HEADERS is non-nil, show all header fields.  If FORCE is
5482 non-nil, the article will be re-fetched even if it already present in
5483 the article buffer.  If PSEUDO is non-nil, pseudo-articles will also
5484 be displayed."
5485   ;; Make sure we are in the summary buffer to work around bbdb bug.
5486   (unless (eq major-mode 'gnus-summary-mode)
5487     (set-buffer gnus-summary-buffer))
5488   (let ((article (or article (gnus-summary-article-number)))
5489         (all-headers (not (not all-headers))) ;Must be T or NIL.
5490         gnus-summary-display-article-function
5491         did)
5492     (and (not pseudo)
5493          (gnus-summary-article-pseudo-p article)
5494          (error "This is a pseudo-article"))
5495     (prog1
5496         (save-excursion
5497           (set-buffer gnus-summary-buffer)
5498           (if (or (and gnus-single-article-buffer
5499                        (or (null gnus-current-article)
5500                            (null gnus-article-current)
5501                            (null (get-buffer gnus-article-buffer))
5502                            (not (eq article (cdr gnus-article-current)))
5503                            (not (equal (car gnus-article-current)
5504                                        gnus-newsgroup-name))))
5505                   (and (not gnus-single-article-buffer)
5506                        (or (null gnus-current-article)
5507                            (not (eq gnus-current-article article))))
5508                   force)
5509               ;; The requested article is different from the current article.
5510               (prog1
5511                   (gnus-summary-display-article article all-headers)
5512                 (setq did article))
5513             (when (or all-headers gnus-show-all-headers)
5514               (gnus-article-show-all-headers))
5515             'old))
5516       (when did
5517         (gnus-article-set-window-start
5518          (cdr (assq article gnus-newsgroup-bookmarks)))))))
5519
5520 (defun gnus-summary-set-current-mark (&optional current-mark)
5521   "Obsolete function."
5522   nil)
5523
5524 (defun gnus-summary-next-article (&optional unread subject backward push)
5525   "Select the next article.
5526 If UNREAD, only unread articles are selected.
5527 If SUBJECT, only articles with SUBJECT are selected.
5528 If BACKWARD, the previous article is selected instead of the next."
5529   (interactive "P")
5530   (cond
5531    ;; Is there such an article?
5532    ((and (gnus-summary-search-forward unread subject backward)
5533          (or (gnus-summary-display-article (gnus-summary-article-number))
5534              (eq (gnus-summary-article-mark) gnus-canceled-mark)))
5535     (gnus-summary-position-point))
5536    ;; If not, we try the first unread, if that is wanted.
5537    ((and subject
5538          gnus-auto-select-same
5539          (gnus-summary-first-unread-article))
5540     (gnus-summary-position-point)
5541     (gnus-message 6 "Wrapped"))
5542    ;; Try to get next/previous article not displayed in this group.
5543    ((and gnus-auto-extend-newsgroup
5544          (not unread) (not subject))
5545     (gnus-summary-goto-article
5546      (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
5547      nil (count-lines (point-min) (point))))
5548    ;; Go to next/previous group.
5549    (t
5550     (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
5551       (gnus-summary-jump-to-group gnus-newsgroup-name))
5552     (let ((cmd last-command-char)
5553           (point
5554            (save-excursion
5555              (set-buffer gnus-group-buffer)
5556              (point)))
5557           (group
5558            (if (eq gnus-keep-same-level 'best)
5559                (gnus-summary-best-group gnus-newsgroup-name)
5560              (gnus-summary-search-group backward gnus-keep-same-level))))
5561       ;; For some reason, the group window gets selected.  We change
5562       ;; it back.
5563       (select-window (get-buffer-window (current-buffer)))
5564       ;; Select next unread newsgroup automagically.
5565       (cond
5566        ((or (not gnus-auto-select-next)
5567             (not cmd))
5568         (gnus-message 7 "No more%s articles" (if unread " unread" "")))
5569        ((or (eq gnus-auto-select-next 'quietly)
5570             (and (eq gnus-auto-select-next 'slightly-quietly)
5571                  push)
5572             (and (eq gnus-auto-select-next 'almost-quietly)
5573                  (gnus-summary-last-article-p)))
5574         ;; Select quietly.
5575         (if (gnus-ephemeral-group-p gnus-newsgroup-name)
5576             (gnus-summary-exit)
5577           (gnus-message 7 "No more%s articles (%s)..."
5578                         (if unread " unread" "")
5579                         (if group (concat "selecting " group)
5580                           "exiting"))
5581           (gnus-summary-next-group nil group backward)))
5582        (t
5583         (when (gnus-key-press-event-p last-input-event)
5584           (gnus-summary-walk-group-buffer
5585            gnus-newsgroup-name cmd unread backward point))))))))
5586
5587 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
5588   (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
5589                       (?\C-p (gnus-group-prev-unread-group 1))))
5590         (cursor-in-echo-area t)
5591         keve key group ended)
5592     (save-excursion
5593       (set-buffer gnus-group-buffer)
5594       (goto-char start)
5595       (setq group
5596             (if (eq gnus-keep-same-level 'best)
5597                 (gnus-summary-best-group gnus-newsgroup-name)
5598               (gnus-summary-search-group backward gnus-keep-same-level))))
5599     (while (not ended)
5600       (gnus-message
5601        5 "No more%s articles%s" (if unread " unread" "")
5602        (if (and group
5603                 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
5604            (format " (Type %s for %s [%s])"
5605                    (single-key-description cmd) group
5606                    (car (gnus-gethash group gnus-newsrc-hashtb)))
5607          (format " (Type %s to exit %s)"
5608                  (single-key-description cmd)
5609                  gnus-newsgroup-name)))
5610       ;; Confirm auto selection.
5611       (setq key (car (setq keve (gnus-read-event-char))))
5612       (setq ended t)
5613       (cond
5614        ((assq key keystrokes)
5615         (let ((obuf (current-buffer)))
5616           (switch-to-buffer gnus-group-buffer)
5617           (when group
5618             (gnus-group-jump-to-group group))
5619           (eval (cadr (assq key keystrokes)))
5620           (setq group (gnus-group-group-name))
5621           (switch-to-buffer obuf))
5622         (setq ended nil))
5623        ((equal key cmd)
5624         (if (or (not group)
5625                 (gnus-ephemeral-group-p gnus-newsgroup-name))
5626             (gnus-summary-exit)
5627           (gnus-summary-next-group nil group backward)))
5628        (t
5629         (push (cdr keve) unread-command-events))))))
5630
5631 (defun gnus-summary-next-unread-article ()
5632   "Select unread article after current one."
5633   (interactive)
5634   (gnus-summary-next-article
5635    (or (not (eq gnus-summary-goto-unread 'never))
5636        (gnus-summary-last-article-p (gnus-summary-article-number)))
5637    (and gnus-auto-select-same
5638         (gnus-summary-article-subject))))
5639
5640 (defun gnus-summary-prev-article (&optional unread subject)
5641   "Select the article after the current one.
5642 If UNREAD is non-nil, only unread articles are selected."
5643   (interactive "P")
5644   (gnus-summary-next-article unread subject t))
5645
5646 (defun gnus-summary-prev-unread-article ()
5647   "Select unread article before current one."
5648   (interactive)
5649   (gnus-summary-prev-article
5650    (or (not (eq gnus-summary-goto-unread 'never))
5651        (gnus-summary-first-article-p (gnus-summary-article-number)))
5652    (and gnus-auto-select-same
5653         (gnus-summary-article-subject))))
5654
5655 (defun gnus-summary-next-page (&optional lines circular)
5656   "Show next page of the selected article.
5657 If at the end of the current article, select the next article.
5658 LINES says how many lines should be scrolled up.
5659
5660 If CIRCULAR is non-nil, go to the start of the article instead of
5661 selecting the next article when reaching the end of the current
5662 article."
5663   (interactive "P")
5664   (setq gnus-summary-buffer (current-buffer))
5665   (gnus-set-global-variables)
5666   (let ((article (gnus-summary-article-number))
5667         (article-window (get-buffer-window gnus-article-buffer t))
5668         endp)
5669     ;; If the buffer is empty, we have no article.
5670     (unless article
5671       (error "No article to select"))
5672     (gnus-configure-windows 'article)
5673     (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
5674         (if (and (eq gnus-summary-goto-unread 'never)
5675                  (not (gnus-summary-last-article-p article)))
5676             (gnus-summary-next-article)
5677           (gnus-summary-next-unread-article))
5678       (if (or (null gnus-current-article)
5679               (null gnus-article-current)
5680               (/= article (cdr gnus-article-current))
5681               (not (equal (car gnus-article-current) gnus-newsgroup-name)))
5682           ;; Selected subject is different from current article's.
5683           (gnus-summary-display-article article)
5684         (when article-window
5685           (gnus-eval-in-buffer-window gnus-article-buffer
5686             (setq endp (gnus-article-next-page lines)))
5687           (when endp
5688             (cond (circular
5689                    (gnus-summary-beginning-of-article))
5690                   (lines
5691                    (gnus-message 3 "End of message"))
5692                   ((null lines)
5693                    (if (and (eq gnus-summary-goto-unread 'never)
5694                             (not (gnus-summary-last-article-p article)))
5695                        (gnus-summary-next-article)
5696                      (gnus-summary-next-unread-article))))))))
5697     (gnus-summary-recenter)
5698     (gnus-summary-position-point)))
5699
5700 (defun gnus-summary-prev-page (&optional lines move)
5701   "Show previous page of selected article.
5702 Argument LINES specifies lines to be scrolled down.
5703 If MOVE, move to the previous unread article if point is at
5704 the beginning of the buffer."
5705   (interactive "P")
5706   (let ((article (gnus-summary-article-number))
5707         (article-window (get-buffer-window gnus-article-buffer t))
5708         endp)
5709     (gnus-configure-windows 'article)
5710     (if (or (null gnus-current-article)
5711             (null gnus-article-current)
5712             (/= article (cdr gnus-article-current))
5713             (not (equal (car gnus-article-current) gnus-newsgroup-name)))
5714         ;; Selected subject is different from current article's.
5715         (gnus-summary-display-article article)
5716       (gnus-summary-recenter)
5717       (when article-window
5718         (gnus-eval-in-buffer-window gnus-article-buffer
5719           (setq endp (gnus-article-prev-page lines)))
5720         (when (and move endp)
5721           (cond (lines
5722                  (gnus-message 3 "Beginning of message"))
5723                 ((null lines)
5724                  (if (and (eq gnus-summary-goto-unread 'never)
5725                           (not (gnus-summary-first-article-p article)))
5726                      (gnus-summary-prev-article)
5727                    (gnus-summary-prev-unread-article))))))))
5728   (gnus-summary-position-point))
5729
5730 (defun gnus-summary-prev-page-or-article (&optional lines)
5731   "Show previous page of selected article.
5732 Argument LINES specifies lines to be scrolled down.
5733 If at the beginning of the article, go to the next article."
5734   (interactive "P")
5735   (gnus-summary-prev-page lines t))
5736
5737 (defun gnus-summary-scroll-up (lines)
5738   "Scroll up (or down) one line current article.
5739 Argument LINES specifies lines to be scrolled up (or down if negative)."
5740   (interactive "p")
5741   (gnus-configure-windows 'article)
5742   (gnus-summary-show-thread)
5743   (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
5744     (gnus-eval-in-buffer-window gnus-article-buffer
5745       (cond ((> lines 0)
5746              (when (gnus-article-next-page lines)
5747                (gnus-message 3 "End of message")))
5748             ((< lines 0)
5749              (gnus-article-prev-page (- lines))))))
5750   (gnus-summary-recenter)
5751   (gnus-summary-position-point))
5752
5753 (defun gnus-summary-next-same-subject ()
5754   "Select next article which has the same subject as current one."
5755   (interactive)
5756   (gnus-summary-next-article nil (gnus-summary-article-subject)))
5757
5758 (defun gnus-summary-prev-same-subject ()
5759   "Select previous article which has the same subject as current one."
5760   (interactive)
5761   (gnus-summary-prev-article nil (gnus-summary-article-subject)))
5762
5763 (defun gnus-summary-next-unread-same-subject ()
5764   "Select next unread article which has the same subject as current one."
5765   (interactive)
5766   (gnus-summary-next-article t (gnus-summary-article-subject)))
5767
5768 (defun gnus-summary-prev-unread-same-subject ()
5769   "Select previous unread article which has the same subject as current one."
5770   (interactive)
5771   (gnus-summary-prev-article t (gnus-summary-article-subject)))
5772
5773 (defun gnus-summary-first-unread-article ()
5774   "Select the first unread article.
5775 Return nil if there are no unread articles."
5776   (interactive)
5777   (prog1
5778       (when (gnus-summary-first-subject t)
5779         (gnus-summary-show-thread)
5780         (gnus-summary-first-subject t)
5781         (gnus-summary-display-article (gnus-summary-article-number)))
5782     (gnus-summary-position-point)))
5783
5784 (defun gnus-summary-first-article ()
5785   "Select the first article.
5786 Return nil if there are no articles."
5787   (interactive)
5788   (prog1
5789       (when (gnus-summary-first-subject)
5790       (gnus-summary-show-thread)
5791       (gnus-summary-first-subject)
5792       (gnus-summary-display-article (gnus-summary-article-number)))
5793     (gnus-summary-position-point)))
5794
5795 (defun gnus-summary-best-unread-article ()
5796   "Select the unread article with the highest score."
5797   (interactive)
5798   (let ((best -1000000)
5799         (data gnus-newsgroup-data)
5800         article score)
5801     (while data
5802       (and (gnus-data-unread-p (car data))
5803            (> (setq score
5804                     (gnus-summary-article-score (gnus-data-number (car data))))
5805               best)
5806            (setq best score
5807                  article (gnus-data-number (car data))))
5808       (setq data (cdr data)))
5809     (prog1
5810         (if article
5811             (gnus-summary-goto-article article)
5812           (error "No unread articles"))
5813       (gnus-summary-position-point))))
5814
5815 (defun gnus-summary-last-subject ()
5816   "Go to the last displayed subject line in the group."
5817   (let ((article (gnus-data-number (car (gnus-data-list t)))))
5818     (when article
5819       (gnus-summary-goto-subject article))))
5820
5821 (defun gnus-summary-goto-article (article &optional all-headers force)
5822   "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
5823 If ALL-HEADERS is non-nil, no header lines are hidden.
5824 If FORCE, go to the article even if it isn't displayed.  If FORCE
5825 is a number, it is the line the article is to be displayed on."
5826   (interactive
5827    (list
5828     (completing-read
5829      "Article number or Message-ID: "
5830      (mapcar (lambda (number) (list (int-to-string number)))
5831              gnus-newsgroup-limit))
5832     current-prefix-arg
5833     t))
5834   (prog1
5835       (if (and (stringp article)
5836                (string-match "@" article))
5837           (gnus-summary-refer-article article)
5838         (when (stringp article)
5839           (setq article (string-to-number article)))
5840         (if (gnus-summary-goto-subject article force)
5841             (gnus-summary-display-article article all-headers)
5842           (gnus-message 4 "Couldn't go to article %s" article) nil))
5843     (gnus-summary-position-point)))
5844
5845 (defun gnus-summary-goto-last-article ()
5846   "Go to the previously read article."
5847   (interactive)
5848   (prog1
5849       (when gnus-last-article
5850         (gnus-summary-goto-article gnus-last-article nil t))
5851     (gnus-summary-position-point)))
5852
5853 (defun gnus-summary-pop-article (number)
5854   "Pop one article off the history and go to the previous.
5855 NUMBER articles will be popped off."
5856   (interactive "p")
5857   (let (to)
5858     (setq gnus-newsgroup-history
5859           (cdr (setq to (nthcdr number gnus-newsgroup-history))))
5860     (if to
5861         (gnus-summary-goto-article (car to) nil t)
5862       (error "Article history empty")))
5863   (gnus-summary-position-point))
5864
5865 ;; Summary commands and functions for limiting the summary buffer.
5866
5867 (defun gnus-summary-limit-to-articles (n)
5868   "Limit the summary buffer to the next N articles.
5869 If not given a prefix, use the process marked articles instead."
5870   (interactive "P")
5871   (prog1
5872       (let ((articles (gnus-summary-work-articles n)))
5873         (setq gnus-newsgroup-processable nil)
5874         (gnus-summary-limit articles))
5875     (gnus-summary-position-point)))
5876
5877 (defun gnus-summary-pop-limit (&optional total)
5878   "Restore the previous limit.
5879 If given a prefix, remove all limits."
5880   (interactive "P")
5881   (when total
5882     (setq gnus-newsgroup-limits
5883           (list (mapcar (lambda (h) (mail-header-number h))
5884                         gnus-newsgroup-headers))))
5885   (unless gnus-newsgroup-limits
5886     (error "No limit to pop"))
5887   (prog1
5888       (gnus-summary-limit nil 'pop)
5889     (gnus-summary-position-point)))
5890
5891 (defun gnus-summary-limit-to-subject (subject &optional header)
5892   "Limit the summary buffer to articles that have subjects that match a regexp."
5893   (interactive "sLimit to subject (regexp): ")
5894   (unless header
5895     (setq header "subject"))
5896   (when (not (equal "" subject))
5897     (prog1
5898         (let ((articles (gnus-summary-find-matching
5899                          (or header "subject") subject 'all)))
5900           (unless articles
5901             (error "Found no matches for \"%s\"" subject))
5902           (gnus-summary-limit articles))
5903       (gnus-summary-position-point))))
5904
5905 (defun gnus-summary-limit-to-author (from)
5906   "Limit the summary buffer to articles that have authors that match a regexp."
5907   (interactive "sLimit to author (regexp): ")
5908   (gnus-summary-limit-to-subject from "from"))
5909
5910 (defun gnus-summary-limit-to-age (age &optional younger-p)
5911   "Limit the summary buffer to articles that are older than (or equal) AGE days.
5912 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
5913 articles that are younger than AGE days."
5914   (interactive "nTime in days: \nP")
5915   (prog1
5916       (let ((data gnus-newsgroup-data)
5917             (cutoff (nnmail-days-to-time age))
5918             articles d date is-younger)
5919         (while (setq d (pop data))
5920           (when (and (vectorp (gnus-data-header d))
5921                      (setq date (mail-header-date (gnus-data-header d))))
5922             (setq is-younger (nnmail-time-less
5923                               (nnmail-time-since (nnmail-date-to-time date))
5924                               cutoff))
5925             (when (if younger-p
5926                       is-younger
5927                     (not is-younger))
5928               (push (gnus-data-number d) articles))))
5929         (gnus-summary-limit (nreverse articles)))
5930     (gnus-summary-position-point)))
5931
5932 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
5933 (make-obsolete
5934  'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
5935
5936 (defun gnus-summary-limit-to-unread (&optional all)
5937   "Limit the summary buffer to articles that are not marked as read.
5938 If ALL is non-nil, limit strictly to unread articles."
5939   (interactive "P")
5940   (if all
5941       (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
5942     (gnus-summary-limit-to-marks
5943      ;; Concat all the marks that say that an article is read and have
5944      ;; those removed.
5945      (list gnus-del-mark gnus-read-mark gnus-ancient-mark
5946            gnus-killed-mark gnus-kill-file-mark
5947            gnus-low-score-mark gnus-expirable-mark
5948            gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
5949            gnus-duplicate-mark gnus-souped-mark)
5950      'reverse)))
5951
5952 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
5953 (make-obsolete 'gnus-summary-delete-marked-with
5954                'gnus-summary-limit-exlude-marks)
5955
5956 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
5957   "Exclude articles that are marked with MARKS (e.g. \"DK\").
5958 If REVERSE, limit the summary buffer to articles that are marked
5959 with MARKS.  MARKS can either be a string of marks or a list of marks.
5960 Returns how many articles were removed."
5961   (interactive "sMarks: ")
5962   (gnus-summary-limit-to-marks marks t))
5963
5964 (defun gnus-summary-limit-to-marks (marks &optional reverse)
5965   "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
5966 If REVERSE (the prefix), limit the summary buffer to articles that are
5967 not marked with MARKS.  MARKS can either be a string of marks or a
5968 list of marks.
5969 Returns how many articles were removed."
5970   (interactive "sMarks: \nP")
5971   (prog1
5972       (let ((data gnus-newsgroup-data)
5973             (marks (if (listp marks) marks
5974                      (append marks nil))) ; Transform to list.
5975             articles)
5976         (while data
5977           (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
5978                   (memq (gnus-data-mark (car data)) marks))
5979             (push (gnus-data-number (car data)) articles))
5980           (setq data (cdr data)))
5981         (gnus-summary-limit articles))
5982     (gnus-summary-position-point)))
5983
5984 (defun gnus-summary-limit-to-score (&optional score)
5985   "Limit to articles with score at or above SCORE."
5986   (interactive "P")
5987   (setq score (if score
5988                   (prefix-numeric-value score)
5989                 (or gnus-summary-default-score 0)))
5990   (let ((data gnus-newsgroup-data)
5991         articles)
5992     (while data
5993       (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
5994                 score)
5995         (push (gnus-data-number (car data)) articles))
5996       (setq data (cdr data)))
5997     (prog1
5998         (gnus-summary-limit articles)
5999       (gnus-summary-position-point))))
6000
6001 (defun gnus-summary-limit-include-thread (id)
6002   "Display all the hidden articles that in the current thread."
6003   (interactive (list (mail-header-id (gnus-summary-article-header))))
6004   (let ((articles (gnus-articles-in-thread
6005                    (gnus-id-to-thread (gnus-root-id id)))))
6006     (prog1
6007         (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
6008       (gnus-summary-position-point))))
6009
6010 (defun gnus-summary-limit-include-dormant ()
6011   "Display all the hidden articles that are marked as dormant.
6012 Note that this command only works on a subset of the articles currently
6013 fetched for this group."
6014   (interactive)
6015   (unless gnus-newsgroup-dormant
6016     (error "There are no dormant articles in this group"))
6017   (prog1
6018       (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
6019     (gnus-summary-position-point)))
6020
6021 (defun gnus-summary-limit-exclude-dormant ()
6022   "Hide all dormant articles."
6023   (interactive)
6024   (prog1
6025       (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
6026     (gnus-summary-position-point)))
6027
6028 (defun gnus-summary-limit-exclude-childless-dormant ()
6029   "Hide all dormant articles that have no children."
6030   (interactive)
6031   (let ((data (gnus-data-list t))
6032         articles d children)
6033     ;; Find all articles that are either not dormant or have
6034     ;; children.
6035     (while (setq d (pop data))
6036       (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
6037                 (and (setq children
6038                            (gnus-article-children (gnus-data-number d)))
6039                      (let (found)
6040                        (while children
6041                          (when (memq (car children) articles)
6042                            (setq children nil
6043                                  found t))
6044                          (pop children))
6045                        found)))
6046         (push (gnus-data-number d) articles)))
6047     ;; Do the limiting.
6048     (prog1
6049         (gnus-summary-limit articles)
6050       (gnus-summary-position-point))))
6051
6052 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
6053   "Mark all unread excluded articles as read.
6054 If ALL, mark even excluded ticked and dormants as read."
6055   (interactive "P")
6056   (let ((articles (gnus-sorted-complement
6057                    (sort
6058                     (mapcar (lambda (h) (mail-header-number h))
6059                             gnus-newsgroup-headers)
6060                     '<)
6061                    (sort gnus-newsgroup-limit '<)))
6062         article)
6063     (setq gnus-newsgroup-unreads gnus-newsgroup-limit)
6064     (if all
6065         (setq gnus-newsgroup-dormant nil
6066               gnus-newsgroup-marked nil
6067               gnus-newsgroup-reads
6068               (nconc
6069                (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
6070                gnus-newsgroup-reads))
6071       (while (setq article (pop articles))
6072         (unless (or (memq article gnus-newsgroup-dormant)
6073                     (memq article gnus-newsgroup-marked))
6074           (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
6075
6076 (defun gnus-summary-limit (articles &optional pop)
6077   (if pop
6078       ;; We pop the previous limit off the stack and use that.
6079       (setq articles (car gnus-newsgroup-limits)
6080             gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
6081     ;; We use the new limit, so we push the old limit on the stack.
6082     (push gnus-newsgroup-limit gnus-newsgroup-limits))
6083   ;; Set the limit.
6084   (setq gnus-newsgroup-limit articles)
6085   (let ((total (length gnus-newsgroup-data))
6086         (data (gnus-data-find-list (gnus-summary-article-number)))
6087         (gnus-summary-mark-below nil)   ; Inhibit this.
6088         found)
6089     ;; This will do all the work of generating the new summary buffer
6090     ;; according to the new limit.
6091     (gnus-summary-prepare)
6092     ;; Hide any threads, possibly.
6093     (and gnus-show-threads
6094          gnus-thread-hide-subtree
6095          (gnus-summary-hide-all-threads))
6096     ;; Try to return to the article you were at, or one in the
6097     ;; neighborhood.
6098     (when data
6099       ;; We try to find some article after the current one.
6100       (while data
6101         (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
6102           (setq data nil
6103                 found t))
6104         (setq data (cdr data))))
6105     (unless found
6106       ;; If there is no data, that means that we were after the last
6107       ;; article.  The same goes when we can't find any articles
6108       ;; after the current one.
6109       (goto-char (point-max))
6110       (gnus-summary-find-prev))
6111     ;; We return how many articles were removed from the summary
6112     ;; buffer as a result of the new limit.
6113     (- total (length gnus-newsgroup-data))))
6114
6115 (defsubst gnus-invisible-cut-children (threads)
6116   (let ((num 0))
6117     (while threads
6118       (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
6119         (incf num))
6120       (pop threads))
6121     (< num 2)))
6122
6123 (defsubst gnus-cut-thread (thread)
6124   "Go forwards in the thread until we find an article that we want to display."
6125   (when (or (eq gnus-fetch-old-headers 'some)
6126             (eq gnus-fetch-old-headers 'invisible)          
6127             (eq gnus-build-sparse-threads 'some)
6128             (eq gnus-build-sparse-threads 'more))
6129     ;; Deal with old-fetched headers and sparse threads.
6130     (while (and
6131             thread
6132             (or
6133              (gnus-summary-article-sparse-p (mail-header-number (car thread)))
6134              (gnus-summary-article-ancient-p
6135               (mail-header-number (car thread))))
6136             (if (or (<= (length (cdr thread)) 1)
6137                     (eq gnus-fetch-old-headers 'invisible))
6138                 (setq gnus-newsgroup-limit
6139                       (delq (mail-header-number (car thread))
6140                             gnus-newsgroup-limit)
6141                       thread (cadr thread))
6142               (when (gnus-invisible-cut-children (cdr thread))
6143                 (let ((th (cdr thread)))
6144                   (while th
6145                     (if (memq (mail-header-number (caar th))
6146                               gnus-newsgroup-limit)
6147                         (setq thread (car th)
6148                               th nil)
6149                       (setq th (cdr th))))))))))
6150   thread)
6151
6152 (defun gnus-cut-threads (threads)
6153   "Cut off all uninteresting articles from the beginning of threads."
6154   (when (or (eq gnus-fetch-old-headers 'some)
6155             (eq gnus-fetch-old-headers 'invisible)
6156             (eq gnus-build-sparse-threads 'some)
6157             (eq gnus-build-sparse-threads 'more))
6158     (let ((th threads))
6159       (while th
6160         (setcar th (gnus-cut-thread (car th)))
6161         (setq th (cdr th)))))
6162   ;; Remove nixed out threads.
6163   (delq nil threads))
6164
6165 (defun gnus-summary-initial-limit (&optional show-if-empty)
6166   "Figure out what the initial limit is supposed to be on group entry.
6167 This entails weeding out unwanted dormants, low-scored articles,
6168 fetch-old-headers verbiage, and so on."
6169   ;; Most groups have nothing to remove.
6170   (if (or gnus-inhibit-limiting
6171           (and (null gnus-newsgroup-dormant)
6172                (not (eq gnus-fetch-old-headers 'some))
6173                (not (eq gnus-fetch-old-headers 'invisible))
6174                (null gnus-summary-expunge-below)
6175                (not (eq gnus-build-sparse-threads 'some))
6176                (not (eq gnus-build-sparse-threads 'more))
6177                (null gnus-thread-expunge-below)
6178                (not gnus-use-nocem)))
6179       ()                                ; Do nothing.
6180     (push gnus-newsgroup-limit gnus-newsgroup-limits)
6181     (setq gnus-newsgroup-limit nil)
6182     (mapatoms
6183      (lambda (node)
6184        (unless (car (symbol-value node))
6185          ;; These threads have no parents -- they are roots.
6186          (let ((nodes (cdr (symbol-value node)))
6187                thread)
6188            (while nodes
6189              (if (and gnus-thread-expunge-below
6190                       (< (gnus-thread-total-score (car nodes))
6191                          gnus-thread-expunge-below))
6192                  (gnus-expunge-thread (pop nodes))
6193                (setq thread (pop nodes))
6194                (gnus-summary-limit-children thread))))))
6195      gnus-newsgroup-dependencies)
6196     ;; If this limitation resulted in an empty group, we might
6197     ;; pop the previous limit and use it instead.
6198     (when (and (not gnus-newsgroup-limit)
6199                show-if-empty)
6200       (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
6201     gnus-newsgroup-limit))
6202
6203 (defun gnus-summary-limit-children (thread)
6204   "Return 1 if this subthread is visible and 0 if it is not."
6205   ;; First we get the number of visible children to this thread.  This
6206   ;; is done by recursing down the thread using this function, so this
6207   ;; will really go down to a leaf article first, before slowly
6208   ;; working its way up towards the root.
6209   (when thread
6210     (let ((children
6211            (if (cdr thread)
6212                (apply '+ (mapcar 'gnus-summary-limit-children
6213                                  (cdr thread)))
6214              0))
6215           (number (mail-header-number (car thread)))
6216           score)
6217       (if (and
6218            (not (memq number gnus-newsgroup-marked))
6219            (or
6220             ;; If this article is dormant and has absolutely no visible
6221             ;; children, then this article isn't visible.
6222             (and (memq number gnus-newsgroup-dormant)
6223                  (zerop children))
6224             ;; If this is "fetch-old-headered" and there is no
6225             ;; visible children, then we don't want this article.
6226             (and (eq gnus-fetch-old-headers 'some)
6227                  (gnus-summary-article-ancient-p number)
6228                  (zerop children))
6229             ;; If this is "fetch-old-headered" and `invisible', then
6230             ;; we don't want this article.
6231             (and (eq gnus-fetch-old-headers 'invisible)
6232                  (gnus-summary-article-ancient-p number))
6233             ;; If this is a sparsely inserted article with no children,
6234             ;; we don't want it.
6235             (and (eq gnus-build-sparse-threads 'some)
6236                  (gnus-summary-article-sparse-p number)
6237                  (zerop children))
6238             ;; If we use expunging, and this article is really
6239             ;; low-scored, then we don't want this article.
6240             (when (and gnus-summary-expunge-below
6241                        (< (setq score
6242                                 (or (cdr (assq number gnus-newsgroup-scored))
6243                                     gnus-summary-default-score))
6244                           gnus-summary-expunge-below))
6245               ;; We increase the expunge-tally here, but that has
6246               ;; nothing to do with the limits, really.
6247               (incf gnus-newsgroup-expunged-tally)
6248               ;; We also mark as read here, if that's wanted.
6249               (when (and gnus-summary-mark-below
6250                          (< score gnus-summary-mark-below))
6251                 (setq gnus-newsgroup-unreads
6252                       (delq number gnus-newsgroup-unreads))
6253                 (if gnus-newsgroup-auto-expire
6254                     (push number gnus-newsgroup-expirable)
6255                   (push (cons number gnus-low-score-mark)
6256                         gnus-newsgroup-reads)))
6257               t)
6258             ;; Check NoCeM things.
6259             (if (and gnus-use-nocem
6260                      (gnus-nocem-unwanted-article-p
6261                       (mail-header-id (car thread))))
6262                 (progn
6263                   (setq gnus-newsgroup-unreads
6264                         (delq number gnus-newsgroup-unreads))
6265                   t))))
6266           ;; Nope, invisible article.
6267           0
6268         ;; Ok, this article is to be visible, so we add it to the limit
6269         ;; and return 1.
6270         (push number gnus-newsgroup-limit)
6271         1))))
6272
6273 (defun gnus-expunge-thread (thread)
6274   "Mark all articles in THREAD as read."
6275   (let* ((number (mail-header-number (car thread))))
6276     (incf gnus-newsgroup-expunged-tally)
6277     ;; We also mark as read here, if that's wanted.
6278     (setq gnus-newsgroup-unreads
6279           (delq number gnus-newsgroup-unreads))
6280     (if gnus-newsgroup-auto-expire
6281         (push number gnus-newsgroup-expirable)
6282       (push (cons number gnus-low-score-mark)
6283             gnus-newsgroup-reads)))
6284   ;; Go recursively through all subthreads.
6285   (mapcar 'gnus-expunge-thread (cdr thread)))
6286
6287 ;; Summary article oriented commands
6288
6289 (defun gnus-summary-refer-parent-article (n)
6290   "Refer parent article N times.
6291 If N is negative, go to ancestor -N instead.
6292 The difference between N and the number of articles fetched is returned."
6293   (interactive "p")
6294   (let ((skip 1)
6295         error header ref)
6296     (when (not (natnump n))
6297       (setq skip (abs n)
6298             n 1))
6299     (while (and (> n 0)
6300                 (not error))
6301       (setq header (gnus-summary-article-header))
6302       (if (and (eq (mail-header-number header)
6303                    (cdr gnus-article-current))
6304                (equal gnus-newsgroup-name
6305                       (car gnus-article-current)))
6306           ;; If we try to find the parent of the currently
6307           ;; displayed article, then we take a look at the actual
6308           ;; References header, since this is slightly more
6309           ;; reliable than the References field we got from the
6310           ;; server.
6311           (save-excursion
6312             (set-buffer gnus-original-article-buffer)
6313             (nnheader-narrow-to-headers)
6314             (unless (setq ref (message-fetch-field "references"))
6315               (setq ref (message-fetch-field "in-reply-to")))
6316             (widen))
6317         (setq ref
6318               ;; It's not the current article, so we take a bet on
6319               ;; the value we got from the server.
6320               (mail-header-references header)))
6321       (if (and ref
6322                (not (equal ref "")))
6323           (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
6324             (gnus-message 1 "Couldn't find parent"))
6325         (gnus-message 1 "No references in article %d"
6326                       (gnus-summary-article-number))
6327         (setq error t))
6328       (decf n))
6329     (gnus-summary-position-point)
6330     n))
6331
6332 (defun gnus-summary-refer-references ()
6333   "Fetch all articles mentioned in the References header.
6334 Return the number of articles fetched."
6335   (interactive)
6336   (let ((ref (mail-header-references (gnus-summary-article-header)))
6337         (current (gnus-summary-article-number))
6338         (n 0))
6339     (if (or (not ref)
6340             (equal ref ""))
6341         (error "No References in the current article")
6342       ;; For each Message-ID in the References header...
6343       (while (string-match "<[^>]*>" ref)
6344         (incf n)
6345         ;; ... fetch that article.
6346         (gnus-summary-refer-article
6347          (prog1 (match-string 0 ref)
6348            (setq ref (substring ref (match-end 0))))))
6349       (gnus-summary-goto-subject current)
6350       (gnus-summary-position-point)
6351       n)))
6352
6353 (defun gnus-summary-refer-thread (&optional limit)
6354   "Fetch all articles in the current thread.
6355 If LIMIT (the numerical prefix), fetch that many old headers instead
6356 of what's specified by the `gnus-refer-thread-limit' variable."
6357   (interactive "P")
6358   (let ((id (mail-header-id (gnus-summary-article-header)))
6359         (limit (if limit (prefix-numeric-value limit)
6360                  gnus-refer-thread-limit))
6361         fmethod root)
6362     ;; We want to fetch LIMIT *old* headers, but we also have to
6363     ;; re-fetch all the headers in the current buffer, because many of
6364     ;; them may be undisplayed.  So we adjust LIMIT.
6365     (when (numberp limit)
6366       (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin)))
6367     (unless (eq gnus-fetch-old-headers 'invisible)
6368       (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
6369       ;; Retrieve the headers and read them in.
6370       (if (eq (gnus-retrieve-headers
6371                (list gnus-newsgroup-end) gnus-newsgroup-name limit)
6372               'nov)
6373           (gnus-build-all-threads)
6374         (error "Can't fetch thread from backends that don't support NOV"))
6375       (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
6376     (gnus-summary-limit-include-thread id)))
6377
6378 (defun gnus-summary-refer-article (message-id &optional arg)
6379   "Fetch an article specified by MESSAGE-ID.
6380 If ARG (the prefix), fetch the article using `gnus-refer-article-method'
6381 or `gnus-select-method', no matter what backend the article comes from."
6382   (interactive "sMessage-ID: \nP")
6383   (when (and (stringp message-id)
6384              (not (zerop (length message-id))))
6385     ;; Construct the correct Message-ID if necessary.
6386     ;; Suggested by tale@pawl.rpi.edu.
6387     (unless (string-match "^<" message-id)
6388       (setq message-id (concat "<" message-id)))
6389     (unless (string-match ">$" message-id)
6390       (setq message-id (concat message-id ">")))
6391     (let* ((header (gnus-id-to-header message-id))
6392            (sparse (and header
6393                         (gnus-summary-article-sparse-p
6394                          (mail-header-number header))
6395                         (memq (mail-header-number header)
6396                               gnus-newsgroup-limit)))
6397            h)
6398       (cond
6399        ;; If the article is present in the buffer we just go to it.
6400        ((and header
6401              (or (not (gnus-summary-article-sparse-p
6402                        (mail-header-number header)))
6403                  sparse))
6404         (prog1
6405             (gnus-summary-goto-article
6406              (mail-header-number header) nil t)
6407           (when sparse
6408             (gnus-summary-update-article (mail-header-number header)))))
6409        (t
6410         ;; We fetch the article
6411         (let ((gnus-override-method
6412                (cond ((gnus-news-group-p gnus-newsgroup-name)
6413                       gnus-refer-article-method)
6414                      (arg
6415                       (or gnus-refer-article-method gnus-select-method))
6416                      (t nil)))
6417               number)
6418           ;; Start the special refer-article method, if necessary.
6419           (when (and gnus-refer-article-method
6420                      (gnus-news-group-p gnus-newsgroup-name))
6421             (gnus-check-server gnus-refer-article-method))
6422           ;; Fetch the header, and display the article.
6423           (if (setq number (gnus-summary-insert-subject message-id))
6424               (gnus-summary-select-article nil nil nil number)
6425             (gnus-message 3 "Couldn't fetch article %s" message-id))))))))
6426
6427 (defun gnus-summary-edit-parameters ()
6428   "Edit the group parameters of the current group."
6429   (interactive)
6430   (gnus-group-edit-group gnus-newsgroup-name 'params))
6431
6432 (defun gnus-summary-enter-digest-group (&optional force)
6433   "Enter an nndoc group based on the current article.
6434 If FORCE, force a digest interpretation.  If not, try
6435 to guess what the document format is."
6436   (interactive "P")
6437   (let ((conf gnus-current-window-configuration))
6438     (save-excursion
6439       (gnus-summary-select-article))
6440     (setq gnus-current-window-configuration conf)
6441     (let* ((name (format "%s-%d"
6442                          (gnus-group-prefixed-name
6443                           gnus-newsgroup-name (list 'nndoc ""))
6444                          (save-excursion
6445                            (set-buffer gnus-summary-buffer)
6446                            gnus-current-article)))
6447            (ogroup gnus-newsgroup-name)
6448            (params (append (gnus-info-params (gnus-get-info ogroup))
6449                            (list (cons 'to-group ogroup))
6450                            (list (cons 'save-article-group ogroup))))
6451            (case-fold-search t)
6452            (buf (current-buffer))
6453            dig)
6454       (save-excursion
6455         (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
6456         (insert-buffer-substring gnus-original-article-buffer)
6457         ;; Remove lines that may lead nndoc to misinterpret the
6458         ;; document type.
6459         (narrow-to-region
6460          (goto-char (point-min))
6461          (or (search-forward "\n\n" nil t) (point)))
6462         (goto-char (point-min))
6463         (delete-matching-lines "^\\(Path\\):\\|^From ")
6464         (widen))
6465       (unwind-protect
6466           (if (gnus-group-read-ephemeral-group
6467                name `(nndoc ,name (nndoc-address ,(get-buffer dig))
6468                             (nndoc-article-type
6469                              ,(if force 'digest 'guess))) t)
6470               ;; Make all postings to this group go to the parent group.
6471               (nconc (gnus-info-params (gnus-get-info name))
6472                      params)
6473             ;; Couldn't select this doc group.
6474             (switch-to-buffer buf)
6475             (gnus-set-global-variables)
6476             (gnus-configure-windows 'summary)
6477             (gnus-message 3 "Article couldn't be entered?"))
6478         (kill-buffer dig)))))
6479
6480 (defun gnus-summary-read-document (n)
6481   "Open a new group based on the current article(s).
6482 This will allow you to read digests and other similar
6483 documents as newsgroups.
6484 Obeys the standard process/prefix convention."
6485   (interactive "P")
6486   (let* ((articles (gnus-summary-work-articles n))
6487          (ogroup gnus-newsgroup-name)
6488          (params (append (gnus-info-params (gnus-get-info ogroup))
6489                          (list (cons 'to-group ogroup))))
6490          article group egroup groups vgroup)
6491     (while (setq article (pop articles))
6492       (setq group (format "%s-%d" gnus-newsgroup-name article))
6493       (gnus-summary-remove-process-mark article)
6494       (when (gnus-summary-display-article article)
6495         (save-excursion
6496           (nnheader-temp-write nil
6497             (insert-buffer-substring gnus-original-article-buffer)
6498             ;; Remove some headers that may lead nndoc to make
6499             ;; the wrong guess.
6500             (message-narrow-to-head)
6501             (goto-char (point-min))
6502             (delete-matching-lines "^\\(Path\\):\\|^From ")
6503             (widen)
6504             (if (setq egroup
6505                       (gnus-group-read-ephemeral-group
6506                        group `(nndoc ,group (nndoc-address ,(current-buffer))
6507                                      (nndoc-article-type guess))
6508                        t nil t))
6509                 (progn
6510                   ;; Make all postings to this group go to the parent group.
6511                   (nconc (gnus-info-params (gnus-get-info egroup))
6512                          params)
6513                   (push egroup groups))
6514               ;; Couldn't select this doc group.
6515               (gnus-error 3 "Article couldn't be entered"))))))
6516     ;; Now we have selected all the documents.
6517     (cond
6518      ((not groups)
6519       (error "None of the articles could be interpreted as documents"))
6520      ((gnus-group-read-ephemeral-group
6521        (setq vgroup (format
6522                      "nnvirtual:%s-%s" gnus-newsgroup-name
6523                      (format-time-string "%Y%m%dT%H%M%S" (current-time))))
6524        `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
6525        t
6526        (cons (current-buffer) 'summary)))
6527      (t
6528       (error "Couldn't select virtual nndoc group")))))
6529
6530 (defun gnus-summary-isearch-article (&optional regexp-p)
6531   "Do incremental search forward on the current article.
6532 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
6533   (interactive "P")
6534   (gnus-summary-select-article)
6535   (gnus-configure-windows 'article)
6536   (gnus-eval-in-buffer-window gnus-article-buffer
6537     (save-restriction
6538       (widen)
6539       (isearch-forward regexp-p))))
6540
6541 (defun gnus-summary-search-article-forward (regexp &optional backward)
6542   "Search for an article containing REGEXP forward.
6543 If BACKWARD, search backward instead."
6544   (interactive
6545    (list (read-string
6546           (format "Search article %s (regexp%s): "
6547                   (if current-prefix-arg "backward" "forward")
6548                   (if gnus-last-search-regexp
6549                       (concat ", default " gnus-last-search-regexp)
6550                     "")))
6551          current-prefix-arg))
6552   (if (string-equal regexp "")
6553       (setq regexp (or gnus-last-search-regexp ""))
6554     (setq gnus-last-search-regexp regexp))
6555   (if (gnus-summary-search-article regexp backward)
6556       (gnus-summary-show-thread)
6557     (error "Search failed: \"%s\"" regexp)))
6558
6559 (defun gnus-summary-search-article-backward (regexp)
6560   "Search for an article containing REGEXP backward."
6561   (interactive
6562    (list (read-string
6563           (format "Search article backward (regexp%s): "
6564                   (if gnus-last-search-regexp
6565                       (concat ", default " gnus-last-search-regexp)
6566                     "")))))
6567   (gnus-summary-search-article-forward regexp 'backward))
6568
6569 (defun gnus-summary-search-article (regexp &optional backward)
6570   "Search for an article containing REGEXP.
6571 Optional argument BACKWARD means do search for backward.
6572 `gnus-select-article-hook' is not called during the search."
6573   ;; We have to require this here to make sure that the following
6574   ;; dynamic binding isn't shadowed by autoloading.
6575   (require 'gnus-async)
6576   (let ((gnus-select-article-hook nil)  ;Disable hook.
6577         (gnus-article-display-hook nil)
6578         (gnus-mark-article-hook nil)    ;Inhibit marking as read.
6579         (gnus-use-article-prefetch nil)
6580         (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
6581         (gnus-use-trees nil)            ;Inhibit updating tree buffer.
6582         (sum (current-buffer))
6583         (found nil)
6584         point)
6585     (gnus-save-hidden-threads
6586       (gnus-summary-select-article)
6587       (set-buffer gnus-article-buffer)
6588       (when backward
6589         (forward-line -1))
6590       (while (not found)
6591         (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
6592         (if (if backward
6593                 (re-search-backward regexp nil t)
6594               (re-search-forward regexp nil t))
6595             ;; We found the regexp.
6596             (progn
6597               (setq found 'found)
6598               (beginning-of-line)
6599               (set-window-start
6600                (get-buffer-window (current-buffer))
6601                (point))
6602               (forward-line 1)
6603               (set-buffer sum)
6604               (setq point (point)))
6605           ;; We didn't find it, so we go to the next article.
6606           (set-buffer sum)
6607           (setq found 'not)
6608           (while (eq found 'not)
6609             (if (not (if backward (gnus-summary-find-prev)
6610                        (gnus-summary-find-next)))
6611                 ;; No more articles.
6612                 (setq found t)
6613               ;; Select the next article and adjust point.
6614               (unless (gnus-summary-article-sparse-p
6615                        (gnus-summary-article-number))
6616                 (setq found nil)
6617                 (gnus-summary-select-article)
6618                 (set-buffer gnus-article-buffer)
6619                 (widen)
6620                 (goto-char (if backward (point-max) (point-min))))))))
6621       (gnus-message 7 ""))
6622     ;; Return whether we found the regexp.
6623     (when (eq found 'found)
6624       (goto-char point)
6625       (gnus-summary-show-thread)
6626       (gnus-summary-goto-subject gnus-current-article)
6627       (gnus-summary-position-point)
6628       t)))
6629
6630 (defun gnus-summary-find-matching (header regexp &optional backward unread
6631                                           not-case-fold)
6632   "Return a list of all articles that match REGEXP on HEADER.
6633 The search stars on the current article and goes forwards unless
6634 BACKWARD is non-nil.  If BACKWARD is `all', do all articles.
6635 If UNREAD is non-nil, only unread articles will
6636 be taken into consideration.  If NOT-CASE-FOLD, case won't be folded
6637 in the comparisons."
6638   (let ((data (if (eq backward 'all) gnus-newsgroup-data
6639                 (gnus-data-find-list
6640                  (gnus-summary-article-number) (gnus-data-list backward))))
6641         (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
6642         (case-fold-search (not not-case-fold))
6643         articles d)
6644     (unless (fboundp (intern (concat "mail-header-" header)))
6645       (error "%s is not a valid header" header))
6646     (while data
6647       (setq d (car data))
6648       (and (or (not unread)             ; We want all articles...
6649                (gnus-data-unread-p d))  ; Or just unreads.
6650            (vectorp (gnus-data-header d)) ; It's not a pseudo.
6651            (string-match regexp (funcall func (gnus-data-header d))) ; Match.
6652            (push (gnus-data-number d) articles)) ; Success!
6653       (setq data (cdr data)))
6654     (nreverse articles)))
6655
6656 (defun gnus-summary-execute-command (header regexp command &optional backward)
6657   "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
6658 If HEADER is an empty string (or nil), the match is done on the entire
6659 article.  If BACKWARD (the prefix) is non-nil, search backward instead."
6660   (interactive
6661    (list (let ((completion-ignore-case t))
6662            (completing-read
6663             "Header name: "
6664             (mapcar (lambda (string) (list string))
6665                     '("Number" "Subject" "From" "Lines" "Date"
6666                       "Message-ID" "Xref" "References" "Body"))
6667             nil 'require-match))
6668          (read-string "Regexp: ")
6669          (read-key-sequence "Command: ")
6670          current-prefix-arg))
6671   (when (equal header "Body")
6672     (setq header ""))
6673   ;; Hidden thread subtrees must be searched as well.
6674   (gnus-summary-show-all-threads)
6675   ;; We don't want to change current point nor window configuration.
6676   (save-excursion
6677     (save-window-excursion
6678       (gnus-message 6 "Executing %s..." (key-description command))
6679       ;; We'd like to execute COMMAND interactively so as to give arguments.
6680       (gnus-execute header regexp
6681                     `(call-interactively ',(key-binding command))
6682                     backward)
6683       (gnus-message 6 "Executing %s...done" (key-description command)))))
6684
6685 (defun gnus-summary-beginning-of-article ()
6686   "Scroll the article back to the beginning."
6687   (interactive)
6688   (gnus-summary-select-article)
6689   (gnus-configure-windows 'article)
6690   (gnus-eval-in-buffer-window gnus-article-buffer
6691     (widen)
6692     (goto-char (point-min))
6693     (when gnus-page-broken
6694       (gnus-narrow-to-page))))
6695
6696 (defun gnus-summary-end-of-article ()
6697   "Scroll to the end of the article."
6698   (interactive)
6699   (gnus-summary-select-article)
6700   (gnus-configure-windows 'article)
6701   (gnus-eval-in-buffer-window gnus-article-buffer
6702     (widen)
6703     (goto-char (point-max))
6704     (recenter -3)
6705     (when gnus-page-broken
6706       (gnus-narrow-to-page))))
6707
6708 (defun gnus-summary-print-article (&optional filename n)
6709   "Generate and print a PostScript image of the N next (mail) articles.
6710
6711 If N is negative, print the N previous articles.  If N is nil and articles
6712 have been marked with the process mark, print these instead.
6713
6714 If the optional second argument FILENAME is nil, send the image to the
6715 printer.  If FILENAME is a string, save the PostScript image in a file with
6716 that name.  If FILENAME is a number, prompt the user for the name of the file
6717 to save in."
6718   (interactive (list (ps-print-preprint current-prefix-arg)
6719                      current-prefix-arg))
6720   (dolist (article (gnus-summary-work-articles n))
6721     (gnus-summary-select-article nil nil 'pseudo article)
6722     (gnus-eval-in-buffer-window gnus-article-buffer
6723       (let ((buffer (generate-new-buffer " *print*")))
6724         (unwind-protect
6725             (progn
6726               (copy-to-buffer buffer (point-min) (point-max))
6727               (set-buffer buffer)
6728               (gnus-article-delete-invisible-text)
6729               (let ((ps-left-header
6730                      (list 
6731                       (concat "("
6732                               (mail-header-subject gnus-current-headers) ")")
6733                       (concat "("
6734                               (mail-header-from gnus-current-headers) ")")))
6735                     (ps-right-header 
6736                      (list 
6737                       "/pagenumberstring load" 
6738                       (concat "("
6739                               (mail-header-date gnus-current-headers) ")"))))
6740                 (gnus-run-hooks 'gnus-ps-print-hook)
6741                 (save-excursion
6742                   (ps-print-buffer-with-faces filename))))
6743           (kill-buffer buffer))))))
6744
6745 (defun gnus-summary-show-article (&optional arg)
6746   "Force re-fetching of the current article.
6747 If ARG (the prefix) is non-nil, show the raw article without any
6748 article massaging functions being run."
6749   (interactive "P")
6750   (if (not arg)
6751       ;; Select the article the normal way.
6752       (gnus-summary-select-article nil 'force)
6753     ;; Bind the article treatment functions to nil.
6754     (let ((gnus-have-all-headers t)
6755           gnus-article-display-hook
6756           gnus-article-prepare-hook
6757           gnus-break-pages
6758           gnus-show-mime
6759           gnus-visual)
6760       (gnus-summary-select-article nil 'force)))
6761   (gnus-summary-goto-subject gnus-current-article)
6762   (gnus-summary-position-point))
6763
6764 (defun gnus-summary-verbose-headers (&optional arg)
6765   "Toggle permanent full header display.
6766 If ARG is a positive number, turn header display on.
6767 If ARG is a negative number, turn header display off."
6768   (interactive "P")
6769   (setq gnus-show-all-headers
6770         (cond ((or (not (numberp arg))
6771                    (zerop arg))
6772                (not gnus-show-all-headers))
6773               ((natnump arg)
6774                t)))
6775   (gnus-summary-show-article))
6776
6777 (defun gnus-summary-toggle-header (&optional arg)
6778   "Show the headers if they are hidden, or hide them if they are shown.
6779 If ARG is a positive number, show the entire header.
6780 If ARG is a negative number, hide the unwanted header lines."
6781   (interactive "P")
6782   (save-excursion
6783     (set-buffer gnus-article-buffer)
6784     (let* ((buffer-read-only nil)
6785            (inhibit-point-motion-hooks t)
6786            (hidden (text-property-any
6787                     (goto-char (point-min)) (search-forward "\n\n")
6788                     'invisible t))
6789            e)
6790       (goto-char (point-min))
6791       (when (search-forward "\n\n" nil t)
6792         (delete-region (point-min) (1- (point))))
6793       (goto-char (point-min))
6794       (save-excursion
6795         (set-buffer gnus-original-article-buffer)
6796         (goto-char (point-min))
6797         (setq e (1- (or (search-forward "\n\n" nil t) (point-max)))))
6798       (insert-buffer-substring gnus-original-article-buffer 1 e)
6799       (let ((article-inhibit-hiding t))
6800         (gnus-run-hooks 'gnus-article-display-hook))
6801       (when (or (not hidden) (and (numberp arg) (< arg 0)))
6802         (gnus-article-hide-headers)))))
6803
6804 (defun gnus-summary-show-all-headers ()
6805   "Make all header lines visible."
6806   (interactive)
6807   (gnus-article-show-all-headers))
6808
6809 (defun gnus-summary-toggle-mime (&optional arg)
6810   "Toggle MIME processing.
6811 If ARG is a positive number, turn MIME processing on."
6812   (interactive "P")
6813   (setq gnus-show-mime
6814         (if (null arg) (not gnus-show-mime)
6815           (> (prefix-numeric-value arg) 0)))
6816   (gnus-summary-select-article t 'force))
6817
6818 (defun gnus-summary-caesar-message (&optional arg)
6819   "Caesar rotate the current article by 13.
6820 The numerical prefix specifies how many places to rotate each letter
6821 forward."
6822   (interactive "P")
6823   (gnus-summary-select-article)
6824   (let ((mail-header-separator ""))
6825     (gnus-eval-in-buffer-window gnus-article-buffer
6826       (save-restriction
6827         (widen)
6828         (let ((start (window-start))
6829               buffer-read-only)
6830           (message-caesar-buffer-body arg)
6831           (set-window-start (get-buffer-window (current-buffer)) start))))))
6832
6833 (defun gnus-summary-stop-page-breaking ()
6834   "Stop page breaking in the current article."
6835   (interactive)
6836   (gnus-summary-select-article)
6837   (gnus-eval-in-buffer-window gnus-article-buffer
6838     (widen)
6839     (when (gnus-visual-p 'page-marker)
6840       (let ((buffer-read-only nil))
6841         (gnus-remove-text-with-property 'gnus-prev)
6842         (gnus-remove-text-with-property 'gnus-next))
6843       (setq gnus-page-broken nil))))
6844
6845 (defun gnus-summary-move-article (&optional n to-newsgroup
6846                                             select-method action)
6847   "Move the current article to a different newsgroup.
6848 If N is a positive number, move the N next articles.
6849 If N is a negative number, move the N previous articles.
6850 If N is nil and any articles have been marked with the process mark,
6851 move those articles instead.
6852 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
6853 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
6854 re-spool using this method.
6855
6856 For this function to work, both the current newsgroup and the
6857 newsgroup that you want to move to have to support the `request-move'
6858 and `request-accept' functions."
6859   (interactive "P")
6860   (unless action
6861     (setq action 'move))
6862   ;; Disable marking as read.
6863   (let (gnus-mark-article-hook)
6864     (save-window-excursion
6865       (gnus-summary-select-article)))
6866   ;; Check whether the source group supports the required functions.
6867   (cond ((and (eq action 'move)
6868               (not (gnus-check-backend-function
6869                     'request-move-article gnus-newsgroup-name)))
6870          (error "The current group does not support article moving"))
6871         ((and (eq action 'crosspost)
6872               (not (gnus-check-backend-function
6873                     'request-replace-article gnus-newsgroup-name)))
6874          (error "The current group does not support article editing")))
6875   (let ((articles (gnus-summary-work-articles n))
6876         (prefix (gnus-group-real-prefix gnus-newsgroup-name))
6877         (names '((move "Move" "Moving")
6878                  (copy "Copy" "Copying")
6879                  (crosspost "Crosspost" "Crossposting")))
6880         (copy-buf (save-excursion
6881                     (nnheader-set-temp-buffer " *copy article*")))
6882         art-group to-method new-xref article to-groups)
6883     (unless (assq action names)
6884       (error "Unknown action %s" action))
6885     ;; Read the newsgroup name.
6886     (when (and (not to-newsgroup)
6887                (not select-method))
6888       (setq to-newsgroup
6889             (gnus-read-move-group-name
6890              (cadr (assq action names))
6891              (symbol-value (intern (format "gnus-current-%s-group" action)))
6892              articles prefix))
6893       (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
6894     (setq to-method (or select-method
6895                         (gnus-group-name-to-method to-newsgroup)))
6896     ;; Check the method we are to move this article to...
6897     (unless (gnus-check-backend-function
6898              'request-accept-article (car to-method))
6899       (error "%s does not support article copying" (car to-method)))
6900     (unless (gnus-check-server to-method)
6901       (error "Can't open server %s" (car to-method)))
6902     (gnus-message 6 "%s to %s: %s..."
6903                   (caddr (assq action names))
6904                   (or (car select-method) to-newsgroup) articles)
6905     (while articles
6906       (setq article (pop articles))
6907       (setq
6908        art-group
6909        (cond
6910         ;; Move the article.
6911         ((eq action 'move)
6912          ;; Remove this article from future suppression.
6913          (gnus-dup-unsuppress-article article)
6914          (gnus-request-move-article
6915           article                       ; Article to move
6916           gnus-newsgroup-name           ; From newsgroup
6917           (nth 1 (gnus-find-method-for-group
6918                   gnus-newsgroup-name)) ; Server
6919           (list 'gnus-request-accept-article
6920                 to-newsgroup (list 'quote select-method)
6921                 (not articles))         ; Accept form
6922           (not articles)))              ; Only save nov last time
6923         ;; Copy the article.
6924         ((eq action 'copy)
6925          (save-excursion
6926            (set-buffer copy-buf)
6927            (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
6928              (gnus-request-accept-article
6929               to-newsgroup select-method (not articles)))))
6930         ;; Crosspost the article.
6931         ((eq action 'crosspost)
6932          (let ((xref (message-tokenize-header
6933                       (mail-header-xref (gnus-summary-article-header article))
6934                       " ")))
6935            (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
6936                                   ":" article))
6937            (unless xref
6938              (setq xref (list (system-name))))
6939            (setq new-xref
6940                  (concat
6941                   (mapconcat 'identity
6942                              (delete "Xref:" (delete new-xref xref))
6943                              " ")
6944                   " " new-xref))
6945            (save-excursion
6946              (set-buffer copy-buf)
6947              ;; First put the article in the destination group.
6948              (gnus-request-article-this-buffer article gnus-newsgroup-name)
6949              (when (consp (setq art-group
6950                                 (gnus-request-accept-article
6951                                  to-newsgroup select-method (not articles))))
6952                (setq new-xref (concat new-xref " " (car art-group)
6953                                       ":" (cdr art-group)))
6954                ;; Now we have the new Xrefs header, so we insert
6955                ;; it and replace the new article.
6956                (nnheader-replace-header "Xref" new-xref)
6957                (gnus-request-replace-article
6958                 (cdr art-group) to-newsgroup (current-buffer))
6959                art-group))))))
6960       (cond
6961        ((not art-group)
6962         (gnus-message 1 "Couldn't %s article %s"
6963                       (cadr (assq action names)) article))
6964        ((and (eq art-group 'junk)
6965              (eq action 'move))
6966         (gnus-summary-mark-article article gnus-canceled-mark)
6967         (gnus-message 4 "Deleted article %s" article))
6968        (t
6969         (let* ((entry
6970                 (or
6971                  (gnus-gethash (car art-group) gnus-newsrc-hashtb)
6972                  (gnus-gethash
6973                   (gnus-group-prefixed-name
6974                    (car art-group)
6975                    (or select-method
6976                        (gnus-find-method-for-group to-newsgroup)))
6977                   gnus-newsrc-hashtb)))
6978                (info (nth 2 entry))
6979                (to-group (gnus-info-group info)))
6980           ;; Update the group that has been moved to.
6981           (when (and info
6982                      (memq action '(move copy)))
6983             (unless (member to-group to-groups)
6984               (push to-group to-groups))
6985
6986             (unless (memq article gnus-newsgroup-unreads)
6987               (gnus-info-set-read
6988                info (gnus-add-to-range (gnus-info-read info)
6989                                        (list (cdr art-group)))))
6990
6991             ;; Copy any marks over to the new group.
6992             (let ((marks gnus-article-mark-lists)
6993                   (to-article (cdr art-group)))
6994
6995               ;; See whether the article is to be put in the cache.
6996               (when gnus-use-cache
6997                 (gnus-cache-possibly-enter-article
6998                  to-group to-article
6999                  (let ((header (copy-sequence
7000                                 (gnus-summary-article-header article))))
7001                    (mail-header-set-number header to-article)
7002                    header)
7003                  (memq article gnus-newsgroup-marked)
7004                  (memq article gnus-newsgroup-dormant)
7005                  (memq article gnus-newsgroup-unreads)))
7006
7007               (when (and (equal to-group gnus-newsgroup-name)
7008                          (not (memq article gnus-newsgroup-unreads)))
7009                 ;; Mark this article as read in this group.
7010                 (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
7011                 (setcdr (gnus-active to-group) to-article)
7012                 (setcdr gnus-newsgroup-active to-article))
7013
7014               (while marks
7015                 (when (memq article (symbol-value
7016                                      (intern (format "gnus-newsgroup-%s"
7017                                                      (caar marks)))))
7018                   ;; If the other group is the same as this group,
7019                   ;; then we have to add the mark to the list.
7020                   (when (equal to-group gnus-newsgroup-name)
7021                     (set (intern (format "gnus-newsgroup-%s" (caar marks)))
7022                          (cons to-article
7023                                (symbol-value
7024                                 (intern (format "gnus-newsgroup-%s"
7025                                                 (caar marks)))))))
7026                   ;; Copy the marks to other group.
7027                   (gnus-add-marked-articles
7028                    to-group (cdar marks) (list to-article) info))
7029                 (setq marks (cdr marks)))
7030
7031               (gnus-dribble-enter
7032                (concat "(gnus-group-set-info '"
7033                        (gnus-prin1-to-string (gnus-get-info to-group))
7034                        ")"))))
7035
7036           ;; Update the Xref header in this article to point to
7037           ;; the new crossposted article we have just created.
7038           (when (eq action 'crosspost)
7039             (save-excursion
7040               (set-buffer copy-buf)
7041               (gnus-request-article-this-buffer article gnus-newsgroup-name)
7042               (nnheader-replace-header "Xref" new-xref)
7043               (gnus-request-replace-article
7044                article gnus-newsgroup-name (current-buffer)))))
7045
7046         ;;;!!!Why is this necessary?
7047         (set-buffer gnus-summary-buffer)
7048         
7049         (gnus-summary-goto-subject article)
7050         (when (eq action 'move)
7051           (gnus-summary-mark-article article gnus-canceled-mark))))
7052       (gnus-summary-remove-process-mark article))
7053     ;; Re-activate all groups that have been moved to.
7054     (while to-groups
7055       (save-excursion
7056         (set-buffer gnus-group-buffer)
7057         (when (gnus-group-goto-group (car to-groups) t)
7058           (gnus-group-get-new-news-this-group 1 t))
7059         (pop to-groups)))
7060
7061     (gnus-kill-buffer copy-buf)
7062     (gnus-summary-position-point)
7063     (gnus-set-mode-line 'summary)))
7064
7065 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
7066   "Move the current article to a different newsgroup.
7067 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
7068 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
7069 re-spool using this method."
7070   (interactive "P")
7071   (gnus-summary-move-article n to-newsgroup select-method 'copy))
7072
7073 (defun gnus-summary-crosspost-article (&optional n)
7074   "Crosspost the current article to some other group."
7075   (interactive "P")
7076   (gnus-summary-move-article n nil nil 'crosspost))
7077
7078 (defcustom gnus-summary-respool-default-method nil
7079   "Default method for respooling an article.
7080 If nil, use to the current newsgroup method."
7081   :type `(choice (gnus-select-method :value (nnml ""))
7082                  (const nil))
7083   :group 'gnus-summary-mail)
7084
7085 (defun gnus-summary-respool-article (&optional n method)
7086   "Respool the current article.
7087 The article will be squeezed through the mail spooling process again,
7088 which means that it will be put in some mail newsgroup or other
7089 depending on `nnmail-split-methods'.
7090 If N is a positive number, respool the N next articles.
7091 If N is a negative number, respool the N previous articles.
7092 If N is nil and any articles have been marked with the process mark,
7093 respool those articles instead.
7094
7095 Respooling can be done both from mail groups and \"real\" newsgroups.
7096 In the former case, the articles in question will be moved from the
7097 current group into whatever groups they are destined to.  In the
7098 latter case, they will be copied into the relevant groups."
7099   (interactive
7100    (list current-prefix-arg
7101          (let* ((methods (gnus-methods-using 'respool))
7102                 (methname
7103                  (symbol-name (or gnus-summary-respool-default-method
7104                                   (car (gnus-find-method-for-group
7105                                         gnus-newsgroup-name)))))
7106                 (method
7107                  (gnus-completing-read
7108                   methname "What backend do you want to use when respooling?"
7109                   methods nil t nil 'gnus-mail-method-history))
7110                 ms)
7111            (cond
7112             ((zerop (length (setq ms (gnus-servers-using-backend
7113                                       (intern method)))))
7114              (list (intern method) ""))
7115             ((= 1 (length ms))
7116              (car ms))
7117             (t
7118              (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
7119                (cdr (assoc (completing-read "Server name: " ms-alist nil t)
7120                            ms-alist))))))))
7121   (unless method
7122     (error "No method given for respooling"))
7123   (if (assoc (symbol-name
7124               (car (gnus-find-method-for-group gnus-newsgroup-name)))
7125              (gnus-methods-using 'respool))
7126       (gnus-summary-move-article n nil method)
7127     (gnus-summary-copy-article n nil method)))
7128
7129 (defun gnus-summary-import-article (file)
7130   "Import an arbitrary file into a mail newsgroup."
7131   (interactive "fImport file: ")
7132   (let ((group gnus-newsgroup-name)
7133         (now (current-time))
7134         atts lines)
7135     (unless (gnus-check-backend-function 'request-accept-article group)
7136       (error "%s does not support article importing" group))
7137     (or (file-readable-p file)
7138         (not (file-regular-p file))
7139         (error "Can't read %s" file))
7140     (save-excursion
7141       (set-buffer (get-buffer-create " *import file*"))
7142       (buffer-disable-undo (current-buffer))
7143       (erase-buffer)
7144       (nnheader-insert-file-contents file)
7145       (goto-char (point-min))
7146       (unless (nnheader-article-p)
7147         ;; This doesn't look like an article, so we fudge some headers.
7148         (setq atts (file-attributes file)
7149               lines (count-lines (point-min) (point-max)))
7150         (insert "From: " (read-string "From: ") "\n"
7151                 "Subject: " (read-string "Subject: ") "\n"
7152                 "Date: " (timezone-make-date-arpa-standard
7153                           (current-time-string (nth 5 atts))
7154                           (current-time-zone now)
7155                           (current-time-zone now))
7156                 "\n"
7157                 "Message-ID: " (message-make-message-id) "\n"
7158                 "Lines: " (int-to-string lines) "\n"
7159                 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
7160       (gnus-request-accept-article group nil t)
7161       (kill-buffer (current-buffer)))))
7162
7163 (defun gnus-summary-article-posted-p ()
7164   "Say whether the current (mail) article is available from `gnus-select-method' as well.
7165 This will be the case if the article has both been mailed and posted."
7166   (interactive)
7167   (let ((id (mail-header-references (gnus-summary-article-header)))
7168         (gnus-override-method
7169          (or gnus-refer-article-method gnus-select-method)))
7170     (if (gnus-request-head id "")
7171         (gnus-message 2 "The current message was found on %s"
7172                       gnus-override-method)
7173       (gnus-message 2 "The current message couldn't be found on %s"
7174                     gnus-override-method)
7175       nil)))
7176
7177 (defun gnus-summary-expire-articles (&optional now)
7178   "Expire all articles that are marked as expirable in the current group."
7179   (interactive)
7180   (when (gnus-check-backend-function
7181          'request-expire-articles gnus-newsgroup-name)
7182     ;; This backend supports expiry.
7183     (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
7184            (expirable (if total
7185                           (progn
7186                             ;; We need to update the info for
7187                             ;; this group for `gnus-list-of-read-articles'
7188                             ;; to give us the right answer.
7189                             (gnus-run-hooks 'gnus-exit-group-hook)
7190                             (gnus-summary-update-info)
7191                             (gnus-list-of-read-articles gnus-newsgroup-name))
7192                         (setq gnus-newsgroup-expirable
7193                               (sort gnus-newsgroup-expirable '<))))
7194            (expiry-wait (if now 'immediate
7195                           (gnus-group-find-parameter
7196                            gnus-newsgroup-name 'expiry-wait)))
7197            es)
7198       (when expirable
7199         ;; There are expirable articles in this group, so we run them
7200         ;; through the expiry process.
7201         (gnus-message 6 "Expiring articles...")
7202         ;; The list of articles that weren't expired is returned.
7203         (save-excursion
7204           (if expiry-wait
7205               (let ((nnmail-expiry-wait-function nil)
7206                     (nnmail-expiry-wait expiry-wait))
7207                 (setq es (gnus-request-expire-articles
7208                           expirable gnus-newsgroup-name)))
7209             (setq es (gnus-request-expire-articles
7210                       expirable gnus-newsgroup-name))))
7211         (unless total
7212           (setq gnus-newsgroup-expirable es))
7213         ;; We go through the old list of expirable, and mark all
7214         ;; really expired articles as nonexistent.
7215         (unless (eq es expirable)       ;If nothing was expired, we don't mark.
7216           (let ((gnus-use-cache nil))
7217             (while expirable
7218               (unless (memq (car expirable) es)
7219                 (when (gnus-data-find (car expirable))
7220                   (gnus-summary-mark-article
7221                    (car expirable) gnus-canceled-mark)))
7222               (setq expirable (cdr expirable)))))
7223         (gnus-message 6 "Expiring articles...done")))))
7224
7225 (defun gnus-summary-expire-articles-now ()
7226   "Expunge all expirable articles in the current group.
7227 This means that *all* articles that are marked as expirable will be
7228 deleted forever, right now."
7229   (interactive)
7230   (or gnus-expert-user
7231       (gnus-yes-or-no-p
7232        "Are you really, really, really sure you want to delete all these messages? ")
7233       (error "Phew!"))
7234   (gnus-summary-expire-articles t))
7235
7236 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
7237 (defun gnus-summary-delete-article (&optional n)
7238   "Delete the N next (mail) articles.
7239 This command actually deletes articles.  This is not a marking
7240 command.  The article will disappear forever from your life, never to
7241 return.
7242 If N is negative, delete backwards.
7243 If N is nil and articles have been marked with the process mark,
7244 delete these instead."
7245   (interactive "P")
7246   (unless (gnus-check-backend-function 'request-expire-articles
7247                                        gnus-newsgroup-name)
7248     (error "The current newsgroup does not support article deletion"))
7249   ;; Compute the list of articles to delete.
7250   (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
7251         not-deleted)
7252     (if (and gnus-novice-user
7253              (not (gnus-yes-or-no-p
7254                    (format "Do you really want to delete %s forever? "
7255                            (if (> (length articles) 1)
7256                                (format "these %s articles" (length articles))
7257                              "this article")))))
7258         ()
7259       ;; Delete the articles.
7260       (setq not-deleted (gnus-request-expire-articles
7261                          articles gnus-newsgroup-name 'force))
7262       (while articles
7263         (gnus-summary-remove-process-mark (car articles))
7264         ;; The backend might not have been able to delete the article
7265         ;; after all.
7266         (unless (memq (car articles) not-deleted)
7267           (gnus-summary-mark-article (car articles) gnus-canceled-mark))
7268         (setq articles (cdr articles)))
7269       (when not-deleted
7270         (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
7271     (gnus-summary-position-point)
7272     (gnus-set-mode-line 'summary)
7273     not-deleted))
7274
7275 (defun gnus-summary-edit-article (&optional force)
7276   "Edit the current article.
7277 This will have permanent effect only in mail groups.
7278 If FORCE is non-nil, allow editing of articles even in read-only
7279 groups."
7280   (interactive "P")
7281   (save-excursion
7282     (set-buffer gnus-summary-buffer)
7283     (gnus-set-global-variables)
7284     (when (and (not force)
7285                (gnus-group-read-only-p))
7286       (error "The current newsgroup does not support article editing"))
7287     ;; Select article if needed.
7288     (unless (eq (gnus-summary-article-number)
7289                 gnus-current-article)
7290       (gnus-summary-select-article t))
7291     (gnus-article-date-original)
7292     (gnus-article-edit-article
7293      `(lambda (no-highlight)
7294         (gnus-summary-edit-article-done
7295          ,(or (mail-header-references gnus-current-headers) "")
7296          ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight)))))
7297
7298 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
7299
7300 (defun gnus-summary-edit-article-done (&optional references read-only buffer
7301                                                  no-highlight)
7302   "Make edits to the current article permanent."
7303   (interactive)
7304   ;; Replace the article.
7305   (let ((buf (current-buffer)))
7306     (nnheader-temp-write nil
7307       (insert-buffer buf)
7308       (if (and (not read-only)
7309                (not (gnus-request-replace-article
7310                      (cdr gnus-article-current) (car gnus-article-current)
7311                      (current-buffer))))
7312           (error "Couldn't replace article")
7313         ;; Update the summary buffer.
7314         (if (and references
7315                  (equal (message-tokenize-header references " ")
7316                         (message-tokenize-header
7317                          (or (message-fetch-field "references") "") " ")))
7318             ;; We only have to update this line.
7319             (save-excursion
7320               (save-restriction
7321                 (message-narrow-to-head)
7322                 (let ((head (buffer-string))
7323                       header)
7324                   (nnheader-temp-write nil
7325                     (insert (format "211 %d Article retrieved.\n"
7326                                     (cdr gnus-article-current)))
7327                     (insert head)
7328                     (insert ".\n")
7329                     (let ((nntp-server-buffer (current-buffer)))
7330                       (setq header (car (gnus-get-newsgroup-headers
7331                                          (save-excursion
7332                                            (set-buffer gnus-summary-buffer)
7333                                            gnus-newsgroup-dependencies)
7334                                          t))))
7335                     (save-excursion
7336                       (set-buffer gnus-summary-buffer)
7337                       (gnus-data-set-header
7338                        (gnus-data-find (cdr gnus-article-current))
7339                        header)
7340                       (gnus-summary-update-article-line
7341                        (cdr gnus-article-current) header))))))
7342           ;; Update threads.
7343           (set-buffer (or buffer gnus-summary-buffer))
7344           (gnus-summary-update-article (cdr gnus-article-current)))
7345         ;; Prettify the article buffer again.
7346         (unless no-highlight
7347           (save-excursion
7348             (set-buffer gnus-article-buffer)
7349             (gnus-run-hooks 'gnus-article-display-hook)
7350             (set-buffer gnus-original-article-buffer)
7351             (gnus-request-article
7352              (cdr gnus-article-current)
7353              (car gnus-article-current) (current-buffer))))
7354         ;; Prettify the summary buffer line.
7355         (when (gnus-visual-p 'summary-highlight 'highlight)
7356           (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
7357
7358 (defun gnus-summary-edit-wash (key)
7359   "Perform editing command KEY in the article buffer."
7360   (interactive
7361    (list
7362     (progn
7363       (message "%s" (concat (this-command-keys) "- "))
7364       (read-char))))
7365   (message "")
7366   (gnus-summary-edit-article)
7367   (execute-kbd-macro (concat (this-command-keys) key))
7368   (gnus-article-edit-done))
7369
7370 ;;; Respooling
7371
7372 (defun gnus-summary-respool-query (&optional silent)
7373   "Query where the respool algorithm would put this article."
7374   (interactive)
7375   (let (gnus-mark-article-hook)
7376     (gnus-summary-select-article)
7377     (save-excursion
7378       (set-buffer gnus-original-article-buffer)
7379       (save-restriction
7380         (message-narrow-to-head)
7381         (let ((groups (nnmail-article-group 'identity)))
7382           (unless silent
7383             (if groups
7384                 (message "This message would go to %s"
7385                          (mapconcat 'car groups ", "))
7386               (message "This message would go to no groups"))
7387             groups))))))
7388
7389 ;; Summary marking commands.
7390
7391 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
7392   "Mark articles which has the same subject as read, and then select the next.
7393 If UNMARK is positive, remove any kind of mark.
7394 If UNMARK is negative, tick articles."
7395   (interactive "P")
7396   (when unmark
7397     (setq unmark (prefix-numeric-value unmark)))
7398   (let ((count
7399          (gnus-summary-mark-same-subject
7400           (gnus-summary-article-subject) unmark)))
7401     ;; Select next unread article.  If auto-select-same mode, should
7402     ;; select the first unread article.
7403     (gnus-summary-next-article t (and gnus-auto-select-same
7404                                       (gnus-summary-article-subject)))
7405     (gnus-message 7 "%d article%s marked as %s"
7406                   count (if (= count 1) " is" "s are")
7407                   (if unmark "unread" "read"))))
7408
7409 (defun gnus-summary-kill-same-subject (&optional unmark)
7410   "Mark articles which has the same subject as read.
7411 If UNMARK is positive, remove any kind of mark.
7412 If UNMARK is negative, tick articles."
7413   (interactive "P")
7414   (when unmark
7415     (setq unmark (prefix-numeric-value unmark)))
7416   (let ((count
7417          (gnus-summary-mark-same-subject
7418           (gnus-summary-article-subject) unmark)))
7419     ;; If marked as read, go to next unread subject.
7420     (when (null unmark)
7421       ;; Go to next unread subject.
7422       (gnus-summary-next-subject 1 t))
7423     (gnus-message 7 "%d articles are marked as %s"
7424                   count (if unmark "unread" "read"))))
7425
7426 (defun gnus-summary-mark-same-subject (subject &optional unmark)
7427   "Mark articles with same SUBJECT as read, and return marked number.
7428 If optional argument UNMARK is positive, remove any kinds of marks.
7429 If optional argument UNMARK is negative, mark articles as unread instead."
7430   (let ((count 1))
7431     (save-excursion
7432       (cond
7433        ((null unmark)                   ; Mark as read.
7434         (while (and
7435                 (progn
7436                   (gnus-summary-mark-article-as-read gnus-killed-mark)
7437                   (gnus-summary-show-thread) t)
7438                 (gnus-summary-find-subject subject))
7439           (setq count (1+ count))))
7440        ((> unmark 0)                    ; Tick.
7441         (while (and
7442                 (progn
7443                   (gnus-summary-mark-article-as-unread gnus-ticked-mark)
7444                   (gnus-summary-show-thread) t)
7445                 (gnus-summary-find-subject subject))
7446           (setq count (1+ count))))
7447        (t                               ; Mark as unread.
7448         (while (and
7449                 (progn
7450                   (gnus-summary-mark-article-as-unread gnus-unread-mark)
7451                   (gnus-summary-show-thread) t)
7452                 (gnus-summary-find-subject subject))
7453           (setq count (1+ count)))))
7454       (gnus-set-mode-line 'summary)
7455       ;; Return the number of marked articles.
7456       count)))
7457
7458 (defun gnus-summary-mark-as-processable (n &optional unmark)
7459   "Set the process mark on the next N articles.
7460 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
7461 the process mark instead.  The difference between N and the actual
7462 number of articles marked is returned."
7463   (interactive "p")
7464   (let ((backward (< n 0))
7465         (n (abs n)))
7466     (while (and
7467             (> n 0)
7468             (if unmark
7469                 (gnus-summary-remove-process-mark
7470                  (gnus-summary-article-number))
7471               (gnus-summary-set-process-mark (gnus-summary-article-number)))
7472             (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
7473       (setq n (1- n)))
7474     (when (/= 0 n)
7475       (gnus-message 7 "No more articles"))
7476     (gnus-summary-recenter)
7477     (gnus-summary-position-point)
7478     n))
7479
7480 (defun gnus-summary-unmark-as-processable (n)
7481   "Remove the process mark from the next N articles.
7482 If N is negative, unmark backward instead.  The difference between N and
7483 the actual number of articles unmarked is returned."
7484   (interactive "p")
7485   (gnus-summary-mark-as-processable n t))
7486
7487 (defun gnus-summary-unmark-all-processable ()
7488   "Remove the process mark from all articles."
7489   (interactive)
7490   (save-excursion
7491     (while gnus-newsgroup-processable
7492       (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
7493   (gnus-summary-position-point))
7494
7495 (defun gnus-summary-mark-as-expirable (n)
7496   "Mark N articles forward as expirable.
7497 If N is negative, mark backward instead.  The difference between N and
7498 the actual number of articles marked is returned."
7499   (interactive "p")
7500   (gnus-summary-mark-forward n gnus-expirable-mark))
7501
7502 (defun gnus-summary-mark-article-as-replied (article)
7503   "Mark ARTICLE replied and update the summary line."
7504   (push article gnus-newsgroup-replied)
7505   (let ((buffer-read-only nil))
7506     (when (gnus-summary-goto-subject article)
7507       (gnus-summary-update-secondary-mark article))))
7508
7509 (defun gnus-summary-set-bookmark (article)
7510   "Set a bookmark in current article."
7511   (interactive (list (gnus-summary-article-number)))
7512   (when (or (not (get-buffer gnus-article-buffer))
7513             (not gnus-current-article)
7514             (not gnus-article-current)
7515             (not (equal gnus-newsgroup-name (car gnus-article-current))))
7516     (error "No current article selected"))
7517   ;; Remove old bookmark, if one exists.
7518   (let ((old (assq article gnus-newsgroup-bookmarks)))
7519     (when old
7520       (setq gnus-newsgroup-bookmarks
7521             (delq old gnus-newsgroup-bookmarks))))
7522   ;; Set the new bookmark, which is on the form
7523   ;; (article-number . line-number-in-body).
7524   (push
7525    (cons article
7526          (save-excursion
7527            (set-buffer gnus-article-buffer)
7528            (count-lines
7529             (min (point)
7530                  (save-excursion
7531                    (goto-char (point-min))
7532                    (search-forward "\n\n" nil t)
7533                    (point)))
7534             (point))))
7535    gnus-newsgroup-bookmarks)
7536   (gnus-message 6 "A bookmark has been added to the current article."))
7537
7538 (defun gnus-summary-remove-bookmark (article)
7539   "Remove the bookmark from the current article."
7540   (interactive (list (gnus-summary-article-number)))
7541   ;; Remove old bookmark, if one exists.
7542   (let ((old (assq article gnus-newsgroup-bookmarks)))
7543     (if old
7544         (progn
7545           (setq gnus-newsgroup-bookmarks
7546                 (delq old gnus-newsgroup-bookmarks))
7547           (gnus-message 6 "Removed bookmark."))
7548       (gnus-message 6 "No bookmark in current article."))))
7549
7550 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
7551 (defun gnus-summary-mark-as-dormant (n)
7552   "Mark N articles forward as dormant.
7553 If N is negative, mark backward instead.  The difference between N and
7554 the actual number of articles marked is returned."
7555   (interactive "p")
7556   (gnus-summary-mark-forward n gnus-dormant-mark))
7557
7558 (defun gnus-summary-set-process-mark (article)
7559   "Set the process mark on ARTICLE and update the summary line."
7560   (setq gnus-newsgroup-processable
7561         (cons article
7562               (delq article gnus-newsgroup-processable)))
7563   (when (gnus-summary-goto-subject article)
7564     (gnus-summary-show-thread)
7565     (gnus-summary-update-secondary-mark article)))
7566
7567 (defun gnus-summary-remove-process-mark (article)
7568   "Remove the process mark from ARTICLE and update the summary line."
7569   (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
7570   (when (gnus-summary-goto-subject article)
7571     (gnus-summary-show-thread)
7572     (gnus-summary-update-secondary-mark article)))
7573
7574 (defun gnus-summary-set-saved-mark (article)
7575   "Set the process mark on ARTICLE and update the summary line."
7576   (push article gnus-newsgroup-saved)
7577   (when (gnus-summary-goto-subject article)
7578     (gnus-summary-update-secondary-mark article)))
7579
7580 (defun gnus-summary-mark-forward (n &optional mark no-expire)
7581   "Mark N articles as read forwards.
7582 If N is negative, mark backwards instead.  Mark with MARK, ?r by default.
7583 The difference between N and the actual number of articles marked is
7584 returned."
7585   (interactive "p")
7586   (let ((backward (< n 0))
7587         (gnus-summary-goto-unread
7588          (and gnus-summary-goto-unread
7589               (not (eq gnus-summary-goto-unread 'never))
7590               (not (memq mark (list gnus-unread-mark
7591                                     gnus-ticked-mark gnus-dormant-mark)))))
7592         (n (abs n))
7593         (mark (or mark gnus-del-mark)))
7594     (while (and (> n 0)
7595                 (gnus-summary-mark-article nil mark no-expire)
7596                 (zerop (gnus-summary-next-subject
7597                         (if backward -1 1)
7598                         (and gnus-summary-goto-unread
7599                              (not (eq gnus-summary-goto-unread 'never)))
7600                         t)))
7601       (setq n (1- n)))
7602     (when (/= 0 n)
7603       (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
7604     (gnus-summary-recenter)
7605     (gnus-summary-position-point)
7606     (gnus-set-mode-line 'summary)
7607     n))
7608
7609 (defun gnus-summary-mark-article-as-read (mark)
7610   "Mark the current article quickly as read with MARK."
7611   (let ((article (gnus-summary-article-number)))
7612     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
7613     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
7614     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
7615     (push (cons article mark) gnus-newsgroup-reads)
7616     ;; Possibly remove from cache, if that is used.
7617     (when gnus-use-cache
7618       (gnus-cache-enter-remove-article article))
7619     ;; Allow the backend to change the mark.
7620     (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
7621     ;; Check for auto-expiry.
7622     (when (and gnus-newsgroup-auto-expire
7623                (or (= mark gnus-killed-mark) (= mark gnus-del-mark)
7624                    (= mark gnus-catchup-mark) (= mark gnus-low-score-mark)
7625                    (= mark gnus-ancient-mark)
7626                    (= mark gnus-read-mark) (= mark gnus-souped-mark)
7627                    (= mark gnus-duplicate-mark)))
7628       (setq mark gnus-expirable-mark)
7629       (push article gnus-newsgroup-expirable))
7630     ;; Set the mark in the buffer.
7631     (gnus-summary-update-mark mark 'unread)
7632     t))
7633
7634 (defun gnus-summary-mark-article-as-unread (mark)
7635   "Mark the current article quickly as unread with MARK."
7636   (let* ((article (gnus-summary-article-number))
7637          (old-mark (gnus-summary-article-mark article)))
7638     (if (eq mark old-mark)
7639         t
7640       (if (<= article 0)
7641           (progn
7642             (gnus-error 1 "Can't mark negative article numbers")
7643             nil)
7644         (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
7645         (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
7646         (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
7647         (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
7648         (cond ((= mark gnus-ticked-mark)
7649                (push article gnus-newsgroup-marked))
7650               ((= mark gnus-dormant-mark)
7651                (push article gnus-newsgroup-dormant))
7652               (t
7653                (push article gnus-newsgroup-unreads)))
7654         (gnus-pull article gnus-newsgroup-reads)
7655
7656         ;; See whether the article is to be put in the cache.
7657         (and gnus-use-cache
7658              (vectorp (gnus-summary-article-header article))
7659              (save-excursion
7660                (gnus-cache-possibly-enter-article
7661                 gnus-newsgroup-name article
7662                 (gnus-summary-article-header article)
7663                 (= mark gnus-ticked-mark)
7664                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
7665
7666         ;; Fix the mark.
7667         (gnus-summary-update-mark mark 'unread)
7668         t))))
7669
7670 (defun gnus-summary-mark-article (&optional article mark no-expire)
7671   "Mark ARTICLE with MARK.  MARK can be any character.
7672 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
7673 `??' (dormant) and `?E' (expirable).
7674 If MARK is nil, then the default character `?D' is used.
7675 If ARTICLE is nil, then the article on the current line will be
7676 marked."
7677   ;; The mark might be a string.
7678   (when (stringp mark)
7679     (setq mark (aref mark 0)))
7680   ;; If no mark is given, then we check auto-expiring.
7681   (and (not no-expire)
7682        gnus-newsgroup-auto-expire
7683        (or (not mark)
7684            (and (gnus-characterp mark)
7685                 (or (= mark gnus-killed-mark) (= mark gnus-del-mark)
7686                     (= mark gnus-catchup-mark) (= mark gnus-low-score-mark)
7687                     (= mark gnus-read-mark) (= mark gnus-souped-mark)
7688                     (= mark gnus-duplicate-mark))))
7689        (setq mark gnus-expirable-mark))
7690   (let* ((mark (or mark gnus-del-mark))
7691          (article (or article (gnus-summary-article-number)))
7692          (old-mark (gnus-summary-article-mark article)))
7693     (if (eq mark old-mark)
7694         t
7695       (unless article
7696         (error "No article on current line"))
7697       (if (not (if (or (= mark gnus-unread-mark)
7698                        (= mark gnus-ticked-mark)
7699                        (= mark gnus-dormant-mark))
7700                    (gnus-mark-article-as-unread article mark)
7701                  (gnus-mark-article-as-read article mark)))
7702           t
7703         ;; See whether the article is to be put in the cache.
7704         (and gnus-use-cache
7705              (not (= mark gnus-canceled-mark))
7706              (vectorp (gnus-summary-article-header article))
7707              (save-excursion
7708                (gnus-cache-possibly-enter-article
7709                 gnus-newsgroup-name article
7710                 (gnus-summary-article-header article)
7711                 (= mark gnus-ticked-mark)
7712                 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
7713
7714         (when (gnus-summary-goto-subject article nil t)
7715           (let ((buffer-read-only nil))
7716             (gnus-summary-show-thread)
7717             ;; Fix the mark.
7718             (gnus-summary-update-mark mark 'unread)
7719             t))))))
7720
7721 (defun gnus-summary-update-secondary-mark (article)
7722   "Update the secondary (read, process, cache) mark."
7723   (gnus-summary-update-mark
7724    (cond ((memq article gnus-newsgroup-processable)
7725           gnus-process-mark)
7726          ((memq article gnus-newsgroup-cached)
7727           gnus-cached-mark)
7728          ((memq article gnus-newsgroup-replied)
7729           gnus-replied-mark)
7730          ((memq article gnus-newsgroup-saved)
7731           gnus-saved-mark)
7732          (t gnus-unread-mark))
7733    'replied)
7734   (when (gnus-visual-p 'summary-highlight 'highlight)
7735     (gnus-run-hooks 'gnus-summary-update-hook))
7736   t)
7737
7738 (defun gnus-summary-update-mark (mark type)
7739   (let ((forward (cdr (assq type gnus-summary-mark-positions)))
7740         (buffer-read-only nil))
7741     (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
7742     (when (looking-at "\r")
7743       (incf forward))
7744     (when (and forward
7745                (<= (+ forward (point)) (point-max)))
7746       ;; Go to the right position on the line.
7747       (goto-char (+ forward (point)))
7748       ;; Replace the old mark with the new mark.
7749       (subst-char-in-region (point) (1+ (point)) (following-char) mark)
7750       ;; Optionally update the marks by some user rule.
7751       (when (eq type 'unread)
7752         (gnus-data-set-mark
7753          (gnus-data-find (gnus-summary-article-number)) mark)
7754         (gnus-summary-update-line (eq mark gnus-unread-mark))))))
7755
7756 (defun gnus-mark-article-as-read (article &optional mark)
7757   "Enter ARTICLE in the pertinent lists and remove it from others."
7758   ;; Make the article expirable.
7759   (let ((mark (or mark gnus-del-mark)))
7760     (if (= mark gnus-expirable-mark)
7761         (push article gnus-newsgroup-expirable)
7762       (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)))
7763     ;; Remove from unread and marked lists.
7764     (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
7765     (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
7766     (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
7767     (push (cons article mark) gnus-newsgroup-reads)
7768     ;; Possibly remove from cache, if that is used.
7769     (when gnus-use-cache
7770       (gnus-cache-enter-remove-article article))
7771     t))
7772
7773 (defun gnus-mark-article-as-unread (article &optional mark)
7774   "Enter ARTICLE in the pertinent lists and remove it from others."
7775   (let ((mark (or mark gnus-ticked-mark)))
7776     (if (<= article 0)
7777         (progn
7778           (gnus-error 1 "Can't mark negative article numbers")
7779           nil)
7780       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
7781             gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
7782             gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
7783             gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
7784
7785       ;; Unsuppress duplicates?
7786       (when gnus-suppress-duplicates
7787         (gnus-dup-unsuppress-article article))
7788
7789       (cond ((= mark gnus-ticked-mark)
7790              (push article gnus-newsgroup-marked))
7791             ((= mark gnus-dormant-mark)
7792              (push article gnus-newsgroup-dormant))
7793             (t
7794              (push article gnus-newsgroup-unreads)))
7795       (gnus-pull article gnus-newsgroup-reads)
7796       t)))
7797
7798 (defalias 'gnus-summary-mark-as-unread-forward
7799   'gnus-summary-tick-article-forward)
7800 (make-obsolete 'gnus-summary-mark-as-unread-forward
7801                'gnus-summary-tick-article-forward)
7802 (defun gnus-summary-tick-article-forward (n)
7803   "Tick N articles forwards.
7804 If N is negative, tick backwards instead.
7805 The difference between N and the number of articles ticked is returned."
7806   (interactive "p")
7807   (gnus-summary-mark-forward n gnus-ticked-mark))
7808
7809 (defalias 'gnus-summary-mark-as-unread-backward
7810   'gnus-summary-tick-article-backward)
7811 (make-obsolete 'gnus-summary-mark-as-unread-backward
7812                'gnus-summary-tick-article-backward)
7813 (defun gnus-summary-tick-article-backward (n)
7814   "Tick N articles backwards.
7815 The difference between N and the number of articles ticked is returned."
7816   (interactive "p")
7817   (gnus-summary-mark-forward (- n) gnus-ticked-mark))
7818
7819 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
7820 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
7821 (defun gnus-summary-tick-article (&optional article clear-mark)
7822   "Mark current article as unread.
7823 Optional 1st argument ARTICLE specifies article number to be marked as unread.
7824 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
7825   (interactive)
7826   (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
7827                                        gnus-ticked-mark)))
7828
7829 (defun gnus-summary-mark-as-read-forward (n)
7830   "Mark N articles as read forwards.
7831 If N is negative, mark backwards instead.
7832 The difference between N and the actual number of articles marked is
7833 returned."
7834   (interactive "p")
7835   (gnus-summary-mark-forward n gnus-del-mark t))
7836
7837 (defun gnus-summary-mark-as-read-backward (n)
7838   "Mark the N articles as read backwards.
7839 The difference between N and the actual number of articles marked is
7840 returned."
7841   (interactive "p")
7842   (gnus-summary-mark-forward (- n) gnus-del-mark t))
7843
7844 (defun gnus-summary-mark-as-read (&optional article mark)
7845   "Mark current article as read.
7846 ARTICLE specifies the article to be marked as read.
7847 MARK specifies a string to be inserted at the beginning of the line."
7848   (gnus-summary-mark-article article mark))
7849
7850 (defun gnus-summary-clear-mark-forward (n)
7851   "Clear marks from N articles forward.
7852 If N is negative, clear backward instead.
7853 The difference between N and the number of marks cleared is returned."
7854   (interactive "p")
7855   (gnus-summary-mark-forward n gnus-unread-mark))
7856
7857 (defun gnus-summary-clear-mark-backward (n)
7858   "Clear marks from N articles backward.
7859 The difference between N and the number of marks cleared is returned."
7860   (interactive "p")
7861   (gnus-summary-mark-forward (- n) gnus-unread-mark))
7862
7863 (defun gnus-summary-mark-unread-as-read ()
7864   "Intended to be used by `gnus-summary-mark-article-hook'."
7865   (when (memq gnus-current-article gnus-newsgroup-unreads)
7866     (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
7867
7868 (defun gnus-summary-mark-read-and-unread-as-read ()
7869   "Intended to be used by `gnus-summary-mark-article-hook'."
7870   (let ((mark (gnus-summary-article-mark)))
7871     (when (or (gnus-unread-mark-p mark)
7872               (gnus-read-mark-p mark))
7873       (gnus-summary-mark-article gnus-current-article gnus-read-mark))))
7874
7875 (defun gnus-summary-mark-region-as-read (point mark all)
7876   "Mark all unread articles between point and mark as read.
7877 If given a prefix, mark all articles between point and mark as read,
7878 even ticked and dormant ones."
7879   (interactive "r\nP")
7880   (save-excursion
7881     (let (article)
7882       (goto-char point)
7883       (beginning-of-line)
7884       (while (and
7885               (< (point) mark)
7886               (progn
7887                 (when (or all
7888                           (memq (setq article (gnus-summary-article-number))
7889                                 gnus-newsgroup-unreads))
7890                   (gnus-summary-mark-article article gnus-del-mark))
7891                 t)
7892               (gnus-summary-find-next))))))
7893
7894 (defun gnus-summary-mark-below (score mark)
7895   "Mark articles with score less than SCORE with MARK."
7896   (interactive "P\ncMark: ")
7897   (setq score (if score
7898                   (prefix-numeric-value score)
7899                 (or gnus-summary-default-score 0)))
7900   (save-excursion
7901     (set-buffer gnus-summary-buffer)
7902     (goto-char (point-min))
7903     (while
7904         (progn
7905           (and (< (gnus-summary-article-score) score)
7906                (gnus-summary-mark-article nil mark))
7907           (gnus-summary-find-next)))))
7908
7909 (defun gnus-summary-kill-below (&optional score)
7910   "Mark articles with score below SCORE as read."
7911   (interactive "P")
7912   (gnus-summary-mark-below score gnus-killed-mark))
7913
7914 (defun gnus-summary-clear-above (&optional score)
7915   "Clear all marks from articles with score above SCORE."
7916   (interactive "P")
7917   (gnus-summary-mark-above score gnus-unread-mark))
7918
7919 (defun gnus-summary-tick-above (&optional score)
7920   "Tick all articles with score above SCORE."
7921   (interactive "P")
7922   (gnus-summary-mark-above score gnus-ticked-mark))
7923
7924 (defun gnus-summary-mark-above (score mark)
7925   "Mark articles with score over SCORE with MARK."
7926   (interactive "P\ncMark: ")
7927   (setq score (if score
7928                   (prefix-numeric-value score)
7929                 (or gnus-summary-default-score 0)))
7930   (save-excursion
7931     (set-buffer gnus-summary-buffer)
7932     (goto-char (point-min))
7933     (while (and (progn
7934                   (when (> (gnus-summary-article-score) score)
7935                     (gnus-summary-mark-article nil mark))
7936                   t)
7937                 (gnus-summary-find-next)))))
7938
7939 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
7940 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
7941 (defun gnus-summary-limit-include-expunged (&optional no-error)
7942   "Display all the hidden articles that were expunged for low scores."
7943   (interactive)
7944   (let ((buffer-read-only nil))
7945     (let ((scored gnus-newsgroup-scored)
7946           headers h)
7947       (while scored
7948         (unless (gnus-summary-goto-subject (caar scored))
7949           (and (setq h (gnus-summary-article-header (caar scored)))
7950                (< (cdar scored) gnus-summary-expunge-below)
7951                (push h headers)))
7952         (setq scored (cdr scored)))
7953       (if (not headers)
7954           (when (not no-error)
7955             (error "No expunged articles hidden"))
7956         (goto-char (point-min))
7957         (gnus-summary-prepare-unthreaded (nreverse headers))
7958         (goto-char (point-min))
7959         (gnus-summary-position-point)
7960         t))))
7961
7962 (defun gnus-summary-catchup (&optional all quietly to-here not-mark)
7963   "Mark all unread articles in this newsgroup as read.
7964 If prefix argument ALL is non-nil, ticked and dormant articles will
7965 also be marked as read.
7966 If QUIETLY is non-nil, no questions will be asked.
7967 If TO-HERE is non-nil, it should be a point in the buffer.  All
7968 articles before this point will be marked as read.
7969 Note that this function will only catch up the unread article
7970 in the current summary buffer limitation.
7971 The number of articles marked as read is returned."
7972   (interactive "P")
7973   (prog1
7974       (save-excursion
7975         (when (or quietly
7976                   (not gnus-interactive-catchup) ;Without confirmation?
7977                   gnus-expert-user
7978                   (gnus-y-or-n-p
7979                    (if all
7980                        "Mark absolutely all articles as read? "
7981                      "Mark all unread articles as read? ")))
7982           (if (and not-mark
7983                    (not gnus-newsgroup-adaptive)
7984                    (not gnus-newsgroup-auto-expire)
7985                    (not gnus-suppress-duplicates)
7986                    (or (not gnus-use-cache)
7987                        (eq gnus-use-cache 'passive)))
7988               (progn
7989                 (when all
7990                   (setq gnus-newsgroup-marked nil
7991                         gnus-newsgroup-dormant nil))
7992                 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable))
7993             ;; We actually mark all articles as canceled, which we
7994             ;; have to do when using auto-expiry or adaptive scoring.
7995             (gnus-summary-show-all-threads)
7996             (when (gnus-summary-first-subject (not all) t)
7997               (while (and
7998                       (if to-here (< (point) to-here) t)
7999                       (gnus-summary-mark-article-as-read gnus-catchup-mark)
8000                       (gnus-summary-find-next (not all) nil nil t))))
8001             (gnus-set-mode-line 'summary))
8002           t))
8003     (gnus-summary-position-point)))
8004
8005 (defun gnus-summary-catchup-to-here (&optional all)
8006   "Mark all unticked articles before the current one as read.
8007 If ALL is non-nil, also mark ticked and dormant articles as read."
8008   (interactive "P")
8009   (save-excursion
8010     (gnus-save-hidden-threads
8011       (let ((beg (point)))
8012         ;; We check that there are unread articles.
8013         (when (or all (gnus-summary-find-prev))
8014           (gnus-summary-catchup all t beg)))))
8015   (gnus-summary-position-point))
8016
8017 (defun gnus-summary-catchup-all (&optional quietly)
8018   "Mark all articles in this newsgroup as read."
8019   (interactive "P")
8020   (gnus-summary-catchup t quietly))
8021
8022 (defun gnus-summary-catchup-and-exit (&optional all quietly)
8023   "Mark all articles not marked as unread in this newsgroup as read, then exit.
8024 If prefix argument ALL is non-nil, all articles are marked as read."
8025   (interactive "P")
8026   (when (gnus-summary-catchup all quietly nil 'fast)
8027     ;; Select next newsgroup or exit.
8028     (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
8029              (eq gnus-auto-select-next 'quietly))
8030         (gnus-summary-next-group nil)
8031       (gnus-summary-exit))))
8032
8033 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
8034   "Mark all articles in this newsgroup as read, and then exit."
8035   (interactive "P")
8036   (gnus-summary-catchup-and-exit t quietly))
8037
8038 ;; Suggested by "Arne Eofsson" <arne@hodgkin.mbi.ucla.edu>.
8039 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
8040   "Mark all articles in this group as read and select the next group.
8041 If given a prefix, mark all articles, unread as well as ticked, as
8042 read."
8043   (interactive "P")
8044   (save-excursion
8045     (gnus-summary-catchup all))
8046   (gnus-summary-next-article t nil nil t))
8047
8048 ;; Thread-based commands.
8049
8050 (defun gnus-summary-articles-in-thread (&optional article)
8051   "Return a list of all articles in the current thread.
8052 If ARTICLE is non-nil, return all articles in the thread that starts
8053 with that article."
8054   (let* ((article (or article (gnus-summary-article-number)))
8055          (data (gnus-data-find-list article))
8056          (top-level (gnus-data-level (car data)))
8057          (top-subject
8058           (cond ((null gnus-thread-operation-ignore-subject)
8059                  (gnus-simplify-subject-re
8060                   (mail-header-subject (gnus-data-header (car data)))))
8061                 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
8062                  (gnus-simplify-subject-fuzzy
8063                   (mail-header-subject (gnus-data-header (car data)))))
8064                 (t nil)))
8065          (end-point (save-excursion
8066                       (if (gnus-summary-go-to-next-thread)
8067                           (point) (point-max))))
8068          articles)
8069     (while (and data
8070                 (< (gnus-data-pos (car data)) end-point))
8071       (when (or (not top-subject)
8072                 (string= top-subject
8073                          (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
8074                              (gnus-simplify-subject-fuzzy
8075                               (mail-header-subject
8076                                (gnus-data-header (car data))))
8077                            (gnus-simplify-subject-re
8078                             (mail-header-subject
8079                              (gnus-data-header (car data)))))))
8080         (push (gnus-data-number (car data)) articles))
8081       (unless (and (setq data (cdr data))
8082                    (> (gnus-data-level (car data)) top-level))
8083         (setq data nil)))
8084     ;; Return the list of articles.
8085     (nreverse articles)))
8086
8087 (defun gnus-summary-rethread-current ()
8088   "Rethread the thread the current article is part of."
8089   (interactive)
8090   (let* ((gnus-show-threads t)
8091          (article (gnus-summary-article-number))
8092          (id (mail-header-id (gnus-summary-article-header)))
8093          (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
8094     (unless id
8095       (error "No article on the current line"))
8096     (gnus-rebuild-thread id)
8097     (gnus-summary-goto-subject article)))
8098
8099 (defun gnus-summary-reparent-thread ()
8100   "Make the current article child of the marked (or previous) article.
8101
8102 Note that the re-threading will only work if `gnus-thread-ignore-subject'
8103 is non-nil or the Subject: of both articles are the same."
8104   (interactive)
8105   (unless (not (gnus-group-read-only-p))
8106     (error "The current newsgroup does not support article editing"))
8107   (unless (<= (length gnus-newsgroup-processable) 1)
8108     (error "No more than one article may be marked"))
8109   (save-window-excursion
8110     (let ((gnus-article-buffer " *reparent*")
8111           (current-article (gnus-summary-article-number))
8112           ;; First grab the marked article, otherwise one line up.
8113           (parent-article (if (not (null gnus-newsgroup-processable))
8114                               (car gnus-newsgroup-processable)
8115                             (save-excursion
8116                               (if (eq (forward-line -1) 0)
8117                                   (gnus-summary-article-number)
8118                                 (error "Beginning of summary buffer"))))))
8119       (unless (not (eq current-article parent-article))
8120         (error "An article may not be self-referential"))
8121       (let ((message-id (mail-header-id
8122                          (gnus-summary-article-header parent-article))))
8123         (unless (and message-id (not (equal message-id "")))
8124           (error "No message-id in desired parent"))
8125         ;; We don't want the article to be marked as read.
8126         (let (gnus-mark-article-hook)
8127           (gnus-summary-select-article t t nil current-article))
8128         (set-buffer gnus-original-article-buffer)
8129         (let ((buf (format "%s" (buffer-string))))
8130           (nnheader-temp-write nil
8131             (insert buf)
8132             (goto-char (point-min))
8133             (if (re-search-forward "^References: " nil t)
8134                 (progn
8135                   (re-search-forward "^[^ \t]" nil t)
8136                   (forward-line -1)
8137                   (end-of-line)
8138                   (insert " " message-id))
8139               (insert "References: " message-id "\n"))
8140             (unless (gnus-request-replace-article
8141                      current-article (car gnus-article-current)
8142                      (current-buffer))
8143               (error "Couldn't replace article"))))
8144         (set-buffer gnus-summary-buffer)
8145         (gnus-summary-unmark-all-processable)
8146         (gnus-summary-update-article current-article)
8147         (gnus-summary-rethread-current)
8148         (gnus-message 3 "Article %d is now the child of article %d"
8149                       current-article parent-article)))))
8150
8151 (defun gnus-summary-toggle-threads (&optional arg)
8152   "Toggle showing conversation threads.
8153 If ARG is positive number, turn showing conversation threads on."
8154   (interactive "P")
8155   (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
8156     (setq gnus-show-threads
8157           (if (null arg) (not gnus-show-threads)
8158             (> (prefix-numeric-value arg) 0)))
8159     (gnus-summary-prepare)
8160     (gnus-summary-goto-subject current)
8161     (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
8162     (gnus-summary-position-point)))
8163
8164 (defun gnus-summary-show-all-threads ()
8165   "Show all threads."
8166   (interactive)
8167   (save-excursion
8168     (let ((buffer-read-only nil))
8169       (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
8170   (gnus-summary-position-point))
8171
8172 (defun gnus-summary-show-thread ()
8173   "Show thread subtrees.
8174 Returns nil if no thread was there to be shown."
8175   (interactive)
8176   (let ((buffer-read-only nil)
8177         (orig (point))
8178         ;; first goto end then to beg, to have point at beg after let
8179         (end (progn (end-of-line) (point)))
8180         (beg (progn (beginning-of-line) (point))))
8181     (prog1
8182         ;; Any hidden lines here?
8183         (search-forward "\r" end t)
8184       (subst-char-in-region beg end ?\^M ?\n t)
8185       (goto-char orig)
8186       (gnus-summary-position-point))))
8187
8188 (defun gnus-summary-hide-all-threads ()
8189   "Hide all thread subtrees."
8190   (interactive)
8191   (save-excursion
8192     (goto-char (point-min))
8193     (gnus-summary-hide-thread)
8194     (while (zerop (gnus-summary-next-thread 1 t))
8195       (gnus-summary-hide-thread)))
8196   (gnus-summary-position-point))
8197
8198 (defun gnus-summary-hide-thread ()
8199   "Hide thread subtrees.
8200 Returns nil if no threads were there to be hidden."
8201   (interactive)
8202   (let ((buffer-read-only nil)
8203         (start (point))
8204         (article (gnus-summary-article-number)))
8205     (goto-char start)
8206     ;; Go forward until either the buffer ends or the subthread
8207     ;; ends.
8208     (when (and (not (eobp))
8209                (or (zerop (gnus-summary-next-thread 1 t))
8210                    (goto-char (point-max))))
8211       (prog1
8212           (if (and (> (point) start)
8213                    (search-backward "\n" start t))
8214               (progn
8215                 (subst-char-in-region start (point) ?\n ?\^M)
8216                 (gnus-summary-goto-subject article))
8217             (goto-char start)
8218             nil)
8219         ;;(gnus-summary-position-point)
8220         ))))
8221
8222 (defun gnus-summary-go-to-next-thread (&optional previous)
8223   "Go to the same level (or less) next thread.
8224 If PREVIOUS is non-nil, go to previous thread instead.
8225 Return the article number moved to, or nil if moving was impossible."
8226   (let ((level (gnus-summary-thread-level))
8227         (way (if previous -1 1))
8228         (beg (point)))
8229     (forward-line way)
8230     (while (and (not (eobp))
8231                 (< level (gnus-summary-thread-level)))
8232       (forward-line way))
8233     (if (eobp)
8234         (progn
8235           (goto-char beg)
8236           nil)
8237       (setq beg (point))
8238       (prog1
8239           (gnus-summary-article-number)
8240         (goto-char beg)))))
8241
8242 (defun gnus-summary-next-thread (n &optional silent)
8243   "Go to the same level next N'th thread.
8244 If N is negative, search backward instead.
8245 Returns the difference between N and the number of skips actually
8246 done.
8247
8248 If SILENT, don't output messages."
8249   (interactive "p")
8250   (let ((backward (< n 0))
8251         (n (abs n)))
8252     (while (and (> n 0)
8253                 (gnus-summary-go-to-next-thread backward))
8254       (decf n))
8255     (unless silent
8256       (gnus-summary-position-point))
8257     (when (and (not silent) (/= 0 n))
8258       (gnus-message 7 "No more threads"))
8259     n))
8260
8261 (defun gnus-summary-prev-thread (n)
8262   "Go to the same level previous N'th thread.
8263 Returns the difference between N and the number of skips actually
8264 done."
8265   (interactive "p")
8266   (gnus-summary-next-thread (- n)))
8267
8268 (defun gnus-summary-go-down-thread ()
8269   "Go down one level in the current thread."
8270   (let ((children (gnus-summary-article-children)))
8271     (when children
8272       (gnus-summary-goto-subject (car children)))))
8273
8274 (defun gnus-summary-go-up-thread ()
8275   "Go up one level in the current thread."
8276   (let ((parent (gnus-summary-article-parent)))
8277     (when parent
8278       (gnus-summary-goto-subject parent))))
8279
8280 (defun gnus-summary-down-thread (n)
8281   "Go down thread N steps.
8282 If N is negative, go up instead.
8283 Returns the difference between N and how many steps down that were
8284 taken."
8285   (interactive "p")
8286   (let ((up (< n 0))
8287         (n (abs n)))
8288     (while (and (> n 0)
8289                 (if up (gnus-summary-go-up-thread)
8290                   (gnus-summary-go-down-thread)))
8291       (setq n (1- n)))
8292     (gnus-summary-position-point)
8293     (when (/= 0 n)
8294       (gnus-message 7 "Can't go further"))
8295     n))
8296
8297 (defun gnus-summary-up-thread (n)
8298   "Go up thread N steps.
8299 If N is negative, go up instead.
8300 Returns the difference between N and how many steps down that were
8301 taken."
8302   (interactive "p")
8303   (gnus-summary-down-thread (- n)))
8304
8305 (defun gnus-summary-top-thread ()
8306   "Go to the top of the thread."
8307   (interactive)
8308   (while (gnus-summary-go-up-thread))
8309   (gnus-summary-article-number))
8310
8311 (defun gnus-summary-kill-thread (&optional unmark)
8312   "Mark articles under current thread as read.
8313 If the prefix argument is positive, remove any kinds of marks.
8314 If the prefix argument is negative, tick articles instead."
8315   (interactive "P")
8316   (when unmark
8317     (setq unmark (prefix-numeric-value unmark)))
8318   (let ((articles (gnus-summary-articles-in-thread)))
8319     (save-excursion
8320       ;; Expand the thread.
8321       (gnus-summary-show-thread)
8322       ;; Mark all the articles.
8323       (while articles
8324         (gnus-summary-goto-subject (car articles))
8325         (cond ((null unmark)
8326                (gnus-summary-mark-article-as-read gnus-killed-mark))
8327               ((> unmark 0)
8328                (gnus-summary-mark-article-as-unread gnus-unread-mark))
8329               (t
8330                (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
8331         (setq articles (cdr articles))))
8332     ;; Hide killed subtrees.
8333     (and (null unmark)
8334          gnus-thread-hide-killed
8335          (gnus-summary-hide-thread))
8336     ;; If marked as read, go to next unread subject.
8337     (when (null unmark)
8338       ;; Go to next unread subject.
8339       (gnus-summary-next-subject 1 t)))
8340   (gnus-set-mode-line 'summary))
8341
8342 ;; Summary sorting commands
8343
8344 (defun gnus-summary-sort-by-number (&optional reverse)
8345   "Sort the summary buffer by article number.
8346 Argument REVERSE means reverse order."
8347   (interactive "P")
8348   (gnus-summary-sort 'number reverse))
8349
8350 (defun gnus-summary-sort-by-author (&optional reverse)
8351   "Sort the summary buffer by author name alphabetically.
8352 If case-fold-search is non-nil, case of letters is ignored.
8353 Argument REVERSE means reverse order."
8354   (interactive "P")
8355   (gnus-summary-sort 'author reverse))
8356
8357 (defun gnus-summary-sort-by-subject (&optional reverse)
8358   "Sort the summary buffer by subject alphabetically.  `Re:'s are ignored.
8359 If case-fold-search is non-nil, case of letters is ignored.
8360 Argument REVERSE means reverse order."
8361   (interactive "P")
8362   (gnus-summary-sort 'subject reverse))
8363
8364 (defun gnus-summary-sort-by-date (&optional reverse)
8365   "Sort the summary buffer by date.
8366 Argument REVERSE means reverse order."
8367   (interactive "P")
8368   (gnus-summary-sort 'date reverse))
8369
8370 (defun gnus-summary-sort-by-score (&optional reverse)
8371   "Sort the summary buffer by score.
8372 Argument REVERSE means reverse order."
8373   (interactive "P")
8374   (gnus-summary-sort 'score reverse))
8375
8376 (defun gnus-summary-sort-by-lines (&optional reverse)
8377   "Sort the summary buffer by article length.
8378 Argument REVERSE means reverse order."
8379   (interactive "P")
8380   (gnus-summary-sort 'lines reverse))
8381
8382 (defun gnus-summary-sort (predicate reverse)
8383   "Sort summary buffer by PREDICATE.  REVERSE means reverse order."
8384   (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
8385          (article (intern (format "gnus-article-sort-by-%s" predicate)))
8386          (gnus-thread-sort-functions
8387           (list
8388            (if (not reverse)
8389                thread
8390              `(lambda (t1 t2)
8391                 (,thread t2 t1)))))
8392          (gnus-article-sort-functions
8393           (list
8394            (if (not reverse)
8395                article
8396              `(lambda (t1 t2)
8397                 (,article t2 t1)))))
8398          (buffer-read-only)
8399          (gnus-summary-prepare-hook nil))
8400     ;; We do the sorting by regenerating the threads.
8401     (gnus-summary-prepare)
8402     ;; Hide subthreads if needed.
8403     (when (and gnus-show-threads gnus-thread-hide-subtree)
8404       (gnus-summary-hide-all-threads))))
8405
8406 ;; Summary saving commands.
8407
8408 (defun gnus-summary-save-article (&optional n not-saved)
8409   "Save the current article using the default saver function.
8410 If N is a positive number, save the N next articles.
8411 If N is a negative number, save the N previous articles.
8412 If N is nil and any articles have been marked with the process mark,
8413 save those articles instead.
8414 The variable `gnus-default-article-saver' specifies the saver function."
8415   (interactive "P")
8416   (let* ((articles (gnus-summary-work-articles n))
8417          (save-buffer (save-excursion
8418                         (nnheader-set-temp-buffer " *Gnus Save*")))
8419          (num (length articles))
8420          header article file)
8421     (while articles
8422       (setq header (gnus-summary-article-header
8423                     (setq article (pop articles))))
8424       (if (not (vectorp header))
8425           ;; This is a pseudo-article.
8426           (if (assq 'name header)
8427               (gnus-copy-file (cdr (assq 'name header)))
8428             (gnus-message 1 "Article %d is unsaveable" article))
8429         ;; This is a real article.
8430         (save-window-excursion
8431           (gnus-summary-select-article t nil nil article))
8432         (save-excursion
8433           (set-buffer save-buffer)
8434           (erase-buffer)
8435           (insert-buffer-substring gnus-original-article-buffer))
8436         (setq file (gnus-article-save save-buffer file num))
8437         (gnus-summary-remove-process-mark article)
8438         (unless not-saved
8439           (gnus-summary-set-saved-mark article))))
8440     (gnus-kill-buffer save-buffer)
8441     (gnus-summary-position-point)
8442     (gnus-set-mode-line 'summary)
8443     n))
8444
8445 (defun gnus-summary-pipe-output (&optional arg)
8446   "Pipe the current article to a subprocess.
8447 If N is a positive number, pipe the N next articles.
8448 If N is a negative number, pipe the N previous articles.
8449 If N is nil and any articles have been marked with the process mark,
8450 pipe those articles instead."
8451   (interactive "P")
8452   (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
8453     (gnus-summary-save-article arg t))
8454   (gnus-configure-windows 'pipe))
8455
8456 (defun gnus-summary-save-article-mail (&optional arg)
8457   "Append the current article to an mail file.
8458 If N is a positive number, save the N next articles.
8459 If N is a negative number, save the N previous articles.
8460 If N is nil and any articles have been marked with the process mark,
8461 save those articles instead."
8462   (interactive "P")
8463   (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
8464     (gnus-summary-save-article arg)))
8465
8466 (defun gnus-summary-save-article-rmail (&optional arg)
8467   "Append the current article to an rmail file.
8468 If N is a positive number, save the N next articles.
8469 If N is a negative number, save the N previous articles.
8470 If N is nil and any articles have been marked with the process mark,
8471 save those articles instead."
8472   (interactive "P")
8473   (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
8474     (gnus-summary-save-article arg)))
8475
8476 (defun gnus-summary-save-article-file (&optional arg)
8477   "Append the current article to a file.
8478 If N is a positive number, save the N next articles.
8479 If N is a negative number, save the N previous articles.
8480 If N is nil and any articles have been marked with the process mark,
8481 save those articles instead."
8482   (interactive "P")
8483   (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
8484     (gnus-summary-save-article arg)))
8485
8486 (defun gnus-summary-write-article-file (&optional arg)
8487   "Write the current article to a file, deleting the previous file.
8488 If N is a positive number, save the N next articles.
8489 If N is a negative number, save the N previous articles.
8490 If N is nil and any articles have been marked with the process mark,
8491 save those articles instead."
8492   (interactive "P")
8493   (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
8494     (gnus-summary-save-article arg)))
8495
8496 (defun gnus-summary-save-article-body-file (&optional arg)
8497   "Append the current article body to a file.
8498 If N is a positive number, save the N next articles.
8499 If N is a negative number, save the N previous articles.
8500 If N is nil and any articles have been marked with the process mark,
8501 save those articles instead."
8502   (interactive "P")
8503   (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
8504     (gnus-summary-save-article arg)))
8505
8506 (defun gnus-summary-pipe-message (program)
8507   "Pipe the current article through PROGRAM."
8508   (interactive "sProgram: ")
8509   (gnus-summary-select-article)
8510   (let ((mail-header-separator "")
8511         (art-buf (get-buffer gnus-article-buffer)))
8512     (gnus-eval-in-buffer-window gnus-article-buffer
8513       (save-restriction
8514         (widen)
8515         (let ((start (window-start))
8516               buffer-read-only)
8517           (message-pipe-buffer-body program)
8518           (set-window-start (get-buffer-window (current-buffer)) start))))))
8519
8520 (defun gnus-get-split-value (methods)
8521   "Return a value based on the split METHODS."
8522   (let (split-name method result match)
8523     (when methods
8524       (save-excursion
8525         (set-buffer gnus-original-article-buffer)
8526         (save-restriction
8527           (nnheader-narrow-to-headers)
8528           (while methods
8529             (goto-char (point-min))
8530             (setq method (pop methods))
8531             (setq match (car method))
8532             (when (cond
8533                    ((stringp match)
8534                     ;; Regular expression.
8535                     (ignore-errors
8536                       (re-search-forward match nil t)))
8537                    ((gnus-functionp match)
8538                     ;; Function.
8539                     (save-restriction
8540                       (widen)
8541                       (setq result (funcall match gnus-newsgroup-name))))
8542                    ((consp match)
8543                     ;; Form.
8544                     (save-restriction
8545                       (widen)
8546                       (setq result (eval match)))))
8547               (setq split-name (append (cdr method) split-name))
8548               (cond ((stringp result)
8549                      (push (expand-file-name
8550                             result gnus-article-save-directory)
8551                            split-name))
8552                     ((consp result)
8553                      (setq split-name (append result split-name)))))))))
8554     split-name))
8555
8556 (defun gnus-valid-move-group-p (group)
8557   (and (boundp group)
8558        (symbol-name group)
8559        (memq 'respool
8560              (assoc (symbol-name
8561                      (car (gnus-find-method-for-group
8562                            (symbol-name group))))
8563                     gnus-valid-select-methods))))
8564
8565 (defun gnus-read-move-group-name (prompt default articles prefix)
8566   "Read a group name."
8567   (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
8568          (minibuffer-confirm-incomplete nil) ; XEmacs
8569          (prom
8570           (format "%s %s to:"
8571                   prompt
8572                   (if (> (length articles) 1)
8573                       (format "these %d articles" (length articles))
8574                     "this article")))
8575          (to-newsgroup
8576           (cond
8577            ((null split-name)
8578             (gnus-completing-read default prom
8579                                   gnus-active-hashtb
8580                                   'gnus-valid-move-group-p
8581                                   nil prefix
8582                                   'gnus-group-history))
8583            ((= 1 (length split-name))
8584             (gnus-completing-read (car split-name) prom
8585                                   gnus-active-hashtb
8586                                   'gnus-valid-move-group-p
8587                                   nil nil
8588                                   'gnus-group-history))
8589            (t
8590             (gnus-completing-read nil prom
8591                                   (mapcar (lambda (el) (list el))
8592                                           (nreverse split-name))
8593                                   nil nil nil
8594                                   'gnus-group-history)))))
8595     (when to-newsgroup
8596       (if (or (string= to-newsgroup "")
8597               (string= to-newsgroup prefix))
8598           (setq to-newsgroup default))
8599       (unless to-newsgroup
8600         (error "No group name entered"))
8601       (or (gnus-active to-newsgroup)
8602           (gnus-activate-group to-newsgroup)
8603           (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
8604                                      to-newsgroup))
8605               (or (and (gnus-request-create-group
8606                         to-newsgroup (gnus-group-name-to-method to-newsgroup))
8607                        (gnus-activate-group to-newsgroup nil nil
8608                                             (gnus-group-name-to-method
8609                                              to-newsgroup)))
8610                   (error "Couldn't create group %s" to-newsgroup)))
8611           (error "No such group: %s" to-newsgroup)))
8612     to-newsgroup))
8613
8614 ;; Summary extract commands
8615
8616 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
8617   (let ((buffer-read-only nil)
8618         (article (gnus-summary-article-number))
8619         after-article b e)
8620     (unless (gnus-summary-goto-subject article)
8621       (error "No such article: %d" article))
8622     (gnus-summary-position-point)
8623     ;; If all commands are to be bunched up on one line, we collect
8624     ;; them here.
8625     (unless gnus-view-pseudos-separately
8626       (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
8627             files action)
8628         (while ps
8629           (setq action (cdr (assq 'action (car ps))))
8630           (setq files (list (cdr (assq 'name (car ps)))))
8631           (while (and ps (cdr ps)
8632                       (string= (or action "1")
8633                                (or (cdr (assq 'action (cadr ps))) "2")))
8634             (push (cdr (assq 'name (cadr ps))) files)
8635             (setcdr ps (cddr ps)))
8636           (when files
8637             (when (not (string-match "%s" action))
8638               (push " " files))
8639             (push " " files)
8640             (when (assq 'execute (car ps))
8641               (setcdr (assq 'execute (car ps))
8642                       (funcall (if (string-match "%s" action)
8643                                    'format 'concat)
8644                                action
8645                                (mapconcat
8646                                 (lambda (f)
8647                                   (if (equal f " ")
8648                                       f
8649                                     (gnus-quote-arg-for-sh-or-csh f)))
8650                                 files " ")))))
8651           (setq ps (cdr ps)))))
8652     (if (and gnus-view-pseudos (not not-view))
8653         (while pslist
8654           (when (assq 'execute (car pslist))
8655             (gnus-execute-command (cdr (assq 'execute (car pslist)))
8656                                   (eq gnus-view-pseudos 'not-confirm)))
8657           (setq pslist (cdr pslist)))
8658       (save-excursion
8659         (while pslist
8660           (setq after-article (or (cdr (assq 'article (car pslist)))
8661                                   (gnus-summary-article-number)))
8662           (gnus-summary-goto-subject after-article)
8663           (forward-line 1)
8664           (setq b (point))
8665           (insert "    " (file-name-nondirectory
8666                           (cdr (assq 'name (car pslist))))
8667                   ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
8668           (setq e (point))
8669           (forward-line -1)             ; back to `b'
8670           (gnus-add-text-properties
8671            b (1- e) (list 'gnus-number gnus-reffed-article-number
8672                           gnus-mouse-face-prop gnus-mouse-face))
8673           (gnus-data-enter
8674            after-article gnus-reffed-article-number
8675            gnus-unread-mark b (car pslist) 0 (- e b))
8676           (push gnus-reffed-article-number gnus-newsgroup-unreads)
8677           (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
8678           (setq pslist (cdr pslist)))))))
8679
8680 (defun gnus-pseudos< (p1 p2)
8681   (let ((c1 (cdr (assq 'action p1)))
8682         (c2 (cdr (assq 'action p2))))
8683     (and c1 c2 (string< c1 c2))))
8684
8685 (defun gnus-request-pseudo-article (props)
8686   (cond ((assq 'execute props)
8687          (gnus-execute-command (cdr (assq 'execute props)))))
8688   (let ((gnus-current-article (gnus-summary-article-number)))
8689     (gnus-run-hooks 'gnus-mark-article-hook)))
8690
8691 (defun gnus-execute-command (command &optional automatic)
8692   (save-excursion
8693     (gnus-article-setup-buffer)
8694     (set-buffer gnus-article-buffer)
8695     (setq buffer-read-only nil)
8696     (let ((command (if automatic command
8697                      (read-string "Command: " (cons command 0)))))
8698       (erase-buffer)
8699       (insert "$ " command "\n\n")
8700       (if gnus-view-pseudo-asynchronously
8701           (start-process "gnus-execute" (current-buffer) shell-file-name
8702                          shell-command-switch command)
8703         (call-process shell-file-name nil t nil
8704                       shell-command-switch command)))))
8705
8706 ;; Summary kill commands.
8707
8708 (defun gnus-summary-edit-global-kill (article)
8709   "Edit the \"global\" kill file."
8710   (interactive (list (gnus-summary-article-number)))
8711   (gnus-group-edit-global-kill article))
8712
8713 (defun gnus-summary-edit-local-kill ()
8714   "Edit a local kill file applied to the current newsgroup."
8715   (interactive)
8716   (setq gnus-current-headers (gnus-summary-article-header))
8717   (gnus-group-edit-local-kill
8718    (gnus-summary-article-number) gnus-newsgroup-name))
8719
8720 ;;; Header reading.
8721
8722 (defun gnus-read-header (id &optional header)
8723   "Read the headers of article ID and enter them into the Gnus system."
8724   (let ((group gnus-newsgroup-name)
8725         (gnus-override-method
8726          (and (gnus-news-group-p gnus-newsgroup-name)
8727               gnus-refer-article-method))
8728         where)
8729     ;; First we check to see whether the header in question is already
8730     ;; fetched.
8731     (if (stringp id)
8732         ;; This is a Message-ID.
8733         (setq header (or header (gnus-id-to-header id)))
8734       ;; This is an article number.
8735       (setq header (or header (gnus-summary-article-header id))))
8736     (if (and header
8737              (not (gnus-summary-article-sparse-p (mail-header-number header))))
8738         ;; We have found the header.
8739         header
8740       ;; If this is a sparse article, we have to nix out its
8741       ;; previous entry in the thread hashtb.
8742       (when (and header
8743                  (gnus-summary-article-sparse-p (mail-header-number header)))
8744         (let* ((parent (gnus-parent-id (mail-header-references header)))
8745                (thread (and parent (gnus-id-to-thread parent))))
8746           (when thread
8747             (delq (assq header thread) thread))))
8748       ;; We have to really fetch the header to this article.
8749       (save-excursion
8750         (set-buffer nntp-server-buffer)
8751         (when (setq where (gnus-request-head id group))
8752           (nnheader-fold-continuation-lines)
8753           (goto-char (point-max))
8754           (insert ".\n")
8755           (goto-char (point-min))
8756           (insert "211 ")
8757           (princ (cond
8758                   ((numberp id) id)
8759                   ((cdr where) (cdr where))
8760                   (header (mail-header-number header))
8761                   (t gnus-reffed-article-number))
8762                  (current-buffer))
8763           (insert " Article retrieved.\n"))
8764         (if (or (not where)
8765                 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
8766             ()                          ; Malformed head.
8767           (unless (gnus-summary-article-sparse-p (mail-header-number header))
8768             (when (and (stringp id)
8769                        (not (string= (gnus-group-real-name group)
8770                                      (car where))))
8771               ;; If we fetched by Message-ID and the article came
8772               ;; from a different group, we fudge some bogus article
8773               ;; numbers for this article.
8774               (mail-header-set-number header gnus-reffed-article-number))
8775             (save-excursion
8776               (set-buffer gnus-summary-buffer)
8777               (decf gnus-reffed-article-number)
8778               (gnus-remove-header (mail-header-number header))
8779               (push header gnus-newsgroup-headers)
8780               (setq gnus-current-headers header)
8781               (push (mail-header-number header) gnus-newsgroup-limit)))
8782           header)))))
8783
8784 (defun gnus-remove-header (number)
8785   "Remove header NUMBER from `gnus-newsgroup-headers'."
8786   (if (and gnus-newsgroup-headers
8787            (= number (mail-header-number (car gnus-newsgroup-headers))))
8788       (pop gnus-newsgroup-headers)
8789     (let ((headers gnus-newsgroup-headers))
8790       (while (and (cdr headers)
8791                   (not (= number (mail-header-number (cadr headers)))))
8792         (pop headers))
8793       (when (cdr headers)
8794         (setcdr headers (cddr headers))))))
8795
8796 ;;;
8797 ;;; summary highlights
8798 ;;;
8799
8800 (defun gnus-highlight-selected-summary ()
8801   ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
8802   ;; Highlight selected article in summary buffer
8803   (when gnus-summary-selected-face
8804     (save-excursion
8805       (let* ((beg (progn (beginning-of-line) (point)))
8806              (end (progn (end-of-line) (point)))
8807              ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
8808              (from (if (get-text-property beg gnus-mouse-face-prop)
8809                        beg
8810                      (or (next-single-property-change
8811                           beg gnus-mouse-face-prop nil end)
8812                          beg)))
8813              (to
8814               (if (= from end)
8815                   (- from 2)
8816                 (or (next-single-property-change
8817                      from gnus-mouse-face-prop nil end)
8818                     end))))
8819         ;; If no mouse-face prop on line we will have to = from = end,
8820         ;; so we highlight the entire line instead.
8821         (when (= (+ to 2) from)
8822           (setq from beg)
8823           (setq to end))
8824         (if gnus-newsgroup-selected-overlay
8825             ;; Move old overlay.
8826             (gnus-move-overlay
8827              gnus-newsgroup-selected-overlay from to (current-buffer))
8828           ;; Create new overlay.
8829           (gnus-overlay-put
8830            (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
8831            'face gnus-summary-selected-face))))))
8832
8833 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>.
8834 (defun gnus-summary-highlight-line ()
8835   "Highlight current line according to `gnus-summary-highlight'."
8836   (let* ((list gnus-summary-highlight)
8837          (p (point))
8838          (end (progn (end-of-line) (point)))
8839          ;; now find out where the line starts and leave point there.
8840          (beg (progn (beginning-of-line) (point)))
8841          (article (gnus-summary-article-number))
8842          (score (or (cdr (assq (or article gnus-current-article)
8843                                gnus-newsgroup-scored))
8844                     gnus-summary-default-score 0))
8845          (mark (or (gnus-summary-article-mark) gnus-unread-mark))
8846          (inhibit-read-only t))
8847     ;; Eval the cars of the lists until we find a match.
8848     (let ((default gnus-summary-default-score))
8849       (while (and list
8850                   (not (eval (caar list))))
8851         (setq list (cdr list))))
8852     (let ((face (cdar list)))
8853       (unless (eq face (get-text-property beg 'face))
8854         (gnus-put-text-property-excluding-characters-with-faces
8855          beg end 'face
8856          (setq face (if (boundp face) (symbol-value face) face)))
8857         (when gnus-summary-highlight-line-function
8858           (funcall gnus-summary-highlight-line-function article face))))
8859     (goto-char p)))
8860
8861 (defun gnus-update-read-articles (group unread &optional compute)
8862   "Update the list of read articles in GROUP."
8863   (let* ((active (or gnus-newsgroup-active (gnus-active group)))
8864          (entry (gnus-gethash group gnus-newsrc-hashtb))
8865          (info (nth 2 entry))
8866          (prev 1)
8867          (unread (sort (copy-sequence unread) '<))
8868          read)
8869     (if (or (not info) (not active))
8870         ;; There is no info on this group if it was, in fact,
8871         ;; killed.  Gnus stores no information on killed groups, so
8872         ;; there's nothing to be done.
8873         ;; One could store the information somewhere temporarily,
8874         ;; perhaps...  Hmmm...
8875         ()
8876       ;; Remove any negative articles numbers.
8877       (while (and unread (< (car unread) 0))
8878         (setq unread (cdr unread)))
8879       ;; Remove any expired article numbers
8880       (while (and unread (< (car unread) (car active)))
8881         (setq unread (cdr unread)))
8882       ;; Compute the ranges of read articles by looking at the list of
8883       ;; unread articles.
8884       (while unread
8885         (when (/= (car unread) prev)
8886           (push (if (= prev (1- (car unread))) prev
8887                   (cons prev (1- (car unread))))
8888                 read))
8889         (setq prev (1+ (car unread)))
8890         (setq unread (cdr unread)))
8891       (when (<= prev (cdr active))
8892         (push (cons prev (cdr active)) read))
8893       (if compute
8894           (if (> (length read) 1) (nreverse read) read)
8895         (save-excursion
8896           (set-buffer gnus-group-buffer)
8897           (gnus-undo-register
8898             `(progn
8899                (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
8900                (gnus-info-set-read ',info ',(gnus-info-read info))
8901                (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
8902                (gnus-group-update-group ,group t))))
8903         ;; Enter this list into the group info.
8904         (gnus-info-set-read
8905          info (if (> (length read) 1) (nreverse read) read))
8906         ;; Set the number of unread articles in gnus-newsrc-hashtb.
8907         (gnus-get-unread-articles-in-group info (gnus-active group))
8908         t))))
8909
8910 (defun gnus-offer-save-summaries ()
8911   "Offer to save all active summary buffers."
8912   (save-excursion
8913     (let ((buflist (buffer-list))
8914           buffers bufname)
8915       ;; Go through all buffers and find all summaries.
8916       (while buflist
8917         (and (setq bufname (buffer-name (car buflist)))
8918              (string-match "Summary" bufname)
8919              (save-excursion
8920                (set-buffer bufname)
8921                ;; We check that this is, indeed, a summary buffer.
8922                (and (eq major-mode 'gnus-summary-mode)
8923                     ;; Also make sure this isn't bogus.
8924                     gnus-newsgroup-prepared
8925                     ;; Also make sure that this isn't a dead summary buffer.
8926                     (not gnus-dead-summary-mode)))
8927              (push bufname buffers))
8928         (setq buflist (cdr buflist)))
8929       ;; Go through all these summary buffers and offer to save them.
8930       (when buffers
8931         (map-y-or-n-p
8932          "Update summary buffer %s? "
8933          (lambda (buf)
8934            (switch-to-buffer buf)
8935            (gnus-summary-exit))
8936          buffers)))))
8937
8938
8939 ;;; @ for mime-partial
8940 ;;;
8941
8942 (defun gnus-request-partial-message ()
8943   (save-excursion
8944     (let ((number (gnus-summary-article-number))
8945           (group gnus-newsgroup-name)
8946           (mother gnus-article-buffer))
8947       (set-buffer (get-buffer-create " *Partial Article*"))
8948       (erase-buffer)
8949       (setq mime-preview-buffer mother)
8950       (gnus-request-article-this-buffer number group)
8951       (mime-parse-buffer)
8952       )))
8953
8954 (autoload 'mime-combine-message/partial-pieces-automatically
8955   "mime-partial"
8956   "Internal method to combine message/partial messages automatically.")
8957
8958 (mime-add-condition
8959  'action '((type . message)(subtype . partial)
8960            (major-mode . gnus-original-article-mode)
8961            (method . mime-combine-message/partial-pieces-automatically)
8962            (summary-buffer-exp . gnus-summary-buffer)
8963            (request-partial-message-method . gnus-request-partial-message)
8964            ))
8965
8966
8967 ;;; @ end
8968 ;;;
8969
8970 (gnus-ems-redefine)
8971
8972 (provide 'gnus-sum)
8973
8974 (run-hooks 'gnus-sum-load-hook)
8975
8976 ;;; gnus-sum.el ends here