Mercurial > emacs
annotate lisp/gnus/nnkiboze.el @ 32833:ee1e731661c6
(unlock_all_files): Use unlock_file to expand each
buffer's file_truename before trying remove its lock file.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 24 Oct 2000 20:54:30 +0000 |
parents | 51cea22fd2aa |
children | 343a1c02c422 |
rev | line source |
---|---|
17493 | 1 ;;; nnkiboze.el --- select virtual news access for Gnus |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999,.2000 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Keywords: news |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;; The other access methods (nntp, nnspool, etc) are general news | |
29 ;; access methods. This module relies on Gnus and can't be used | |
30 ;; separately. | |
31 | |
32 ;;; Code: | |
33 | |
34 (require 'nntp) | |
35 (require 'nnheader) | |
36 (require 'gnus) | |
37 (require 'gnus-score) | |
38 (require 'nnoo) | |
31785 | 39 (require 'mm-util) |
17493 | 40 (eval-when-compile (require 'cl)) |
41 | |
42 (nnoo-declare nnkiboze) | |
43 (defvoo nnkiboze-directory (nnheader-concat gnus-directory "kiboze/") | |
44 "nnkiboze will put its files in this directory.") | |
45 | |
46 (defvoo nnkiboze-level 9 | |
47 "The maximum level to be searched for articles.") | |
48 | |
49 (defvoo nnkiboze-remove-read-articles t | |
50 "If non-nil, nnkiboze will remove read articles from the kiboze group.") | |
51 | |
52 (defvoo nnkiboze-ephemeral nil | |
53 "If non-nil, don't store any data anywhere.") | |
54 | |
55 (defvoo nnkiboze-scores nil | |
56 "Score rules for generating the nnkiboze group.") | |
57 | |
58 (defvoo nnkiboze-regexp nil | |
59 "Regexp for matching component groups.") | |
60 | |
31785 | 61 (defvoo nnkiboze-file-coding-system mm-text-coding-system |
62 "Coding system for nnkiboze files.") | |
63 | |
17493 | 64 |
65 | |
66 (defconst nnkiboze-version "nnkiboze 1.0") | |
67 | |
68 (defvoo nnkiboze-current-group nil) | |
69 (defvoo nnkiboze-status-string "") | |
70 | |
71 (defvoo nnkiboze-headers nil) | |
72 | |
73 | |
74 | |
75 ;;; Interface functions. | |
76 | |
77 (nnoo-define-basics nnkiboze) | |
78 | |
79 (deffoo nnkiboze-retrieve-headers (articles &optional group server fetch-old) | |
80 (nnkiboze-possibly-change-group group) | |
81 (unless gnus-nov-is-evil | |
82 (if (stringp (car articles)) | |
83 'headers | |
84 (let ((nov (nnkiboze-nov-file-name))) | |
85 (when (file-exists-p nov) | |
86 (save-excursion | |
87 (set-buffer nntp-server-buffer) | |
88 (erase-buffer) | |
31785 | 89 (let ((nnheader-file-coding-system nnkiboze-file-coding-system)) |
90 (nnheader-insert-file-contents nov)) | |
17493 | 91 (nnheader-nov-delete-outside-range |
92 (car articles) (car (last articles))) | |
93 'nov)))))) | |
94 | |
95 (deffoo nnkiboze-request-article (article &optional newsgroup server buffer) | |
96 (nnkiboze-possibly-change-group newsgroup) | |
97 (if (not (numberp article)) | |
98 ;; This is a real kludge. It might not work at times, but it | |
99 ;; does no harm I think. The only alternative is to offer no | |
100 ;; article fetching by message-id at all. | |
101 (nntp-request-article article newsgroup gnus-nntp-server buffer) | |
102 (let* ((header (gnus-summary-article-header article)) | |
103 (xref (mail-header-xref header))) | |
104 (unless xref | |
105 (error "nnkiboze: No xref")) | |
106 (unless (string-match " \\([^ ]+\\):\\([0-9]+\\)" xref) | |
107 (error "nnkiboze: Malformed xref")) | |
108 (gnus-request-article (string-to-int (match-string 2 xref)) | |
109 (match-string 1 xref) | |
110 buffer)))) | |
111 | |
112 (deffoo nnkiboze-request-scan (&optional group server) | |
113 (nnkiboze-generate-group (concat "nnkiboze:" group))) | |
114 | |
115 (deffoo nnkiboze-request-group (group &optional server dont-check) | |
116 "Make GROUP the current newsgroup." | |
117 (nnkiboze-possibly-change-group group) | |
118 (if dont-check | |
119 t | |
120 (let ((nov-file (nnkiboze-nov-file-name)) | |
121 beg end total) | |
122 (save-excursion | |
123 (set-buffer nntp-server-buffer) | |
124 (erase-buffer) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
125 (unless (file-exists-p nov-file) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
126 (nnkiboze-request-scan group)) |
17493 | 127 (if (not (file-exists-p nov-file)) |
128 (nnheader-report 'nnkiboze "Can't select group %s" group) | |
31785 | 129 (let ((nnheader-file-coding-system nnkiboze-file-coding-system)) |
130 (nnheader-insert-file-contents nov-file)) | |
17493 | 131 (if (zerop (buffer-size)) |
132 (nnheader-insert "211 0 0 0 %s\n" group) | |
133 (goto-char (point-min)) | |
134 (when (looking-at "[0-9]+") | |
135 (setq beg (read (current-buffer)))) | |
136 (goto-char (point-max)) | |
137 (when (re-search-backward "^[0-9]" nil t) | |
138 (setq end (read (current-buffer)))) | |
139 (setq total (count-lines (point-min) (point-max))) | |
140 (nnheader-insert "211 %d %d %d %s\n" total beg end group))))))) | |
141 | |
142 (deffoo nnkiboze-close-group (group &optional server) | |
143 (nnkiboze-possibly-change-group group) | |
144 ;; Remove NOV lines of articles that are marked as read. | |
145 (when (and (file-exists-p (nnkiboze-nov-file-name)) | |
146 nnkiboze-remove-read-articles) | |
31785 | 147 (let ((coding-system-for-write nnkiboze-file-coding-system)) |
148 (with-temp-file (nnkiboze-nov-file-name) | |
149 (let ((cur (current-buffer)) | |
150 (nnheader-file-coding-system nnkiboze-file-coding-system)) | |
151 (nnheader-insert-file-contents (nnkiboze-nov-file-name)) | |
152 (goto-char (point-min)) | |
153 (while (not (eobp)) | |
154 (if (not (gnus-article-read-p (read cur))) | |
155 (forward-line 1) | |
156 (gnus-delete-line)))))) | |
157 (setq nnkiboze-current-group nil))) | |
17493 | 158 |
159 (deffoo nnkiboze-open-server (server &optional defs) | |
160 (unless (assq 'nnkiboze-regexp defs) | |
161 (push `(nnkiboze-regexp ,server) | |
162 defs)) | |
163 (nnoo-change-server 'nnkiboze server defs)) | |
164 | |
165 (deffoo nnkiboze-request-delete-group (group &optional force server) | |
166 (nnkiboze-possibly-change-group group) | |
167 (when force | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
168 (let ((files (nconc |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
169 (nnkiboze-score-file group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
170 (list (nnkiboze-nov-file-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
171 (nnkiboze-nov-file-name ".newsrc"))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
172 (while files |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
173 (and (file-exists-p (car files)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
174 (file-writable-p (car files)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
175 (delete-file (car files))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
176 (setq files (cdr files))))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
177 (setq nnkiboze-current-group nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
178 t) |
17493 | 179 |
180 (nnoo-define-skeleton nnkiboze) | |
181 | |
182 | |
183 ;;; Internal functions. | |
184 | |
185 (defun nnkiboze-possibly-change-group (group) | |
186 (setq nnkiboze-current-group group)) | |
187 | |
188 (defun nnkiboze-prefixed-name (group) | |
189 (gnus-group-prefixed-name group '(nnkiboze ""))) | |
190 | |
191 ;;;###autoload | |
192 (defun nnkiboze-generate-groups () | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
193 "\"Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups\". |
17493 | 194 Finds out what articles are to be part of the nnkiboze groups." |
195 (interactive) | |
196 (let ((nnmail-spool-file nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
197 (mail-sources nil) |
17493 | 198 (gnus-use-dribble-file nil) |
199 (gnus-read-active-file t) | |
200 (gnus-expert-user t)) | |
201 (gnus)) | |
202 (let* ((gnus-newsrc-alist (gnus-copy-sequence gnus-newsrc-alist)) | |
203 (newsrc (cdr gnus-newsrc-alist)) | |
204 gnus-newsrc-hashtb info) | |
205 (gnus-make-hashtable-from-newsrc-alist) | |
206 ;; We have copied all the newsrc alist info over to local copies | |
207 ;; so that we can mess all we want with these lists. | |
208 (while (setq info (pop newsrc)) | |
209 (when (string-match "nnkiboze" (gnus-info-group info)) | |
210 ;; For each kiboze group, we call this function to generate | |
211 ;; it. | |
212 (nnkiboze-generate-group (gnus-info-group info)))))) | |
213 | |
214 (defun nnkiboze-score-file (group) | |
215 (list (expand-file-name | |
216 (concat (file-name-as-directory gnus-kill-files-directory) | |
217 (nnheader-translate-file-chars | |
218 (concat (nnkiboze-prefixed-name nnkiboze-current-group) | |
219 "." gnus-score-file-suffix)))))) | |
220 | |
221 (defun nnkiboze-generate-group (group) | |
222 (let* ((info (nth 2 (gnus-gethash group gnus-newsrc-hashtb))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
223 (newsrc-file (concat nnkiboze-directory |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
224 (nnheader-translate-file-chars |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
225 (concat group ".newsrc")))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
226 (nov-file (concat nnkiboze-directory |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
227 (nnheader-translate-file-chars |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
228 (concat group ".nov")))) |
17493 | 229 method nnkiboze-newsrc gname newsrc active |
230 ginfo lowest glevel orig-info nov-buffer | |
231 ;; Bind various things to nil to make group entry faster. | |
232 (gnus-expert-user t) | |
233 (gnus-large-newsgroup nil) | |
234 (gnus-score-find-score-files-function 'nnkiboze-score-file) | |
235 (gnus-verbose (min gnus-verbose 3)) | |
236 gnus-select-group-hook gnus-summary-prepare-hook | |
237 gnus-thread-sort-functions gnus-show-threads | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
238 gnus-visual gnus-suppress-duplicates num-unread) |
17493 | 239 (unless info |
240 (error "No such group: %s" group)) | |
241 ;; Load the kiboze newsrc file for this group. | |
242 (when (file-exists-p newsrc-file) | |
243 (load newsrc-file)) | |
31785 | 244 (let ((coding-system-for-write nnkiboze-file-coding-system)) |
245 (with-temp-file nov-file | |
246 (when (file-exists-p nov-file) | |
247 (insert-file-contents nov-file)) | |
248 (setq nov-buffer (current-buffer)) | |
249 ;; Go through the active hashtb and add new all groups that match the | |
250 ;; kiboze regexp. | |
251 (mapatoms | |
252 (lambda (group) | |
253 (and (string-match nnkiboze-regexp | |
254 (setq gname (symbol-name group))) ; Match | |
255 (not (assoc gname nnkiboze-newsrc)) ; It isn't registered | |
256 (numberp (car (symbol-value group))) ; It is active | |
257 (or (> nnkiboze-level 7) | |
258 (and (setq glevel (nth 1 (nth 2 (gnus-gethash | |
259 gname gnus-newsrc-hashtb)))) | |
260 (>= nnkiboze-level glevel))) | |
261 (not (string-match "^nnkiboze:" gname)) ; Exclude kibozes | |
262 (push (cons gname (1- (car (symbol-value group)))) | |
263 nnkiboze-newsrc))) | |
264 gnus-active-hashtb) | |
265 ;; `newsrc' is set to the list of groups that possibly are | |
266 ;; component groups to this kiboze group. This list has elements | |
267 ;; on the form `(GROUP . NUMBER)', where NUMBER is the highest | |
268 ;; number that has been kibozed in GROUP in this kiboze group. | |
269 (setq newsrc nnkiboze-newsrc) | |
270 (while newsrc | |
271 (if (not (setq active (gnus-gethash | |
272 (caar newsrc) gnus-active-hashtb))) | |
273 ;; This group isn't active after all, so we remove it from | |
274 ;; the list of component groups. | |
275 (setq nnkiboze-newsrc (delq (car newsrc) nnkiboze-newsrc)) | |
276 (setq lowest (cdar newsrc)) | |
277 ;; Ok, we have a valid component group, so we jump to it. | |
278 (switch-to-buffer gnus-group-buffer) | |
279 (gnus-group-jump-to-group (caar newsrc)) | |
280 (gnus-message 3 "nnkiboze: Checking %s..." (caar newsrc)) | |
281 (setq ginfo (gnus-get-info (gnus-group-group-name)) | |
282 orig-info (gnus-copy-sequence ginfo) | |
283 num-unread (car (gnus-gethash (caar newsrc) | |
284 gnus-newsrc-hashtb))) | |
285 (unwind-protect | |
286 (progn | |
287 ;; We set all list of article marks to nil. Since we operate | |
288 ;; on copies of the real lists, we can destroy anything we | |
289 ;; want here. | |
290 (when (nth 3 ginfo) | |
291 (setcar (nthcdr 3 ginfo) nil)) | |
292 ;; We set the list of read articles to be what we expect for | |
293 ;; this kiboze group -- either nil or `(1 . LOWEST)'. | |
294 (when ginfo | |
295 (setcar (nthcdr 2 ginfo) | |
296 (and (not (= lowest 1)) (cons 1 lowest)))) | |
297 (when (and (or (not ginfo) | |
298 (> (length (gnus-list-of-unread-articles | |
299 (car ginfo))) | |
300 0)) | |
301 (progn | |
302 (ignore-errors | |
303 (gnus-group-select-group nil)) | |
304 (eq major-mode 'gnus-summary-mode))) | |
305 ;; We are now in the group where we want to be. | |
306 (setq method (gnus-find-method-for-group | |
307 gnus-newsgroup-name)) | |
308 (when (eq method gnus-select-method) | |
309 (setq method nil)) | |
310 ;; We go through the list of scored articles. | |
311 (while gnus-newsgroup-scored | |
312 (when (> (caar gnus-newsgroup-scored) lowest) | |
313 ;; If it has a good score, then we enter this article | |
314 ;; into the kiboze group. | |
315 (nnkiboze-enter-nov | |
316 nov-buffer | |
317 (gnus-summary-article-header | |
318 (caar gnus-newsgroup-scored)) | |
319 gnus-newsgroup-name)) | |
320 (setq gnus-newsgroup-scored (cdr gnus-newsgroup-scored))) | |
321 ;; That's it. We exit this group. | |
322 (when (eq major-mode 'gnus-summary-mode) | |
323 (kill-buffer (current-buffer))))) | |
324 ;; Restore the proper info. | |
325 (when ginfo | |
326 (setcdr ginfo (cdr orig-info))) | |
327 (setcar (gnus-gethash (caar newsrc) gnus-newsrc-hashtb) | |
328 num-unread))) | |
329 (setcdr (car newsrc) (car active)) | |
330 (gnus-message 3 "nnkiboze: Checking %s...done" (caar newsrc)) | |
331 (setq newsrc (cdr newsrc))))) | |
17493 | 332 ;; We save the kiboze newsrc for this group. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
333 (with-temp-file newsrc-file |
17493 | 334 (insert "(setq nnkiboze-newsrc '") |
335 (gnus-prin1 nnkiboze-newsrc) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
336 (insert ")\n"))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
337 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
338 (set-buffer gnus-group-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
339 (gnus-group-list-groups)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
340 t) |
17493 | 341 |
342 (defun nnkiboze-enter-nov (buffer header group) | |
343 (save-excursion | |
344 (set-buffer buffer) | |
345 (goto-char (point-max)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
346 (let ((prefix (gnus-group-real-prefix group)) |
17493 | 347 (oheader (copy-sequence header)) |
348 article) | |
349 (if (zerop (forward-line -1)) | |
350 (progn | |
351 (setq article (1+ (read (current-buffer)))) | |
352 (forward-line 1)) | |
353 (setq article 1)) | |
354 (mail-header-set-number oheader article) | |
31785 | 355 (with-temp-buffer |
356 (insert (mail-header-xref oheader)) | |
357 (goto-char (point-min)) | |
358 (if (re-search-forward " [^ ]+:[0-9]+" nil t) | |
359 (goto-char (match-beginning 0)) | |
17493 | 360 (forward-char 1)) |
31785 | 361 ;; The first Xref has to be the group this article |
362 ;; really came for - this is the article nnkiboze | |
363 ;; will request when it is asked for the article. | |
364 (insert " " group ":" | |
365 (int-to-string (mail-header-number header)) " ") | |
366 (while (re-search-forward " [^ ]+:[0-9]+" nil t) | |
367 (goto-char (1+ (match-beginning 0))) | |
368 (insert prefix)) | |
369 (mail-header-set-xref oheader (buffer-string))) | |
370 (nnheader-insert-nov oheader)))) | |
17493 | 371 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
372 (defun nnkiboze-nov-file-name (&optional suffix) |
17493 | 373 (concat (file-name-as-directory nnkiboze-directory) |
374 (nnheader-translate-file-chars | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
375 (concat (nnkiboze-prefixed-name nnkiboze-current-group) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
376 (or suffix ".nov"))))) |
17493 | 377 |
378 (provide 'nnkiboze) | |
379 | |
380 ;;; nnkiboze.el ends here |