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