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