Sync up with Pterodactyl Gnus v0.98.
[elisp/gnus.git-] / lisp / gnus-group.el
1 ;;; gnus-group.el --- group mode commands for Gnus
2 ;; Copyright (C) 1996,97,98,99 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
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 (eval-when-compile (require 'cl))
29
30 (require 'gnus)
31 (require 'gnus-start)
32 (require 'nnmail)
33 (require 'gnus-spec)
34 (require 'gnus-int)
35 (require 'gnus-range)
36 (require 'gnus-win)
37 (require 'gnus-undo)
38 (require 'time-date)
39
40 (defcustom gnus-group-archive-directory
41   "*ftp@ftp.hpc.uh.edu:/pub/emacs/ding-list/"
42   "*The address of the (ding) archives."
43   :group 'gnus-group-foreign
44   :type 'directory)
45
46 (defcustom gnus-group-recent-archive-directory
47   "*ftp@ftp.hpc.uh.edu:/pub/emacs/ding-list-recent/"
48   "*The address of the most recent (ding) articles."
49   :group 'gnus-group-foreign
50   :type 'directory)
51
52 (defcustom gnus-no-groups-message "No gnus is bad news"
53   "*Message displayed by Gnus when no groups are available."
54   :group 'gnus-start
55   :type 'string)
56
57 (defcustom gnus-keep-same-level nil
58   "*Non-nil means that the next newsgroup after the current will be on the same level.
59 When you type, for instance, `n' after reading the last article in the
60 current newsgroup, you will go to the next newsgroup.  If this variable
61 is nil, the next newsgroup will be the next from the group
62 buffer.
63 If this variable is non-nil, Gnus will either put you in the
64 next newsgroup with the same level, or, if no such newsgroup is
65 available, the next newsgroup with the lowest possible level higher
66 than the current level.
67 If this variable is `best', Gnus will make the next newsgroup the one
68 with the best level."
69   :group 'gnus-group-levels
70   :type '(choice (const nil)
71                  (const best)
72                  (sexp :tag "other" t)))
73
74 (defcustom gnus-group-goto-unread t
75   "*If non-nil, movement commands will go to the next unread and subscribed group."
76   :link '(custom-manual "(gnus)Group Maneuvering")
77   :group 'gnus-group-various
78   :type 'boolean)
79
80 (defcustom gnus-goto-next-group-when-activating t
81   "*If non-nil, the \\<gnus-group-mode-map>\\[gnus-group-get-new-news-this-group] command will advance point to the next group."
82   :link '(custom-manual "(gnus)Scanning New Messages")
83   :group 'gnus-group-various
84   :type 'boolean)
85
86 (defcustom gnus-permanently-visible-groups nil
87   "*Regexp to match groups that should always be listed in the group buffer.
88 This means that they will still be listed even when there are no
89 unread articles in the groups.
90
91 If nil, no groups are permanently visible."
92   :group 'gnus-group-listing
93   :type '(choice regexp (const nil)))
94
95 (defcustom gnus-list-groups-with-ticked-articles t
96   "*If non-nil, list groups that have only ticked articles.
97 If nil, only list groups that have unread articles."
98   :group 'gnus-group-listing
99   :type 'boolean)
100
101 (defcustom gnus-group-default-list-level gnus-level-subscribed
102   "*Default listing level.
103 Ignored if `gnus-group-use-permanent-levels' is non-nil."
104   :group 'gnus-group-listing
105   :type 'integer)
106
107 (defcustom gnus-group-list-inactive-groups t
108   "*If non-nil, inactive groups will be listed."
109   :group 'gnus-group-listing
110   :group 'gnus-group-levels
111   :type 'boolean)
112
113 (defcustom gnus-group-sort-function 'gnus-group-sort-by-alphabet
114   "*Function used for sorting the group buffer.
115 This function will be called with group info entries as the arguments
116 for the groups to be sorted.  Pre-made functions include
117 `gnus-group-sort-by-alphabet', `gnus-group-sort-by-real-name',
118 `gnus-group-sort-by-unread', `gnus-group-sort-by-level',
119 `gnus-group-sort-by-score', `gnus-group-sort-by-method', and
120 `gnus-group-sort-by-rank'.
121
122 This variable can also be a list of sorting functions.  In that case,
123 the most significant sort function should be the last function in the
124 list."
125   :group 'gnus-group-listing
126   :link '(custom-manual "(gnus)Sorting Groups")
127   :type '(radio (function-item gnus-group-sort-by-alphabet)
128                 (function-item gnus-group-sort-by-real-name)
129                 (function-item gnus-group-sort-by-unread)
130                 (function-item gnus-group-sort-by-level)
131                 (function-item gnus-group-sort-by-score)
132                 (function-item gnus-group-sort-by-method)
133                 (function-item gnus-group-sort-by-rank)
134                 (function :tag "other" nil)))
135
136 (defcustom gnus-group-line-format "%M\%S\%p\%P\%5y: %(%g%)%l\n"
137   "*Format of group lines.
138 It works along the same lines as a normal formatting string,
139 with some simple extensions.
140
141 %M    Only marked articles (character, \"*\" or \" \")
142 %S    Whether the group is subscribed (character, \"U\", \"K\", \"Z\" or \" \")
143 %L    Level of subscribedness (integer)
144 %N    Number of unread articles (integer)
145 %I    Number of dormant articles (integer)
146 %i    Number of ticked and dormant (integer)
147 %T    Number of ticked articles (integer)
148 %R    Number of read articles (integer)
149 %t    Estimated total number of articles (integer)
150 %y    Number of unread, unticked articles (integer)
151 %G    Group name (string)
152 %g    Qualified group name (string)
153 %D    Group description (string)
154 %s    Select method (string)
155 %o    Moderated group (char, \"m\")
156 %p    Process mark (char)
157 %O    Moderated group (string, \"(m)\" or \"\")
158 %P    Topic indentation (string)
159 %m    Whether there is new(ish) mail in the group (char, \"%\")
160 %w    Number of new(ish) mails in the group (integer)
161 %l    Whether there are GroupLens predictions for this group (string)
162 %n    Select from where (string)
163 %z    A string that look like `<%s:%n>' if a foreign select method is used
164 %d    The date the group was last entered.
165 %u    User defined specifier.  The next character in the format string should
166       be a letter.  Gnus will call the function gnus-user-format-function-X,
167       where X is the letter following %u.  The function will be passed the
168       current header as argument.  The function should return a string, which
169       will be inserted into the buffer just like information from any other
170       group specifier.
171
172 Text between %( and %) will be highlighted with `gnus-mouse-face' when
173 the mouse point move inside the area.  There can only be one such area.
174
175 Note that this format specification is not always respected.  For
176 reasons of efficiency, when listing killed groups, this specification
177 is ignored altogether.  If the spec is changed considerably, your
178 output may end up looking strange when listing both alive and killed
179 groups.
180
181 If you use %o or %O, reading the active file will be slower and quite
182 a bit of extra memory will be used.  %D will also worsen performance.
183 Also note that if you change the format specification to include any
184 of these specs, you must probably re-start Gnus to see them go into
185 effect."
186   :group 'gnus-group-visual
187   :type 'string)
188
189 (defcustom gnus-group-mode-line-format "Gnus: %%b {%M\%:%S}"
190   "*The format specification for the group mode line.
191 It works along the same lines as a normal formatting string,
192 with some simple extensions:
193
194 %S   The native news server.
195 %M   The native select method.
196 %:   \":\" if %S isn't \"\"."
197   :group 'gnus-group-visual
198   :type 'string)
199
200 (defcustom gnus-group-mode-hook nil
201   "Hook for Gnus group mode."
202   :group 'gnus-group-various
203   :options '(gnus-topic-mode)
204   :type 'hook)
205
206 (defcustom gnus-group-menu-hook nil
207   "Hook run after the creation of the group mode menu."
208   :group 'gnus-group-various
209   :type 'hook)
210
211 (defcustom gnus-group-catchup-group-hook nil
212   "Hook run when catching up a group from the group buffer."
213   :group 'gnus-group-various
214   :link '(custom-manual "(gnus)Group Data")
215   :type 'hook)
216
217 (defcustom gnus-group-update-group-hook nil
218   "Hook called when updating group lines."
219   :group 'gnus-group-visual
220   :type 'hook)
221
222 (defcustom gnus-group-prepare-function 'gnus-group-prepare-flat
223   "*A function that is called to generate the group buffer.
224 The function is called with three arguments: The first is a number;
225 all group with a level less or equal to that number should be listed,
226 if the second is non-nil, empty groups should also be displayed.  If
227 the third is non-nil, it is a number.  No groups with a level lower
228 than this number should be displayed.
229
230 The only current function implemented is `gnus-group-prepare-flat'."
231   :group 'gnus-group-listing
232   :type 'function)
233
234 (defcustom gnus-group-prepare-hook nil
235   "Hook called after the group buffer has been generated.
236 If you want to modify the group buffer, you can use this hook."
237   :group 'gnus-group-listing
238   :type 'hook)
239
240 (defcustom gnus-suspend-gnus-hook nil
241   "Hook called when suspending (not exiting) Gnus."
242   :group 'gnus-exit
243   :type 'hook)
244
245 (defcustom gnus-exit-gnus-hook nil
246   "Hook called when exiting Gnus."
247   :group 'gnus-exit
248   :type 'hook)
249
250 (defcustom gnus-after-exiting-gnus-hook nil
251   "Hook called after exiting Gnus."
252   :group 'gnus-exit
253   :type 'hook)
254
255 (defcustom gnus-group-update-hook '(gnus-group-highlight-line)
256   "Hook called when a group line is changed.
257 The hook will not be called if `gnus-visual' is nil.
258
259 The default function `gnus-group-highlight-line' will
260 highlight the line according to the `gnus-group-highlight'
261 variable."
262   :group 'gnus-group-visual
263   :type 'hook)
264
265 (defcustom gnus-useful-groups
266   '(("(ding) mailing list mirrored at sunsite.auc.dk"
267      "emacs.ding"
268      (nntp "sunsite.auc.dk"
269            (nntp-address "sunsite.auc.dk")))
270     ("gnus-bug archive"
271      "gnus-bug"
272      (nndir "/ftp@ftp.ifi.uio.no:/pub/emacs/gnus/gnus-bug/"))
273     ("Gnus help group"
274      "gnus-help"
275      (nndoc "gnus-help"
276             (nndoc-article-type mbox)
277             (eval `(nndoc-address
278                     ,(let ((file (nnheader-find-etc-directory
279                                   "gnus-tut.txt" t)))
280                        (unless file
281                          (error "Couldn't find doc group"))
282                        file))))))
283   "*Alist of useful group-server pairs."
284   :group 'gnus-group-listing
285   :type '(repeat (list (string :tag "Description")
286                        (string :tag "Name")
287                        (sexp :tag "Method"))))
288
289 (defcustom gnus-group-highlight
290   '(;; News.
291     ((and (= unread 0) (not mailp) (eq level 1)) .
292      gnus-group-news-1-empty-face)
293     ((and (not mailp) (eq level 1)) .
294      gnus-group-news-1-face)
295     ((and (= unread 0) (not mailp) (eq level 2)) .
296      gnus-group-news-2-empty-face)
297     ((and (not mailp) (eq level 2)) .
298      gnus-group-news-2-face)
299     ((and (= unread 0) (not mailp) (eq level 3)) .
300      gnus-group-news-3-empty-face)
301     ((and (not mailp) (eq level 3)) .
302      gnus-group-news-3-face)
303     ((and (= unread 0) (not mailp) (eq level 4)) .
304      gnus-group-news-4-empty-face)
305     ((and (not mailp) (eq level 4)) .
306      gnus-group-news-4-face)
307     ((and (= unread 0) (not mailp) (eq level 5)) .
308      gnus-group-news-5-empty-face)
309     ((and (not mailp) (eq level 5)) .
310      gnus-group-news-5-face)
311     ((and (= unread 0) (not mailp) (eq level 6)) .
312      gnus-group-news-6-empty-face)
313     ((and (not mailp) (eq level 6)) .
314      gnus-group-news-6-face)
315     ((and (= unread 0) (not mailp)) .
316      gnus-group-news-low-empty-face)
317     ((and (not mailp)) .
318      gnus-group-news-low-face)
319     ;; Mail.
320     ((and (= unread 0) (eq level 1)) .
321      gnus-group-mail-1-empty-face)
322     ((eq level 1) .
323      gnus-group-mail-1-face)
324     ((and (= unread 0) (eq level 2)) .
325      gnus-group-mail-2-empty-face)
326     ((eq level 2) .
327      gnus-group-mail-2-face)
328     ((and (= unread 0) (eq level 3)) .
329      gnus-group-mail-3-empty-face)
330     ((eq level 3) .
331      gnus-group-mail-3-face)
332     ((= unread 0) .
333      gnus-group-mail-low-empty-face)
334     (t .
335      gnus-group-mail-low-face))
336   "*Controls the highlighting of group buffer lines.
337
338 Below is a list of `Form'/`Face' pairs.  When deciding how a a
339 particular group line should be displayed, each form is
340 evaluated.  The content of the face field after the first true form is
341 used.  You can change how those group lines are displayed by
342 editing the face field.
343
344 It is also possible to change and add form fields, but currently that
345 requires an understanding of Lisp expressions.  Hopefully this will
346 change in a future release.  For now, you can use the following
347 variables in the Lisp expression:
348
349 group: The name of the group.
350 unread: The number of unread articles in the group.
351 method: The select method used.
352 mailp: Whether it's a mail group or not.
353 level: The level of the group.
354 score: The score of the group.
355 ticked: The number of ticked articles."
356   :group 'gnus-group-visual
357   :type '(repeat (cons (sexp :tag "Form") face)))
358
359 (defcustom gnus-new-mail-mark ?%
360   "Mark used for groups with new mail."
361   :group 'gnus-group-visual
362   :type 'character)
363
364 ;;; Internal variables
365
366 (defvar gnus-group-sort-alist-function 'gnus-group-sort-flat
367   "Function for sorting the group buffer.")
368
369 (defvar gnus-group-sort-selected-function 'gnus-group-sort-selected-flat
370   "Function for sorting the selected groups in the group buffer.")
371
372 (defvar gnus-group-indentation-function nil)
373 (defvar gnus-goto-missing-group-function nil)
374 (defvar gnus-group-update-group-function nil)
375 (defvar gnus-group-goto-next-group-function nil
376   "Function to override finding the next group after listing groups.")
377
378 (defvar gnus-group-edit-buffer nil)
379
380 (defvar gnus-group-line-format-alist
381   `((?M gnus-tmp-marked-mark ?c)
382     (?S gnus-tmp-subscribed ?c)
383     (?L gnus-tmp-level ?d)
384     (?N (cond ((eq number t) "*" )
385               ((numberp number)
386                (int-to-string
387                 (+ number
388                    (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked)))
389                    (gnus-range-length (cdr (assq 'tick gnus-tmp-marked))))))
390               (t number)) ?s)
391     (?R gnus-tmp-number-of-read ?s)
392     (?t gnus-tmp-number-total ?d)
393     (?y gnus-tmp-number-of-unread ?s)
394     (?I (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked))) ?d)
395     (?T (gnus-range-length (cdr (assq 'tick gnus-tmp-marked))) ?d)
396     (?i (+ (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked)))
397            (gnus-range-length (cdr (assq 'tick gnus-tmp-marked)))) ?d)
398     (?g gnus-tmp-group ?s)
399     (?G gnus-tmp-qualified-group ?s)
400     (?c (gnus-short-group-name gnus-tmp-group) ?s)
401     (?D gnus-tmp-newsgroup-description ?s)
402     (?o gnus-tmp-moderated ?c)
403     (?O gnus-tmp-moderated-string ?s)
404     (?p gnus-tmp-process-marked ?c)
405     (?s gnus-tmp-news-server ?s)
406     (?n gnus-tmp-news-method ?s)
407     (?P gnus-group-indentation ?s)
408     (?l gnus-tmp-grouplens ?s)
409     (?z gnus-tmp-news-method-string ?s)
410     (?m (gnus-group-new-mail gnus-tmp-group) ?c)
411     (?w (if (gnus-news-group-p gnus-tmp-group) 
412             ""
413           (int-to-string 
414            (length 
415             (nnmail-new-mail-numbers (gnus-group-real-name gnus-tmp-group))
416             )))
417         ?s)
418     (?d (gnus-group-timestamp-string gnus-tmp-group) ?s)
419     (?u gnus-tmp-user-defined ?s)))
420
421 (defvar gnus-group-mode-line-format-alist
422   `((?S gnus-tmp-news-server ?s)
423     (?M gnus-tmp-news-method ?s)
424     (?u gnus-tmp-user-defined ?s)
425     (?: gnus-tmp-colon ?s)))
426
427 (defvar gnus-topic-topology nil
428   "The complete topic hierarchy.")
429
430 (defvar gnus-topic-alist nil
431   "The complete topic-group alist.")
432
433 (defvar gnus-group-marked nil)
434
435 (defvar gnus-group-list-mode nil)
436
437 ;;;
438 ;;; Gnus group mode
439 ;;;
440
441 (put 'gnus-group-mode 'mode-class 'special)
442
443 (when t
444   (gnus-define-keys gnus-group-mode-map
445     " " gnus-group-read-group
446     "=" gnus-group-select-group
447     "\r" gnus-group-select-group
448     "\M-\r" gnus-group-quick-select-group
449     [(meta control return)] gnus-group-select-group-ephemerally
450     "j" gnus-group-jump-to-group
451     "n" gnus-group-next-unread-group
452     "p" gnus-group-prev-unread-group
453     "\177" gnus-group-prev-unread-group
454     [delete] gnus-group-prev-unread-group
455     [backspace] gnus-group-prev-unread-group
456     "N" gnus-group-next-group
457     "P" gnus-group-prev-group
458     "\M-n" gnus-group-next-unread-group-same-level
459     "\M-p" gnus-group-prev-unread-group-same-level
460     "," gnus-group-best-unread-group
461     "." gnus-group-first-unread-group
462     "u" gnus-group-unsubscribe-current-group
463     "U" gnus-group-unsubscribe-group
464     "c" gnus-group-catchup-current
465     "C" gnus-group-catchup-current-all
466     "\M-c" gnus-group-clear-data
467     "l" gnus-group-list-groups
468     "L" gnus-group-list-all-groups
469     "m" gnus-group-mail
470     "g" gnus-group-get-new-news
471     "\M-g" gnus-group-get-new-news-this-group
472     "R" gnus-group-restart
473     "r" gnus-group-read-init-file
474     "B" gnus-group-browse-foreign-server
475     "b" gnus-group-check-bogus-groups
476     "F" gnus-group-find-new-groups
477     "\C-c\C-d" gnus-group-describe-group
478     "\M-d" gnus-group-describe-all-groups
479     "\C-c\C-a" gnus-group-apropos
480     "\C-c\M-\C-a" gnus-group-description-apropos
481     "a" gnus-group-post-news
482     "\ek" gnus-group-edit-local-kill
483     "\eK" gnus-group-edit-global-kill
484     "\C-k" gnus-group-kill-group
485     "\C-y" gnus-group-yank-group
486     "\C-w" gnus-group-kill-region
487     "\C-x\C-t" gnus-group-transpose-groups
488     "\C-c\C-l" gnus-group-list-killed
489     "\C-c\C-x" gnus-group-expire-articles
490     "\C-c\M-\C-x" gnus-group-expire-all-groups
491     "V" gnus-version
492     "s" gnus-group-save-newsrc
493     "z" gnus-group-suspend
494     "q" gnus-group-exit
495     "Q" gnus-group-quit
496     "?" gnus-group-describe-briefly
497     "\C-c\C-i" gnus-info-find-node
498     "\M-e" gnus-group-edit-group-method
499     "^" gnus-group-enter-server-mode
500     gnus-mouse-2 gnus-mouse-pick-group
501     "<" beginning-of-buffer
502     ">" end-of-buffer
503     "\C-c\C-b" gnus-bug
504     "\C-c\C-s" gnus-group-sort-groups
505     "t" gnus-topic-mode
506     "\C-c\M-g" gnus-activate-all-groups
507     "\M-&" gnus-group-universal-argument
508     "#" gnus-group-mark-group
509     "\M-#" gnus-group-unmark-group)
510
511   (gnus-define-keys (gnus-group-mark-map "M" gnus-group-mode-map)
512     "m" gnus-group-mark-group
513     "u" gnus-group-unmark-group
514     "w" gnus-group-mark-region
515     "b" gnus-group-mark-buffer
516     "r" gnus-group-mark-regexp
517     "U" gnus-group-unmark-all-groups)
518
519   (gnus-define-keys (gnus-group-group-map "G" gnus-group-mode-map)
520     "d" gnus-group-make-directory-group
521     "h" gnus-group-make-help-group
522     "u" gnus-group-make-useful-group
523     "a" gnus-group-make-archive-group
524     "k" gnus-group-make-kiboze-group
525     "l" gnus-group-nnimap-edit-acl
526     "m" gnus-group-make-group
527     "E" gnus-group-edit-group
528     "e" gnus-group-edit-group-method
529     "p" gnus-group-edit-group-parameters
530     "v" gnus-group-add-to-virtual
531     "V" gnus-group-make-empty-virtual
532     "D" gnus-group-enter-directory
533     "f" gnus-group-make-doc-group
534     "w" gnus-group-make-web-group
535     "r" gnus-group-rename-group
536     "c" gnus-group-customize
537     "x" gnus-group-nnimap-expunge
538     "\177" gnus-group-delete-group
539     [delete] gnus-group-delete-group)
540
541   (gnus-define-keys (gnus-group-soup-map "s" gnus-group-group-map)
542     "b" gnus-group-brew-soup
543     "w" gnus-soup-save-areas
544     "s" gnus-soup-send-replies
545     "p" gnus-soup-pack-packet
546     "r" nnsoup-pack-replies)
547
548   (gnus-define-keys (gnus-group-sort-map "S" gnus-group-group-map)
549     "s" gnus-group-sort-groups
550     "a" gnus-group-sort-groups-by-alphabet
551     "u" gnus-group-sort-groups-by-unread
552     "l" gnus-group-sort-groups-by-level
553     "v" gnus-group-sort-groups-by-score
554     "r" gnus-group-sort-groups-by-rank
555     "m" gnus-group-sort-groups-by-method)
556
557   (gnus-define-keys (gnus-group-sort-selected-map "P" gnus-group-group-map)
558     "s" gnus-group-sort-selected-groups
559     "a" gnus-group-sort-selected-groups-by-alphabet
560     "u" gnus-group-sort-selected-groups-by-unread
561     "l" gnus-group-sort-selected-groups-by-level
562     "v" gnus-group-sort-selected-groups-by-score
563     "r" gnus-group-sort-selected-groups-by-rank
564     "m" gnus-group-sort-selected-groups-by-method)
565
566   (gnus-define-keys (gnus-group-list-map "A" gnus-group-mode-map)
567     "k" gnus-group-list-killed
568     "z" gnus-group-list-zombies
569     "s" gnus-group-list-groups
570     "u" gnus-group-list-all-groups
571     "A" gnus-group-list-active
572     "a" gnus-group-apropos
573     "d" gnus-group-description-apropos
574     "m" gnus-group-list-matching
575     "M" gnus-group-list-all-matching
576     "l" gnus-group-list-level)
577
578   (gnus-define-keys (gnus-group-score-map "W" gnus-group-mode-map)
579     "f" gnus-score-flush-cache)
580
581   (gnus-define-keys (gnus-group-help-map "H" gnus-group-mode-map)
582     "d" gnus-group-describe-group
583     "f" gnus-group-fetch-faq
584     "v" gnus-version)
585
586   (gnus-define-keys (gnus-group-sub-map "S" gnus-group-mode-map)
587     "l" gnus-group-set-current-level
588     "t" gnus-group-unsubscribe-current-group
589     "s" gnus-group-unsubscribe-group
590     "k" gnus-group-kill-group
591     "y" gnus-group-yank-group
592     "w" gnus-group-kill-region
593     "\C-k" gnus-group-kill-level
594     "z" gnus-group-kill-all-zombies))
595
596 (defun gnus-group-make-menu-bar ()
597   (gnus-turn-off-edit-menu 'group)
598   (unless (boundp 'gnus-group-reading-menu)
599
600     (easy-menu-define
601      gnus-group-reading-menu gnus-group-mode-map ""
602      '("Group"
603        ["Read" gnus-group-read-group (gnus-group-group-name)]
604        ["Select" gnus-group-select-group (gnus-group-group-name)]
605        ["See old articles" (gnus-group-select-group 'all)
606         :keys "C-u SPC" :active (gnus-group-group-name)]
607        ["Catch up" gnus-group-catchup-current (gnus-group-group-name)]
608        ["Catch up all articles" gnus-group-catchup-current-all
609         (gnus-group-group-name)]
610        ["Check for new articles" gnus-group-get-new-news-this-group
611         (gnus-group-group-name)]
612        ["Toggle subscription" gnus-group-unsubscribe-current-group
613         (gnus-group-group-name)]
614        ["Kill" gnus-group-kill-group (gnus-group-group-name)]
615        ["Yank" gnus-group-yank-group gnus-list-of-killed-groups]
616        ["Describe" gnus-group-describe-group (gnus-group-group-name)]
617        ["Fetch FAQ" gnus-group-fetch-faq (gnus-group-group-name)]
618        ;; Actually one should check, if any of the marked groups gives t for
619        ;; (gnus-check-backend-function 'request-expire-articles ...)
620        ["Expire articles" gnus-group-expire-articles
621         (or (and (gnus-group-group-name)
622                  (gnus-check-backend-function
623                   'request-expire-articles
624                   (gnus-group-group-name))) gnus-group-marked)]
625        ["Set group level" gnus-group-set-current-level
626         (gnus-group-group-name)]
627        ["Select quick" gnus-group-quick-select-group (gnus-group-group-name)]
628        ["Customize" gnus-group-customize (gnus-group-group-name)]
629        ("Edit"
630         ["Parameters" gnus-group-edit-group-parameters
631          (gnus-group-group-name)]
632         ["Select method" gnus-group-edit-group-method
633          (gnus-group-group-name)]
634         ["Info" gnus-group-edit-group (gnus-group-group-name)]
635         ["Local kill file" gnus-group-edit-local-kill (gnus-group-group-name)]
636         ["Global kill file" gnus-group-edit-global-kill t])))
637
638     (easy-menu-define
639      gnus-group-group-menu gnus-group-mode-map ""
640      '("Groups"
641        ("Listing"
642         ["List unread subscribed groups" gnus-group-list-groups t]
643         ["List (un)subscribed groups" gnus-group-list-all-groups t]
644         ["List killed groups" gnus-group-list-killed gnus-killed-list]
645         ["List zombie groups" gnus-group-list-zombies gnus-zombie-list]
646         ["List level..." gnus-group-list-level t]
647         ["Describe all groups" gnus-group-describe-all-groups t]
648         ["Group apropos..." gnus-group-apropos t]
649         ["Group and description apropos..." gnus-group-description-apropos t]
650         ["List groups matching..." gnus-group-list-matching t]
651         ["List all groups matching..." gnus-group-list-all-matching t]
652         ["List active file" gnus-group-list-active t])
653        ("Sort"
654         ["Default sort" gnus-group-sort-groups t]
655         ["Sort by method" gnus-group-sort-groups-by-method t]
656         ["Sort by rank" gnus-group-sort-groups-by-rank t]
657         ["Sort by score" gnus-group-sort-groups-by-score t]
658         ["Sort by level" gnus-group-sort-groups-by-level t]
659         ["Sort by unread" gnus-group-sort-groups-by-unread t]
660         ["Sort by name" gnus-group-sort-groups-by-alphabet t])
661        ("Sort process/prefixed"
662         ["Default sort" gnus-group-sort-selected-groups
663          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
664         ["Sort by method" gnus-group-sort-selected-groups-by-method
665          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
666         ["Sort by rank" gnus-group-sort-selected-groups-by-rank
667          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
668         ["Sort by score" gnus-group-sort-selected-groups-by-score
669          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
670         ["Sort by level" gnus-group-sort-selected-groups-by-level
671          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
672         ["Sort by unread" gnus-group-sort-selected-groups-by-unread
673          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
674         ["Sort by name" gnus-group-sort-selected-groups-by-alphabet
675          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))])
676        ("Mark"
677         ["Mark group" gnus-group-mark-group
678          (and (gnus-group-group-name)
679               (not (memq (gnus-group-group-name) gnus-group-marked)))]
680         ["Unmark group" gnus-group-unmark-group
681          (and (gnus-group-group-name)
682               (memq (gnus-group-group-name) gnus-group-marked))]
683         ["Unmark all" gnus-group-unmark-all-groups gnus-group-marked]
684         ["Mark regexp..." gnus-group-mark-regexp t]
685         ["Mark region" gnus-group-mark-region t]
686         ["Mark buffer" gnus-group-mark-buffer t]
687         ["Execute command" gnus-group-universal-argument
688          (or gnus-group-marked (gnus-group-group-name))])
689        ("Subscribe"
690         ["Subscribe to a group" gnus-group-unsubscribe-group t]
691         ["Kill all newsgroups in region" gnus-group-kill-region t]
692         ["Kill all zombie groups" gnus-group-kill-all-zombies
693          gnus-zombie-list]
694         ["Kill all groups on level..." gnus-group-kill-level t])
695        ("Foreign groups"
696         ["Make a foreign group" gnus-group-make-group t]
697         ["Add a directory group" gnus-group-make-directory-group t]
698         ["Add the help group" gnus-group-make-help-group t]
699         ["Add the archive group" gnus-group-make-archive-group t]
700         ["Make a doc group" gnus-group-make-doc-group t]
701         ["Make a web group" gnus-group-make-web-group t]
702         ["Make a kiboze group" gnus-group-make-kiboze-group t]
703         ["Make a virtual group" gnus-group-make-empty-virtual t]
704         ["Add a group to a virtual" gnus-group-add-to-virtual t]
705         ["Rename group" gnus-group-rename-group
706          (gnus-check-backend-function
707           'request-rename-group (gnus-group-group-name))]
708         ["Delete group" gnus-group-delete-group
709          (gnus-check-backend-function
710           'request-delete-group (gnus-group-group-name))])
711        ("Move"
712         ["Next" gnus-group-next-group t]
713         ["Previous" gnus-group-prev-group t]
714         ["Next unread" gnus-group-next-unread-group t]
715         ["Previous unread" gnus-group-prev-unread-group t]
716         ["Next unread same level" gnus-group-next-unread-group-same-level t]
717         ["Previous unread same level"
718          gnus-group-prev-unread-group-same-level t]
719         ["Jump to group" gnus-group-jump-to-group t]
720         ["First unread group" gnus-group-first-unread-group t]
721         ["Best unread group" gnus-group-best-unread-group t])
722        ["Delete bogus groups" gnus-group-check-bogus-groups t]
723        ["Find new newsgroups" gnus-group-find-new-groups t]
724        ["Transpose" gnus-group-transpose-groups
725         (gnus-group-group-name)]
726        ["Read a directory as a group..." gnus-group-enter-directory t]))
727
728     (easy-menu-define
729      gnus-group-misc-menu gnus-group-mode-map ""
730      '("Misc"
731        ("SOUP"
732         ["Pack replies" nnsoup-pack-replies (fboundp 'nnsoup-request-group)]
733         ["Send replies" gnus-soup-send-replies
734          (fboundp 'gnus-soup-pack-packet)]
735         ["Pack packet" gnus-soup-pack-packet (fboundp 'gnus-soup-pack-packet)]
736         ["Save areas" gnus-soup-save-areas (fboundp 'gnus-soup-pack-packet)]
737         ["Brew SOUP" gnus-group-brew-soup (fboundp 'gnus-soup-pack-packet)])
738        ["Send a mail" gnus-group-mail t]
739        ["Post an article..." gnus-group-post-news t]
740        ["Check for new news" gnus-group-get-new-news t]
741        ["Activate all groups" gnus-activate-all-groups t]
742        ["Restart Gnus" gnus-group-restart t]
743        ["Read init file" gnus-group-read-init-file t]
744        ["Browse foreign server" gnus-group-browse-foreign-server t]
745        ["Enter server buffer" gnus-group-enter-server-mode t]
746        ["Expire all expirable articles" gnus-group-expire-all-groups t]
747        ["Generate any kiboze groups" nnkiboze-generate-groups t]
748        ["Gnus version" gnus-version t]
749        ["Save .newsrc files" gnus-group-save-newsrc t]
750        ["Suspend Gnus" gnus-group-suspend t]
751        ["Clear dribble buffer" gnus-group-clear-dribble t]
752        ["Read manual" gnus-info-find-node t]
753        ["Flush score cache" gnus-score-flush-cache t]
754        ["Toggle topics" gnus-topic-mode t]
755        ["Send a bug report" gnus-bug t]
756        ["Exit from Gnus" gnus-group-exit t]
757        ["Exit without saving" gnus-group-quit t]))
758
759     (gnus-run-hooks 'gnus-group-menu-hook)))
760
761 (defun gnus-group-mode ()
762   "Major mode for reading news.
763
764 All normal editing commands are switched off.
765 \\<gnus-group-mode-map>
766 The group buffer lists (some of) the groups available.  For instance,
767 `\\[gnus-group-list-groups]' will list all subscribed groups with unread articles, while `\\[gnus-group-list-zombies]'
768 lists all zombie groups.
769
770 Groups that are displayed can be entered with `\\[gnus-group-read-group]'.  To subscribe
771 to a group not displayed, type `\\[gnus-group-unsubscribe-group]'.
772
773 For more in-depth information on this mode, read the manual (`\\[gnus-info-find-node]').
774
775 The following commands are available:
776
777 \\{gnus-group-mode-map}"
778   (interactive)
779   (when (gnus-visual-p 'group-menu 'menu)
780     (gnus-group-make-menu-bar))
781   (kill-all-local-variables)
782   (gnus-simplify-mode-line)
783   (setq major-mode 'gnus-group-mode)
784   (setq mode-name "Group")
785   (gnus-group-set-mode-line)
786   (setq mode-line-process nil)
787   (use-local-map gnus-group-mode-map)
788   (buffer-disable-undo)
789   (setq truncate-lines t)
790   (setq buffer-read-only t)
791   (gnus-set-default-directory)
792   (gnus-update-format-specifications nil 'group 'group-mode)
793   (gnus-update-group-mark-positions)
794   (when gnus-use-undo
795     (gnus-undo-mode 1))
796   (when gnus-slave
797     (gnus-slave-mode))
798   (gnus-run-hooks 'gnus-group-mode-hook))
799
800 (defun gnus-update-group-mark-positions ()
801   (save-excursion
802     (let ((gnus-process-mark ?\200)
803           (gnus-group-marked '("dummy.group"))
804           (gnus-active-hashtb (make-vector 10 0))
805           (topic ""))
806       (gnus-set-active "dummy.group" '(0 . 0))
807       (gnus-set-work-buffer)
808       (gnus-group-insert-group-line "dummy.group" 0 nil 0 nil)
809       (goto-char (point-min))
810       (setq gnus-group-mark-positions
811             (list (cons 'process (and (search-forward "\200" nil t)
812                                       (- (point) 2))))))))
813
814 (defun gnus-mouse-pick-group (e)
815   "Enter the group under the mouse pointer."
816   (interactive "e")
817   (mouse-set-point e)
818   (gnus-group-read-group nil))
819
820 ;; Look at LEVEL and find out what the level is really supposed to be.
821 ;; If LEVEL is non-nil, LEVEL will be returned, if not, what happens
822 ;; will depend on whether `gnus-group-use-permanent-levels' is used.
823 (defun gnus-group-default-level (&optional level number-or-nil)
824   (cond
825    (gnus-group-use-permanent-levels
826     (or (setq gnus-group-use-permanent-levels
827               (or level (if (numberp gnus-group-use-permanent-levels)
828                             gnus-group-use-permanent-levels
829                           (or gnus-group-default-list-level
830                               gnus-level-subscribed))))
831         gnus-group-default-list-level gnus-level-subscribed))
832    (number-or-nil
833     level)
834    (t
835     (or level gnus-group-default-list-level gnus-level-subscribed))))
836
837 (defun gnus-group-setup-buffer ()
838   (set-buffer (gnus-get-buffer-create gnus-group-buffer))
839   (unless (eq major-mode 'gnus-group-mode)
840     (gnus-group-mode)
841     (when gnus-carpal
842       (gnus-carpal-setup-buffer 'group))))
843
844 (defun gnus-group-list-groups (&optional level unread lowest)
845   "List newsgroups with level LEVEL or lower that have unread articles.
846 Default is all subscribed groups.
847 If argument UNREAD is non-nil, groups with no unread articles are also
848 listed.
849
850 Also see the `gnus-group-use-permanent-levels' variable."
851   (interactive
852    (list (if current-prefix-arg
853              (prefix-numeric-value current-prefix-arg)
854            (or
855             (gnus-group-default-level nil t)
856             gnus-group-default-list-level
857             gnus-level-subscribed))))
858   (unless level
859     (setq level (car gnus-group-list-mode)
860           unread (cdr gnus-group-list-mode)))
861   (setq level (gnus-group-default-level level))
862   (gnus-group-setup-buffer)
863   (gnus-update-format-specifications nil 'group 'group-mode)
864   (let ((case-fold-search nil)
865         (props (text-properties-at (gnus-point-at-bol)))
866         (empty (= (point-min) (point-max)))
867         (group (gnus-group-group-name))
868         number)
869     (set-buffer gnus-group-buffer)
870     (setq number (funcall gnus-group-prepare-function level unread lowest))
871     (when (or (and (numberp number)
872                    (zerop number))
873               (zerop (buffer-size)))
874       ;; No groups in the buffer.
875       (gnus-message 5 gnus-no-groups-message))
876     ;; We have some groups displayed.
877     (goto-char (point-max))
878     (when (or (not gnus-group-goto-next-group-function)
879               (not (funcall gnus-group-goto-next-group-function
880                             group props)))
881       (cond
882        (empty
883         (goto-char (point-min)))
884        ((not group)
885         ;; Go to the first group with unread articles.
886         (gnus-group-search-forward t))
887        (t
888         ;; Find the right group to put point on.  If the current group
889         ;; has disappeared in the new listing, try to find the next
890         ;; one.  If no next one can be found, just leave point at the
891         ;; first newsgroup in the buffer.
892         (when (not (gnus-goto-char
893                     (text-property-any
894                      (point-min) (point-max)
895                      'gnus-group (gnus-intern-safe
896                                   group gnus-active-hashtb))))
897           (let ((newsrc (cdddr (gnus-gethash group gnus-newsrc-hashtb))))
898             (while (and newsrc
899                         (not (gnus-goto-char
900                               (text-property-any
901                                (point-min) (point-max) 'gnus-group
902                                (gnus-intern-safe
903                                 (caar newsrc) gnus-active-hashtb)))))
904               (setq newsrc (cdr newsrc)))
905             (unless newsrc
906               (goto-char (point-max))
907               (forward-line -1)))))))
908     ;; Adjust cursor point.
909     (gnus-group-position-point)))
910
911 (defun gnus-group-list-level (level &optional all)
912   "List groups on LEVEL.
913 If ALL (the prefix), also list groups that have no unread articles."
914   (interactive "nList groups on level: \nP")
915   (gnus-group-list-groups level all level))
916
917 (defun gnus-group-prepare-flat (level &optional all lowest regexp)
918   "List all newsgroups with unread articles of level LEVEL or lower.
919 If ALL is non-nil, list groups that have no unread articles.
920 If LOWEST is non-nil, list all newsgroups of level LOWEST or higher.
921 If REGEXP, only list groups matching REGEXP."
922   (set-buffer gnus-group-buffer)
923   (let ((buffer-read-only nil)
924         (newsrc (cdr gnus-newsrc-alist))
925         (lowest (or lowest 1))
926         info clevel unread group params)
927     (erase-buffer)
928     (when (< lowest gnus-level-zombie)
929       ;; List living groups.
930       (while newsrc
931         (setq info (car newsrc)
932               group (gnus-info-group info)
933               params (gnus-info-params info)
934               newsrc (cdr newsrc)
935               unread (car (gnus-gethash group gnus-newsrc-hashtb)))
936         (and unread                     ; This group might be bogus
937              (or (not regexp)
938                  (string-match regexp group))
939              (<= (setq clevel (gnus-info-level info)) level)
940              (>= clevel lowest)
941              (or all                    ; We list all groups?
942                  (if (eq unread t)      ; Unactivated?
943                      gnus-group-list-inactive-groups ; We list unactivated
944                    (> unread 0))        ; We list groups with unread articles
945                  (and gnus-list-groups-with-ticked-articles
946                       (cdr (assq 'tick (gnus-info-marks info))))
947                                         ; And groups with tickeds
948                  ;; Check for permanent visibility.
949                  (and gnus-permanently-visible-groups
950                       (string-match gnus-permanently-visible-groups
951                                     group))
952                  (memq 'visible params)
953                  (cdr (assq 'visible params)))
954              (gnus-group-insert-group-line
955               group (gnus-info-level info)
956               (gnus-info-marks info) unread (gnus-info-method info)))))
957
958     ;; List dead groups.
959     (and (>= level gnus-level-zombie) (<= lowest gnus-level-zombie)
960          (gnus-group-prepare-flat-list-dead
961           (setq gnus-zombie-list (sort gnus-zombie-list 'string<))
962           gnus-level-zombie ?Z
963           regexp))
964     (and (>= level gnus-level-killed) (<= lowest gnus-level-killed)
965          (gnus-group-prepare-flat-list-dead
966           (setq gnus-killed-list (sort gnus-killed-list 'string<))
967           gnus-level-killed ?K regexp))
968
969     (gnus-group-set-mode-line)
970     (setq gnus-group-list-mode (cons level all))
971     (gnus-run-hooks 'gnus-group-prepare-hook)
972     t))
973
974 (defun gnus-group-prepare-flat-list-dead (groups level mark regexp)
975   ;; List zombies and killed lists somewhat faster, which was
976   ;; suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.  It does
977   ;; this by ignoring the group format specification altogether.
978   (let (group)
979     (if regexp
980         ;; This loop is used when listing groups that match some
981         ;; regexp.
982         (while groups
983           (setq group (pop groups))
984           (when (string-match regexp group)
985             (gnus-add-text-properties
986              (point) (prog1 (1+ (point))
987                        (insert " " mark "     *: " group "\n"))
988              (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
989                    'gnus-unread t
990                    'gnus-level level))))
991       ;; This loop is used when listing all groups.
992       (while groups
993         (gnus-add-text-properties
994          (point) (prog1 (1+ (point))
995                    (insert " " mark "     *: "
996                            (setq group (pop groups)) "\n"))
997          (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
998                'gnus-unread t
999                'gnus-level level))))))
1000
1001 (defun gnus-group-update-group-line ()
1002   "Update the current line in the group buffer."
1003   (let* ((buffer-read-only nil)
1004          (group (gnus-group-group-name))
1005          (entry (and group (gnus-gethash group gnus-newsrc-hashtb)))
1006          gnus-group-indentation)
1007     (when group
1008       (and entry
1009            (not (gnus-ephemeral-group-p group))
1010            (gnus-dribble-enter
1011             (concat "(gnus-group-set-info '"
1012                     (gnus-prin1-to-string (nth 2 entry))
1013                     ")")))
1014       (setq gnus-group-indentation (gnus-group-group-indentation))
1015       (gnus-delete-line)
1016       (gnus-group-insert-group-line-info group)
1017       (forward-line -1)
1018       (gnus-group-position-point))))
1019
1020 (defun gnus-group-insert-group-line-info (group)
1021   "Insert GROUP on the current line."
1022   (let ((entry (gnus-gethash group gnus-newsrc-hashtb))
1023         (gnus-group-indentation (gnus-group-group-indentation))
1024         active info)
1025     (if entry
1026         (progn
1027           ;; (Un)subscribed group.
1028           (setq info (nth 2 entry))
1029           (gnus-group-insert-group-line
1030            group (gnus-info-level info) (gnus-info-marks info)
1031            (or (car entry) t) (gnus-info-method info)))
1032       ;; This group is dead.
1033       (gnus-group-insert-group-line
1034        group
1035        (if (member group gnus-zombie-list) gnus-level-zombie gnus-level-killed)
1036        nil
1037        (if (setq active (gnus-active group))
1038            (if (zerop (cdr active))
1039                0
1040              (- (1+ (cdr active)) (car active)))
1041          nil)
1042        nil))))
1043
1044 (defun gnus-group-insert-group-line (gnus-tmp-group gnus-tmp-level
1045                                                     gnus-tmp-marked number
1046                                                     gnus-tmp-method)
1047   "Insert a group line in the group buffer."
1048   (let* ((gnus-tmp-active (gnus-active gnus-tmp-group))
1049          (gnus-tmp-number-total
1050           (if gnus-tmp-active
1051               (1+ (- (cdr gnus-tmp-active) (car gnus-tmp-active)))
1052             0))
1053          (gnus-tmp-number-of-unread
1054           (if (numberp number) (int-to-string (max 0 number))
1055             "*"))
1056          (gnus-tmp-number-of-read
1057           (if (numberp number)
1058               (int-to-string (max 0 (- gnus-tmp-number-total number)))
1059             "*"))
1060          (gnus-tmp-subscribed
1061           (cond ((<= gnus-tmp-level gnus-level-subscribed) ? )
1062                 ((<= gnus-tmp-level gnus-level-unsubscribed) ?U)
1063                 ((= gnus-tmp-level gnus-level-zombie) ?Z)
1064                 (t ?K)))
1065          (gnus-tmp-qualified-group (gnus-group-real-name gnus-tmp-group))
1066          (gnus-tmp-newsgroup-description
1067           (if gnus-description-hashtb
1068               (or (gnus-gethash gnus-tmp-group gnus-description-hashtb) "")
1069             ""))
1070          (gnus-tmp-moderated
1071           (if (and gnus-moderated-hashtb
1072                    (gnus-gethash gnus-tmp-group gnus-moderated-hashtb))
1073               ?m ? ))
1074          (gnus-tmp-moderated-string
1075           (if (eq gnus-tmp-moderated ?m) "(m)" ""))
1076          (gnus-tmp-method
1077           (gnus-server-get-method gnus-tmp-group gnus-tmp-method)) ;
1078          (gnus-tmp-news-server (or (cadr gnus-tmp-method) ""))
1079          (gnus-tmp-news-method (or (car gnus-tmp-method) ""))
1080          (gnus-tmp-news-method-string
1081           (if gnus-tmp-method
1082               (format "(%s:%s)" (car gnus-tmp-method)
1083                       (cadr gnus-tmp-method)) ""))
1084          (gnus-tmp-marked-mark
1085           (if (and (numberp number)
1086                    (zerop number)
1087                    (cdr (assq 'tick gnus-tmp-marked)))
1088               ?* ? ))
1089          (gnus-tmp-process-marked
1090           (if (member gnus-tmp-group gnus-group-marked)
1091               gnus-process-mark ? ))
1092          (gnus-tmp-grouplens
1093           (or (and gnus-use-grouplens
1094                    (bbb-grouplens-group-p gnus-tmp-group))
1095               ""))
1096          (buffer-read-only nil)
1097          header gnus-tmp-header)        ; passed as parameter to user-funcs.
1098     (beginning-of-line)
1099     (gnus-add-text-properties
1100      (point)
1101      (prog1 (1+ (point))
1102        ;; Insert the text.
1103        (eval gnus-group-line-format-spec))
1104      `(gnus-group ,(gnus-intern-safe gnus-tmp-group gnus-active-hashtb)
1105                   gnus-unread ,(if (numberp number)
1106                                    (string-to-int gnus-tmp-number-of-unread)
1107                                  t)
1108                   gnus-marked ,gnus-tmp-marked-mark
1109                   gnus-indentation ,gnus-group-indentation
1110                   gnus-level ,gnus-tmp-level))
1111     (when (inline (gnus-visual-p 'group-highlight 'highlight))
1112       (forward-line -1)
1113       (gnus-run-hooks 'gnus-group-update-hook)
1114       (forward-line))
1115     ;; Allow XEmacs to remove front-sticky text properties.
1116     (gnus-group-remove-excess-properties)))
1117
1118 (defun gnus-group-highlight-line ()
1119   "Highlight the current line according to `gnus-group-highlight'."
1120   (let* ((list gnus-group-highlight)
1121          (p (point))
1122          (end (progn (end-of-line) (point)))
1123          ;; now find out where the line starts and leave point there.
1124          (beg (progn (beginning-of-line) (point)))
1125          (group (gnus-group-group-name))
1126          (entry (gnus-group-entry group))
1127          (unread (if (numberp (car entry)) (car entry) 0))
1128          (active (gnus-active group))
1129          (total (if active (1+ (- (cdr active) (car active))) 0))
1130          (info (nth 2 entry))
1131          (method (gnus-server-get-method group (gnus-info-method info)))
1132          (marked (gnus-info-marks info))
1133          (mailp (memq 'mail (assoc (symbol-name
1134                                     (car (or method gnus-select-method)))
1135                                    gnus-valid-select-methods)))
1136          (level (or (gnus-info-level info) gnus-level-killed))
1137          (score (or (gnus-info-score info) 0))
1138          (ticked (gnus-range-length (cdr (assq 'tick marked))))
1139          (group-age (gnus-group-timestamp-delta group))
1140          (inhibit-read-only t))
1141     ;; Eval the cars of the lists until we find a match.
1142     (while (and list
1143                 (not (eval (caar list))))
1144       (setq list (cdr list)))
1145     (let ((face (cdar list)))
1146       (unless (eq face (get-text-property beg 'face))
1147         (gnus-put-text-property-excluding-characters-with-faces
1148          beg end 'face
1149          (setq face (if (boundp face) (symbol-value face) face)))
1150         (gnus-extent-start-open beg)))
1151     (goto-char p)))
1152
1153 (defun gnus-group-update-group (group &optional visible-only)
1154   "Update all lines where GROUP appear.
1155 If VISIBLE-ONLY is non-nil, the group won't be displayed if it isn't
1156 already."
1157   ;; Can't use `save-excursion' here, so we do it manually.
1158   (let ((buf (current-buffer))
1159         mark)
1160     (set-buffer gnus-group-buffer)
1161     (setq mark (point-marker))
1162     ;; The buffer may be narrowed.
1163     (save-restriction
1164       (widen)
1165       (let ((ident (gnus-intern-safe group gnus-active-hashtb))
1166             (loc (point-min))
1167             found buffer-read-only)
1168         ;; Enter the current status into the dribble buffer.
1169         (let ((entry (gnus-gethash group gnus-newsrc-hashtb)))
1170           (when (and entry
1171                      (not (gnus-ephemeral-group-p group)))
1172             (gnus-dribble-enter
1173              (concat "(gnus-group-set-info '"
1174                      (gnus-prin1-to-string (nth 2 entry))
1175                      ")"))))
1176         ;; Find all group instances.  If topics are in use, each group
1177         ;; may be listed in more than once.
1178         (while (setq loc (text-property-any
1179                           loc (point-max) 'gnus-group ident))
1180           (setq found t)
1181           (goto-char loc)
1182           (let ((gnus-group-indentation (gnus-group-group-indentation)))
1183             (gnus-delete-line)
1184             (gnus-group-insert-group-line-info group)
1185             (save-excursion
1186               (forward-line -1)
1187               (gnus-run-hooks 'gnus-group-update-group-hook)))
1188           (setq loc (1+ loc)))
1189         (unless (or found visible-only)
1190           ;; No such line in the buffer, find out where it's supposed to
1191           ;; go, and insert it there (or at the end of the buffer).
1192           (if gnus-goto-missing-group-function
1193               (funcall gnus-goto-missing-group-function group)
1194             (let ((entry (cddr (gnus-gethash group gnus-newsrc-hashtb))))
1195               (while (and entry (car entry)
1196                           (not
1197                            (gnus-goto-char
1198                             (text-property-any
1199                              (point-min) (point-max)
1200                              'gnus-group (gnus-intern-safe
1201                                           (caar entry) gnus-active-hashtb)))))
1202                 (setq entry (cdr entry)))
1203               (or entry (goto-char (point-max)))))
1204           ;; Finally insert the line.
1205           (let ((gnus-group-indentation (gnus-group-group-indentation)))
1206             (gnus-group-insert-group-line-info group)
1207             (save-excursion
1208               (forward-line -1)
1209               (gnus-run-hooks 'gnus-group-update-group-hook))))
1210         (when gnus-group-update-group-function
1211           (funcall gnus-group-update-group-function group))
1212         (gnus-group-set-mode-line)))
1213     (goto-char mark)
1214     (set-marker mark nil)
1215     (set-buffer buf)))
1216
1217 (defun gnus-group-set-mode-line ()
1218   "Update the mode line in the group buffer."
1219   (when (memq 'group gnus-updated-mode-lines)
1220     ;; Yes, we want to keep this mode line updated.
1221     (save-excursion
1222       (set-buffer gnus-group-buffer)
1223       (let* ((gformat (or gnus-group-mode-line-format-spec
1224                           (gnus-set-format 'group-mode)))
1225              (gnus-tmp-news-server (cadr gnus-select-method))
1226              (gnus-tmp-news-method (car gnus-select-method))
1227              (gnus-tmp-colon (if (equal gnus-tmp-news-server "") "" ":"))
1228              (max-len 60)
1229              gnus-tmp-header            ;Dummy binding for user-defined formats
1230              ;; Get the resulting string.
1231              (modified
1232               (and gnus-dribble-buffer
1233                    (buffer-name gnus-dribble-buffer)
1234                    (buffer-modified-p gnus-dribble-buffer)
1235                    (save-excursion
1236                      (set-buffer gnus-dribble-buffer)
1237                      (not (zerop (buffer-size))))))
1238              (mode-string (eval gformat)))
1239         ;; Say whether the dribble buffer has been modified.
1240         (setq mode-line-modified
1241               (if modified (car gnus-mode-line-modified)
1242                 (cdr gnus-mode-line-modified)))
1243         ;; If the line is too long, we chop it off.
1244         (when (> (length mode-string) max-len)
1245           (setq mode-string (substring mode-string 0 (- max-len 4))))
1246         (prog1
1247             (setq mode-line-buffer-identification
1248                   (gnus-mode-line-buffer-identification
1249                    (list mode-string)))
1250           (set-buffer-modified-p modified))))))
1251
1252 (defun gnus-group-group-name ()
1253   "Get the name of the newsgroup on the current line."
1254   (let ((group (get-text-property (gnus-point-at-bol) 'gnus-group)))
1255     (when group
1256       (symbol-name group))))
1257
1258 (defun gnus-group-group-level ()
1259   "Get the level of the newsgroup on the current line."
1260   (get-text-property (gnus-point-at-bol) 'gnus-level))
1261
1262 (defun gnus-group-group-indentation ()
1263   "Get the indentation of the newsgroup on the current line."
1264   (or (get-text-property (gnus-point-at-bol) 'gnus-indentation)
1265       (and gnus-group-indentation-function
1266            (funcall gnus-group-indentation-function))
1267       ""))
1268
1269 (defun gnus-group-group-unread ()
1270   "Get the number of unread articles of the newsgroup on the current line."
1271   (get-text-property (gnus-point-at-bol) 'gnus-unread))
1272
1273 (defun gnus-group-new-mail (group)
1274   (if (nnmail-new-mail-p (gnus-group-real-name group))
1275       gnus-new-mail-mark
1276     ? ))
1277
1278 (defun gnus-group-level (group)
1279   "Return the estimated level of GROUP."
1280   (or (gnus-info-level (gnus-get-info group))
1281       (and (member group gnus-zombie-list) gnus-level-zombie)
1282       gnus-level-killed))
1283
1284 (defun gnus-group-search-forward (&optional backward all level first-too)
1285   "Find the next newsgroup with unread articles.
1286 If BACKWARD is non-nil, find the previous newsgroup instead.
1287 If ALL is non-nil, just find any newsgroup.
1288 If LEVEL is non-nil, find group with level LEVEL, or higher if no such
1289 group exists.
1290 If FIRST-TOO, the current line is also eligible as a target."
1291   (let ((way (if backward -1 1))
1292         (low gnus-level-killed)
1293         (beg (point))
1294         pos found lev)
1295     (if (and backward (progn (beginning-of-line)) (bobp))
1296         nil
1297       (unless first-too
1298         (forward-line way))
1299       (while (and
1300               (not (eobp))
1301               (not (setq
1302                     found
1303                     (and
1304                      (get-text-property (point) 'gnus-group)
1305                      (or all
1306                          (and
1307                           (let ((unread
1308                                  (get-text-property (point) 'gnus-unread)))
1309                             (and (numberp unread) (> unread 0)))
1310                           (setq lev (get-text-property (point)
1311                                                        'gnus-level))
1312                           (<= lev gnus-level-subscribed)))
1313                      (or (not level)
1314                          (and (setq lev (get-text-property (point)
1315                                                            'gnus-level))
1316                               (or (= lev level)
1317                                   (and (< lev low)
1318                                        (< level lev)
1319                                        (progn
1320                                          (setq low lev)
1321                                          (setq pos (point))
1322                                          nil))))))))
1323               (zerop (forward-line way)))))
1324     (if found
1325         (progn (gnus-group-position-point) t)
1326       (goto-char (or pos beg))
1327       (and pos t))))
1328
1329 ;;; Gnus group mode commands
1330
1331 ;; Group marking.
1332
1333 (defun gnus-group-mark-group (n &optional unmark no-advance)
1334   "Mark the current group."
1335   (interactive "p")
1336   (let ((buffer-read-only nil)
1337         group)
1338     (while (and (> n 0)
1339                 (not (eobp)))
1340       (when (setq group (gnus-group-group-name))
1341         ;; Go to the mark position.
1342         (beginning-of-line)
1343         (forward-char (or (cdr (assq 'process gnus-group-mark-positions)) 2))
1344         (subst-char-in-region
1345          (point) (1+ (point)) (char-after)
1346          (if unmark
1347              (progn
1348                (setq gnus-group-marked (delete group gnus-group-marked))
1349                ? )
1350            (setq gnus-group-marked
1351                  (cons group (delete group gnus-group-marked)))
1352            gnus-process-mark)))
1353       (unless no-advance
1354         (gnus-group-next-group 1))
1355       (decf n))
1356     (gnus-summary-position-point)
1357     n))
1358
1359 (defun gnus-group-unmark-group (n)
1360   "Remove the mark from the current group."
1361   (interactive "p")
1362   (gnus-group-mark-group n 'unmark)
1363   (gnus-group-position-point))
1364
1365 (defun gnus-group-unmark-all-groups ()
1366   "Unmark all groups."
1367   (interactive)
1368   (let ((groups gnus-group-marked))
1369     (save-excursion
1370       (while groups
1371         (gnus-group-remove-mark (pop groups)))))
1372   (gnus-group-position-point))
1373
1374 (defun gnus-group-mark-region (unmark beg end)
1375   "Mark all groups between point and mark.
1376 If UNMARK, remove the mark instead."
1377   (interactive "P\nr")
1378   (let ((num (count-lines beg end)))
1379     (save-excursion
1380       (goto-char beg)
1381       (- num (gnus-group-mark-group num unmark)))))
1382
1383 (defun gnus-group-mark-buffer (&optional unmark)
1384   "Mark all groups in the buffer.
1385 If UNMARK, remove the mark instead."
1386   (interactive "P")
1387   (gnus-group-mark-region unmark (point-min) (point-max)))
1388
1389 (defun gnus-group-mark-regexp (regexp)
1390   "Mark all groups that match some regexp."
1391   (interactive "sMark (regexp): ")
1392   (let ((alist (cdr gnus-newsrc-alist))
1393         group)
1394     (while alist
1395       (when (string-match regexp (setq group (gnus-info-group (pop alist))))
1396         (gnus-group-set-mark group))))
1397   (gnus-group-position-point))
1398
1399 (defun gnus-group-remove-mark (group)
1400   "Remove the process mark from GROUP and move point there.
1401 Return nil if the group isn't displayed."
1402   (if (gnus-group-goto-group group)
1403       (save-excursion
1404         (gnus-group-mark-group 1 'unmark t)
1405         t)
1406     (setq gnus-group-marked
1407           (delete group gnus-group-marked))
1408     nil))
1409
1410 (defun gnus-group-set-mark (group)
1411   "Set the process mark on GROUP."
1412   (if (gnus-group-goto-group group)
1413       (save-excursion
1414         (gnus-group-mark-group 1 nil t))
1415     (setq gnus-group-marked (cons group (delete group gnus-group-marked)))))
1416
1417 (defun gnus-group-universal-argument (arg &optional groups func)
1418   "Perform any command on all groups according to the process/prefix convention."
1419   (interactive "P")
1420   (if (eq (setq func (or func
1421                          (key-binding
1422                           (read-key-sequence
1423                            (substitute-command-keys
1424                             "\\<gnus-group-mode-map>\\[gnus-group-universal-argument]")))))
1425           'undefined)
1426       (gnus-error 1 "Undefined key")
1427     (gnus-group-iterate arg
1428       (lambda (group)
1429         (command-execute func))))
1430   (gnus-group-position-point))
1431
1432 (defun gnus-group-process-prefix (n)
1433   "Return a list of groups to work on.
1434 Take into consideration N (the prefix) and the list of marked groups."
1435   (cond
1436    (n
1437     (setq n (prefix-numeric-value n))
1438     ;; There is a prefix, so we return a list of the N next
1439     ;; groups.
1440     (let ((way (if (< n 0) -1 1))
1441           (n (abs n))
1442           group groups)
1443       (save-excursion
1444         (while (> n 0)
1445           (if (setq group (gnus-group-group-name))
1446               (push group groups))
1447           (setq n (1- n))
1448           (gnus-group-next-group way)))
1449       (nreverse groups)))
1450    ((gnus-region-active-p)
1451     ;; Work on the region between point and mark.
1452     (let ((max (max (point) (mark)))
1453           groups)
1454       (save-excursion
1455         (goto-char (min (point) (mark)))
1456         (while
1457             (and
1458              (push (gnus-group-group-name) groups)
1459              (zerop (gnus-group-next-group 1))
1460              (< (point) max)))
1461         (nreverse groups))))
1462    (gnus-group-marked
1463     ;; No prefix, but a list of marked articles.
1464     (reverse gnus-group-marked))
1465    (t
1466     ;; Neither marked articles or a prefix, so we return the
1467     ;; current group.
1468     (let ((group (gnus-group-group-name)))
1469       (and group (list group))))))
1470
1471 ;;; !!!Surely gnus-group-iterate should be a macro instead?  I can't
1472 ;;; imagine why I went through these contortions...
1473 (eval-and-compile
1474   (let ((function (make-symbol "gnus-group-iterate-function"))
1475         (window (make-symbol "gnus-group-iterate-window"))
1476         (groups (make-symbol "gnus-group-iterate-groups"))
1477         (group (make-symbol "gnus-group-iterate-group")))
1478     (eval
1479      `(defun gnus-group-iterate (arg ,function)
1480         "Iterate FUNCTION over all process/prefixed groups.
1481 FUNCTION will be called with the group name as the paremeter
1482 and with point over the group in question."
1483         (let ((,groups (gnus-group-process-prefix arg))
1484               (,window (selected-window))
1485               ,group)
1486           (while (setq ,group (pop ,groups))
1487             (select-window ,window)
1488             (gnus-group-remove-mark ,group)
1489             (save-selected-window
1490               (save-excursion
1491                 (funcall ,function ,group)))))))))
1492
1493 (put 'gnus-group-iterate 'lisp-indent-function 1)
1494
1495 ;; Selecting groups.
1496
1497 (defun gnus-group-read-group (&optional all no-article group select-articles)
1498   "Read news in this newsgroup.
1499 If the prefix argument ALL is non-nil, already read articles become
1500 readable.  IF ALL is a number, fetch this number of articles.  If the
1501 optional argument NO-ARTICLE is non-nil, no article will be
1502 auto-selected upon group entry.  If GROUP is non-nil, fetch that
1503 group."
1504   (interactive "P")
1505   (let ((no-display (eq all 0))
1506         (group (or group (gnus-group-group-name)))
1507         number active marked entry)
1508     (when (eq all 0)
1509       (setq all nil))
1510     (unless group
1511       (error "No group on current line"))
1512     (setq marked (gnus-info-marks
1513                   (nth 2 (setq entry (gnus-gethash
1514                                       group gnus-newsrc-hashtb)))))
1515     ;; This group might be a dead group.  In that case we have to get
1516     ;; the number of unread articles from `gnus-active-hashtb'.
1517     (setq number
1518           (cond ((numberp all) all)
1519                 (entry (car entry))
1520                 ((setq active (gnus-active group))
1521                  (- (1+ (cdr active)) (car active)))))
1522     (gnus-summary-read-group
1523      group (or all (and (numberp number)
1524                         (zerop (+ number (gnus-range-length
1525                                           (cdr (assq 'tick marked)))
1526                                   (gnus-range-length
1527                                    (cdr (assq 'dormant marked)))))))
1528      no-article nil no-display nil select-articles)))
1529
1530 (defun gnus-group-select-group (&optional all)
1531   "Select this newsgroup.
1532 No article is selected automatically.
1533 If ALL is non-nil, already read articles become readable.
1534 If ALL is a number, fetch this number of articles."
1535   (interactive "P")
1536   (gnus-group-read-group all t))
1537
1538 (defun gnus-group-quick-select-group (&optional all)
1539   "Select the current group \"quickly\".
1540 This means that no highlighting or scoring will be performed.
1541 If ALL (the prefix argument) is 0, don't even generate the summary
1542 buffer.
1543
1544 This might be useful if you want to toggle threading
1545 before entering the group."
1546   (interactive "P")
1547   (require 'gnus-score)
1548   (let (gnus-visual
1549         gnus-score-find-score-files-function
1550         gnus-home-score-file
1551         gnus-apply-kill-hook
1552         gnus-summary-expunge-below)
1553     (gnus-group-read-group all t)))
1554
1555 (defun gnus-group-visible-select-group (&optional all)
1556   "Select the current group without hiding any articles."
1557   (interactive "P")
1558   (let ((gnus-inhibit-limiting t))
1559     (gnus-group-read-group all t)))
1560
1561 (defun gnus-group-select-group-ephemerally ()
1562   "Select the current group without doing any processing whatsoever.
1563 You will actually be entered into a group that's a copy of
1564 the current group; no changes you make while in this group will
1565 be permanent."
1566   (interactive)
1567   (require 'gnus-score)
1568   (let* (gnus-visual
1569          gnus-score-find-score-files-function gnus-apply-kill-hook
1570          gnus-summary-expunge-below gnus-show-threads gnus-suppress-duplicates
1571          gnus-summary-mode-hook gnus-select-group-hook
1572          (group (gnus-group-group-name))
1573          (method (gnus-find-method-for-group group)))
1574     (gnus-group-read-ephemeral-group
1575      (gnus-group-prefixed-name group method) method)))
1576
1577 ;;;###autoload
1578 (defun gnus-fetch-group (group)
1579   "Start Gnus if necessary and enter GROUP.
1580 Returns whether the fetching was successful or not."
1581   (interactive "sGroup name: ")
1582   (unless (get-buffer gnus-group-buffer)
1583     (gnus-no-server))
1584   (gnus-group-read-group nil nil group))
1585
1586 ;;;###autoload
1587 (defun gnus-fetch-group-other-frame (group)
1588   "Pop up a frame and enter GROUP."
1589   (interactive "P")
1590   (let ((window (get-buffer-window gnus-group-buffer)))
1591     (cond (window
1592            (select-frame (window-frame window)))
1593           ((= (length (frame-list)) 1)
1594            (select-frame (make-frame)))
1595           (t
1596            (other-frame 1))))
1597   (gnus-fetch-group group))
1598
1599 (defvar gnus-ephemeral-group-server 0)
1600
1601 ;; Enter a group that is not in the group buffer.  Non-nil is returned
1602 ;; if selection was successful.
1603 (defun gnus-group-read-ephemeral-group (group method &optional activate
1604                                               quit-config request-only
1605                                               select-articles)
1606   "Read GROUP from METHOD as an ephemeral group.
1607 If ACTIVATE, request the group first.
1608 If QUIT-CONFIG, use that window configuration when exiting from the
1609 ephemeral group.
1610 If REQUEST-ONLY, don't actually read the group; just request it.
1611 If SELECT-ARTICLES, only select those articles.
1612
1613 Return the name of the group is selection was successful."
1614   ;; Transform the select method into a unique server.
1615   (when (stringp method)
1616     (setq method (gnus-server-to-method method)))
1617   (setq method
1618         `(,(car method) ,(concat (cadr method) "-ephemeral")
1619           (,(intern (format "%s-address" (car method))) ,(cadr method))
1620           ,@(cddr method)))
1621   (let ((group (if (gnus-group-foreign-p group) group
1622                  (gnus-group-prefixed-name group method))))
1623     (gnus-sethash
1624      group
1625      `(-1 nil (,group
1626                ,gnus-level-default-subscribed nil nil ,method
1627                ((quit-config .
1628                              ,(if quit-config quit-config
1629                                 (cons gnus-summary-buffer
1630                                       gnus-current-window-configuration))))))
1631      gnus-newsrc-hashtb)
1632     (push method gnus-ephemeral-servers)
1633     (set-buffer gnus-group-buffer)
1634     (unless (gnus-check-server method)
1635       (error "Unable to contact server: %s" (gnus-status-message method)))
1636     (when activate
1637       (gnus-activate-group group 'scan)
1638       (unless (gnus-request-group group)
1639         (error "Couldn't request group: %s"
1640                (nnheader-get-report (car method)))))
1641     (if request-only
1642         group
1643       (condition-case ()
1644           (when (gnus-group-read-group t t group select-articles)
1645             group)
1646         ;;(error nil)
1647         (quit nil)))))
1648
1649 (defun gnus-group-jump-to-group (group)
1650   "Jump to newsgroup GROUP."
1651   (interactive
1652    (list (completing-read
1653           "Group: " gnus-active-hashtb nil
1654           (gnus-read-active-file-p)
1655           nil
1656           'gnus-group-history)))
1657
1658   (when (equal group "")
1659     (error "Empty group name"))
1660
1661   (unless (gnus-ephemeral-group-p group)
1662     ;; Either go to the line in the group buffer...
1663     (unless (gnus-group-goto-group group)
1664       ;; ... or insert the line.
1665       (gnus-group-update-group group)
1666       (gnus-group-goto-group group)))
1667   ;; Adjust cursor point.
1668   (gnus-group-position-point))
1669
1670 (defun gnus-group-goto-group (group &optional far)
1671   "Goto to newsgroup GROUP.
1672 If FAR, it is likely that the group is not on the current line."
1673   (when group
1674     (if far
1675         (gnus-goto-char
1676          (text-property-any
1677           (point-min) (point-max)
1678           'gnus-group (gnus-intern-safe group gnus-active-hashtb)))
1679       (beginning-of-line)
1680       (cond
1681        ;; It's quite likely that we are on the right line, so
1682        ;; we check the current line first.
1683        ((eq (get-text-property (point) 'gnus-group)
1684             (gnus-intern-safe group gnus-active-hashtb))
1685         (point))
1686        ;; Previous and next line are also likely, so we check them as well.
1687        ((save-excursion
1688           (forward-line -1)
1689           (eq (get-text-property (point) 'gnus-group)
1690               (gnus-intern-safe group gnus-active-hashtb)))
1691         (forward-line -1)
1692         (point))
1693        ((save-excursion
1694           (forward-line 1)
1695           (eq (get-text-property (point) 'gnus-group)
1696               (gnus-intern-safe group gnus-active-hashtb)))
1697         (forward-line 1)
1698         (point))
1699        (t
1700         ;; Search through the entire buffer.
1701         (gnus-goto-char
1702          (text-property-any
1703           (point-min) (point-max)
1704           'gnus-group (gnus-intern-safe group gnus-active-hashtb))))))))
1705
1706 (defun gnus-group-next-group (n &optional silent)
1707   "Go to next N'th newsgroup.
1708 If N is negative, search backward instead.
1709 Returns the difference between N and the number of skips actually
1710 done."
1711   (interactive "p")
1712   (gnus-group-next-unread-group n t nil silent))
1713
1714 (defun gnus-group-next-unread-group (n &optional all level silent)
1715   "Go to next N'th unread newsgroup.
1716 If N is negative, search backward instead.
1717 If ALL is non-nil, choose any newsgroup, unread or not.
1718 If LEVEL is non-nil, choose the next group with level LEVEL, or, if no
1719 such group can be found, the next group with a level higher than
1720 LEVEL.
1721 Returns the difference between N and the number of skips actually
1722 made."
1723   (interactive "p")
1724   (let ((backward (< n 0))
1725         (n (abs n)))
1726     (while (and (> n 0)
1727                 (gnus-group-search-forward
1728                  backward (or (not gnus-group-goto-unread) all) level))
1729       (setq n (1- n)))
1730     (when (and (/= 0 n)
1731                (not silent))
1732       (gnus-message 7 "No more%s newsgroups%s" (if all "" " unread")
1733                     (if level " on this level or higher" "")))
1734     n))
1735
1736 (defun gnus-group-prev-group (n)
1737   "Go to previous N'th newsgroup.
1738 Returns the difference between N and the number of skips actually
1739 done."
1740   (interactive "p")
1741   (gnus-group-next-unread-group (- n) t))
1742
1743 (defun gnus-group-prev-unread-group (n)
1744   "Go to previous N'th unread newsgroup.
1745 Returns the difference between N and the number of skips actually
1746 done."
1747   (interactive "p")
1748   (gnus-group-next-unread-group (- n)))
1749
1750 (defun gnus-group-next-unread-group-same-level (n)
1751   "Go to next N'th unread newsgroup on the same level.
1752 If N is negative, search backward instead.
1753 Returns the difference between N and the number of skips actually
1754 done."
1755   (interactive "p")
1756   (gnus-group-next-unread-group n t (gnus-group-group-level))
1757   (gnus-group-position-point))
1758
1759 (defun gnus-group-prev-unread-group-same-level (n)
1760   "Go to next N'th unread newsgroup on the same level.
1761 Returns the difference between N and the number of skips actually
1762 done."
1763   (interactive "p")
1764   (gnus-group-next-unread-group (- n) t (gnus-group-group-level))
1765   (gnus-group-position-point))
1766
1767 (defun gnus-group-best-unread-group (&optional exclude-group)
1768   "Go to the group with the highest level.
1769 If EXCLUDE-GROUP, do not go to that group."
1770   (interactive)
1771   (goto-char (point-min))
1772   (let ((best 100000)
1773         unread best-point)
1774     (while (not (eobp))
1775       (setq unread (get-text-property (point) 'gnus-unread))
1776       (when (and (numberp unread) (> unread 0))
1777         (when (and (get-text-property (point) 'gnus-level)
1778                    (< (get-text-property (point) 'gnus-level) best)
1779                    (or (not exclude-group)
1780                        (not (equal exclude-group (gnus-group-group-name)))))
1781           (setq best (get-text-property (point) 'gnus-level))
1782           (setq best-point (point))))
1783       (forward-line 1))
1784     (when best-point
1785       (goto-char best-point))
1786     (gnus-summary-position-point)
1787     (and best-point (gnus-group-group-name))))
1788
1789 (defun gnus-group-first-unread-group ()
1790   "Go to the first group with unread articles."
1791   (interactive)
1792   (prog1
1793       (let ((opoint (point))
1794             unread)
1795         (goto-char (point-min))
1796         (if (or (eq (setq unread (gnus-group-group-unread)) t) ; Not active.
1797                 (and (numberp unread)   ; Not a topic.
1798                      (not (zerop unread))) ; Has unread articles.
1799                 (zerop (gnus-group-next-unread-group 1))) ; Next unread group.
1800             (point)                     ; Success.
1801           (goto-char opoint)
1802           nil))                         ; Not success.
1803     (gnus-group-position-point)))
1804
1805 (defun gnus-group-enter-server-mode ()
1806   "Jump to the server buffer."
1807   (interactive)
1808   (gnus-enter-server-buffer))
1809
1810 (defun gnus-group-make-group (name &optional method address args)
1811   "Add a new newsgroup.
1812 The user will be prompted for a NAME, for a select METHOD, and an
1813 ADDRESS."
1814   (interactive
1815    (list
1816     (gnus-read-group "Group name: ")
1817     (gnus-read-method "From method: ")))
1818
1819   (when (stringp method)
1820     (setq method (or (gnus-server-to-method method) method)))
1821   (let* ((meth (when (and method
1822                           (not (gnus-server-equal method gnus-select-method)))
1823                  (if address (list (intern method) address)
1824                    method)))
1825          (nname (if method (gnus-group-prefixed-name name meth) name))
1826          backend info)
1827     (when (gnus-gethash nname gnus-newsrc-hashtb)
1828       (error "Group %s already exists" nname))
1829     ;; Subscribe to the new group.
1830     (gnus-group-change-level
1831      (setq info (list t nname gnus-level-default-subscribed nil nil meth))
1832      gnus-level-default-subscribed gnus-level-killed
1833      (and (gnus-group-group-name)
1834           (gnus-gethash (gnus-group-group-name)
1835                         gnus-newsrc-hashtb))
1836      t)
1837     ;; Make it active.
1838     (gnus-set-active nname (cons 1 0))
1839     (unless (gnus-ephemeral-group-p name)
1840       (gnus-dribble-enter
1841        (concat "(gnus-group-set-info '"
1842                (gnus-prin1-to-string (cdr info)) ")")))
1843     ;; Insert the line.
1844     (gnus-group-insert-group-line-info nname)
1845     (forward-line -1)
1846     (gnus-group-position-point)
1847
1848     ;; Load the backend and try to make the backend create
1849     ;; the group as well.
1850     (when (assoc (symbol-name (setq backend (car (gnus-server-get-method
1851                                                   nil meth))))
1852                  gnus-valid-select-methods)
1853       (require backend))
1854     (gnus-check-server meth)
1855     (when (gnus-check-backend-function 'request-create-group nname)
1856       (gnus-request-create-group nname nil args))
1857     t))
1858
1859 (defun gnus-group-delete-group (group &optional force)
1860   "Delete the current group.  Only meaningful with mail groups.
1861 If FORCE (the prefix) is non-nil, all the articles in the group will
1862 be deleted.  This is \"deleted\" as in \"removed forever from the face
1863 of the Earth\".  There is no undo.  The user will be prompted before
1864 doing the deletion."
1865   (interactive
1866    (list (gnus-group-group-name)
1867          current-prefix-arg))
1868   (unless group
1869     (error "No group to rename"))
1870   (unless (gnus-check-backend-function 'request-delete-group group)
1871     (error "This backend does not support group deletion"))
1872   (prog1
1873       (if (not (gnus-yes-or-no-p
1874                 (format
1875                  "Do you really want to delete %s%s? "
1876                  group (if force " and all its contents" ""))))
1877           ()                            ; Whew!
1878         (gnus-message 6 "Deleting group %s..." group)
1879         (if (not (gnus-request-delete-group group force))
1880             (gnus-error 3 "Couldn't delete group %s" group)
1881           (gnus-message 6 "Deleting group %s...done" group)
1882           (gnus-group-goto-group group)
1883           (gnus-group-kill-group 1 t)
1884           (gnus-sethash group nil gnus-active-hashtb)
1885           t))
1886     (gnus-group-position-point)))
1887
1888 (defun gnus-group-rename-group (group new-name)
1889   "Rename group from GROUP to NEW-NAME.
1890 When used interactively, GROUP is the group under point
1891 and NEW-NAME will be prompted for."
1892   (interactive
1893    (list
1894     (gnus-group-group-name)
1895     (progn
1896       (unless (gnus-check-backend-function
1897                'request-rename-group (gnus-group-group-name))
1898         (error "This backend does not support renaming groups"))
1899       (gnus-read-group "Rename group to: "
1900                        (gnus-group-real-name (gnus-group-group-name))))))
1901
1902   (unless (gnus-check-backend-function 'request-rename-group group)
1903     (error "This backend does not support renaming groups"))
1904   (unless group
1905     (error "No group to rename"))
1906   (when (equal (gnus-group-real-name group) new-name)
1907     (error "Can't rename to the same name"))
1908
1909   ;; We find the proper prefixed name.
1910   (setq new-name
1911         (if (gnus-group-native-p group)
1912             ;; Native group.
1913             new-name
1914           ;; Foreign group.
1915           (gnus-group-prefixed-name
1916            (gnus-group-real-name new-name)
1917            (gnus-info-method (gnus-get-info group)))))
1918
1919   (gnus-message 6 "Renaming group %s to %s..." group new-name)
1920   (prog1
1921       (if (not (gnus-request-rename-group group new-name))
1922           (gnus-error 3 "Couldn't rename group %s to %s" group new-name)
1923         ;; We rename the group internally by killing it...
1924         (gnus-group-goto-group group)
1925         (gnus-group-kill-group)
1926         ;; ... changing its name ...
1927         (setcar (cdar gnus-list-of-killed-groups) new-name)
1928         ;; ... and then yanking it.  Magic!
1929         (gnus-group-yank-group)
1930         (gnus-set-active new-name (gnus-active group))
1931         (gnus-message 6 "Renaming group %s to %s...done" group new-name)
1932         new-name)
1933     (setq gnus-killed-list (delete group gnus-killed-list))
1934     (gnus-set-active group nil)
1935     (gnus-dribble-touch)
1936     (gnus-group-position-point)))
1937
1938 (defun gnus-group-edit-group (group &optional part)
1939   "Edit the group on the current line."
1940   (interactive (list (gnus-group-group-name)))
1941   (let ((part (or part 'info))
1942         info)
1943     (unless group
1944       (error "No group on current line"))
1945     (unless (setq info (gnus-get-info group))
1946       (error "Killed group; can't be edited"))
1947     (ignore-errors
1948       (gnus-close-group group))
1949     (gnus-edit-form
1950      ;; Find the proper form to edit.
1951      (cond ((eq part 'method)
1952             (or (gnus-info-method info) "native"))
1953            ((eq part 'params)
1954             (gnus-info-params info))
1955            (t info))
1956      ;; The proper documentation.
1957      (format
1958       "Editing the %s for `%s'."
1959       (cond
1960        ((eq part 'method) "select method")
1961        ((eq part 'params) "group parameters")
1962        (t "group info"))
1963       group)
1964      `(lambda (form)
1965         (gnus-group-edit-group-done ',part ,group form)))))
1966
1967 (defun gnus-group-edit-group-method (group)
1968   "Edit the select method of GROUP."
1969   (interactive (list (gnus-group-group-name)))
1970   (gnus-group-edit-group group 'method))
1971
1972 (defun gnus-group-edit-group-parameters (group)
1973   "Edit the group parameters of GROUP."
1974   (interactive (list (gnus-group-group-name)))
1975   (gnus-group-edit-group group 'params))
1976
1977 (defun gnus-group-edit-group-done (part group form)
1978   "Update variables."
1979   (let* ((method (cond ((eq part 'info) (nth 4 form))
1980                        ((eq part 'method) form)
1981                        (t nil)))
1982          (info (cond ((eq part 'info) form)
1983                      ((eq part 'method) (gnus-get-info group))
1984                      (t nil)))
1985          (new-group (if info
1986                         (if (or (not method)
1987                                 (gnus-server-equal
1988                                  gnus-select-method method))
1989                             (gnus-group-real-name (car info))
1990                           (gnus-group-prefixed-name
1991                            (gnus-group-real-name (car info)) method))
1992                       nil)))
1993     (when (and new-group
1994                (not (equal new-group group)))
1995       (when (gnus-group-goto-group group)
1996         (gnus-group-kill-group 1))
1997       (gnus-activate-group new-group))
1998     ;; Set the info.
1999     (if (not (and info new-group))
2000         (gnus-group-set-info form (or new-group group) part)
2001       (setq info (gnus-copy-sequence info))
2002       (setcar info new-group)
2003       (unless (gnus-server-equal method "native")
2004         (unless (nthcdr 3 info)
2005           (nconc info (list nil nil)))
2006         (unless (nthcdr 4 info)
2007           (nconc info (list nil)))
2008         (gnus-info-set-method info method))
2009       (gnus-group-set-info info))
2010     (gnus-group-update-group (or new-group group))
2011     (gnus-group-position-point)))
2012
2013 (defun gnus-group-make-useful-group (group method)
2014   "Create one of the groups described in `gnus-useful-groups'."
2015   (interactive
2016    (let ((entry (assoc (completing-read "Create group: " gnus-useful-groups
2017                                         nil t)
2018                        gnus-useful-groups)))
2019      (list (cadr entry) (caddr entry))))
2020   (setq method (gnus-copy-sequence method))
2021   (let (entry)
2022     (while (setq entry (memq (assq 'eval method) method))
2023       (setcar entry (eval (cadar entry)))))
2024   (gnus-group-make-group group method))
2025
2026 (defun gnus-group-make-help-group ()
2027   "Create the Gnus documentation group."
2028   (interactive)
2029   (let ((name (gnus-group-prefixed-name "gnus-help" '(nndoc "gnus-help")))
2030         (file (nnheader-find-etc-directory "gnus-tut.txt" t)))
2031     (when (gnus-gethash name gnus-newsrc-hashtb)
2032       (error "Documentation group already exists"))
2033     (if (not file)
2034         (gnus-message 1 "Couldn't find doc group")
2035       (gnus-group-make-group
2036        (gnus-group-real-name name)
2037        (list 'nndoc "gnus-help"
2038              (list 'nndoc-address file)
2039              (list 'nndoc-article-type 'mbox)))))
2040   (gnus-group-position-point))
2041
2042 (defun gnus-group-make-doc-group (file type)
2043   "Create a group that uses a single file as the source."
2044   (interactive
2045    (list (read-file-name "File name: ")
2046          (and current-prefix-arg 'ask)))
2047   (when (eq type 'ask)
2048     (let ((err "")
2049           char found)
2050       (while (not found)
2051         (message
2052          "%sFile type (mbox, babyl, digest, forward, mmdf, guess) [mbdfag]: "
2053          err)
2054         (setq found (cond ((= (setq char (read-char)) ?m) 'mbox)
2055                           ((= char ?b) 'babyl)
2056                           ((= char ?d) 'digest)
2057                           ((= char ?f) 'forward)
2058                           ((= char ?a) 'mmfd)
2059                           ((= char ?g) 'guess)
2060                           (t (setq err (format "%c unknown. " char))
2061                              nil))))
2062       (setq type found)))
2063   (let* ((file (expand-file-name file))
2064          (name (gnus-generate-new-group-name
2065                 (gnus-group-prefixed-name
2066                  (file-name-nondirectory file) '(nndoc "")))))
2067     (gnus-group-make-group
2068      (gnus-group-real-name name)
2069      (list 'nndoc file
2070            (list 'nndoc-address file)
2071            (list 'nndoc-article-type (or type 'guess))))))
2072
2073 (defvar nnweb-type-definition)
2074 (defvar gnus-group-web-type-history nil)
2075 (defvar gnus-group-web-search-history nil)
2076 (defun gnus-group-make-web-group (&optional solid)
2077   "Create an ephemeral nnweb group.
2078 If SOLID (the prefix), create a solid group."
2079   (interactive "P")
2080   (require 'nnweb)
2081   (let* ((group
2082           (if solid (gnus-read-group "Group name: ")
2083             (message-unique-id)))
2084          (default-type (or (car gnus-group-web-type-history)
2085                            (symbol-name (caar nnweb-type-definition))))
2086          (type
2087           (gnus-string-or
2088            (completing-read
2089             (format "Search engine type (default %s): " default-type)
2090             (mapcar (lambda (elem) (list (symbol-name (car elem))))
2091                     nnweb-type-definition)
2092             nil t nil 'gnus-group-web-type-history)
2093            default-type))
2094          (search
2095           (read-string
2096            "Search string: "
2097            (cons (or (car gnus-group-web-search-history) "") 0)
2098            'gnus-group-web-search-history))
2099          (method
2100           `(nnweb ,group (nnweb-search ,search)
2101                   (nnweb-type ,(intern type))
2102                   (nnweb-ephemeral-p t))))
2103     (if solid
2104         (gnus-group-make-group group "nnweb" "" `(,(intern type) ,search))
2105       (gnus-group-read-ephemeral-group
2106        group method t
2107        (cons (current-buffer)
2108              (if (eq major-mode 'gnus-summary-mode) 'summary 'group))))))
2109
2110 (defun gnus-group-make-archive-group (&optional all)
2111   "Create the (ding) Gnus archive group of the most recent articles.
2112 Given a prefix, create a full group."
2113   (interactive "P")
2114   (let ((group (gnus-group-prefixed-name
2115                 (if all "ding.archives" "ding.recent") '(nndir ""))))
2116     (when (gnus-gethash group gnus-newsrc-hashtb)
2117       (error "Archive group already exists"))
2118     (gnus-group-make-group
2119      (gnus-group-real-name group)
2120      (list 'nndir (if all "hpc" "edu")
2121            (list 'nndir-directory
2122                  (if all gnus-group-archive-directory
2123                    gnus-group-recent-archive-directory))))
2124     (gnus-group-add-parameter group (cons 'to-address "ding@gnus.org"))))
2125
2126 (defun gnus-group-make-directory-group (dir)
2127   "Create an nndir group.
2128 The user will be prompted for a directory.  The contents of this
2129 directory will be used as a newsgroup.  The directory should contain
2130 mail messages or news articles in files that have numeric names."
2131   (interactive
2132    (list (read-file-name "Create group from directory: ")))
2133   (unless (file-exists-p dir)
2134     (error "No such directory"))
2135   (unless (file-directory-p dir)
2136     (error "Not a directory"))
2137   (let ((ext "")
2138         (i 0)
2139         group)
2140     (while (or (not group) (gnus-gethash group gnus-newsrc-hashtb))
2141       (setq group
2142             (gnus-group-prefixed-name
2143              (concat (file-name-as-directory (directory-file-name dir))
2144                      ext)
2145              '(nndir "")))
2146       (setq ext (format "<%d>" (setq i (1+ i)))))
2147     (gnus-group-make-group
2148      (gnus-group-real-name group)
2149      (list 'nndir (gnus-group-real-name group) (list 'nndir-directory dir)))))
2150
2151 (defun gnus-group-make-kiboze-group (group address scores)
2152   "Create an nnkiboze group.
2153 The user will be prompted for a name, a regexp to match groups, and
2154 score file entries for articles to include in the group."
2155   (interactive
2156    (list
2157     (read-string "nnkiboze group name: ")
2158     (read-string "Source groups (regexp): ")
2159     (let ((headers (mapcar (lambda (group) (list group))
2160                            '("subject" "from" "number" "date" "message-id"
2161                              "references" "chars" "lines" "xref"
2162                              "followup" "all" "body" "head")))
2163           scores header regexp regexps)
2164       (while (not (equal "" (setq header (completing-read
2165                                           "Match on header: " headers nil t))))
2166         (setq regexps nil)
2167         (while (not (equal "" (setq regexp (read-string
2168                                             (format "Match on %s (string): "
2169                                                     header)))))
2170           (push (list regexp nil nil 'r) regexps))
2171         (push (cons header regexps) scores))
2172       scores)))
2173   (gnus-group-make-group group "nnkiboze" address)
2174   (with-temp-file (gnus-score-file-name (concat "nnkiboze:" group))
2175     (let (emacs-lisp-mode-hook)
2176       (pp scores (current-buffer)))))
2177
2178 (defun gnus-group-add-to-virtual (n vgroup)
2179   "Add the current group to a virtual group."
2180   (interactive
2181    (list current-prefix-arg
2182          (completing-read "Add to virtual group: " gnus-newsrc-hashtb nil t
2183                           "nnvirtual:")))
2184   (unless (eq (car (gnus-find-method-for-group vgroup)) 'nnvirtual)
2185     (error "%s is not an nnvirtual group" vgroup))
2186   (gnus-close-group vgroup)
2187   (let* ((groups (gnus-group-process-prefix n))
2188          (method (gnus-info-method (gnus-get-info vgroup))))
2189     (setcar (cdr method)
2190             (concat
2191              (nth 1 method) "\\|"
2192              (mapconcat
2193               (lambda (s)
2194                 (gnus-group-remove-mark s)
2195                 (concat "\\(^" (regexp-quote s) "$\\)"))
2196               groups "\\|"))))
2197   (gnus-group-position-point))
2198
2199 (defun gnus-group-make-empty-virtual (group)
2200   "Create a new, fresh, empty virtual group."
2201   (interactive "sCreate new, empty virtual group: ")
2202   (let* ((method (list 'nnvirtual "^$"))
2203          (pgroup (gnus-group-prefixed-name group method)))
2204     ;; Check whether it exists already.
2205     (when (gnus-gethash pgroup gnus-newsrc-hashtb)
2206       (error "Group %s already exists" pgroup))
2207     ;; Subscribe the new group after the group on the current line.
2208     (gnus-subscribe-group pgroup (gnus-group-group-name) method)
2209     (gnus-group-update-group pgroup)
2210     (forward-line -1)
2211     (gnus-group-position-point)))
2212
2213 (defun gnus-group-enter-directory (dir)
2214   "Enter an ephemeral nneething group."
2215   (interactive "DDirectory to read: ")
2216   (let* ((method (list 'nneething dir '(nneething-read-only t)))
2217          (leaf (gnus-group-prefixed-name
2218                 (file-name-nondirectory (directory-file-name dir))
2219                 method))
2220          (name (gnus-generate-new-group-name leaf)))
2221     (unless (gnus-group-read-ephemeral-group
2222              name method t
2223              (cons (current-buffer)
2224                    (if (eq major-mode 'gnus-summary-mode)
2225                        'summary 'group)))
2226       (error "Couldn't enter %s" dir))))
2227
2228 (eval-and-compile
2229   (autoload 'nnimap-expunge "nnimap")
2230   (autoload 'nnimap-acl-get "nnimap")
2231   (autoload 'nnimap-acl-edit "nnimap"))
2232
2233 (defun gnus-group-nnimap-expunge (group)
2234   "Expunge deleted articles in current nnimap GROUP."
2235   (interactive (list (gnus-group-group-name)))
2236   (let ((mailbox (gnus-group-real-name group)) method)
2237     (unless group
2238       (error "No group on current line"))
2239     (unless (gnus-get-info group)
2240       (error "Killed group; can't be edited"))
2241     (unless (eq 'nnimap (car (setq method (gnus-find-method-for-group group))))
2242       (error "%s is not an nnimap group" group))
2243     (nnimap-expunge mailbox (cadr method))))
2244
2245 (defun gnus-group-nnimap-edit-acl (group)
2246   "Edit the Access Control List of current nnimap GROUP."
2247   (interactive (list (gnus-group-group-name)))
2248   (let ((mailbox (gnus-group-real-name group)) method acl)
2249     (unless group
2250       (error "No group on current line"))
2251     (unless (gnus-get-info group)
2252       (error "Killed group; can't be edited"))
2253     (unless (eq (car (setq method (gnus-find-method-for-group group))) 'nnimap)
2254       (error "%s is not an nnimap group" group))
2255     (gnus-edit-form (setq acl (nnimap-acl-get mailbox (cadr method)))
2256                     (format "Editing the access control list for `%s'.
2257
2258    An access control list is a list of (identifier . rights) elements.
2259
2260    The identifier string specifies the corresponding user. The
2261    identifier \"anyone\" is reserved to refer to the universal identity.
2262
2263    Rights is a string listing a (possibly empty) set of alphanumeric
2264    characters, each character listing a set of operations which is being
2265    controlled. Letters are reserved for ``standard'' rights, listed
2266    below.  Digits are reserved for implementation or site defined rights.
2267
2268    l - lookup (mailbox is visible to LIST/LSUB commands)
2269    r - read (SELECT the mailbox, perform CHECK, FETCH, PARTIAL,
2270        SEARCH, COPY from mailbox)
2271    s - keep seen/unseen information across sessions (STORE SEEN flag)
2272    w - write (STORE flags other than SEEN and DELETED)
2273    i - insert (perform APPEND, COPY into mailbox)
2274    p - post (send mail to submission address for mailbox,
2275        not enforced by IMAP4 itself)
2276    c - create (CREATE new sub-mailboxes in any implementation-defined
2277        hierarchy)
2278    d - delete (STORE DELETED flag, perform EXPUNGE)
2279    a - administer (perform SETACL)" group)
2280                     `(lambda (form)
2281                        (nnimap-acl-edit
2282                         ,mailbox ',method ',acl form)))))
2283
2284 ;; Group sorting commands
2285 ;; Suggested by Joe Hildebrand <hildjj@idaho.fuentez.com>.
2286
2287 (defun gnus-group-sort-groups (func &optional reverse)
2288   "Sort the group buffer according to FUNC.
2289 When used interactively, the sorting function used will be
2290 determined by the `gnus-group-sort-function' variable.
2291 If REVERSE (the prefix), reverse the sorting order."
2292   (interactive (list gnus-group-sort-function current-prefix-arg))
2293   (funcall gnus-group-sort-alist-function
2294            (gnus-make-sort-function func) reverse)
2295   (gnus-group-list-groups)
2296   (gnus-dribble-touch))
2297
2298 (defun gnus-group-sort-flat (func reverse)
2299   ;; We peel off the dummy group from the alist.
2300   (when func
2301     (when (equal (gnus-info-group (car gnus-newsrc-alist)) "dummy.group")
2302       (pop gnus-newsrc-alist))
2303     ;; Do the sorting.
2304     (setq gnus-newsrc-alist
2305           (sort gnus-newsrc-alist func))
2306     (when reverse
2307       (setq gnus-newsrc-alist (nreverse gnus-newsrc-alist)))
2308     ;; Regenerate the hash table.
2309     (gnus-make-hashtable-from-newsrc-alist)))
2310
2311 (defun gnus-group-sort-groups-by-alphabet (&optional reverse)
2312   "Sort the group buffer alphabetically by group name.
2313 If REVERSE, sort in reverse order."
2314   (interactive "P")
2315   (gnus-group-sort-groups 'gnus-group-sort-by-alphabet reverse))
2316
2317 (defun gnus-group-sort-groups-by-unread (&optional reverse)
2318   "Sort the group buffer by number of unread articles.
2319 If REVERSE, sort in reverse order."
2320   (interactive "P")
2321   (gnus-group-sort-groups 'gnus-group-sort-by-unread reverse))
2322
2323 (defun gnus-group-sort-groups-by-level (&optional reverse)
2324   "Sort the group buffer by group level.
2325 If REVERSE, sort in reverse order."
2326   (interactive "P")
2327   (gnus-group-sort-groups 'gnus-group-sort-by-level reverse))
2328
2329 (defun gnus-group-sort-groups-by-score (&optional reverse)
2330   "Sort the group buffer by group score.
2331 If REVERSE, sort in reverse order."
2332   (interactive "P")
2333   (gnus-group-sort-groups 'gnus-group-sort-by-score reverse))
2334
2335 (defun gnus-group-sort-groups-by-rank (&optional reverse)
2336   "Sort the group buffer by group rank.
2337 If REVERSE, sort in reverse order."
2338   (interactive "P")
2339   (gnus-group-sort-groups 'gnus-group-sort-by-rank reverse))
2340
2341 (defun gnus-group-sort-groups-by-method (&optional reverse)
2342   "Sort the group buffer alphabetically by backend name.
2343 If REVERSE, sort in reverse order."
2344   (interactive "P")
2345   (gnus-group-sort-groups 'gnus-group-sort-by-method reverse))
2346
2347 ;;; Selected group sorting.
2348
2349 (defun gnus-group-sort-selected-groups (n func &optional reverse)
2350   "Sort the process/prefixed groups."
2351   (interactive (list current-prefix-arg gnus-group-sort-function))
2352   (let ((groups (gnus-group-process-prefix n)))
2353     (funcall gnus-group-sort-selected-function
2354              groups (gnus-make-sort-function func) reverse)
2355     (gnus-group-list-groups)))
2356
2357 (defun gnus-group-sort-selected-flat (groups func reverse)
2358   (let (entries infos)
2359     ;; First find all the group entries for these groups.
2360     (while groups
2361       (push (nthcdr 2 (gnus-gethash (pop groups) gnus-newsrc-hashtb))
2362             entries))
2363     ;; Then sort the infos.
2364     (setq infos
2365           (sort
2366            (mapcar
2367             (lambda (entry) (car entry))
2368             (setq entries (nreverse entries)))
2369            func))
2370     (when reverse
2371       (setq infos (nreverse infos)))
2372     ;; Go through all the infos and replace the old entries
2373     ;; with the new infos.
2374     (while infos
2375       (setcar (car entries) (pop infos))
2376       (pop entries))
2377     ;; Update the hashtable.
2378     (gnus-make-hashtable-from-newsrc-alist)))
2379
2380 (defun gnus-group-sort-selected-groups-by-alphabet (&optional n reverse)
2381   "Sort the group buffer alphabetically by group name.
2382 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2383 sort in reverse order."
2384   (interactive (gnus-interactive "P\ny"))
2385   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-alphabet reverse))
2386
2387 (defun gnus-group-sort-selected-groups-by-unread (&optional n reverse)
2388   "Sort the group buffer by number of unread articles.
2389 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2390 sort in reverse order."
2391   (interactive (gnus-interactive "P\ny"))
2392   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-unread reverse))
2393
2394 (defun gnus-group-sort-selected-groups-by-level (&optional n reverse)
2395   "Sort the group buffer by group level.
2396 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2397 sort in reverse order."
2398   (interactive (gnus-interactive "P\ny"))
2399   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-level reverse))
2400
2401 (defun gnus-group-sort-selected-groups-by-score (&optional n reverse)
2402   "Sort the group buffer by group score.
2403 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2404 sort in reverse order."
2405   (interactive (gnus-interactive "P\ny"))
2406   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-score reverse))
2407
2408 (defun gnus-group-sort-selected-groups-by-rank (&optional n reverse)
2409   "Sort the group buffer by group rank.
2410 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2411 sort in reverse order."
2412   (interactive (gnus-interactive "P\ny"))
2413   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-rank reverse))
2414
2415 (defun gnus-group-sort-selected-groups-by-method (&optional n reverse)
2416   "Sort the group buffer alphabetically by backend name.
2417 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2418 sort in reverse order."
2419   (interactive (gnus-interactive "P\ny"))
2420   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-method reverse))
2421
2422 ;;; Sorting predicates.
2423
2424 (defun gnus-group-sort-by-alphabet (info1 info2)
2425   "Sort alphabetically."
2426   (string< (gnus-info-group info1) (gnus-info-group info2)))
2427
2428 (defun gnus-group-sort-by-real-name (info1 info2)
2429   "Sort alphabetically on real (unprefixed) names."
2430   (string< (gnus-group-real-name (gnus-info-group info1))
2431            (gnus-group-real-name (gnus-info-group info2))))
2432
2433 (defun gnus-group-sort-by-unread (info1 info2)
2434   "Sort by number of unread articles."
2435   (let ((n1 (car (gnus-gethash (gnus-info-group info1) gnus-newsrc-hashtb)))
2436         (n2 (car (gnus-gethash (gnus-info-group info2) gnus-newsrc-hashtb))))
2437     (< (or (and (numberp n1) n1) 0)
2438        (or (and (numberp n2) n2) 0))))
2439
2440 (defun gnus-group-sort-by-level (info1 info2)
2441   "Sort by level."
2442   (< (gnus-info-level info1) (gnus-info-level info2)))
2443
2444 (defun gnus-group-sort-by-method (info1 info2)
2445   "Sort alphabetically by backend name."
2446   (string< (symbol-name (car (gnus-find-method-for-group
2447                               (gnus-info-group info1) info1)))
2448            (symbol-name (car (gnus-find-method-for-group
2449                               (gnus-info-group info2) info2)))))
2450
2451 (defun gnus-group-sort-by-score (info1 info2)
2452   "Sort by group score."
2453   (< (gnus-info-score info1) (gnus-info-score info2)))
2454
2455 (defun gnus-group-sort-by-rank (info1 info2)
2456   "Sort by level and score."
2457   (let ((level1 (gnus-info-level info1))
2458         (level2 (gnus-info-level info2)))
2459     (or (< level1 level2)
2460         (and (= level1 level2)
2461              (> (gnus-info-score info1) (gnus-info-score info2))))))
2462
2463 ;;; Clearing data
2464
2465 (defun gnus-group-clear-data (&optional arg)
2466   "Clear all marks and read ranges from the current group."
2467   (interactive "P")
2468   (gnus-group-iterate arg
2469     (lambda (group)
2470       (let (info)
2471         (gnus-info-clear-data (setq info (gnus-get-info group)))
2472         (gnus-get-unread-articles-in-group info (gnus-active group) t)
2473         (when (gnus-group-goto-group group)
2474           (gnus-group-update-group-line))))))
2475
2476 (defun gnus-group-clear-data-on-native-groups ()
2477   "Clear all marks and read ranges from all native groups."
2478   (interactive)
2479   (when (gnus-yes-or-no-p "Really clear all data from almost all groups? ")
2480     (let ((alist (cdr gnus-newsrc-alist))
2481           info)
2482       (while (setq info (pop alist))
2483         (when (gnus-group-native-p (gnus-info-group info))
2484           (gnus-info-clear-data info)))
2485       (gnus-get-unread-articles)
2486       (gnus-dribble-touch)
2487       (when (gnus-y-or-n-p
2488              "Move the cache away to avoid problems in the future? ")
2489         (call-interactively 'gnus-cache-move-cache)))))
2490
2491 (defun gnus-info-clear-data (info)
2492   "Clear all marks and read ranges from INFO."
2493   (let ((group (gnus-info-group info)))
2494     (gnus-undo-register
2495       `(progn
2496          (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
2497          (gnus-info-set-read ',info ',(gnus-info-read info))
2498          (when (gnus-group-goto-group ,group)
2499            (gnus-group-update-group-line))))
2500     (gnus-info-set-read info nil)
2501     (when (gnus-info-marks info)
2502       (gnus-info-set-marks info nil))))
2503
2504 ;; Group catching up.
2505
2506 (defun gnus-group-catchup-current (&optional n all)
2507   "Mark all articles not marked as unread in current newsgroup as read.
2508 If prefix argument N is numeric, the next N newsgroups will be
2509 caught up.  If ALL is non-nil, marked articles will also be marked as
2510 read.  Cross references (Xref: header) of articles are ignored.
2511 The number of newsgroups that this function was unable to catch
2512 up is returned."
2513   (interactive "P")
2514   (let ((groups (gnus-group-process-prefix n))
2515         (ret 0)
2516         group)
2517     (unless groups (error "No groups selected"))
2518     (if (not
2519          (or (not gnus-interactive-catchup) ;Without confirmation?
2520              gnus-expert-user
2521              (gnus-y-or-n-p
2522               (format
2523                (if all
2524                    "Do you really want to mark all articles in %s as read? "
2525                  "Mark all unread articles in %s as read? ")
2526                (if (= (length groups) 1)
2527                    (car groups)
2528                  (format "these %d groups" (length groups)))))))
2529         n
2530       (while (setq group (pop groups))
2531         (gnus-group-remove-mark group)
2532         ;; Virtual groups have to be given special treatment.
2533         (let ((method (gnus-find-method-for-group group)))
2534           (when (eq 'nnvirtual (car method))
2535             (nnvirtual-catchup-group
2536              (gnus-group-real-name group) (nth 1 method) all)))
2537         (if (>= (gnus-info-level (gnus-get-info group))
2538                 gnus-level-zombie)
2539             (gnus-message 2 "Dead groups can't be caught up")
2540           (if (prog1
2541                   (gnus-group-goto-group group)
2542                 (gnus-group-catchup group all))
2543               (gnus-group-update-group-line)
2544             (setq ret (1+ ret)))))
2545       (gnus-group-next-unread-group 1)
2546       ret)))
2547
2548 (defun gnus-group-catchup-current-all (&optional n)
2549   "Mark all articles in current newsgroup as read.
2550 Cross references (Xref: header) of articles are ignored."
2551   (interactive "P")
2552   (gnus-group-catchup-current n 'all))
2553
2554 (defun gnus-group-catchup (group &optional all)
2555   "Mark all articles in GROUP as read.
2556 If ALL is non-nil, all articles are marked as read.
2557 The return value is the number of articles that were marked as read,
2558 or nil if no action could be taken."
2559   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
2560          (num (car entry)))
2561     ;; Do the updating only if the newsgroup isn't killed.
2562     (if (not (numberp (car entry)))
2563         (gnus-message 1 "Can't catch up %s; non-active group" group)
2564       ;; Do auto-expirable marks if that's required.
2565       (when (gnus-group-auto-expirable-p group)
2566         (gnus-add-marked-articles
2567          group 'expire (gnus-list-of-unread-articles group))
2568         (when all
2569           (let ((marks (nth 3 (nth 2 entry))))
2570             (gnus-add-marked-articles
2571              group 'expire (gnus-uncompress-range (cdr (assq 'tick marks))))
2572             (gnus-add-marked-articles
2573              group 'expire (gnus-uncompress-range (cdr (assq 'tick marks)))))))
2574       (when entry
2575         (gnus-update-read-articles group nil)
2576         ;; Also nix out the lists of marks and dormants.
2577         (when all
2578           (gnus-add-marked-articles group 'tick nil nil 'force)
2579           (gnus-add-marked-articles group 'dormant nil nil 'force))
2580         (let ((gnus-newsgroup-name group))
2581           (gnus-run-hooks 'gnus-group-catchup-group-hook))
2582         num))))
2583
2584 (defun gnus-group-expire-articles (&optional n)
2585   "Expire all expirable articles in the current newsgroup."
2586   (interactive "P")
2587   (let ((groups (gnus-group-process-prefix n))
2588         group)
2589     (unless groups
2590       (error "No groups to expire"))
2591     (while (setq group (pop groups))
2592       (gnus-group-remove-mark group)
2593       (gnus-group-expire-articles-1 group)
2594       (gnus-dribble-touch)
2595       (gnus-group-position-point))))
2596
2597 (defun gnus-group-expire-articles-1 (group)
2598   (when (gnus-check-backend-function 'request-expire-articles group)
2599     (gnus-message 6 "Expiring articles in %s..." group)
2600     (let* ((info (gnus-get-info group))
2601            (expirable (if (gnus-group-total-expirable-p group)
2602                           (cons nil (gnus-list-of-read-articles group))
2603                         (assq 'expire (gnus-info-marks info))))
2604            (expiry-wait (gnus-group-find-parameter group 'expiry-wait)))
2605       (when expirable
2606         (setcdr
2607          expirable
2608          (gnus-compress-sequence
2609           (if expiry-wait
2610               ;; We set the expiry variables to the group
2611               ;; parameter.
2612               (let ((nnmail-expiry-wait-function nil)
2613                     (nnmail-expiry-wait expiry-wait))
2614                 (gnus-request-expire-articles
2615                  (gnus-uncompress-sequence (cdr expirable)) group))
2616             ;; Just expire using the normal expiry values.
2617             (gnus-request-expire-articles
2618              (gnus-uncompress-sequence (cdr expirable)) group))))
2619         (gnus-close-group group))
2620       (gnus-message 6 "Expiring articles in %s...done" group))))
2621
2622 (defun gnus-group-expire-all-groups ()
2623   "Expire all expirable articles in all newsgroups."
2624   (interactive)
2625   (save-excursion
2626     (gnus-message 5 "Expiring...")
2627     (let ((gnus-group-marked (mapcar (lambda (info) (gnus-info-group info))
2628                                      (cdr gnus-newsrc-alist))))
2629       (gnus-group-expire-articles nil)))
2630   (gnus-group-position-point)
2631   (gnus-message 5 "Expiring...done"))
2632
2633 (defun gnus-group-set-current-level (n level)
2634   "Set the level of the next N groups to LEVEL."
2635   (interactive
2636    (list
2637     current-prefix-arg
2638     (string-to-int
2639      (let ((s (read-string
2640                (format "Level (default %s): "
2641                        (or (gnus-group-group-level)
2642                            gnus-level-default-subscribed)))))
2643        (if (string-match "^\\s-*$" s)
2644            (int-to-string (or (gnus-group-group-level)
2645                               gnus-level-default-subscribed))
2646          s)))))
2647   (unless (and (>= level 1) (<= level gnus-level-killed))
2648     (error "Invalid level: %d" level))
2649   (let ((groups (gnus-group-process-prefix n))
2650         group)
2651     (while (setq group (pop groups))
2652       (gnus-group-remove-mark group)
2653       (gnus-message 6 "Changed level of %s from %d to %d"
2654                     group (or (gnus-group-group-level) gnus-level-killed)
2655                     level)
2656       (gnus-group-change-level
2657        group level (or (gnus-group-group-level) gnus-level-killed))
2658       (gnus-group-update-group-line)))
2659   (gnus-group-position-point))
2660
2661 (defun gnus-group-unsubscribe (&optional n)
2662   "Unsubscribe the current group."
2663   (interactive "P")
2664   (gnus-group-unsubscribe-current-group n 'unsubscribe))
2665
2666 (defun gnus-group-subscribe (&optional n)
2667   "Subscribe the current group."
2668   (interactive "P")
2669   (gnus-group-unsubscribe-current-group n 'subscribe))
2670
2671 (defun gnus-group-unsubscribe-current-group (&optional n do-sub)
2672   "Toggle subscription of the current group.
2673 If given numerical prefix, toggle the N next groups."
2674   (interactive "P")
2675   (let ((groups (gnus-group-process-prefix n))
2676         group)
2677     (while groups
2678       (setq group (car groups)
2679             groups (cdr groups))
2680       (gnus-group-remove-mark group)
2681       (gnus-group-unsubscribe-group
2682        group
2683        (cond
2684         ((eq do-sub 'unsubscribe)
2685          gnus-level-default-unsubscribed)
2686         ((eq do-sub 'subscribe)
2687          gnus-level-default-subscribed)
2688         ((<= (gnus-group-group-level) gnus-level-subscribed)
2689          gnus-level-default-unsubscribed)
2690         (t
2691          gnus-level-default-subscribed))
2692        t)
2693       (gnus-group-update-group-line))
2694     (gnus-group-next-group 1)))
2695
2696 (defun gnus-group-unsubscribe-group (group &optional level silent)
2697   "Toggle subscription to GROUP.
2698 Killed newsgroups are subscribed.  If SILENT, don't try to update the
2699 group line."
2700   (interactive
2701    (list (completing-read
2702           "Group: " gnus-active-hashtb nil
2703           (gnus-read-active-file-p)
2704           nil
2705           'gnus-group-history)))
2706   (let ((newsrc (gnus-gethash group gnus-newsrc-hashtb)))
2707     (cond
2708      ((string-match "^[ \t]*$" group)
2709       (error "Empty group name"))
2710      (newsrc
2711       ;; Toggle subscription flag.
2712       (gnus-group-change-level
2713        newsrc (if level level (if (<= (gnus-info-level (nth 2 newsrc))
2714                                       gnus-level-subscribed)
2715                                   (1+ gnus-level-subscribed)
2716                                 gnus-level-default-subscribed)))
2717       (unless silent
2718         (gnus-group-update-group group)))
2719      ((and (stringp group)
2720            (or (not (gnus-read-active-file-p))
2721                (gnus-active group)))
2722       ;; Add new newsgroup.
2723       (gnus-group-change-level
2724        group
2725        (if level level gnus-level-default-subscribed)
2726        (or (and (member group gnus-zombie-list)
2727                 gnus-level-zombie)
2728            gnus-level-killed)
2729        (when (gnus-group-group-name)
2730          (gnus-gethash (gnus-group-group-name) gnus-newsrc-hashtb)))
2731       (unless silent
2732         (gnus-group-update-group group)))
2733      (t (error "No such newsgroup: %s" group)))
2734     (gnus-group-position-point)))
2735
2736 (defun gnus-group-transpose-groups (n)
2737   "Move the current newsgroup up N places.
2738 If given a negative prefix, move down instead.  The difference between
2739 N and the number of steps taken is returned."
2740   (interactive "p")
2741   (unless (gnus-group-group-name)
2742     (error "No group on current line"))
2743   (gnus-group-kill-group 1)
2744   (prog1
2745       (forward-line (- n))
2746     (gnus-group-yank-group)
2747     (gnus-group-position-point)))
2748
2749 (defun gnus-group-kill-all-zombies (&optional dummy)
2750   "Kill all zombie newsgroups.
2751 The optional DUMMY should always be nil."
2752   (interactive (list (not (gnus-yes-or-no-p "Really kill all zombies? "))))
2753   (unless dummy
2754     (setq gnus-killed-list (nconc gnus-zombie-list gnus-killed-list))
2755     (setq gnus-zombie-list nil)
2756     (gnus-dribble-touch)
2757     (gnus-group-list-groups)))
2758
2759 (defun gnus-group-kill-region (begin end)
2760   "Kill newsgroups in current region (excluding current point).
2761 The killed newsgroups can be yanked by using \\[gnus-group-yank-group]."
2762   (interactive "r")
2763   (let ((lines
2764          ;; Count lines.
2765          (save-excursion
2766            (count-lines
2767             (progn
2768               (goto-char begin)
2769               (beginning-of-line)
2770               (point))
2771             (progn
2772               (goto-char end)
2773               (beginning-of-line)
2774               (point))))))
2775     (goto-char begin)
2776     (beginning-of-line)                 ;Important when LINES < 1
2777     (gnus-group-kill-group lines)))
2778
2779 (defun gnus-group-kill-group (&optional n discard)
2780   "Kill the next N groups.
2781 The killed newsgroups can be yanked by using \\[gnus-group-yank-group].
2782 However, only groups that were alive can be yanked; already killed
2783 groups or zombie groups can't be yanked.
2784 The return value is the name of the group that was killed, or a list
2785 of groups killed."
2786   (interactive "P")
2787   (let ((buffer-read-only nil)
2788         (groups (gnus-group-process-prefix n))
2789         group entry level out)
2790     (if (< (length groups) 10)
2791         ;; This is faster when there are few groups.
2792         (while groups
2793           (push (setq group (pop groups)) out)
2794           (gnus-group-remove-mark group)
2795           (setq level (gnus-group-group-level))
2796           (gnus-delete-line)
2797           (when (and (not discard)
2798                      (setq entry (gnus-gethash group gnus-newsrc-hashtb)))
2799             (gnus-undo-register
2800               `(progn
2801                  (gnus-group-goto-group ,(gnus-group-group-name))
2802                  (gnus-group-yank-group)))
2803             (push (cons (car entry) (nth 2 entry))
2804                   gnus-list-of-killed-groups))
2805           (gnus-group-change-level
2806            (if entry entry group) gnus-level-killed (if entry nil level))
2807           (message "Killed group %s" group))
2808       ;; If there are lots and lots of groups to be killed, we use
2809       ;; this thing instead.
2810       (let (entry)
2811         (setq groups (nreverse groups))
2812         (while groups
2813           (gnus-group-remove-mark (setq group (pop groups)))
2814           (gnus-delete-line)
2815           (push group gnus-killed-list)
2816           (setq gnus-newsrc-alist
2817                 (delq (assoc group gnus-newsrc-alist)
2818                       gnus-newsrc-alist))
2819           (when gnus-group-change-level-function
2820             (funcall gnus-group-change-level-function
2821                      group gnus-level-killed 3))
2822           (cond
2823            ((setq entry (gnus-gethash group gnus-newsrc-hashtb))
2824             (push (cons (car entry) (nth 2 entry))
2825                   gnus-list-of-killed-groups)
2826             (setcdr (cdr entry) (cdddr entry)))
2827            ((member group gnus-zombie-list)
2828             (setq gnus-zombie-list (delete group gnus-zombie-list))))
2829           ;; There may be more than one instance displayed.
2830           (while (gnus-group-goto-group group)
2831             (gnus-delete-line)))
2832         (gnus-make-hashtable-from-newsrc-alist)))
2833
2834     (gnus-group-position-point)
2835     (if (< (length out) 2) (car out) (nreverse out))))
2836
2837 (defun gnus-group-yank-group (&optional arg)
2838   "Yank the last newsgroups killed with \\[gnus-group-kill-group], inserting it before the current newsgroup.
2839 The numeric ARG specifies how many newsgroups are to be yanked.  The
2840 name of the newsgroup yanked is returned, or (if several groups are
2841 yanked) a list of yanked groups is returned."
2842   (interactive "p")
2843   (setq arg (or arg 1))
2844   (let (info group prev out)
2845     (while (>= (decf arg) 0)
2846       (when (not (setq info (pop gnus-list-of-killed-groups)))
2847         (error "No more newsgroups to yank"))
2848       (push (setq group (nth 1 info)) out)
2849       ;; Find which newsgroup to insert this one before - search
2850       ;; backward until something suitable is found.  If there are no
2851       ;; other newsgroups in this buffer, just make this newsgroup the
2852       ;; first newsgroup.
2853       (setq prev (gnus-group-group-name))
2854       (gnus-group-change-level
2855        info (gnus-info-level (cdr info)) gnus-level-killed
2856        (and prev (gnus-gethash prev gnus-newsrc-hashtb))
2857        t)
2858       (gnus-group-insert-group-line-info group)
2859       (gnus-undo-register
2860         `(when (gnus-group-goto-group ,group)
2861            (gnus-group-kill-group 1))))
2862     (forward-line -1)
2863     (gnus-group-position-point)
2864     (if (< (length out) 2) (car out) (nreverse out))))
2865
2866 (defun gnus-group-kill-level (level)
2867   "Kill all groups that is on a certain LEVEL."
2868   (interactive "nKill all groups on level: ")
2869   (cond
2870    ((= level gnus-level-zombie)
2871     (setq gnus-killed-list
2872           (nconc gnus-zombie-list gnus-killed-list))
2873     (setq gnus-zombie-list nil))
2874    ((and (< level gnus-level-zombie)
2875          (> level 0)
2876          (or gnus-expert-user
2877              (gnus-yes-or-no-p
2878               (format
2879                "Do you really want to kill all groups on level %d? "
2880                level))))
2881     (let* ((prev gnus-newsrc-alist)
2882            (alist (cdr prev)))
2883       (while alist
2884         (if (= (gnus-info-level (car alist)) level)
2885             (progn
2886               (push (gnus-info-group (car alist)) gnus-killed-list)
2887               (setcdr prev (cdr alist)))
2888           (setq prev alist))
2889         (setq alist (cdr alist)))
2890       (gnus-make-hashtable-from-newsrc-alist)
2891       (gnus-group-list-groups)))
2892    (t
2893     (error "Can't kill; invalid level: %d" level))))
2894
2895 (defun gnus-group-list-all-groups (&optional arg)
2896   "List all newsgroups with level ARG or lower.
2897 Default is gnus-level-unsubscribed, which lists all subscribed and most
2898 unsubscribed groups."
2899   (interactive "P")
2900   (gnus-group-list-groups (or arg gnus-level-unsubscribed) t))
2901
2902 ;; Redefine this to list ALL killed groups if prefix arg used.
2903 ;; Rewritten by engstrom@src.honeywell.com (Eric Engstrom).
2904 (defun gnus-group-list-killed (&optional arg)
2905   "List all killed newsgroups in the group buffer.
2906 If ARG is non-nil, list ALL killed groups known to Gnus.  This may
2907 entail asking the server for the groups."
2908   (interactive "P")
2909   ;; Find all possible killed newsgroups if arg.
2910   (when arg
2911     (gnus-get-killed-groups))
2912   (if (not gnus-killed-list)
2913       (gnus-message 6 "No killed groups")
2914     (let (gnus-group-list-mode)
2915       (funcall gnus-group-prepare-function
2916                gnus-level-killed t gnus-level-killed))
2917     (goto-char (point-min)))
2918   (gnus-group-position-point))
2919
2920 (defun gnus-group-list-zombies ()
2921   "List all zombie newsgroups in the group buffer."
2922   (interactive)
2923   (if (not gnus-zombie-list)
2924       (gnus-message 6 "No zombie groups")
2925     (let (gnus-group-list-mode)
2926       (funcall gnus-group-prepare-function
2927                gnus-level-zombie t gnus-level-zombie))
2928     (goto-char (point-min)))
2929   (gnus-group-position-point))
2930
2931 (defun gnus-group-list-active ()
2932   "List all groups that are available from the server(s)."
2933   (interactive)
2934   ;; First we make sure that we have really read the active file.
2935   (unless (gnus-read-active-file-p)
2936     (let ((gnus-read-active-file t))
2937       (gnus-read-active-file)))
2938   ;; Find all groups and sort them.
2939   (let ((groups
2940          (sort
2941           (let (list)
2942             (mapatoms
2943              (lambda (sym)
2944                (and (boundp sym)
2945                     (symbol-value sym)
2946                     (push (symbol-name sym) list)))
2947              gnus-active-hashtb)
2948             list)
2949           'string<))
2950         (buffer-read-only nil)
2951         group)
2952     (erase-buffer)
2953     (while groups
2954       (gnus-add-text-properties
2955        (point) (prog1 (1+ (point))
2956                  (insert "       *: "
2957                          (setq group (pop groups)) "\n"))
2958        (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
2959              'gnus-unread t
2960              'gnus-level (inline (gnus-group-level group)))))
2961     (goto-char (point-min))))
2962
2963 (defun gnus-activate-all-groups (level)
2964   "Activate absolutely all groups."
2965   (interactive (list gnus-level-unsubscribed))
2966   (let ((gnus-activate-level level)
2967         (gnus-activate-foreign-newsgroups level))
2968     (gnus-group-get-new-news)))
2969
2970 (defun gnus-group-get-new-news (&optional arg)
2971   "Get newly arrived articles.
2972 If ARG is a number, it specifies which levels you are interested in
2973 re-scanning.  If ARG is non-nil and not a number, this will force
2974 \"hard\" re-reading of the active files from all servers."
2975   (interactive "P")
2976   (require 'nnmail)
2977   (let ((gnus-inhibit-demon t)
2978         ;; Binding this variable will inhibit multiple fetchings
2979         ;; of the same mail source.
2980         (nnmail-fetched-sources (list t)))
2981     (gnus-run-hooks 'gnus-get-new-news-hook)
2982
2983     ;; Read any slave files.
2984     (unless gnus-slave
2985       (gnus-master-read-slave-newsrc))
2986
2987     ;; We might read in new NoCeM messages here.
2988     (when (and gnus-use-nocem
2989                (null arg))
2990       (gnus-nocem-scan-groups))
2991     ;; If ARG is not a number, then we read the active file.
2992     (when (and arg (not (numberp arg)))
2993       (let ((gnus-read-active-file t))
2994         (gnus-read-active-file))
2995       (setq arg nil)
2996
2997       ;; If the user wants it, we scan for new groups.
2998       (when (eq gnus-check-new-newsgroups 'always)
2999         (gnus-find-new-newsgroups)))
3000
3001     (setq arg (gnus-group-default-level arg t))
3002     (if (and gnus-read-active-file (not arg))
3003         (progn
3004           (gnus-read-active-file)
3005           (gnus-get-unread-articles arg))
3006       (let ((gnus-read-active-file (if arg nil gnus-read-active-file)))
3007         (gnus-get-unread-articles arg)))
3008     (gnus-run-hooks 'gnus-after-getting-new-news-hook)
3009     (gnus-group-list-groups (and (numberp arg)
3010                                  (max (car gnus-group-list-mode) arg)))))
3011
3012 (defun gnus-group-get-new-news-this-group (&optional n dont-scan)
3013   "Check for newly arrived news in the current group (and the N-1 next groups).
3014 The difference between N and the number of newsgroup checked is returned.
3015 If N is negative, this group and the N-1 previous groups will be checked."
3016   (interactive "P")
3017   (let* ((groups (gnus-group-process-prefix n))
3018          (ret (if (numberp n) (- n (length groups)) 0))
3019          (beg (unless n
3020                 (point)))
3021          group method)
3022     (while (setq group (pop groups))
3023       (gnus-group-remove-mark group)
3024       ;; Bypass any previous denials from the server.
3025       (gnus-remove-denial (setq method (gnus-find-method-for-group group)))
3026       (if (gnus-activate-group group (if dont-scan nil 'scan))
3027           (progn
3028             (gnus-get-unread-articles-in-group
3029              (gnus-get-info group) (gnus-active group) t)
3030             (unless (gnus-virtual-group-p group)
3031               (gnus-close-group group))
3032             (when gnus-agent
3033               (gnus-agent-save-group-info
3034                method (gnus-group-real-name group) (gnus-active group)))
3035             (gnus-group-update-group group))
3036         (if (eq (gnus-server-status (gnus-find-method-for-group group))
3037                 'denied)
3038             (gnus-error 3 "Server denied access")
3039           (gnus-error 3 "%s error: %s" group (gnus-status-message group)))))
3040     (when beg
3041       (goto-char beg))
3042     (when gnus-goto-next-group-when-activating
3043       (gnus-group-next-unread-group 1 t))
3044     (gnus-summary-position-point)
3045     ret))
3046
3047 (defun gnus-group-fetch-faq (group &optional faq-dir)
3048   "Fetch the FAQ for the current group.
3049 If given a prefix argument, prompt for the FAQ dir
3050 to use."
3051   (interactive
3052    (list
3053     (gnus-group-group-name)
3054     (when current-prefix-arg
3055       (completing-read
3056        "Faq dir: " (and (listp gnus-group-faq-directory)
3057                         (mapcar (lambda (file) (list file))
3058                                 gnus-group-faq-directory))))))
3059   (unless group
3060     (error "No group name given"))
3061   (let ((dirs (or faq-dir gnus-group-faq-directory))
3062         dir found file)
3063     (unless (listp dirs)
3064       (setq dirs (list dirs)))
3065     (while (and (not found)
3066                 (setq dir (pop dirs)))
3067       (let ((name (gnus-group-real-name group)))
3068         (setq file (concat (file-name-as-directory dir) name)))
3069       (if (not (file-exists-p file))
3070           (gnus-message 1 "No such file: %s" file)
3071         (let ((enable-local-variables nil))
3072           (find-file file)
3073           (setq found t))))))
3074
3075 (defun gnus-group-describe-group (force &optional group)
3076   "Display a description of the current newsgroup."
3077   (interactive (list current-prefix-arg (gnus-group-group-name)))
3078   (let* ((method (gnus-find-method-for-group group))
3079          (mname (gnus-group-prefixed-name "" method))
3080          desc)
3081     (when (and force
3082                gnus-description-hashtb)
3083       (gnus-sethash mname nil gnus-description-hashtb))
3084     (unless group
3085       (error "No group name given"))
3086     (when (or (and gnus-description-hashtb
3087                    ;; We check whether this group's method has been
3088                    ;; queried for a description file.
3089                    (gnus-gethash mname gnus-description-hashtb))
3090               (setq desc (gnus-group-get-description group))
3091               (gnus-read-descriptions-file method))
3092       (gnus-message 1
3093                     (or desc (gnus-gethash group gnus-description-hashtb)
3094                         "No description available")))))
3095
3096 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
3097 (defun gnus-group-describe-all-groups (&optional force)
3098   "Pop up a buffer with descriptions of all newsgroups."
3099   (interactive "P")
3100   (when force
3101     (setq gnus-description-hashtb nil))
3102   (when (not (or gnus-description-hashtb
3103                  (gnus-read-all-descriptions-files)))
3104     (error "Couldn't request descriptions file"))
3105   (let ((buffer-read-only nil)
3106         b)
3107     (erase-buffer)
3108     (mapatoms
3109      (lambda (group)
3110        (setq b (point))
3111        (insert (format "      *: %-20s %s\n" (symbol-name group)
3112                        (symbol-value group)))
3113        (gnus-add-text-properties
3114         b (1+ b) (list 'gnus-group group
3115                        'gnus-unread t 'gnus-marked nil
3116                        'gnus-level (1+ gnus-level-subscribed))))
3117      gnus-description-hashtb)
3118     (goto-char (point-min))
3119     (gnus-group-position-point)))
3120
3121 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
3122 (defun gnus-group-apropos (regexp &optional search-description)
3123   "List all newsgroups that have names that match a regexp."
3124   (interactive "sGnus apropos (regexp): ")
3125   (let ((prev "")
3126         (obuf (current-buffer))
3127         groups des)
3128     ;; Go through all newsgroups that are known to Gnus.
3129     (mapatoms
3130      (lambda (group)
3131        (and (symbol-name group)
3132             (string-match regexp (symbol-name group))
3133             (symbol-value group)
3134             (push (symbol-name group) groups)))
3135      gnus-active-hashtb)
3136     ;; Also go through all descriptions that are known to Gnus.
3137     (when search-description
3138       (mapatoms
3139        (lambda (group)
3140          (and (string-match regexp (symbol-value group))
3141               (push (symbol-name group) groups)))
3142        gnus-description-hashtb))
3143     (if (not groups)
3144         (gnus-message 3 "No groups matched \"%s\"." regexp)
3145       ;; Print out all the groups.
3146       (save-excursion
3147         (pop-to-buffer "*Gnus Help*")
3148         (buffer-disable-undo)
3149         (erase-buffer)
3150         (setq groups (sort groups 'string<))
3151         (while groups
3152           ;; Groups may be entered twice into the list of groups.
3153           (when (not (string= (car groups) prev))
3154             (insert (setq prev (car groups)) "\n")
3155             (when (and gnus-description-hashtb
3156                        (setq des (gnus-gethash (car groups)
3157                                                gnus-description-hashtb)))
3158               (insert "  " des "\n")))
3159           (setq groups (cdr groups)))
3160         (goto-char (point-min))))
3161     (pop-to-buffer obuf)))
3162
3163 (defun gnus-group-description-apropos (regexp)
3164   "List all newsgroups that have names or descriptions that match a regexp."
3165   (interactive "sGnus description apropos (regexp): ")
3166   (when (not (or gnus-description-hashtb
3167                  (gnus-read-all-descriptions-files)))
3168     (error "Couldn't request descriptions file"))
3169   (gnus-group-apropos regexp t))
3170
3171 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
3172 (defun gnus-group-list-matching (level regexp &optional all lowest)
3173   "List all groups with unread articles that match REGEXP.
3174 If the prefix LEVEL is non-nil, it should be a number that says which
3175 level to cut off listing groups.
3176 If ALL, also list groups with no unread articles.
3177 If LOWEST, don't list groups with level lower than LOWEST.
3178
3179 This command may read the active file."
3180   (interactive "P\nsList newsgroups matching: ")
3181   ;; First make sure active file has been read.
3182   (when (and level
3183              (> (prefix-numeric-value level) gnus-level-killed))
3184     (gnus-get-killed-groups))
3185   (gnus-group-prepare-flat
3186    (or level gnus-level-subscribed) all (or lowest 1) regexp)
3187   (goto-char (point-min))
3188   (gnus-group-position-point))
3189
3190 (defun gnus-group-list-all-matching (level regexp &optional lowest)
3191   "List all groups that match REGEXP.
3192 If the prefix LEVEL is non-nil, it should be a number that says which
3193 level to cut off listing groups.
3194 If LOWEST, don't list groups with level lower than LOWEST."
3195   (interactive "P\nsList newsgroups matching: ")
3196   (when level
3197     (setq level (prefix-numeric-value level)))
3198   (gnus-group-list-matching (or level gnus-level-killed) regexp t lowest))
3199
3200 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
3201 (defun gnus-group-save-newsrc (&optional force)
3202   "Save the Gnus startup files.
3203 If FORCE, force saving whether it is necessary or not."
3204   (interactive "P")
3205   (gnus-save-newsrc-file force))
3206
3207 (defun gnus-group-restart (&optional arg)
3208   "Force Gnus to read the .newsrc file."
3209   (interactive "P")
3210   (when (gnus-yes-or-no-p
3211          (format "Are you sure you want to restart Gnus? "))
3212     (gnus-save-newsrc-file)
3213     (gnus-clear-system)
3214     (gnus)))
3215
3216 (defun gnus-group-read-init-file ()
3217   "Read the Gnus elisp init file."
3218   (interactive)
3219   (gnus-read-init-file)
3220   (gnus-message 5 "Read %s" gnus-init-file))
3221
3222 (defun gnus-group-check-bogus-groups (&optional silent)
3223   "Check bogus newsgroups.
3224 If given a prefix, don't ask for confirmation before removing a bogus
3225 group."
3226   (interactive "P")
3227   (gnus-check-bogus-newsgroups (and (not silent) (not gnus-expert-user)))
3228   (gnus-group-list-groups))
3229
3230 (defun gnus-group-find-new-groups (&optional arg)
3231   "Search for new groups and add them.
3232 Each new group will be treated with `gnus-subscribe-newsgroup-method.'
3233 With 1 C-u, use the `ask-server' method to query the server for new
3234 groups.
3235 With 2 C-u's, use most complete method possible to query the server
3236 for new groups, and subscribe the new groups as zombies."
3237   (interactive "p")
3238   (gnus-find-new-newsgroups (or arg 1))
3239   (gnus-group-list-groups))
3240
3241 (defun gnus-group-edit-global-kill (&optional article group)
3242   "Edit the global kill file.
3243 If GROUP, edit that local kill file instead."
3244   (interactive "P")
3245   (setq gnus-current-kill-article article)
3246   (gnus-kill-file-edit-file group)
3247   (gnus-message
3248    6
3249    (substitute-command-keys
3250     (format "Editing a %s kill file (Type \\[gnus-kill-file-exit] to exit)"
3251             (if group "local" "global")))))
3252
3253 (defun gnus-group-edit-local-kill (article group)
3254   "Edit a local kill file."
3255   (interactive (list nil (gnus-group-group-name)))
3256   (gnus-group-edit-global-kill article group))
3257
3258 (defun gnus-group-force-update ()
3259   "Update `.newsrc' file."
3260   (interactive)
3261   (gnus-save-newsrc-file))
3262
3263 (defun gnus-group-suspend ()
3264   "Suspend the current Gnus session.
3265 In fact, cleanup buffers except for group mode buffer.
3266 The hook gnus-suspend-gnus-hook is called before actually suspending."
3267   (interactive)
3268   (gnus-run-hooks 'gnus-suspend-gnus-hook)
3269   ;; Kill Gnus buffers except for group mode buffer.
3270   (let ((group-buf (get-buffer gnus-group-buffer)))
3271     (mapcar (lambda (buf)
3272               (unless (member buf (list group-buf gnus-dribble-buffer))
3273                 (kill-buffer buf)))
3274             (gnus-buffers))
3275     (gnus-kill-gnus-frames)
3276     (when group-buf
3277       (bury-buffer group-buf)
3278       (delete-windows-on group-buf t))))
3279
3280 (defun gnus-group-clear-dribble ()
3281   "Clear all information from the dribble buffer."
3282   (interactive)
3283   (gnus-dribble-clear)
3284   (gnus-message 7 "Cleared dribble buffer"))
3285
3286 (defun gnus-group-exit ()
3287   "Quit reading news after updating .newsrc.eld and .newsrc.
3288 The hook `gnus-exit-gnus-hook' is called before actually exiting."
3289   (interactive)
3290   (when
3291       (or noninteractive                ;For gnus-batch-kill
3292           (not gnus-interactive-exit)   ;Without confirmation
3293           gnus-expert-user
3294           (gnus-y-or-n-p "Are you sure you want to quit reading news? "))
3295     (gnus-run-hooks 'gnus-exit-gnus-hook)
3296     ;; Offer to save data from non-quitted summary buffers.
3297     (gnus-offer-save-summaries)
3298     ;; Save the newsrc file(s).
3299     (gnus-save-newsrc-file)
3300     ;; Kill-em-all.
3301     (gnus-close-backends)
3302     ;; Reset everything.
3303     (gnus-clear-system)
3304     ;; Allow the user to do things after cleaning up.
3305     (gnus-run-hooks 'gnus-after-exiting-gnus-hook)))
3306
3307 (defun gnus-group-quit ()
3308   "Quit reading news without updating .newsrc.eld or .newsrc.
3309 The hook `gnus-exit-gnus-hook' is called before actually exiting."
3310   (interactive)
3311   (when (or noninteractive              ;For gnus-batch-kill
3312             (zerop (buffer-size))
3313             (not (gnus-server-opened gnus-select-method))
3314             gnus-expert-user
3315             (not gnus-current-startup-file)
3316             (gnus-yes-or-no-p
3317              (format "Quit reading news without saving %s? "
3318                      (file-name-nondirectory gnus-current-startup-file))))
3319     (gnus-run-hooks 'gnus-exit-gnus-hook)
3320     (gnus-configure-windows 'group t)
3321     (gnus-dribble-save)
3322     (gnus-close-backends)
3323     (gnus-clear-system)
3324     (gnus-kill-buffer gnus-group-buffer)
3325     ;; Allow the user to do things after cleaning up.
3326     (gnus-run-hooks 'gnus-after-exiting-gnus-hook)))
3327
3328 (defun gnus-group-describe-briefly ()
3329   "Give a one line description of the group mode commands."
3330   (interactive)
3331   (gnus-message 7 (substitute-command-keys "\\<gnus-group-mode-map>\\[gnus-group-read-group]:Select  \\[gnus-group-next-unread-group]:Forward  \\[gnus-group-prev-unread-group]:Backward  \\[gnus-group-exit]:Exit  \\[gnus-info-find-node]:Run Info  \\[gnus-group-describe-briefly]:This help")))
3332
3333 (defun gnus-group-browse-foreign-server (method)
3334   "Browse a foreign news server.
3335 If called interactively, this function will ask for a select method
3336  (nntp, nnspool, etc.) and a server address (eg. nntp.some.where).
3337 If not, METHOD should be a list where the first element is the method
3338 and the second element is the address."
3339   (interactive
3340    (list (let ((how (completing-read
3341                      "Which backend: "
3342                      (append gnus-valid-select-methods gnus-server-alist)
3343                      nil t (cons "nntp" 0) 'gnus-method-history)))
3344            ;; We either got a backend name or a virtual server name.
3345            ;; If the first, we also need an address.
3346            (if (assoc how gnus-valid-select-methods)
3347                (list (intern how)
3348                      ;; Suggested by mapjph@bath.ac.uk.
3349                      (completing-read
3350                       "Address: "
3351                       (mapcar (lambda (server) (list server))
3352                               gnus-secondary-servers)))
3353              ;; We got a server name.
3354              how))))
3355   (gnus-browse-foreign-server method))
3356
3357 (defun gnus-group-set-info (info &optional method-only-group part)
3358   (when (or info part)
3359     (let* ((entry (gnus-gethash
3360                    (or method-only-group (gnus-info-group info))
3361                    gnus-newsrc-hashtb))
3362            (part-info info)
3363            (info (if method-only-group (nth 2 entry) info))
3364            method)
3365       (when method-only-group
3366         (unless entry
3367           (error "Trying to change non-existent group %s" method-only-group))
3368         ;; We have received parts of the actual group info - either the
3369         ;; select method or the group parameters.        We first check
3370         ;; whether we have to extend the info, and if so, do that.
3371         (let ((len (length info))
3372               (total (if (eq part 'method) 5 6)))
3373           (when (< len total)
3374             (setcdr (nthcdr (1- len) info)
3375                     (make-list (- total len) nil)))
3376           ;; Then we enter the new info.
3377           (setcar (nthcdr (1- total) info) part-info)))
3378       (unless entry
3379         ;; This is a new group, so we just create it.
3380         (save-excursion
3381           (set-buffer gnus-group-buffer)
3382           (setq method (gnus-info-method info))
3383           (when (gnus-server-equal method "native")
3384             (setq method nil))
3385           (save-excursion
3386             (set-buffer gnus-group-buffer)
3387             (if method
3388                 ;; It's a foreign group...
3389                 (gnus-group-make-group
3390                  (gnus-group-real-name (gnus-info-group info))
3391                  (if (stringp method) method
3392                    (prin1-to-string (car method)))
3393                  (and (consp method)
3394                       (nth 1 (gnus-info-method info))))
3395               ;; It's a native group.
3396               (gnus-group-make-group (gnus-info-group info))))
3397           (gnus-message 6 "Note: New group created")
3398           (setq entry
3399                 (gnus-gethash (gnus-group-prefixed-name
3400                                (gnus-group-real-name (gnus-info-group info))
3401                                (or (gnus-info-method info) gnus-select-method))
3402                               gnus-newsrc-hashtb))))
3403       ;; Whether it was a new group or not, we now have the entry, so we
3404       ;; can do the update.
3405       (if entry
3406           (progn
3407             (setcar (nthcdr 2 entry) info)
3408             (when (and (not (eq (car entry) t))
3409                        (gnus-active (gnus-info-group info)))
3410               (setcar entry (length (gnus-list-of-unread-articles (car info))))))
3411         (error "No such group: %s" (gnus-info-group info))))))
3412
3413 (defun gnus-group-set-method-info (group select-method)
3414   (gnus-group-set-info select-method group 'method))
3415
3416 (defun gnus-group-set-params-info (group params)
3417   (gnus-group-set-info params group 'params))
3418
3419 (defun gnus-add-marked-articles (group type articles &optional info force)
3420   ;; Add ARTICLES of TYPE to the info of GROUP.
3421   ;; If INFO is non-nil, use that info.         If FORCE is non-nil, don't
3422   ;; add, but replace marked articles of TYPE with ARTICLES.
3423   (let ((info (or info (gnus-get-info group)))
3424         marked m)
3425     (or (not info)
3426         (and (not (setq marked (nthcdr 3 info)))
3427              (or (null articles)
3428                 (setcdr (nthcdr 2 info)
3429                         (list (list (cons type (gnus-compress-sequence
3430                                                 articles t)))))))
3431         (and (not (setq m (assq type (car marked))))
3432              (or (null articles)
3433                 (setcar marked
3434                         (cons (cons type (gnus-compress-sequence articles t) )
3435                               (car marked)))))
3436         (if force
3437             (if (null articles)
3438                (setcar (nthcdr 3 info)
3439                        (gnus-delete-alist type (car marked)))
3440              (setcdr m (gnus-compress-sequence articles t)))
3441           (setcdr m (gnus-compress-sequence
3442                      (sort (nconc (gnus-uncompress-range (cdr m))
3443                                   (copy-sequence articles)) '<) t))))))
3444
3445 ;;;
3446 ;;; Group timestamps
3447 ;;;
3448
3449 (defun gnus-group-set-timestamp ()
3450   "Change the timestamp of the current group to the current time.
3451 This function can be used in hooks like `gnus-select-group-hook'
3452 or `gnus-group-catchup-group-hook'."
3453   (when gnus-newsgroup-name
3454     (let ((time (current-time)))
3455       (setcdr (cdr time) nil)
3456       (gnus-group-set-parameter gnus-newsgroup-name 'timestamp time))))
3457
3458 (defsubst gnus-group-timestamp (group)
3459   "Return the timestamp for GROUP."
3460   (gnus-group-get-parameter group 'timestamp t))
3461
3462 (defun gnus-group-timestamp-delta (group)
3463   "Return the offset in seconds from the timestamp for GROUP to the current time, as a floating point number."
3464   (let* ((time (or (gnus-group-timestamp group)
3465                   (list 0 0)))
3466          (delta (subtract-time (current-time) time)))
3467     (+ (* (nth 0 delta) 65536.0)
3468        (nth 1 delta))))
3469
3470 (defun gnus-group-timestamp-string (group)
3471   "Return a string of the timestamp for GROUP."
3472   (let ((time (gnus-group-timestamp group)))
3473     (if (not time)
3474         ""
3475       (gnus-time-iso8601 time))))
3476
3477 (provide 'gnus-group)
3478
3479 ;;; gnus-group.el ends here