Mercurial > emacs
annotate lisp/gnus/gnus.el @ 32587:b3918817f15f
(mark_object) [GC_CHECK_STRING_BYTES]: Check validity of
string's size_byte.
(check_string_bytes) [GC_CHECK_STRING_BYTES]: New function.
(check_string_bytes_count) [GC_CHECK_STRING_BYTES]: New variable.
(allocate_string) [GC_CHECK_STRING_BYTES]: Call it for every 10th
string allocated.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 17 Oct 2000 15:38:30 +0000 |
parents | ca7ec5a76115 |
children | 6a62ea78ba04 |
rev | line source |
---|---|
32019
bd101eca34c1
(gnus-mode-line-buffer-identification)[EMACS]: Fix
Gerd Moellmann <gerd@gnu.org>
parents:
32016
diff
changeset
|
1 :;;; gnus.el --- a newsreader for GNU Emacs |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3 ;; 1997, 1998, 2000 Free Software Foundation, Inc. |
17493 | 4 |
5 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
6 ;; Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Keywords: news, mail |
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 ;;; Code: | |
29 | |
30 (eval '(run-hooks 'gnus-load-hook)) | |
31 | |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
32 (eval-when-compile (require 'cl)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
33 (require 'mm-util) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
34 |
17493 | 35 (require 'message) |
36 | |
37 (defgroup gnus nil | |
38 "The coffee-brewing, all singing, all dancing, kitchen sink newsreader." | |
39 :group 'news | |
40 :group 'mail) | |
41 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
42 (defgroup gnus-charset nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
43 "Group character set issues." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
44 :link '(custom-manual "(gnus)Charsets") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
45 :version "21.1" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
46 :group 'gnus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
47 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
48 (defgroup gnus-cache nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
49 "Cache interface." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
50 :group 'gnus) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
51 |
17493 | 52 (defgroup gnus-start nil |
53 "Starting your favorite newsreader." | |
54 :group 'gnus) | |
55 | |
56 (defgroup gnus-start-server nil | |
57 "Server options at startup." | |
58 :group 'gnus-start) | |
59 | |
60 ;; These belong to gnus-group.el. | |
61 (defgroup gnus-group nil | |
62 "Group buffers." | |
63 :link '(custom-manual "(gnus)The Group Buffer") | |
64 :group 'gnus) | |
65 | |
66 (defgroup gnus-group-foreign nil | |
67 "Foreign groups." | |
68 :link '(custom-manual "(gnus)Foreign Groups") | |
69 :group 'gnus-group) | |
70 | |
71 (defgroup gnus-group-new nil | |
72 "Automatic subscription of new groups." | |
73 :group 'gnus-group) | |
74 | |
75 (defgroup gnus-group-levels nil | |
76 "Group levels." | |
77 :link '(custom-manual "(gnus)Group Levels") | |
78 :group 'gnus-group) | |
79 | |
80 (defgroup gnus-group-select nil | |
81 "Selecting a Group." | |
82 :link '(custom-manual "(gnus)Selecting a Group") | |
83 :group 'gnus-group) | |
84 | |
85 (defgroup gnus-group-listing nil | |
86 "Showing slices of the group list." | |
87 :link '(custom-manual "(gnus)Listing Groups") | |
88 :group 'gnus-group) | |
89 | |
90 (defgroup gnus-group-visual nil | |
91 "Sorting the group buffer." | |
92 :link '(custom-manual "(gnus)Group Buffer Format") | |
93 :group 'gnus-group | |
94 :group 'gnus-visual) | |
95 | |
96 (defgroup gnus-group-various nil | |
97 "Various group options." | |
98 :link '(custom-manual "(gnus)Scanning New Messages") | |
99 :group 'gnus-group) | |
100 | |
101 ;; These belong to gnus-sum.el. | |
102 (defgroup gnus-summary nil | |
103 "Summary buffers." | |
104 :link '(custom-manual "(gnus)The Summary Buffer") | |
105 :group 'gnus) | |
106 | |
107 (defgroup gnus-summary-exit nil | |
108 "Leaving summary buffers." | |
109 :link '(custom-manual "(gnus)Exiting the Summary Buffer") | |
110 :group 'gnus-summary) | |
111 | |
112 (defgroup gnus-summary-marks nil | |
113 "Marks used in summary buffers." | |
114 :link '(custom-manual "(gnus)Marking Articles") | |
115 :group 'gnus-summary) | |
116 | |
117 (defgroup gnus-thread nil | |
118 "Ordering articles according to replies." | |
119 :link '(custom-manual "(gnus)Threading") | |
120 :group 'gnus-summary) | |
121 | |
122 (defgroup gnus-summary-format nil | |
123 "Formatting of the summary buffer." | |
124 :link '(custom-manual "(gnus)Summary Buffer Format") | |
125 :group 'gnus-summary) | |
126 | |
127 (defgroup gnus-summary-choose nil | |
128 "Choosing Articles." | |
129 :link '(custom-manual "(gnus)Choosing Articles") | |
130 :group 'gnus-summary) | |
131 | |
132 (defgroup gnus-summary-maneuvering nil | |
133 "Summary movement commands." | |
134 :link '(custom-manual "(gnus)Summary Maneuvering") | |
135 :group 'gnus-summary) | |
136 | |
137 (defgroup gnus-summary-mail nil | |
138 "Mail group commands." | |
139 :link '(custom-manual "(gnus)Mail Group Commands") | |
140 :group 'gnus-summary) | |
141 | |
142 (defgroup gnus-summary-sort nil | |
143 "Sorting the summary buffer." | |
144 :link '(custom-manual "(gnus)Sorting") | |
145 :group 'gnus-summary) | |
146 | |
147 (defgroup gnus-summary-visual nil | |
148 "Highlighting and menus in the summary buffer." | |
149 :link '(custom-manual "(gnus)Summary Highlighting") | |
150 :group 'gnus-visual | |
151 :group 'gnus-summary) | |
152 | |
153 (defgroup gnus-summary-various nil | |
154 "Various summary buffer options." | |
155 :link '(custom-manual "(gnus)Various Summary Stuff") | |
156 :group 'gnus-summary) | |
157 | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
158 (defgroup gnus-summary-pick nil |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
159 "Pick mode in the summary buffer." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
160 :link '(custom-manual "(gnus)Pick and Read") |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
161 :prefix "gnus-pick-" |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
162 :group 'gnus-summary) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
163 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
164 (defgroup gnus-summary-tree nil |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
165 "Tree display of threads in the summary buffer." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
166 :link '(custom-manual "(gnus)Tree Display") |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
167 :prefix "gnus-tree-" |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
168 :group 'gnus-summary) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
169 |
17493 | 170 ;; Belongs to gnus-uu.el |
171 (defgroup gnus-extract-view nil | |
172 "Viewing extracted files." | |
173 :link '(custom-manual "(gnus)Viewing Files") | |
174 :group 'gnus-extract) | |
175 | |
176 ;; Belongs to gnus-score.el | |
177 (defgroup gnus-score nil | |
178 "Score and kill file handling." | |
179 :group 'gnus) | |
180 | |
181 (defgroup gnus-score-kill nil | |
182 "Kill files." | |
183 :group 'gnus-score) | |
184 | |
185 (defgroup gnus-score-adapt nil | |
186 "Adaptive score files." | |
187 :group 'gnus-score) | |
188 | |
189 (defgroup gnus-score-default nil | |
190 "Default values for score files." | |
191 :group 'gnus-score) | |
192 | |
193 (defgroup gnus-score-expire nil | |
194 "Expiring score rules." | |
195 :group 'gnus-score) | |
196 | |
197 (defgroup gnus-score-decay nil | |
198 "Decaying score rules." | |
199 :group 'gnus-score) | |
200 | |
201 (defgroup gnus-score-files nil | |
202 "Score and kill file names." | |
203 :group 'gnus-score | |
204 :group 'gnus-files) | |
205 | |
206 (defgroup gnus-score-various nil | |
207 "Various scoring and killing options." | |
208 :group 'gnus-score) | |
209 | |
210 ;; Other | |
211 (defgroup gnus-visual nil | |
212 "Options controling the visual fluff." | |
213 :group 'gnus | |
214 :group 'faces) | |
215 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
216 (defgroup gnus-agent nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
217 "Offline support for Gnus." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
218 :group 'gnus) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
219 |
17493 | 220 (defgroup gnus-files nil |
221 "Files used by Gnus." | |
222 :group 'gnus) | |
223 | |
224 (defgroup gnus-dribble-file nil | |
225 "Auto save file." | |
226 :link '(custom-manual "(gnus)Auto Save") | |
227 :group 'gnus-files) | |
228 | |
229 (defgroup gnus-newsrc nil | |
230 "Storing Gnus state." | |
231 :group 'gnus-files) | |
232 | |
233 (defgroup gnus-server nil | |
234 "Options related to newsservers and other servers used by Gnus." | |
235 :group 'gnus) | |
236 | |
237 (defgroup gnus-message '((message custom-group)) | |
238 "Composing replies and followups in Gnus." | |
239 :group 'gnus) | |
240 | |
241 (defgroup gnus-meta nil | |
242 "Meta variables controling major portions of Gnus. | |
243 In general, modifying these variables does not take affect until Gnus | |
244 is restarted, and sometimes reloaded." | |
245 :group 'gnus) | |
246 | |
247 (defgroup gnus-various nil | |
248 "Other Gnus options." | |
249 :link '(custom-manual "(gnus)Various Various") | |
250 :group 'gnus) | |
251 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
252 (defgroup gnus-mime nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
253 "Variables for controlling the Gnus MIME interface." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
254 :group 'gnus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
255 |
17493 | 256 (defgroup gnus-exit nil |
257 "Exiting gnus." | |
258 :link '(custom-manual "(gnus)Exiting Gnus") | |
259 :group 'gnus) | |
260 | |
31781
8a6a4f06f145
(gnus-version-number): Start 5.9 series. Avoid some
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
261 (defconst gnus-version-number "5.9.0" |
17493 | 262 "Version number for this version of Gnus.") |
263 | |
264 (defconst gnus-version (format "Gnus v%s" gnus-version-number) | |
265 "Version string for this version of Gnus.") | |
266 | |
267 (defcustom gnus-inhibit-startup-message nil | |
268 "If non-nil, the startup message will not be displayed. | |
269 This variable is used before `.gnus.el' is loaded, so it should | |
270 be set in `.emacs' instead." | |
271 :group 'gnus-start | |
272 :type 'boolean) | |
273 | |
274 (defcustom gnus-play-startup-jingle nil | |
275 "If non-nil, play the Gnus jingle at startup." | |
276 :group 'gnus-start | |
277 :type 'boolean) | |
278 | |
279 (unless (featurep 'gnus-xmas) | |
280 (defalias 'gnus-make-overlay 'make-overlay) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
281 (defalias 'gnus-delete-overlay 'delete-overlay) |
17493 | 282 (defalias 'gnus-overlay-put 'overlay-put) |
283 (defalias 'gnus-move-overlay 'move-overlay) | |
284 (defalias 'gnus-overlay-end 'overlay-end) | |
285 (defalias 'gnus-extent-detached-p 'ignore) | |
286 (defalias 'gnus-extent-start-open 'ignore) | |
287 (defalias 'gnus-set-text-properties 'set-text-properties) | |
288 (defalias 'gnus-group-remove-excess-properties 'ignore) | |
289 (defalias 'gnus-appt-select-lowest-window 'appt-select-lowest-window) | |
290 (defalias 'gnus-mail-strip-quoted-names 'mail-strip-quoted-names) | |
291 (defalias 'gnus-character-to-event 'identity) | |
292 (defalias 'gnus-add-text-properties 'add-text-properties) | |
293 (defalias 'gnus-put-text-property 'put-text-property) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
294 (defvar gnus-mode-line-image-cache t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
295 (if (fboundp 'find-image) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
296 (defun gnus-mode-line-buffer-identification (line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
297 (let ((str (car-safe line))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
298 (if (and (stringp str) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
299 (string-match "^Gnus:" str)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
300 (progn (add-text-properties |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
301 0 5 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
302 (list 'display |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
303 (if (eq t gnus-mode-line-image-cache) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
304 (setq gnus-mode-line-image-cache |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
305 (find-image |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
306 '((:type xpm :file "gnus-pointer.xpm" |
32019
bd101eca34c1
(gnus-mode-line-buffer-identification)[EMACS]: Fix
Gerd Moellmann <gerd@gnu.org>
parents:
32016
diff
changeset
|
307 :ascent center) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
308 (:type xbm :file "gnus-pointer.xbm" |
32019
bd101eca34c1
(gnus-mode-line-buffer-identification)[EMACS]: Fix
Gerd Moellmann <gerd@gnu.org>
parents:
32016
diff
changeset
|
309 :ascent center)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
310 gnus-mode-line-image-cache) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
311 'help-echo "This is Gnus") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
312 str) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
313 (list str)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
314 line))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
315 (defalias 'gnus-mode-line-buffer-identification 'identity)) |
17493 | 316 (defalias 'gnus-characterp 'numberp) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
317 (defalias 'gnus-deactivate-mark 'deactivate-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
318 (defalias 'gnus-window-edges 'window-edges) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
319 (defalias 'gnus-key-press-event-p 'numberp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
320 (defalias 'gnus-decode-rfc1522 'ignore)) |
17493 | 321 |
322 ;; We define these group faces here to avoid the display | |
323 ;; update forced when creating new faces. | |
324 | |
325 (defface gnus-group-news-1-face | |
326 '((((class color) | |
327 (background dark)) | |
328 (:foreground "PaleTurquoise" :bold t)) | |
329 (((class color) | |
330 (background light)) | |
331 (:foreground "ForestGreen" :bold t)) | |
332 (t | |
333 ())) | |
334 "Level 1 newsgroup face.") | |
335 | |
336 (defface gnus-group-news-1-empty-face | |
337 '((((class color) | |
338 (background dark)) | |
339 (:foreground "PaleTurquoise")) | |
340 (((class color) | |
341 (background light)) | |
342 (:foreground "ForestGreen")) | |
343 (t | |
344 ())) | |
345 "Level 1 empty newsgroup face.") | |
346 | |
347 (defface gnus-group-news-2-face | |
348 '((((class color) | |
349 (background dark)) | |
350 (:foreground "turquoise" :bold t)) | |
351 (((class color) | |
352 (background light)) | |
353 (:foreground "CadetBlue4" :bold t)) | |
354 (t | |
355 ())) | |
356 "Level 2 newsgroup face.") | |
357 | |
358 (defface gnus-group-news-2-empty-face | |
359 '((((class color) | |
360 (background dark)) | |
361 (:foreground "turquoise")) | |
362 (((class color) | |
363 (background light)) | |
364 (:foreground "CadetBlue4")) | |
365 (t | |
366 ())) | |
367 "Level 2 empty newsgroup face.") | |
368 | |
369 (defface gnus-group-news-3-face | |
370 '((((class color) | |
371 (background dark)) | |
372 (:bold t)) | |
373 (((class color) | |
374 (background light)) | |
375 (:bold t)) | |
376 (t | |
377 ())) | |
378 "Level 3 newsgroup face.") | |
379 | |
380 (defface gnus-group-news-3-empty-face | |
381 '((((class color) | |
382 (background dark)) | |
383 ()) | |
384 (((class color) | |
385 (background light)) | |
386 ()) | |
387 (t | |
388 ())) | |
389 "Level 3 empty newsgroup face.") | |
390 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
391 (defface gnus-group-news-4-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
392 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
393 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
394 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
395 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
396 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
397 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
398 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
399 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
400 "Level 4 newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
401 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
402 (defface gnus-group-news-4-empty-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
403 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
404 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
405 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
406 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
407 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
408 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
409 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
410 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
411 "Level 4 empty newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
412 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
413 (defface gnus-group-news-5-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
414 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
415 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
416 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
417 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
418 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
419 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
420 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
421 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
422 "Level 5 newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
423 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
424 (defface gnus-group-news-5-empty-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
425 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
426 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
427 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
428 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
429 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
430 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
431 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
432 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
433 "Level 5 empty newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
434 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
435 (defface gnus-group-news-6-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
436 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
437 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
438 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
439 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
440 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
441 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
442 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
443 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
444 "Level 6 newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
445 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
446 (defface gnus-group-news-6-empty-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
447 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
448 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
449 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
450 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
451 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
452 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
453 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
454 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
455 "Level 6 empty newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
456 |
17493 | 457 (defface gnus-group-news-low-face |
458 '((((class color) | |
459 (background dark)) | |
460 (:foreground "DarkTurquoise" :bold t)) | |
461 (((class color) | |
462 (background light)) | |
463 (:foreground "DarkGreen" :bold t)) | |
464 (t | |
465 ())) | |
466 "Low level newsgroup face.") | |
467 | |
468 (defface gnus-group-news-low-empty-face | |
469 '((((class color) | |
470 (background dark)) | |
471 (:foreground "DarkTurquoise")) | |
472 (((class color) | |
473 (background light)) | |
474 (:foreground "DarkGreen")) | |
475 (t | |
476 ())) | |
477 "Low level empty newsgroup face.") | |
478 | |
479 (defface gnus-group-mail-1-face | |
480 '((((class color) | |
481 (background dark)) | |
482 (:foreground "aquamarine1" :bold t)) | |
483 (((class color) | |
484 (background light)) | |
485 (:foreground "DeepPink3" :bold t)) | |
486 (t | |
487 (:bold t))) | |
488 "Level 1 mailgroup face.") | |
489 | |
490 (defface gnus-group-mail-1-empty-face | |
491 '((((class color) | |
492 (background dark)) | |
493 (:foreground "aquamarine1")) | |
494 (((class color) | |
495 (background light)) | |
496 (:foreground "DeepPink3")) | |
497 (t | |
498 (:italic t :bold t))) | |
499 "Level 1 empty mailgroup face.") | |
500 | |
501 (defface gnus-group-mail-2-face | |
502 '((((class color) | |
503 (background dark)) | |
504 (:foreground "aquamarine2" :bold t)) | |
505 (((class color) | |
506 (background light)) | |
507 (:foreground "HotPink3" :bold t)) | |
508 (t | |
509 (:bold t))) | |
510 "Level 2 mailgroup face.") | |
511 | |
512 (defface gnus-group-mail-2-empty-face | |
513 '((((class color) | |
514 (background dark)) | |
515 (:foreground "aquamarine2")) | |
516 (((class color) | |
517 (background light)) | |
518 (:foreground "HotPink3")) | |
519 (t | |
520 (:bold t))) | |
521 "Level 2 empty mailgroup face.") | |
522 | |
523 (defface gnus-group-mail-3-face | |
524 '((((class color) | |
525 (background dark)) | |
526 (:foreground "aquamarine3" :bold t)) | |
527 (((class color) | |
528 (background light)) | |
529 (:foreground "magenta4" :bold t)) | |
530 (t | |
531 (:bold t))) | |
532 "Level 3 mailgroup face.") | |
533 | |
534 (defface gnus-group-mail-3-empty-face | |
535 '((((class color) | |
536 (background dark)) | |
537 (:foreground "aquamarine3")) | |
538 (((class color) | |
539 (background light)) | |
540 (:foreground "magenta4")) | |
541 (t | |
542 ())) | |
543 "Level 3 empty mailgroup face.") | |
544 | |
545 (defface gnus-group-mail-low-face | |
546 '((((class color) | |
547 (background dark)) | |
548 (:foreground "aquamarine4" :bold t)) | |
549 (((class color) | |
550 (background light)) | |
551 (:foreground "DeepPink4" :bold t)) | |
552 (t | |
553 (:bold t))) | |
554 "Low level mailgroup face.") | |
555 | |
556 (defface gnus-group-mail-low-empty-face | |
557 '((((class color) | |
558 (background dark)) | |
559 (:foreground "aquamarine4")) | |
560 (((class color) | |
561 (background light)) | |
562 (:foreground "DeepPink4")) | |
563 (t | |
564 (:bold t))) | |
565 "Low level empty mailgroup face.") | |
566 | |
567 ;; Summary mode faces. | |
568 | |
569 (defface gnus-summary-selected-face '((t | |
570 (:underline t))) | |
571 "Face used for selected articles.") | |
572 | |
573 (defface gnus-summary-cancelled-face | |
574 '((((class color)) | |
575 (:foreground "yellow" :background "black"))) | |
576 "Face used for cancelled articles.") | |
577 | |
578 (defface gnus-summary-high-ticked-face | |
579 '((((class color) | |
580 (background dark)) | |
581 (:foreground "pink" :bold t)) | |
582 (((class color) | |
583 (background light)) | |
584 (:foreground "firebrick" :bold t)) | |
585 (t | |
586 (:bold t))) | |
587 "Face used for high interest ticked articles.") | |
588 | |
589 (defface gnus-summary-low-ticked-face | |
590 '((((class color) | |
591 (background dark)) | |
592 (:foreground "pink" :italic t)) | |
593 (((class color) | |
594 (background light)) | |
595 (:foreground "firebrick" :italic t)) | |
596 (t | |
597 (:italic t))) | |
598 "Face used for low interest ticked articles.") | |
599 | |
600 (defface gnus-summary-normal-ticked-face | |
601 '((((class color) | |
602 (background dark)) | |
603 (:foreground "pink")) | |
604 (((class color) | |
605 (background light)) | |
606 (:foreground "firebrick")) | |
607 (t | |
608 ())) | |
609 "Face used for normal interest ticked articles.") | |
610 | |
611 (defface gnus-summary-high-ancient-face | |
612 '((((class color) | |
613 (background dark)) | |
614 (:foreground "SkyBlue" :bold t)) | |
615 (((class color) | |
616 (background light)) | |
617 (:foreground "RoyalBlue" :bold t)) | |
618 (t | |
619 (:bold t))) | |
620 "Face used for high interest ancient articles.") | |
621 | |
622 (defface gnus-summary-low-ancient-face | |
623 '((((class color) | |
624 (background dark)) | |
625 (:foreground "SkyBlue" :italic t)) | |
626 (((class color) | |
627 (background light)) | |
628 (:foreground "RoyalBlue" :italic t)) | |
629 (t | |
630 (:italic t))) | |
631 "Face used for low interest ancient articles.") | |
632 | |
633 (defface gnus-summary-normal-ancient-face | |
634 '((((class color) | |
635 (background dark)) | |
636 (:foreground "SkyBlue")) | |
637 (((class color) | |
638 (background light)) | |
639 (:foreground "RoyalBlue")) | |
640 (t | |
641 ())) | |
642 "Face used for normal interest ancient articles.") | |
643 | |
644 (defface gnus-summary-high-unread-face | |
645 '((t | |
646 (:bold t))) | |
647 "Face used for high interest unread articles.") | |
648 | |
649 (defface gnus-summary-low-unread-face | |
650 '((t | |
651 (:italic t))) | |
652 "Face used for low interest unread articles.") | |
653 | |
654 (defface gnus-summary-normal-unread-face | |
655 '((t | |
656 ())) | |
657 "Face used for normal interest unread articles.") | |
658 | |
659 (defface gnus-summary-high-read-face | |
660 '((((class color) | |
661 (background dark)) | |
662 (:foreground "PaleGreen" | |
663 :bold t)) | |
664 (((class color) | |
665 (background light)) | |
666 (:foreground "DarkGreen" | |
667 :bold t)) | |
668 (t | |
669 (:bold t))) | |
670 "Face used for high interest read articles.") | |
671 | |
672 (defface gnus-summary-low-read-face | |
673 '((((class color) | |
674 (background dark)) | |
675 (:foreground "PaleGreen" | |
676 :italic t)) | |
677 (((class color) | |
678 (background light)) | |
679 (:foreground "DarkGreen" | |
680 :italic t)) | |
681 (t | |
682 (:italic t))) | |
683 "Face used for low interest read articles.") | |
684 | |
685 (defface gnus-summary-normal-read-face | |
686 '((((class color) | |
687 (background dark)) | |
688 (:foreground "PaleGreen")) | |
689 (((class color) | |
690 (background light)) | |
691 (:foreground "DarkGreen")) | |
692 (t | |
693 ())) | |
694 "Face used for normal interest read articles.") | |
695 | |
696 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
697 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
698 ;;; Gnus buffers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
699 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
700 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
701 (defvar gnus-buffers nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
702 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
703 (defun gnus-get-buffer-create (name) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
704 "Do the same as `get-buffer-create', but store the created buffer." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
705 (or (get-buffer name) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
706 (car (push (get-buffer-create name) gnus-buffers)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
707 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
708 (defun gnus-add-buffer () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
709 "Add the current buffer to the list of Gnus buffers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
710 (push (current-buffer) gnus-buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
711 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
712 (defun gnus-buffers () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
713 "Return a list of live Gnus buffers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
714 (while (and gnus-buffers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
715 (not (buffer-name (car gnus-buffers)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
716 (pop gnus-buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
717 (let ((buffers gnus-buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
718 (while (cdr buffers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
719 (if (buffer-name (cadr buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
720 (pop buffers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
721 (setcdr buffers (cddr buffers))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
722 gnus-buffers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
723 |
17493 | 724 ;;; Splash screen. |
725 | |
726 (defvar gnus-group-buffer "*Group*") | |
727 | |
728 (eval-and-compile | |
729 (autoload 'gnus-play-jingle "gnus-audio")) | |
730 | |
731 (defface gnus-splash-face | |
732 '((((class color) | |
733 (background dark)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
734 (:foreground "Brown")) |
17493 | 735 (((class color) |
736 (background light)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
737 (:foreground "Brown")) |
17493 | 738 (t |
739 ())) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
740 "Face of the splash screen.") |
17493 | 741 |
742 (defun gnus-splash () | |
743 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
744 (switch-to-buffer (gnus-get-buffer-create gnus-group-buffer)) |
17493 | 745 (let ((buffer-read-only nil)) |
746 (erase-buffer) | |
747 (unless gnus-inhibit-startup-message | |
748 (gnus-group-startup-message) | |
749 (sit-for 0) | |
750 (when gnus-play-startup-jingle | |
751 (gnus-play-jingle)))))) | |
752 | |
753 (defun gnus-indent-rigidly (start end arg) | |
754 "Indent rigidly using only spaces and no tabs." | |
755 (save-excursion | |
756 (save-restriction | |
757 (narrow-to-region start end) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
758 (let ((tab-width 8)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
759 (indent-rigidly start end arg) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
760 ;; We translate tabs into spaces -- not everybody uses |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
761 ;; an 8-character tab. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
762 (goto-char (point-min)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
763 (while (search-forward "\t" nil t) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
764 (replace-match " " t t)))))) |
17493 | 765 |
766 (defvar gnus-simple-splash nil) | |
767 | |
768 (defun gnus-group-startup-message (&optional x y) | |
769 "Insert startup message in current buffer." | |
770 ;; Insert the message. | |
771 (erase-buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
772 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
773 ((and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
774 (fboundp 'find-image) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
775 (display-graphic-p) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
776 (let ((image (find-image |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
777 `((:type xpm :file "gnus.xpm") |
32407 | 778 (:type pbm :file "gnus.pbm" |
779 ;; Account for the pbm's blackground. | |
32406
f95da738b2f4
(gnus-group-startup-message): Check for PBM image.
Dave Love <fx@gnu.org>
parents:
32019
diff
changeset
|
780 :background ,(face-foreground 'gnus-splash-face) |
f95da738b2f4
(gnus-group-startup-message): Check for PBM image.
Dave Love <fx@gnu.org>
parents:
32019
diff
changeset
|
781 :foreground ,(face-background 'default)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
782 (:type xbm :file "gnus.xbm" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
783 ;; Account for the xbm's blackground. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
784 :background ,(face-foreground 'gnus-splash-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
785 :foreground ,(face-background 'default)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
786 (when image |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
787 (let ((size (image-size image))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
788 (insert-char ?\n (max 0 (round (- (window-height) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
789 (or y (cdr size)) 1) 2))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
790 (insert-char ?\ (max 0 (round (- (window-width) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
791 (or x (car size))) 2))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
792 (insert-image image)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
793 (setq gnus-simple-splash nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
794 t)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
795 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
796 (insert |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
797 (format " %s |
17493 | 798 _ ___ _ _ |
799 _ ___ __ ___ __ _ ___ | |
800 __ _ ___ __ ___ | |
801 _ ___ _ | |
802 _ _ __ _ | |
803 ___ __ _ | |
804 __ _ | |
805 _ _ _ | |
806 _ _ _ | |
807 _ _ _ | |
808 __ ___ | |
809 _ _ _ _ | |
810 _ _ | |
811 _ _ | |
812 _ _ | |
813 _ | |
814 __ | |
815 | |
816 " | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
817 "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
818 ;; And then hack it. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
819 (gnus-indent-rigidly (point-min) (point-max) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
820 (/ (max (- (window-width) (or x 46)) 0) 2)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
821 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
822 (forward-line 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
823 (let* ((pheight (count-lines (point-min) (point-max))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
824 (wheight (window-height)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
825 (rest (- wheight pheight))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
826 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
827 ;; Fontify some. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
828 (put-text-property (point-min) (point-max) 'face 'gnus-splash-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
829 (setq gnus-simple-splash t))) |
17493 | 830 (goto-char (point-min)) |
831 (setq mode-line-buffer-identification (concat " " gnus-version)) | |
832 (set-buffer-modified-p t)) | |
833 | |
834 (eval-when (load) | |
835 (let ((command (format "%s" this-command))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
836 (if (and (string-match "gnus" command) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
837 (not (string-match "gnus-other-frame" command))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
838 (gnus-splash) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
839 (gnus-get-buffer-create gnus-group-buffer)))) |
17493 | 840 |
841 ;;; Do the rest. | |
842 | |
843 (require 'custom) | |
844 (require 'gnus-util) | |
845 (require 'nnheader) | |
846 | |
847 (defcustom gnus-home-directory "~/" | |
848 "Directory variable that specifies the \"home\" directory. | |
849 All other Gnus path variables are initialized from this variable." | |
850 :group 'gnus-files | |
851 :type 'directory) | |
852 | |
853 (defcustom gnus-directory (or (getenv "SAVEDIR") | |
854 (nnheader-concat gnus-home-directory "News/")) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
855 "*Directory variable from which all other Gnus file variables are derived. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
856 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
857 Note that Gnus is mostly loaded when the `.gnus.el' file is read. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
858 This means that other directory variables that are initialized from |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
859 this variable won't be set properly if you set this variable in `.gnus.el'. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
860 Set this variable in `.emacs' instead." |
17493 | 861 :group 'gnus-files |
862 :type 'directory) | |
863 | |
864 (defcustom gnus-default-directory nil | |
865 "*Default directory for all Gnus buffers." | |
866 :group 'gnus-files | |
867 :type '(choice (const :tag "current" nil) | |
868 directory)) | |
869 | |
870 ;; Site dependent variables. These variables should be defined in | |
871 ;; paths.el. | |
872 | |
873 (defvar gnus-default-nntp-server nil | |
874 "Specify a default NNTP server. | |
875 This variable should be defined in paths.el, and should never be set | |
876 by the user. | |
877 If you want to change servers, you should use `gnus-select-method'. | |
878 See the documentation to that variable.") | |
879 | |
880 ;; Don't touch this variable. | |
881 (defvar gnus-nntp-service "nntp" | |
882 "NNTP service name (\"nntp\" or 119). | |
883 This is an obsolete variable, which is scarcely used. If you use an | |
884 nntp server for your newsgroup and want to change the port number | |
885 used to 899, you would say something along these lines: | |
886 | |
887 (setq gnus-select-method '(nntp \"my.nntp.server\" (nntp-port-number 899)))") | |
888 | |
889 (defcustom gnus-nntpserver-file "/etc/nntpserver" | |
890 "A file with only the name of the nntp server in it." | |
891 :group 'gnus-files | |
892 :group 'gnus-server | |
893 :type 'file) | |
894 | |
895 ;; This function is used to check both the environment variable | |
896 ;; NNTPSERVER and the /etc/nntpserver file to see whether one can find | |
897 ;; an nntp server name default. | |
898 (defun gnus-getenv-nntpserver () | |
899 (or (getenv "NNTPSERVER") | |
900 (and (file-readable-p gnus-nntpserver-file) | |
901 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
902 (set-buffer (gnus-get-buffer-create " *gnus nntp*")) |
17493 | 903 (insert-file-contents gnus-nntpserver-file) |
904 (let ((name (buffer-string))) | |
905 (prog1 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
906 (if (string-match "\\'[ \t\n]*$" name) |
17493 | 907 nil |
908 name) | |
909 (kill-buffer (current-buffer)))))))) | |
910 | |
911 (defcustom gnus-select-method | |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
912 (condition-case nil |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
913 (nconc |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
914 (list 'nntp (or (condition-case nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
915 (gnus-getenv-nntpserver) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
916 (error nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
917 (when (and gnus-default-nntp-server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
918 (not (string= gnus-default-nntp-server ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
919 gnus-default-nntp-server) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
920 "news")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
921 (if (or (null gnus-nntp-service) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
922 (equal gnus-nntp-service "nntp")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
923 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
924 (list gnus-nntp-service))) |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
925 (error nil)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
926 "Default method for selecting a newsgroup. |
17493 | 927 This variable should be a list, where the first element is how the |
928 news is to be fetched, the second is the address. | |
929 | |
930 For instance, if you want to get your news via NNTP from | |
931 \"flab.flab.edu\", you could say: | |
932 | |
933 \(setq gnus-select-method '(nntp \"flab.flab.edu\")) | |
934 | |
935 If you want to use your local spool, say: | |
936 | |
937 \(setq gnus-select-method (list 'nnspool (system-name))) | |
938 | |
939 If you use this variable, you must set `gnus-nntp-server' to nil. | |
940 | |
941 There is a lot more to know about select methods and virtual servers - | |
942 see the manual for details." | |
943 :group 'gnus-server | |
944 :type 'gnus-select-method) | |
945 | |
946 (defcustom gnus-message-archive-method | |
947 `(nnfolder | |
948 "archive" | |
949 (nnfolder-directory ,(nnheader-concat message-directory "archive")) | |
950 (nnfolder-active-file | |
951 ,(nnheader-concat message-directory "archive/active")) | |
952 (nnfolder-get-new-mail nil) | |
953 (nnfolder-inhibit-expiry t)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
954 "*Method used for archiving messages you've sent. |
17493 | 955 This should be a mail method. |
956 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
957 It's probably not very effective to change this variable once you've |
17493 | 958 run Gnus once. After doing that, you must edit this server from the |
959 server buffer." | |
960 :group 'gnus-server | |
961 :group 'gnus-message | |
962 :type 'gnus-select-method) | |
963 | |
964 (defcustom gnus-message-archive-group nil | |
965 "*Name of the group in which to save the messages you've written. | |
966 This can either be a string; a list of strings; or an alist | |
967 of regexps/functions/forms to be evaluated to return a string (or a list | |
968 of strings). The functions are called with the name of the current | |
969 group (or nil) as a parameter. | |
970 | |
971 If you want to save your mail in one group and the news articles you | |
972 write in another group, you could say something like: | |
973 | |
974 \(setq gnus-message-archive-group | |
975 '((if (message-news-p) | |
976 \"misc-news\" | |
977 \"misc-mail\"))) | |
978 | |
979 Normally the group names returned by this variable should be | |
980 unprefixed -- which implicitly means \"store on the archive server\". | |
981 However, you may wish to store the message on some other server. In | |
982 that case, just return a fully prefixed name of the group -- | |
983 \"nnml+private:mail.misc\", for instance." | |
984 :group 'gnus-message | |
985 :type '(choice (const :tag "none" nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
986 function |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
987 sexp |
17493 | 988 string)) |
989 | |
990 (defcustom gnus-secondary-servers nil | |
991 "List of NNTP servers that the user can choose between interactively. | |
992 To make Gnus query you for a server, you have to give `gnus' a | |
993 non-numeric prefix - `C-u M-x gnus', in short." | |
994 :group 'gnus-server | |
995 :type '(repeat string)) | |
996 | |
997 (defcustom gnus-nntp-server nil | |
998 "*The name of the host running the NNTP server. | |
999 This variable is semi-obsolete. Use the `gnus-select-method' | |
1000 variable instead." | |
1001 :group 'gnus-server | |
1002 :type '(choice (const :tag "disable" nil) | |
1003 string)) | |
1004 | |
1005 (defcustom gnus-secondary-select-methods nil | |
1006 "A list of secondary methods that will be used for reading news. | |
1007 This is a list where each element is a complete select method (see | |
1008 `gnus-select-method'). | |
1009 | |
1010 If, for instance, you want to read your mail with the nnml backend, | |
1011 you could set this variable: | |
1012 | |
1013 \(setq gnus-secondary-select-methods '((nnml \"\")))" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1014 :group 'gnus-server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1015 :type '(repeat gnus-select-method)) |
17493 | 1016 |
1017 (defvar gnus-backup-default-subscribed-newsgroups | |
1018 '("news.announce.newusers" "news.groups.questions" "gnu.emacs.gnus") | |
1019 "Default default new newsgroups the first time Gnus is run. | |
1020 Should be set in paths.el, and shouldn't be touched by the user.") | |
1021 | |
1022 (defcustom gnus-local-domain nil | |
1023 "Local domain name without a host name. | |
1024 The DOMAINNAME environment variable is used instead if it is defined. | |
1025 If the `system-name' function returns the full Internet name, there is | |
1026 no need to set this variable." | |
1027 :group 'gnus-message | |
1028 :type '(choice (const :tag "default" nil) | |
1029 string)) | |
1030 | |
1031 (defvar gnus-local-organization nil | |
1032 "String with a description of what organization (if any) the user belongs to. | |
1033 Obsolete variable; use `message-user-organization' instead.") | |
1034 | |
1035 ;; Customization variables | |
1036 | |
1037 (defcustom gnus-refer-article-method nil | |
1038 "Preferred method for fetching an article by Message-ID. | |
1039 If you are reading news from the local spool (with nnspool), fetching | |
1040 articles by Message-ID is painfully slow. By setting this method to an | |
1041 nntp method, you might get acceptable results. | |
1042 | |
1043 The value of this variable must be a valid select method as discussed | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1044 in the documentation of `gnus-select-method'. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1045 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1046 It can also be a list of select methods, as well as the special symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1047 `current', which means to use the current select method. If it is a |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1048 list, Gnus will try all the methods in the list until it finds a match." |
17493 | 1049 :group 'gnus-server |
1050 :type '(choice (const :tag "default" nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1051 (const :tag "DejaNews" (nnweb "refer" (nnweb-type dejanews))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1052 gnus-select-method |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1053 (repeat :menu-tag "Try multiple" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1054 :tag "Multiple" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1055 :value (current (nnweb "refer" (nnweb-type dejanews))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1056 (choice :tag "Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1057 (const current) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1058 (const :tag "DejaNews" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1059 (nnweb "refer" (nnweb-type dejanews))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1060 gnus-select-method)))) |
17493 | 1061 |
1062 (defcustom gnus-group-faq-directory | |
1063 '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/" | |
1064 "/ftp@sunsite.auc.dk:/pub/usenet/" | |
1065 "/ftp@sunsite.doc.ic.ac.uk:/pub/usenet/news-faqs/" | |
1066 "/ftp@src.doc.ic.ac.uk:/usenet/news-FAQS/" | |
1067 "/ftp@ftp.seas.gwu.edu:/pub/rtfm/" | |
1068 "/ftp@rtfm.mit.edu:/pub/usenet/" | |
1069 "/ftp@ftp.uni-paderborn.de:/pub/FAQ/" | |
1070 "/ftp@ftp.sunet.se:/pub/usenet/" | |
1071 "/ftp@nctuccca.edu.tw:/USENET/FAQ/" | |
1072 "/ftp@hwarang.postech.ac.kr:/pub/usenet/" | |
1073 "/ftp@ftp.hk.super.net:/mirror/faqs/") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1074 "*Directory where the group FAQs are stored. |
17493 | 1075 This will most commonly be on a remote machine, and the file will be |
1076 fetched by ange-ftp. | |
1077 | |
1078 This variable can also be a list of directories. In that case, the | |
1079 first element in the list will be used by default. The others can | |
1080 be used when being prompted for a site. | |
1081 | |
1082 Note that Gnus uses an aol machine as the default directory. If this | |
1083 feels fundamentally unclean, just think of it as a way to finally get | |
1084 something of value back from them. | |
1085 | |
1086 If the default site is too slow, try one of these: | |
1087 | |
1088 North America: mirrors.aol.com /pub/rtfm/usenet | |
1089 ftp.seas.gwu.edu /pub/rtfm | |
1090 rtfm.mit.edu /pub/usenet | |
1091 Europe: ftp.uni-paderborn.de /pub/FAQ | |
1092 src.doc.ic.ac.uk /usenet/news-FAQS | |
1093 ftp.sunet.se /pub/usenet | |
1094 sunsite.auc.dk /pub/usenet | |
1095 Asia: nctuccca.edu.tw /USENET/FAQ | |
1096 hwarang.postech.ac.kr /pub/usenet | |
1097 ftp.hk.super.net /mirror/faqs" | |
1098 :group 'gnus-group-various | |
1099 :type '(choice directory | |
1100 (repeat directory))) | |
1101 | |
1102 (defcustom gnus-use-cross-reference t | |
1103 "*Non-nil means that cross referenced articles will be marked as read. | |
1104 If nil, ignore cross references. If t, mark articles as read in | |
1105 subscribed newsgroups. If neither t nor nil, mark as read in all | |
1106 newsgroups." | |
1107 :group 'gnus-server | |
1108 :type '(choice (const :tag "off" nil) | |
1109 (const :tag "subscribed" t) | |
1110 (sexp :format "all" | |
1111 :value always))) | |
1112 | |
1113 (defcustom gnus-process-mark ?# | |
1114 "*Process mark." | |
1115 :group 'gnus-group-visual | |
1116 :group 'gnus-summary-marks | |
1117 :type 'character) | |
1118 | |
1119 (defcustom gnus-large-newsgroup 200 | |
1120 "*The number of articles which indicates a large newsgroup. | |
1121 If the number of articles in a newsgroup is greater than this value, | |
1122 confirmation is required for selecting the newsgroup." | |
1123 :group 'gnus-group-select | |
1124 :type 'integer) | |
1125 | |
1126 (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix))) | |
1127 "*Non-nil means that the default name of a file to save articles in is the group name. | |
1128 If it's nil, the directory form of the group name is used instead. | |
1129 | |
1130 If this variable is a list, and the list contains the element | |
1131 `not-score', long file names will not be used for score files; if it | |
1132 contains the element `not-save', long file names will not be used for | |
1133 saving; and if it contains the element `not-kill', long file names | |
1134 will not be used for kill files. | |
1135 | |
1136 Note that the default for this variable varies according to what system | |
1137 type you're using. On `usg-unix-v' and `xenix' this variable defaults | |
1138 to nil while on all other systems it defaults to t." | |
1139 :group 'gnus-start | |
1140 :type 'boolean) | |
1141 | |
1142 (defcustom gnus-kill-files-directory gnus-directory | |
1143 "*Name of the directory where kill files will be stored (default \"~/News\")." | |
1144 :group 'gnus-score-files | |
1145 :group 'gnus-score-kill | |
1146 :type 'directory) | |
1147 | |
1148 (defcustom gnus-save-score nil | |
1149 "*If non-nil, save group scoring info." | |
1150 :group 'gnus-score-various | |
1151 :group 'gnus-start | |
1152 :type 'boolean) | |
1153 | |
1154 (defcustom gnus-use-undo t | |
1155 "*If non-nil, allow undoing in Gnus group mode buffers." | |
1156 :group 'gnus-meta | |
1157 :type 'boolean) | |
1158 | |
1159 (defcustom gnus-use-adaptive-scoring nil | |
1160 "*If non-nil, use some adaptive scoring scheme. | |
1161 If a list, then the values `word' and `line' are meaningful. The | |
1162 former will perform adaption on individual words in the subject | |
1163 header while `line' will perform adaption on several headers." | |
1164 :group 'gnus-meta | |
1165 :group 'gnus-score-adapt | |
1166 :type '(set (const word) (const line))) | |
1167 | |
1168 (defcustom gnus-use-cache 'passive | |
1169 "*If nil, Gnus will ignore the article cache. | |
1170 If `passive', it will allow entering (and reading) articles | |
1171 explicitly entered into the cache. If anything else, use the | |
1172 cache to the full extent of the law." | |
1173 :group 'gnus-meta | |
1174 :group 'gnus-cache | |
1175 :type '(choice (const :tag "off" nil) | |
1176 (const :tag "passive" passive) | |
1177 (const :tag "active" t))) | |
1178 | |
1179 (defcustom gnus-use-trees nil | |
1180 "*If non-nil, display a thread tree buffer." | |
1181 :group 'gnus-meta | |
1182 :type 'boolean) | |
1183 | |
1184 (defcustom gnus-use-grouplens nil | |
1185 "*If non-nil, use GroupLens ratings." | |
1186 :group 'gnus-meta | |
1187 :type 'boolean) | |
1188 | |
1189 (defcustom gnus-keep-backlog nil | |
1190 "*If non-nil, Gnus will keep read articles for later re-retrieval. | |
1191 If it is a number N, then Gnus will only keep the last N articles | |
1192 read. If it is neither nil nor a number, Gnus will keep all read | |
1193 articles. This is not a good idea." | |
1194 :group 'gnus-meta | |
1195 :type '(choice (const :tag "off" nil) | |
1196 integer | |
1197 (sexp :format "all" | |
1198 :value t))) | |
1199 | |
1200 (defcustom gnus-use-nocem nil | |
1201 "*If non-nil, Gnus will read NoCeM cancel messages." | |
1202 :group 'gnus-meta | |
1203 :type 'boolean) | |
1204 | |
1205 (defcustom gnus-suppress-duplicates nil | |
1206 "*If non-nil, Gnus will mark duplicate copies of the same article as read." | |
1207 :group 'gnus-meta | |
1208 :type 'boolean) | |
1209 | |
1210 (defcustom gnus-use-scoring t | |
1211 "*If non-nil, enable scoring." | |
1212 :group 'gnus-meta | |
1213 :type 'boolean) | |
1214 | |
1215 (defcustom gnus-use-picons nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1216 "*If non-nil, display picons in a frame of their own." |
17493 | 1217 :group 'gnus-meta |
1218 :type 'boolean) | |
1219 | |
1220 (defcustom gnus-summary-prepare-exit-hook | |
1221 '(gnus-summary-expire-articles) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1222 "*A hook called when preparing to exit from the summary buffer. |
17493 | 1223 It calls `gnus-summary-expire-articles' by default." |
1224 :group 'gnus-summary-exit | |
1225 :type 'hook) | |
1226 | |
1227 (defcustom gnus-novice-user t | |
1228 "*Non-nil means that you are a usenet novice. | |
1229 If non-nil, verbose messages may be displayed and confirmations may be | |
1230 required." | |
1231 :group 'gnus-meta | |
1232 :type 'boolean) | |
1233 | |
1234 (defcustom gnus-expert-user nil | |
1235 "*Non-nil means that you will never be asked for confirmation about anything. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1236 That doesn't mean *anything* anything; particularly destructive |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1237 commands will still require prompting." |
17493 | 1238 :group 'gnus-meta |
1239 :type 'boolean) | |
1240 | |
1241 (defcustom gnus-interactive-catchup t | |
1242 "*If non-nil, require your confirmation when catching up a group." | |
1243 :group 'gnus-group-select | |
1244 :type 'boolean) | |
1245 | |
1246 (defcustom gnus-interactive-exit t | |
1247 "*If non-nil, require your confirmation when exiting Gnus." | |
1248 :group 'gnus-exit | |
1249 :type 'boolean) | |
1250 | |
1251 (defcustom gnus-extract-address-components 'gnus-extract-address-components | |
1252 "*Function for extracting address components from a From header. | |
1253 Two pre-defined function exist: `gnus-extract-address-components', | |
1254 which is the default, quite fast, and too simplistic solution, and | |
1255 `mail-extract-address-components', which works much better, but is | |
1256 slower." | |
1257 :group 'gnus-summary-format | |
1258 :type '(radio (function-item gnus-extract-address-components) | |
1259 (function-item mail-extract-address-components) | |
1260 (function :tag "Other"))) | |
1261 | |
1262 (defcustom gnus-carpal nil | |
1263 "*If non-nil, display clickable icons." | |
1264 :group 'gnus-meta | |
1265 :type 'boolean) | |
1266 | |
1267 (defcustom gnus-shell-command-separator ";" | |
1268 "String used to separate to shell commands." | |
1269 :group 'gnus-files | |
1270 :type 'string) | |
1271 | |
1272 (defcustom gnus-valid-select-methods | |
1273 '(("nntp" post address prompt-address physical-address) | |
1274 ("nnspool" post address) | |
1275 ("nnvirtual" post-mail virtual prompt-address) | |
1276 ("nnmbox" mail respool address) | |
1277 ("nnml" mail respool address) | |
1278 ("nnmh" mail respool address) | |
1279 ("nndir" post-mail prompt-address physical-address) | |
1280 ("nneething" none address prompt-address physical-address) | |
1281 ("nndoc" none address prompt-address) | |
1282 ("nnbabyl" mail address respool) | |
1283 ("nnkiboze" post virtual) | |
1284 ("nnsoup" post-mail address) | |
1285 ("nndraft" post-mail) | |
1286 ("nnfolder" mail respool address) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1287 ("nngateway" post-mail address prompt-address physical-address) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1288 ("nnweb" none) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1289 ("nnslashdot" post) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1290 ("nnultimate" none) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1291 ("nnwarchive" none) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1292 ("nnlistserv" none) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1293 ("nnagent" post-mail) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1294 ("nnimap" post-mail address prompt-address physical-address)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1295 "*An alist of valid select methods. |
17493 | 1296 The first element of each list lists should be a string with the name |
1297 of the select method. The other elements may be the category of | |
1298 this method (i. e., `post', `mail', `none' or whatever) or other | |
1299 properties that this method has (like being respoolable). | |
1300 If you implement a new select method, all you should have to change is | |
1301 this variable. I think." | |
1302 :group 'gnus-server | |
1303 :type '(repeat (group (string :tag "Name") | |
1304 (radio-button-choice (const :format "%v " post) | |
1305 (const :format "%v " mail) | |
1306 (const :format "%v " none) | |
1307 (const post-mail)) | |
1308 (checklist :inline t | |
1309 (const :format "%v " address) | |
1310 (const :format "%v " prompt-address) | |
23364
aa359fe9fe1e
(gnus-valid-select-methods): Fix type.
Karl Heuer <kwzh@gnu.org>
parents:
23317
diff
changeset
|
1311 (const :format "%v " physical-address) |
17493 | 1312 (const :format "%v " virtual) |
1313 (const respool))))) | |
1314 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1315 (defun gnus-redefine-select-method-widget () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1316 "Recomputes the select-method widget based on the value of |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1317 `gnus-valid-select-methods'." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1318 (define-widget 'gnus-select-method 'list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1319 "Widget for entering a select method." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1320 :value '(nntp "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1321 :tag "Select Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1322 :args `((choice :tag "Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1323 ,@(mapcar (lambda (entry) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1324 (list 'const :format "%v\n" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1325 (intern (car entry)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1326 gnus-valid-select-methods) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1327 (symbol :tag "other")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1328 (string :tag "Address") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1329 (repeat :tag "Options" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1330 :inline t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1331 (list :format "%v" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1332 variable |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1333 (sexp :tag "Value")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1334 )) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1335 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1336 (gnus-redefine-select-method-widget) |
17493 | 1337 |
1338 (defcustom gnus-updated-mode-lines '(group article summary tree) | |
1339 "List of buffers that should update their mode lines. | |
1340 The list may contain the symbols `group', `article', `tree' and | |
1341 `summary'. If the corresponding symbol is present, Gnus will keep | |
1342 that mode line updated with information that may be pertinent. | |
1343 If this variable is nil, screen refresh may be quicker." | |
1344 :group 'gnus-various | |
1345 :type '(set (const group) | |
1346 (const article) | |
1347 (const summary) | |
1348 (const tree))) | |
1349 | |
1350 ;; Added by Keinonen Kari <kk85613@cs.tut.fi>. | |
1351 (defcustom gnus-mode-non-string-length nil | |
1352 "*Max length of mode-line non-string contents. | |
1353 If this is nil, Gnus will take space as is needed, leaving the rest | |
1354 of the modeline intact. Note that the default of nil is unlikely | |
1355 to be desirable; see the manual for further details." | |
1356 :group 'gnus-various | |
1357 :type '(choice (const nil) | |
1358 integer)) | |
1359 | |
1360 (defcustom gnus-auto-expirable-newsgroups nil | |
1361 "*Groups in which to automatically mark read articles as expirable. | |
1362 If non-nil, this should be a regexp that should match all groups in | |
1363 which to perform auto-expiry. This only makes sense for mail groups." | |
1364 :group 'nnmail-expire | |
1365 :type '(choice (const nil) | |
1366 regexp)) | |
1367 | |
1368 (defcustom gnus-total-expirable-newsgroups nil | |
1369 "*Groups in which to perform expiry of all read articles. | |
1370 Use with extreme caution. All groups that match this regexp will be | |
1371 expiring - which means that all read articles will be deleted after | |
1372 \(say) one week. (This only goes for mail groups and the like, of | |
1373 course.)" | |
1374 :group 'nnmail-expire | |
1375 :type '(choice (const nil) | |
1376 regexp)) | |
1377 | |
1378 (defcustom gnus-group-uncollapsed-levels 1 | |
1379 "Number of group name elements to leave alone when making a short group name." | |
1380 :group 'gnus-group-visual | |
1381 :type 'integer) | |
1382 | |
1383 (defcustom gnus-group-use-permanent-levels nil | |
1384 "*If non-nil, once you set a level, Gnus will use this level." | |
1385 :group 'gnus-group-levels | |
1386 :type 'boolean) | |
1387 | |
1388 ;; Hooks. | |
1389 | |
1390 (defcustom gnus-load-hook nil | |
1391 "A hook run while Gnus is loaded." | |
1392 :group 'gnus-start | |
1393 :type 'hook) | |
1394 | |
1395 (defcustom gnus-apply-kill-hook '(gnus-apply-kill-file) | |
1396 "A hook called to apply kill files to a group. | |
1397 This hook is intended to apply a kill file to the selected newsgroup. | |
1398 The function `gnus-apply-kill-file' is called by default. | |
1399 | |
1400 Since a general kill file is too heavy to use only for a few | |
1401 newsgroups, I recommend you to use a lighter hook function. For | |
1402 example, if you'd like to apply a kill file to articles which contains | |
1403 a string `rmgroup' in subject in newsgroup `control', you can use the | |
1404 following hook: | |
1405 | |
1406 (setq gnus-apply-kill-hook | |
1407 (list | |
1408 (lambda () | |
1409 (cond ((string-match \"control\" gnus-newsgroup-name) | |
1410 (gnus-kill \"Subject\" \"rmgroup\") | |
1411 (gnus-expunge \"X\"))))))" | |
1412 :group 'gnus-score-kill | |
1413 :options '(gnus-apply-kill-file) | |
1414 :type 'hook) | |
1415 | |
1416 (defcustom gnus-group-change-level-function nil | |
1417 "Function run when a group level is changed. | |
1418 It is called with three parameters -- GROUP, LEVEL and OLDLEVEL." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1419 :group 'gnus-group-levels |
17493 | 1420 :type 'function) |
1421 | |
1422 ;;; Face thingies. | |
1423 | |
1424 (defcustom gnus-visual | |
1425 '(summary-highlight group-highlight article-highlight | |
1426 mouse-face | |
1427 summary-menu group-menu article-menu | |
1428 tree-highlight menu highlight | |
1429 browse-menu server-menu | |
1430 page-marker tree-menu binary-menu pick-menu | |
1431 grouplens-menu) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1432 "*Enable visual features. |
17493 | 1433 If `visual' is disabled, there will be no menus and few faces. Most of |
1434 the visual customization options below will be ignored. Gnus will use | |
1435 less space and be faster as a result. | |
1436 | |
1437 This variable can also be a list of visual elements to switch on. For | |
1438 instance, to switch off all visual things except menus, you can say: | |
1439 | |
1440 (setq gnus-visual '(menu)) | |
1441 | |
1442 Valid elements include `summary-highlight', `group-highlight', | |
1443 `article-highlight', `mouse-face', `summary-menu', `group-menu', | |
1444 `article-menu', `tree-highlight', `menu', `highlight', `browse-menu', | |
1445 `server-menu', `page-marker', `tree-menu', `binary-menu', `pick-menu', | |
1446 and `grouplens-menu'." | |
1447 :group 'gnus-meta | |
1448 :group 'gnus-visual | |
1449 :type '(set (const summary-highlight) | |
1450 (const group-highlight) | |
1451 (const article-highlight) | |
1452 (const mouse-face) | |
1453 (const summary-menu) | |
1454 (const group-menu) | |
1455 (const article-menu) | |
1456 (const tree-highlight) | |
1457 (const menu) | |
1458 (const highlight) | |
1459 (const browse-menu) | |
1460 (const server-menu) | |
1461 (const page-marker) | |
1462 (const tree-menu) | |
1463 (const binary-menu) | |
1464 (const pick-menu) | |
1465 (const grouplens-menu))) | |
1466 | |
1467 (defcustom gnus-mouse-face | |
1468 (condition-case () | |
1469 (if (gnus-visual-p 'mouse-face 'highlight) | |
1470 (if (boundp 'gnus-mouse-face) | |
1471 (or gnus-mouse-face 'highlight) | |
1472 'highlight) | |
1473 'default) | |
1474 (error 'highlight)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1475 "*Face used for group or summary buffer mouse highlighting. |
17493 | 1476 The line beneath the mouse pointer will be highlighted with this |
1477 face." | |
1478 :group 'gnus-visual | |
1479 :type 'face) | |
1480 | |
1481 (defcustom gnus-article-save-directory gnus-directory | |
1482 "*Name of the directory articles will be saved in (default \"~/News\")." | |
1483 :group 'gnus-article-saving | |
1484 :type 'directory) | |
1485 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1486 (defvar gnus-plugged t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1487 "Whether Gnus is plugged or not.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1488 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1489 (defcustom gnus-default-charset 'iso-8859-1 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1490 "Default charset assumed to be used when viewing non-ASCII characters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1491 This variable is overridden on a group-to-group basis by the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1492 gnus-group-charset-alist variable and is only used on groups not |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1493 covered by that variable." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1494 :type 'symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1495 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1496 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1497 (defcustom gnus-default-posting-charset nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1498 "Default charset assumed to be used when posting non-ASCII characters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1499 This variable is overridden on a group-to-group basis by the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1500 gnus-group-posting-charset-alist variable and is only used on groups not |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1501 covered by that variable. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1502 If nil, no default charset is assumed when posting." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1503 :type 'symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1504 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1505 |
17493 | 1506 |
1507 ;;; Internal variables | |
1508 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1509 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information") |
17493 | 1510 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter) |
1511 (defvar gnus-original-article-buffer " *Original Article*") | |
1512 (defvar gnus-newsgroup-name nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1513 (defvar gnus-ephemeral-servers nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1514 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1515 (defvar gnus-agent nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1516 "Whether we want to use the Gnus agent or not.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1517 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1518 (defvar gnus-command-method nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1519 "Dynamically bound variable that says what the current backend is.") |
17493 | 1520 |
1521 (defvar gnus-current-select-method nil | |
1522 "The current method for selecting a newsgroup.") | |
1523 | |
1524 (defvar gnus-tree-buffer "*Tree*" | |
1525 "Buffer where Gnus thread trees are displayed.") | |
1526 | |
1527 ;; Dummy variable. | |
1528 (defvar gnus-use-generic-from nil) | |
1529 | |
1530 ;; Variable holding the user answers to all method prompts. | |
1531 (defvar gnus-method-history nil) | |
1532 | |
1533 ;; Variable holding the user answers to all mail method prompts. | |
1534 (defvar gnus-mail-method-history nil) | |
1535 | |
1536 ;; Variable holding the user answers to all group prompts. | |
1537 (defvar gnus-group-history nil) | |
1538 | |
1539 (defvar gnus-server-alist nil | |
1540 "List of available servers.") | |
1541 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1542 (defcustom gnus-cache-directory |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1543 (nnheader-concat gnus-directory "cache/") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1544 "*The directory where cached articles will be stored." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1545 :group 'gnus-cache |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1546 :type 'directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1547 |
17493 | 1548 (defvar gnus-predefined-server-alist |
1549 `(("cache" | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1550 nnspool "cache" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1551 (nnspool-spool-directory ,gnus-cache-directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1552 (nnspool-nov-directory ,gnus-cache-directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1553 (nnspool-active-file |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1554 ,(nnheader-concat gnus-cache-directory "active")))) |
17493 | 1555 "List of predefined (convenience) servers.") |
1556 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1557 (defvar gnus-topic-indentation "");; Obsolete variable. |
17493 | 1558 |
1559 (defconst gnus-article-mark-lists | |
1560 '((marked . tick) (replied . reply) | |
1561 (expirable . expire) (killed . killed) | |
1562 (bookmarks . bookmark) (dormant . dormant) | |
1563 (scored . score) (saved . save) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1564 (cached . cache) (downloadable . download) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1565 (unsendable . unsend))) |
17493 | 1566 |
1567 (defvar gnus-headers-retrieved-by nil) | |
1568 (defvar gnus-article-reply nil) | |
1569 (defvar gnus-override-method nil) | |
1570 (defvar gnus-article-check-size nil) | |
1571 (defvar gnus-opened-servers nil) | |
1572 | |
1573 (defvar gnus-current-kill-article nil) | |
1574 | |
1575 (defvar gnus-have-read-active-file nil) | |
1576 | |
1577 (defconst gnus-maintainer | |
1578 "bugs@gnus.org (The Gnus Bugfixing Girls + Boys)" | |
1579 "The mail address of the Gnus maintainers.") | |
1580 | |
1581 (defvar gnus-info-nodes | |
1582 '((gnus-group-mode "(gnus)The Group Buffer") | |
1583 (gnus-summary-mode "(gnus)The Summary Buffer") | |
1584 (gnus-article-mode "(gnus)The Article Buffer") | |
1585 (gnus-server-mode "(gnus)The Server Buffer") | |
1586 (gnus-browse-mode "(gnus)Browse Foreign Server") | |
1587 (gnus-tree-mode "(gnus)Tree Display")) | |
1588 "Alist of major modes and related Info nodes.") | |
1589 | |
1590 (defvar gnus-group-buffer "*Group*") | |
1591 (defvar gnus-summary-buffer "*Summary*") | |
1592 (defvar gnus-article-buffer "*Article*") | |
1593 (defvar gnus-server-buffer "*Server*") | |
1594 | |
1595 (defvar gnus-slave nil | |
1596 "Whether this Gnus is a slave or not.") | |
1597 | |
1598 (defvar gnus-batch-mode nil | |
1599 "Whether this Gnus is running in batch mode or not.") | |
1600 | |
1601 (defvar gnus-variable-list | |
1602 '(gnus-newsrc-options gnus-newsrc-options-n | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1603 gnus-newsrc-last-checked-date |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1604 gnus-newsrc-alist gnus-server-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1605 gnus-killed-list gnus-zombie-list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1606 gnus-topic-topology gnus-topic-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1607 gnus-format-specs) |
17493 | 1608 "Gnus variables saved in the quick startup file.") |
1609 | |
1610 (defvar gnus-newsrc-alist nil | |
1611 "Assoc list of read articles. | |
1612 gnus-newsrc-hashtb should be kept so that both hold the same information.") | |
1613 | |
1614 (defvar gnus-newsrc-hashtb nil | |
1615 "Hashtable of gnus-newsrc-alist.") | |
1616 | |
1617 (defvar gnus-killed-list nil | |
1618 "List of killed newsgroups.") | |
1619 | |
1620 (defvar gnus-killed-hashtb nil | |
1621 "Hash table equivalent of gnus-killed-list.") | |
1622 | |
1623 (defvar gnus-zombie-list nil | |
1624 "List of almost dead newsgroups.") | |
1625 | |
1626 (defvar gnus-description-hashtb nil | |
1627 "Descriptions of newsgroups.") | |
1628 | |
1629 (defvar gnus-list-of-killed-groups nil | |
1630 "List of newsgroups that have recently been killed by the user.") | |
1631 | |
1632 (defvar gnus-active-hashtb nil | |
1633 "Hashtable of active articles.") | |
1634 | |
1635 (defvar gnus-moderated-hashtb nil | |
1636 "Hashtable of moderated newsgroups.") | |
1637 | |
1638 ;; Save window configuration. | |
1639 (defvar gnus-prev-winconf nil) | |
1640 | |
1641 (defvar gnus-reffed-article-number nil) | |
1642 | |
1643 ;;; Let the byte-compiler know that we know about this variable. | |
1644 (defvar rmail-default-rmail-file) | |
1645 | |
1646 (defvar gnus-dead-summary nil) | |
1647 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1648 (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1649 "Regexp matching invalid groups.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1650 |
17493 | 1651 ;;; End of variables. |
1652 | |
1653 ;; Define some autoload functions Gnus might use. | |
1654 (eval-and-compile | |
1655 | |
1656 ;; This little mapcar goes through the list below and marks the | |
1657 ;; symbols in question as autoloaded functions. | |
1658 (mapcar | |
1659 (lambda (package) | |
1660 (let ((interactive (nth 1 (memq ':interactive package)))) | |
1661 (mapcar | |
1662 (lambda (function) | |
1663 (let (keymap) | |
1664 (when (consp function) | |
1665 (setq keymap (car (memq 'keymap function))) | |
1666 (setq function (car function))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1667 (unless (fboundp function) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1668 (autoload function (car package) nil interactive keymap)))) |
17493 | 1669 (if (eq (nth 1 package) ':interactive) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1670 (nthcdr 3 package) |
17493 | 1671 (cdr package))))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1672 '(("info" :interactive t Info-goto-node) |
31781
8a6a4f06f145
(gnus-version-number): Start 5.9 series. Avoid some
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1673 ("pp" pp-to-string) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1674 ("qp" quoted-printable-decode-region quoted-printable-decode-string) |
17493 | 1675 ("ps-print" ps-print-preprint) |
1676 ("message" :interactive t | |
1677 message-send-and-exit message-yank-original) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1678 ("babel" babel-as-string) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1679 ("nnmail" nnmail-split-fancy nnmail-article-group) |
17493 | 1680 ("nnvirtual" nnvirtual-catchup-group nnvirtual-convert-headers) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1681 ("rmailout" rmail-output rmail-output-to-rmail-file) |
17493 | 1682 ("rmail" rmail-insert-rmail-file-header rmail-count-new-messages |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1683 rmail-show-message rmail-summary-exists |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1684 rmail-select-summary rmail-update-summary) |
17493 | 1685 ("gnus-audio" :interactive t gnus-audio-play) |
1686 ("gnus-xmas" gnus-xmas-splash) | |
1687 ("gnus-soup" :interactive t | |
1688 gnus-group-brew-soup gnus-brew-soup gnus-soup-add-article | |
1689 gnus-soup-send-replies gnus-soup-save-areas gnus-soup-pack-packet) | |
1690 ("nnsoup" nnsoup-pack-replies) | |
1691 ("score-mode" :interactive t gnus-score-mode) | |
1692 ("gnus-mh" gnus-summary-save-article-folder | |
1693 gnus-Folder-save-name gnus-folder-save-name) | |
1694 ("gnus-mh" :interactive t gnus-summary-save-in-folder) | |
1695 ("gnus-demon" gnus-demon-add-nocem gnus-demon-add-scanmail | |
1696 gnus-demon-add-rescan gnus-demon-add-scan-timestamps | |
1697 gnus-demon-add-disconnection gnus-demon-add-handler | |
1698 gnus-demon-remove-handler) | |
1699 ("gnus-demon" :interactive t | |
1700 gnus-demon-init gnus-demon-cancel) | |
1701 ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree | |
1702 gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer) | |
1703 ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close | |
1704 gnus-nocem-unwanted-article-p) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1705 ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1706 gnus-server-server-name) |
17493 | 1707 ("gnus-srvr" gnus-browse-foreign-server) |
1708 ("gnus-cite" :interactive t | |
1709 gnus-article-highlight-citation gnus-article-hide-citation-maybe | |
1710 gnus-article-hide-citation gnus-article-fill-cited-article | |
1711 gnus-article-hide-citation-in-followups) | |
1712 ("gnus-kill" gnus-kill gnus-apply-kill-file-internal | |
1713 gnus-kill-file-edit-file gnus-kill-file-raise-followups-to-author | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1714 gnus-execute gnus-expunge gnus-batch-kill gnus-batch-score) |
17493 | 1715 ("gnus-cache" gnus-cache-possibly-enter-article gnus-cache-save-buffers |
1716 gnus-cache-possibly-remove-articles gnus-cache-request-article | |
1717 gnus-cache-retrieve-headers gnus-cache-possibly-alter-active | |
1718 gnus-cache-enter-remove-article gnus-cached-article-p | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1719 gnus-cache-open gnus-cache-close gnus-cache-update-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1720 gnus-cache-articles-in-group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1721 ("gnus-cache" :interactive t gnus-jog-cache gnus-cache-enter-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1722 gnus-cache-remove-article gnus-summary-insert-cached-articles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1723 ("gnus-score" :interactive t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1724 gnus-summary-increase-score gnus-summary-set-score |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1725 gnus-summary-raise-thread gnus-summary-raise-same-subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1726 gnus-summary-raise-score gnus-summary-raise-same-subject-and-select |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1727 gnus-summary-lower-thread gnus-summary-lower-same-subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1728 gnus-summary-lower-score gnus-summary-lower-same-subject-and-select |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1729 gnus-summary-current-score gnus-score-delta-default |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1730 gnus-score-flush-cache gnus-score-close |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1731 gnus-possibly-score-headers gnus-score-followup-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1732 gnus-score-followup-thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1733 ("gnus-score" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1734 (gnus-summary-score-map keymap) gnus-score-save gnus-score-headers |
17493 | 1735 gnus-current-score-file-nondirectory gnus-score-adaptive |
1736 gnus-score-find-trace gnus-score-file-name) | |
1737 ("gnus-cus" :interactive t gnus-group-customize gnus-score-customize) | |
1738 ("gnus-topic" :interactive t gnus-topic-mode) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1739 ("gnus-topic" gnus-topic-remove-group gnus-topic-set-parameters |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1740 gnus-subscribe-topics) |
17493 | 1741 ("gnus-salt" :interactive t gnus-pick-mode gnus-binary-mode) |
1742 ("gnus-uu" (gnus-uu-extract-map keymap) (gnus-uu-mark-map keymap)) | |
1743 ("gnus-uu" :interactive t | |
1744 gnus-uu-digest-mail-forward gnus-uu-digest-post-forward | |
1745 gnus-uu-mark-series gnus-uu-mark-region gnus-uu-mark-buffer | |
1746 gnus-uu-mark-by-regexp gnus-uu-mark-all | |
1747 gnus-uu-mark-sparse gnus-uu-mark-thread gnus-uu-decode-uu | |
1748 gnus-uu-decode-uu-and-save gnus-uu-decode-unshar | |
1749 gnus-uu-decode-unshar-and-save gnus-uu-decode-save | |
1750 gnus-uu-decode-binhex gnus-uu-decode-uu-view | |
1751 gnus-uu-decode-uu-and-save-view gnus-uu-decode-unshar-view | |
1752 gnus-uu-decode-unshar-and-save-view gnus-uu-decode-save-view | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1753 gnus-uu-decode-binhex-view gnus-uu-unmark-thread |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1754 gnus-uu-mark-over gnus-uu-post-news) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1755 ("gnus-uu" gnus-uu-delete-work-dir gnus-uu-unmark-thread) |
17493 | 1756 ("gnus-msg" (gnus-summary-send-map keymap) |
1757 gnus-article-mail gnus-copy-article-buffer gnus-extended-version) | |
1758 ("gnus-msg" :interactive t | |
1759 gnus-group-post-news gnus-group-mail gnus-summary-post-news | |
1760 gnus-summary-followup gnus-summary-followup-with-original | |
1761 gnus-summary-cancel-article gnus-summary-supersede-article | |
1762 gnus-post-news gnus-summary-reply gnus-summary-reply-with-original | |
1763 gnus-summary-mail-forward gnus-summary-mail-other-window | |
1764 gnus-summary-resend-message gnus-summary-resend-bounced-mail | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1765 gnus-summary-wide-reply gnus-summary-followup-to-mail |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1766 gnus-summary-followup-to-mail-with-original gnus-bug |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1767 gnus-summary-wide-reply-with-original |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1768 gnus-summary-post-forward gnus-summary-wide-reply-with-original |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1769 gnus-summary-post-forward) |
17493 | 1770 ("gnus-picon" :interactive t gnus-article-display-picons |
1771 gnus-group-display-picons gnus-picons-article-display-x-face | |
1772 gnus-picons-display-x-face) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1773 ("gnus-picon" gnus-picons-buffer-name) |
17493 | 1774 ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p |
1775 gnus-grouplens-mode) | |
1776 ("smiley" :interactive t gnus-smiley-display) | |
1777 ("gnus-win" gnus-configure-windows gnus-add-configuration) | |
1778 ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group | |
1779 gnus-list-of-unread-articles gnus-list-of-read-articles | |
1780 gnus-offer-save-summaries gnus-make-thread-indent-array | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1781 gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1782 gnus-summary-skip-intangible gnus-summary-article-number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1783 gnus-data-header gnus-data-find) |
17493 | 1784 ("gnus-group" gnus-group-insert-group-line gnus-group-quit |
1785 gnus-group-list-groups gnus-group-first-unread-group | |
1786 gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc | |
1787 gnus-group-setup-buffer gnus-group-get-new-news | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1788 gnus-group-make-help-group gnus-group-update-group |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1789 gnus-group-iterate gnus-group-group-name) |
17493 | 1790 ("gnus-bcklg" gnus-backlog-request-article gnus-backlog-enter-article |
1791 gnus-backlog-remove-article) | |
1792 ("gnus-art" gnus-article-read-summary-keys gnus-article-save | |
1793 gnus-article-prepare gnus-article-set-window-start | |
1794 gnus-article-next-page gnus-article-prev-page | |
1795 gnus-request-article-this-buffer gnus-article-mode | |
1796 gnus-article-setup-buffer gnus-narrow-to-page | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1797 gnus-article-delete-invisible-text gnus-treat-article) |
17493 | 1798 ("gnus-art" :interactive t |
1799 gnus-article-hide-headers gnus-article-hide-boring-headers | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1800 gnus-article-treat-overstrike |
17493 | 1801 gnus-article-remove-cr gnus-article-remove-trailing-blank-lines |
1802 gnus-article-display-x-face gnus-article-de-quoted-unreadable | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1803 gnus-article-de-base64-unreadable |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1804 gnus-article-decode-HZ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1805 gnus-article-wash-html |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1806 gnus-article-hide-pgp |
17493 | 1807 gnus-article-hide-pem gnus-article-hide-signature |
1808 gnus-article-strip-leading-blank-lines gnus-article-date-local | |
1809 gnus-article-date-original gnus-article-date-lapsed | |
1810 gnus-article-show-all-headers | |
1811 gnus-article-edit-mode gnus-article-edit-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1812 gnus-article-edit-done gnus-article-decode-encoded-words |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1813 gnus-start-date-timer gnus-stop-date-timer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1814 gnus-mime-view-all-parts) |
17493 | 1815 ("gnus-int" gnus-request-type) |
1816 ("gnus-start" gnus-newsrc-parse-options gnus-1 gnus-no-server-1 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1817 gnus-dribble-enter gnus-read-init-file gnus-dribble-touch) |
17493 | 1818 ("gnus-dup" gnus-dup-suppress-articles gnus-dup-unsuppress-article |
1819 gnus-dup-enter-articles) | |
1820 ("gnus-range" gnus-copy-sequence) | |
1821 ("gnus-eform" gnus-edit-form) | |
1822 ("gnus-move" :interactive t | |
1823 gnus-group-move-group-to-server gnus-change-server) | |
1824 ("gnus-logic" gnus-score-advanced) | |
1825 ("gnus-undo" gnus-undo-mode gnus-undo-register) | |
1826 ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next | |
1827 gnus-async-prefetch-article gnus-async-prefetch-remove-group | |
1828 gnus-async-halt-prefetch) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1829 ("gnus-agent" gnus-open-agent gnus-agent-get-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1830 gnus-agent-save-groups gnus-agent-save-active gnus-agent-method-p |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1831 gnus-agent-get-undownloaded-list gnus-agent-fetch-session |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1832 gnus-summary-set-agent-mark gnus-agent-save-group-info) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1833 ("gnus-agent" :interactive t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1834 gnus-unplugged gnus-agentize gnus-agent-batch) |
17493 | 1835 ("gnus-vm" :interactive t gnus-summary-save-in-vm |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1836 gnus-summary-save-article-vm) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1837 ("gnus-draft" :interactive t gnus-draft-mode gnus-group-send-drafts) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1838 ("gnus-mlspl" gnus-group-split gnus-group-split-fancy) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1839 ("gnus-mlspl" :interactive t gnus-group-split-setup |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1840 gnus-group-split-update)))) |
17493 | 1841 |
1842 ;;; gnus-sum.el thingies | |
1843 | |
1844 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1845 (defcustom gnus-summary-line-format "%U%R%z%I%(%[%4L: %-20,20n%]%) %s\n" |
17493 | 1846 "*The format specification of the lines in the summary buffer. |
1847 | |
1848 It works along the same lines as a normal formatting string, | |
1849 with some simple extensions. | |
1850 | |
1851 %N Article number, left padded with spaces (string) | |
1852 %S Subject (string) | |
1853 %s Subject if it is at the root of a thread, and \"\" otherwise (string) | |
1854 %n Name of the poster (string) | |
1855 %a Extracted name of the poster (string) | |
1856 %A Extracted address of the poster (string) | |
1857 %F Contents of the From: header (string) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1858 %f Contents of the From: or To: headers (string) |
17493 | 1859 %x Contents of the Xref: header (string) |
1860 %D Date of the article (string) | |
1861 %d Date of the article (string) in DD-MMM format | |
1862 %M Message-id of the article (string) | |
1863 %r References of the article (string) | |
1864 %c Number of characters in the article (integer) | |
1865 %L Number of lines in the article (integer) | |
1866 %I Indentation based on thread level (a string of spaces) | |
1867 %T A string with two possible values: 80 spaces if the article | |
1868 is on thread level two or larger and 0 spaces on level one | |
1869 %R \"A\" if this article has been replied to, \" \" otherwise (character) | |
1870 %U Status of this article (character, \"R\", \"K\", \"-\" or \" \") | |
1871 %[ Opening bracket (character, \"[\" or \"<\") | |
1872 %] Closing bracket (character, \"]\" or \">\") | |
1873 %> Spaces of length thread-level (string) | |
1874 %< Spaces of length (- 20 thread-level) (string) | |
1875 %i Article score (number) | |
1876 %z Article zcore (character) | |
1877 %t Number of articles under the current thread (number). | |
1878 %e Whether the thread is empty or not (character). | |
1879 %l GroupLens score (string). | |
1880 %V Total thread score (number). | |
1881 %P The line number (number). | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1882 %O Download mark (character). |
17493 | 1883 %u User defined specifier. The next character in the format string should |
1884 be a letter. Gnus will call the function gnus-user-format-function-X, | |
1885 where X is the letter following %u. The function will be passed the | |
1886 current header as argument. The function should return a string, which | |
1887 will be inserted into the summary just like information from any other | |
1888 summary specifier. | |
1889 | |
1890 Text between %( and %) will be highlighted with `gnus-mouse-face' | |
1891 when the mouse point is placed inside the area. There can only be one | |
1892 such area. | |
1893 | |
1894 The %U (status), %R (replied) and %z (zcore) specs have to be handled | |
1895 with care. For reasons of efficiency, Gnus will compute what column | |
1896 these characters will end up in, and \"hard-code\" that. This means that | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1897 it is invalid to have these specs after a variable-length spec. Well, |
17493 | 1898 you might not be arrested, but your summary buffer will look strange, |
1899 which is bad enough. | |
1900 | |
1901 The smart choice is to have these specs as for to the left as | |
1902 possible. | |
1903 | |
1904 This restriction may disappear in later versions of Gnus." | |
1905 :type 'string | |
1906 :group 'gnus-summary-format) | |
1907 | |
1908 ;;; | |
1909 ;;; Skeleton keymaps | |
1910 ;;; | |
1911 | |
1912 (defun gnus-suppress-keymap (keymap) | |
1913 (suppress-keymap keymap) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1914 (let ((keys `([backspace] [delete] "\177" "\M-u"))) ;gnus-mouse-2 |
17493 | 1915 (while keys |
1916 (define-key keymap (pop keys) 'undefined)))) | |
1917 | |
1918 (defvar gnus-article-mode-map | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1919 (let ((keymap (make-sparse-keymap))) |
17493 | 1920 (gnus-suppress-keymap keymap) |
1921 keymap)) | |
1922 (defvar gnus-summary-mode-map | |
1923 (let ((keymap (make-keymap))) | |
1924 (gnus-suppress-keymap keymap) | |
1925 keymap)) | |
1926 (defvar gnus-group-mode-map | |
1927 (let ((keymap (make-keymap))) | |
1928 (gnus-suppress-keymap keymap) | |
1929 keymap)) | |
1930 | |
1931 | |
1932 | |
1933 ;; Fix by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>. | |
1934 ;; If you want the cursor to go somewhere else, set these two | |
1935 ;; functions in some startup hook to whatever you want. | |
1936 (defalias 'gnus-summary-position-point 'gnus-goto-colon) | |
1937 (defalias 'gnus-group-position-point 'gnus-goto-colon) | |
1938 | |
1939 ;;; Various macros and substs. | |
1940 | |
1941 (defun gnus-header-from (header) | |
1942 (mail-header-from header)) | |
1943 | |
1944 (defmacro gnus-gethash (string hashtable) | |
1945 "Get hash value of STRING in HASHTABLE." | |
1946 `(symbol-value (intern-soft ,string ,hashtable))) | |
1947 | |
1948 (defmacro gnus-sethash (string value hashtable) | |
1949 "Set hash value. Arguments are STRING, VALUE, and HASHTABLE." | |
1950 `(set (intern ,string ,hashtable) ,value)) | |
1951 (put 'gnus-sethash 'edebug-form-spec '(form form form)) | |
1952 | |
1953 (defmacro gnus-group-unread (group) | |
1954 "Get the currently computed number of unread articles in GROUP." | |
1955 `(car (gnus-gethash ,group gnus-newsrc-hashtb))) | |
1956 | |
1957 (defmacro gnus-group-entry (group) | |
1958 "Get the newsrc entry for GROUP." | |
1959 `(gnus-gethash ,group gnus-newsrc-hashtb)) | |
1960 | |
1961 (defmacro gnus-active (group) | |
1962 "Get active info on GROUP." | |
1963 `(gnus-gethash ,group gnus-active-hashtb)) | |
1964 | |
1965 (defmacro gnus-set-active (group active) | |
1966 "Set GROUP's active info." | |
1967 `(gnus-sethash ,group ,active gnus-active-hashtb)) | |
1968 | |
1969 ;; Info access macros. | |
1970 | |
1971 (defmacro gnus-info-group (info) | |
1972 `(nth 0 ,info)) | |
1973 (defmacro gnus-info-rank (info) | |
1974 `(nth 1 ,info)) | |
1975 (defmacro gnus-info-read (info) | |
1976 `(nth 2 ,info)) | |
1977 (defmacro gnus-info-marks (info) | |
1978 `(nth 3 ,info)) | |
1979 (defmacro gnus-info-method (info) | |
1980 `(nth 4 ,info)) | |
1981 (defmacro gnus-info-params (info) | |
1982 `(nth 5 ,info)) | |
1983 | |
1984 (defmacro gnus-info-level (info) | |
1985 `(let ((rank (gnus-info-rank ,info))) | |
1986 (if (consp rank) | |
1987 (car rank) | |
1988 rank))) | |
1989 (defmacro gnus-info-score (info) | |
1990 `(let ((rank (gnus-info-rank ,info))) | |
1991 (or (and (consp rank) (cdr rank)) 0))) | |
1992 | |
1993 (defmacro gnus-info-set-group (info group) | |
1994 `(setcar ,info ,group)) | |
1995 (defmacro gnus-info-set-rank (info rank) | |
1996 `(setcar (nthcdr 1 ,info) ,rank)) | |
1997 (defmacro gnus-info-set-read (info read) | |
1998 `(setcar (nthcdr 2 ,info) ,read)) | |
1999 (defmacro gnus-info-set-marks (info marks &optional extend) | |
2000 (if extend | |
2001 `(gnus-info-set-entry ,info ,marks 3) | |
2002 `(setcar (nthcdr 3 ,info) ,marks))) | |
2003 (defmacro gnus-info-set-method (info method &optional extend) | |
2004 (if extend | |
2005 `(gnus-info-set-entry ,info ,method 4) | |
2006 `(setcar (nthcdr 4 ,info) ,method))) | |
2007 (defmacro gnus-info-set-params (info params &optional extend) | |
2008 (if extend | |
2009 `(gnus-info-set-entry ,info ,params 5) | |
2010 `(setcar (nthcdr 5 ,info) ,params))) | |
2011 | |
2012 (defun gnus-info-set-entry (info entry number) | |
2013 ;; Extend the info until we have enough elements. | |
2014 (while (<= (length info) number) | |
2015 (nconc info (list nil))) | |
2016 ;; Set the entry. | |
2017 (setcar (nthcdr number info) entry)) | |
2018 | |
2019 (defmacro gnus-info-set-level (info level) | |
2020 `(let ((rank (cdr ,info))) | |
2021 (if (consp (car rank)) | |
2022 (setcar (car rank) ,level) | |
2023 (setcar rank ,level)))) | |
2024 (defmacro gnus-info-set-score (info score) | |
2025 `(let ((rank (cdr ,info))) | |
2026 (if (consp (car rank)) | |
2027 (setcdr (car rank) ,score) | |
2028 (setcar rank (cons (car rank) ,score))))) | |
2029 | |
2030 (defmacro gnus-get-info (group) | |
2031 `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb))) | |
2032 | |
2033 ;; Byte-compiler warning. | |
2034 (defvar gnus-visual) | |
2035 ;; Find out whether the gnus-visual TYPE is wanted. | |
2036 (defun gnus-visual-p (&optional type class) | |
2037 (and gnus-visual ; Has to be non-nil, at least. | |
2038 (if (not type) ; We don't care about type. | |
2039 gnus-visual | |
2040 (if (listp gnus-visual) ; It's a list, so we check it. | |
2041 (or (memq type gnus-visual) | |
2042 (memq class gnus-visual)) | |
2043 t)))) | |
2044 | |
2045 ;;; Load the compatability functions. | |
2046 | |
2047 (require 'gnus-ems) | |
2048 | |
2049 | |
2050 ;;; | |
2051 ;;; Shutdown | |
2052 ;;; | |
2053 | |
2054 (defvar gnus-shutdown-alist nil) | |
2055 | |
2056 (defun gnus-add-shutdown (function &rest symbols) | |
2057 "Run FUNCTION whenever one of SYMBOLS is shut down." | |
2058 (push (cons function symbols) gnus-shutdown-alist)) | |
2059 | |
2060 (defun gnus-shutdown (symbol) | |
2061 "Shut down everything that waits for SYMBOL." | |
2062 (let ((alist gnus-shutdown-alist) | |
2063 entry) | |
2064 (while (setq entry (pop alist)) | |
2065 (when (memq symbol (cdr entry)) | |
2066 (funcall (car entry)))))) | |
2067 | |
2068 | |
2069 ;;; | |
2070 ;;; Gnus Utility Functions | |
2071 ;;; | |
2072 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2073 |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2074 (defmacro gnus-string-or (&rest strings) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2075 "Return the first element of STRINGS that is a non-blank string. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2076 STRINGS will be evaluated in normal `or' order." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2077 `(gnus-string-or-1 ',strings)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2078 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2079 (defun gnus-string-or-1 (strings) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2080 (let (string) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2081 (while strings |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2082 (setq string (eval (pop strings))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2083 (if (string-match "^[ \t]*$" string) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2084 (setq string nil) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2085 (setq strings nil))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2086 string)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2087 |
17493 | 2088 (defun gnus-version (&optional arg) |
2089 "Version number of this version of Gnus. | |
2090 If ARG, insert string at point." | |
2091 (interactive "P") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2092 (if arg |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2093 (insert (message gnus-version)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2094 (message gnus-version))) |
17493 | 2095 |
2096 (defun gnus-continuum-version (version) | |
2097 "Return VERSION as a floating point number." | |
2098 (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version) | |
2099 (string-match "^\\(.?\\)gnus-\\([0-9.]+\\)$" version)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2100 (let ((alpha (and (match-beginning 1) (match-string 1 version))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2101 (number (match-string 2 version)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2102 major minor least) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2103 (unless (string-match |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2104 "\\([0-9]\\)\\.\\([0-9]+\\)\\.?\\([0-9]+\\)?" number) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2105 (error "Invalid version string: %s" version)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2106 (setq major (string-to-number (match-string 1 number)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2107 minor (string-to-number (match-string 2 number)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2108 least (if (match-beginning 3) |
17493 | 2109 (string-to-number (match-string 3 number)) |
2110 0)) | |
2111 (string-to-number | |
2112 (if (zerop major) | |
2113 (format "%s00%02d%02d" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2114 (if (member alpha '("(ding)" "d")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2115 "4.99" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2116 (+ 5 (* 0.02 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2117 (abs |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2118 (- (mm-char-int (aref (downcase alpha) 0)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2119 (mm-char-int ?t)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2120 -0.01)) |
17493 | 2121 minor least) |
2122 (format "%d.%02d%02d" major minor least)))))) | |
2123 | |
2124 (defun gnus-info-find-node () | |
2125 "Find Info documentation of Gnus." | |
2126 (interactive) | |
2127 ;; Enlarge info window if needed. | |
2128 (let (gnus-info-buffer) | |
2129 (Info-goto-node (cadr (assq major-mode gnus-info-nodes))) | |
2130 (setq gnus-info-buffer (current-buffer)) | |
2131 (gnus-configure-windows 'info))) | |
2132 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2133 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2134 ;;; gnus-interactive |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2135 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2136 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2137 (defvar gnus-current-prefix-symbol nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2138 "Current prefix symbol.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2139 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2140 (defvar gnus-current-prefix-symbols nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2141 "List of current prefix symbols.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2142 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2143 (defun gnus-interactive (string &optional params) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2144 "Return a list that can be fed to `interactive'. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2145 See `interactive' for full documentation. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2146 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2147 Adds the following specs: |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2148 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2149 y -- The current symbolic prefix. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2150 Y -- A list of the current symbolic prefix(es). |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2151 A -- Article number. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2152 H -- Article header. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2153 g -- Group name." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2154 (let ((i 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2155 out c prompt) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2156 (while (< i (length string)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2157 (string-match ".\\([^\n]*\\)\n?" string i) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2158 (setq c (aref string i)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2159 (when (match-end 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2160 (setq prompt (match-string 1 string))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2161 (setq i (match-end 0)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2162 ;; We basically emulate just about everything that |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2163 ;; `interactive' does, but add the specs listed above. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2164 (push |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2165 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2166 ((= c ?a) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2167 (completing-read prompt obarray 'fboundp t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2168 ((= c ?b) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2169 (read-buffer prompt (current-buffer) t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2170 ((= c ?B) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2171 (read-buffer prompt (other-buffer (current-buffer)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2172 ((= c ?c) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2173 (read-char)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2174 ((= c ?C) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2175 (completing-read prompt obarray 'commandp t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2176 ((= c ?d) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2177 (point)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2178 ((= c ?D) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2179 (read-file-name prompt nil default-directory 'lambda)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2180 ((= c ?f) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2181 (read-file-name prompt nil nil 'lambda)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2182 ((= c ?F) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2183 (read-file-name prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2184 ((= c ?k) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2185 (read-key-sequence prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2186 ((= c ?K) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2187 (error "Not implemented spec")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2188 ((= c ?e) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2189 (error "Not implemented spec")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2190 ((= c ?m) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2191 (mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2192 ((= c ?N) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2193 (error "Not implemented spec")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2194 ((= c ?n) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2195 (string-to-number (read-from-minibuffer prompt))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2196 ((= c ?p) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2197 (prefix-numeric-value current-prefix-arg)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2198 ((= c ?P) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2199 current-prefix-arg) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2200 ((= c ?r) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2201 'gnus-prefix-nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2202 ((= c ?s) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2203 (read-string prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2204 ((= c ?S) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2205 (intern (read-string prompt))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2206 ((= c ?v) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2207 (read-variable prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2208 ((= c ?x) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2209 (read-minibuffer prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2210 ((= c ?x) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2211 (eval-minibuffer prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2212 ;; And here the new specs come. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2213 ((= c ?y) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2214 gnus-current-prefix-symbol) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2215 ((= c ?Y) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2216 gnus-current-prefix-symbols) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2217 ((= c ?g) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2218 (gnus-group-group-name)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2219 ((= c ?A) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2220 (gnus-summary-skip-intangible) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2221 (or (get-text-property (point) 'gnus-number) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2222 (gnus-summary-last-subject))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2223 ((= c ?H) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2224 (gnus-data-header (gnus-data-find (gnus-summary-article-number)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2225 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2226 (error "Non-implemented spec"))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2227 out) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2228 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2229 ((= c ?r) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2230 (push (if (< (point) (mark) (point) (mark))) out) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2231 (push (if (> (point) (mark) (point) (mark))) out)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2232 (setq out (delq 'gnus-prefix-nil out)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2233 (nreverse out))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2234 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2235 (defun gnus-symbolic-argument (&optional arg) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2236 "Read a symbolic argument and a command, and then execute command." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2237 (interactive "P") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2238 (let* ((in-command (this-command-keys)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2239 (command in-command) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2240 gnus-current-prefix-symbols |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2241 gnus-current-prefix-symbol |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2242 syms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2243 (while (equal in-command command) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2244 (message "%s-" (key-description (this-command-keys))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2245 (push (intern (char-to-string (read-char))) syms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2246 (setq command (read-key-sequence nil t))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2247 (setq gnus-current-prefix-symbols (nreverse syms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2248 gnus-current-prefix-symbol (car gnus-current-prefix-symbols)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2249 (call-interactively (key-binding command t)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2250 |
17493 | 2251 ;;; More various functions. |
2252 | |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2253 (defsubst gnus-check-backend-function (func group) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2254 "Check whether GROUP supports function FUNC. |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2255 GROUP can either be a string (a group name) or a select method." |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2256 (ignore-errors |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2257 (let ((method (if (stringp group) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2258 (car (gnus-find-method-for-group group)) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2259 group))) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2260 (unless (featurep method) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2261 (require method)) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2262 (fboundp (intern (format "%s-%s" method func)))))) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2263 |
17493 | 2264 (defun gnus-group-read-only-p (&optional group) |
2265 "Check whether GROUP supports editing or not. | |
2266 If GROUP is nil, `gnus-newsgroup-name' will be checked instead. Note | |
2267 that that variable is buffer-local to the summary buffers." | |
2268 (let ((group (or group gnus-newsgroup-name))) | |
2269 (not (gnus-check-backend-function 'request-replace-article group)))) | |
2270 | |
2271 (defun gnus-group-total-expirable-p (group) | |
2272 "Check whether GROUP is total-expirable or not." | |
2273 (let ((params (gnus-group-find-parameter group)) | |
2274 val) | |
2275 (cond | |
2276 ((memq 'total-expire params) | |
2277 t) | |
2278 ((setq val (assq 'total-expire params)) ; (auto-expire . t) | |
2279 (cdr val)) | |
2280 (gnus-total-expirable-newsgroups ; Check var. | |
2281 (string-match gnus-total-expirable-newsgroups group))))) | |
2282 | |
2283 (defun gnus-group-auto-expirable-p (group) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2284 "Check whether GROUP is auto-expirable or not." |
17493 | 2285 (let ((params (gnus-group-find-parameter group)) |
2286 val) | |
2287 (cond | |
2288 ((memq 'auto-expire params) | |
2289 t) | |
2290 ((setq val (assq 'auto-expire params)) ; (auto-expire . t) | |
2291 (cdr val)) | |
2292 (gnus-auto-expirable-newsgroups ; Check var. | |
2293 (string-match gnus-auto-expirable-newsgroups group))))) | |
2294 | |
2295 (defun gnus-virtual-group-p (group) | |
2296 "Say whether GROUP is virtual or not." | |
2297 (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group))) | |
2298 gnus-valid-select-methods))) | |
2299 | |
2300 (defun gnus-news-group-p (group &optional article) | |
2301 "Return non-nil if GROUP (and ARTICLE) come from a news server." | |
2302 (or (gnus-member-of-valid 'post group) ; Ordinary news group. | |
2303 (and (gnus-member-of-valid 'post-mail group) ; Combined group. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2304 (if (or (null article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2305 (not (< article 0))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2306 (eq (gnus-request-type group article) 'news) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2307 (if (not (vectorp article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2308 nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2309 ;; It's a real article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2310 (eq (gnus-request-type group (mail-header-id article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2311 'news)))))) |
17493 | 2312 |
2313 ;; Returns a list of writable groups. | |
2314 (defun gnus-writable-groups () | |
2315 (let ((alist gnus-newsrc-alist) | |
2316 groups group) | |
2317 (while (setq group (car (pop alist))) | |
2318 (unless (gnus-group-read-only-p group) | |
2319 (push group groups))) | |
2320 (nreverse groups))) | |
2321 | |
2322 ;; Check whether to use long file names. | |
2323 (defun gnus-use-long-file-name (symbol) | |
2324 ;; The variable has to be set... | |
2325 (and gnus-use-long-file-name | |
2326 ;; If it isn't a list, then we return t. | |
2327 (or (not (listp gnus-use-long-file-name)) | |
2328 ;; If it is a list, and the list contains `symbol', we | |
2329 ;; return nil. | |
2330 (not (memq symbol gnus-use-long-file-name))))) | |
2331 | |
2332 ;; Generate a unique new group name. | |
2333 (defun gnus-generate-new-group-name (leaf) | |
2334 (let ((name leaf) | |
2335 (num 0)) | |
2336 (while (gnus-gethash name gnus-newsrc-hashtb) | |
2337 (setq name (concat leaf "<" (int-to-string (setq num (1+ num))) ">"))) | |
2338 name)) | |
2339 | |
2340 (defun gnus-ephemeral-group-p (group) | |
2341 "Say whether GROUP is ephemeral or not." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2342 (gnus-group-get-parameter group 'quit-config t)) |
17493 | 2343 |
2344 (defun gnus-group-quit-config (group) | |
2345 "Return the quit-config of GROUP." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2346 (gnus-group-get-parameter group 'quit-config t)) |
17493 | 2347 |
2348 (defun gnus-kill-ephemeral-group (group) | |
2349 "Remove ephemeral GROUP from relevant structures." | |
2350 (gnus-sethash group nil gnus-newsrc-hashtb)) | |
2351 | |
2352 (defun gnus-simplify-mode-line () | |
2353 "Make mode lines a bit simpler." | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2354 (setq mode-line-modified (cdr gnus-mode-line-modified)) |
17493 | 2355 (when (listp mode-line-format) |
2356 (make-local-variable 'mode-line-format) | |
2357 (setq mode-line-format (copy-sequence mode-line-format)) | |
2358 (when (equal (nth 3 mode-line-format) " ") | |
2359 (setcar (nthcdr 3 mode-line-format) " ")))) | |
2360 | |
2361 ;;; Servers and groups. | |
2362 | |
2363 (defsubst gnus-server-add-address (method) | |
2364 (let ((method-name (symbol-name (car method)))) | |
2365 (if (and (memq 'address (assoc method-name gnus-valid-select-methods)) | |
2366 (not (assq (intern (concat method-name "-address")) method)) | |
2367 (memq 'physical-address (assq (car method) | |
2368 gnus-valid-select-methods))) | |
2369 (append method (list (list (intern (concat method-name "-address")) | |
2370 (nth 1 method)))) | |
2371 method))) | |
2372 | |
2373 (defsubst gnus-server-get-method (group method) | |
2374 ;; Input either a server name, and extended server name, or a | |
2375 ;; select method, and return a select method. | |
2376 (cond ((stringp method) | |
2377 (gnus-server-to-method method)) | |
2378 ((equal method gnus-select-method) | |
2379 gnus-select-method) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2380 ((and (stringp (car method)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2381 group) |
17493 | 2382 (gnus-server-extend-method group method)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2383 ((and method |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2384 (not group) |
17493 | 2385 (equal (cadr method) "")) |
2386 method) | |
2387 (t | |
2388 (gnus-server-add-address method)))) | |
2389 | |
2390 (defun gnus-server-to-method (server) | |
2391 "Map virtual server names to select methods." | |
2392 (or | |
2393 ;; Is this a method, perhaps? | |
2394 (and server (listp server) server) | |
2395 ;; Perhaps this is the native server? | |
2396 (and (equal server "native") gnus-select-method) | |
2397 ;; It should be in the server alist. | |
2398 (cdr (assoc server gnus-server-alist)) | |
2399 ;; It could be in the predefined server alist. | |
2400 (cdr (assoc server gnus-predefined-server-alist)) | |
2401 ;; If not, we look through all the opened server | |
2402 ;; to see whether we can find it there. | |
2403 (let ((opened gnus-opened-servers)) | |
2404 (while (and opened | |
2405 (not (equal server (format "%s:%s" (caaar opened) | |
2406 (cadaar opened))))) | |
2407 (pop opened)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2408 (caar opened)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2409 ;; It could be a named method, search all servers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2410 (let ((servers gnus-secondary-select-methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2411 (while (and servers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2412 (not (equal server (format "%s:%s" (caar servers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2413 (cadar servers))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2414 (pop servers)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2415 (car servers)))) |
17493 | 2416 |
2417 (defmacro gnus-method-equal (ss1 ss2) | |
2418 "Say whether two servers are equal." | |
2419 `(let ((s1 ,ss1) | |
2420 (s2 ,ss2)) | |
2421 (or (equal s1 s2) | |
2422 (and (= (length s1) (length s2)) | |
2423 (progn | |
2424 (while (and s1 (member (car s1) s2)) | |
2425 (setq s1 (cdr s1))) | |
2426 (null s1)))))) | |
2427 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2428 (defun gnus-methods-equal-p (m1 m2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2429 (let ((m1 (or m1 gnus-select-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2430 (m2 (or m2 gnus-select-method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2431 (or (equal m1 m2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2432 (and (eq (car m1) (car m2)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2433 (or (not (memq 'address (assoc (symbol-name (car m1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2434 gnus-valid-select-methods))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2435 (equal (nth 1 m1) (nth 1 m2))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2436 |
17493 | 2437 (defun gnus-server-equal (m1 m2) |
2438 "Say whether two methods are equal." | |
2439 (let ((m1 (cond ((null m1) gnus-select-method) | |
2440 ((stringp m1) (gnus-server-to-method m1)) | |
2441 (t m1))) | |
2442 (m2 (cond ((null m2) gnus-select-method) | |
2443 ((stringp m2) (gnus-server-to-method m2)) | |
2444 (t m2)))) | |
2445 (gnus-method-equal m1 m2))) | |
2446 | |
2447 (defun gnus-servers-using-backend (backend) | |
2448 "Return a list of known servers using BACKEND." | |
2449 (let ((opened gnus-opened-servers) | |
2450 out) | |
2451 (while opened | |
2452 (when (eq backend (caaar opened)) | |
2453 (push (caar opened) out)) | |
2454 (pop opened)) | |
2455 out)) | |
2456 | |
2457 (defun gnus-archive-server-wanted-p () | |
2458 "Say whether the user wants to use the archive server." | |
2459 (cond | |
2460 ((or (not gnus-message-archive-method) | |
2461 (not gnus-message-archive-group)) | |
2462 nil) | |
2463 ((and gnus-message-archive-method gnus-message-archive-group) | |
2464 t) | |
2465 (t | |
2466 (let ((active (cadr (assq 'nnfolder-active-file | |
2467 gnus-message-archive-method)))) | |
2468 (and active | |
2469 (file-exists-p active)))))) | |
2470 | |
2471 (defun gnus-group-prefixed-name (group method) | |
2472 "Return the whole name from GROUP and METHOD." | |
2473 (and (stringp method) (setq method (gnus-server-to-method method))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2474 (if (or (not method) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2475 (gnus-server-equal method "native")) |
17493 | 2476 group |
2477 (concat (format "%s" (car method)) | |
2478 (when (and | |
2479 (or (assoc (format "%s" (car method)) | |
2480 (gnus-methods-using 'address)) | |
2481 (gnus-server-equal method gnus-message-archive-method)) | |
2482 (nth 1 method) | |
2483 (not (string= (nth 1 method) ""))) | |
2484 (concat "+" (nth 1 method))) | |
2485 ":" group))) | |
2486 | |
2487 (defun gnus-group-real-prefix (group) | |
2488 "Return the prefix of the current group name." | |
2489 (if (string-match "^[^:]+:" group) | |
2490 (substring group 0 (match-end 0)) | |
2491 "")) | |
2492 | |
2493 (defun gnus-group-method (group) | |
2494 "Return the server or method used for selecting GROUP. | |
2495 You should probably use `gnus-find-method-for-group' instead." | |
2496 (let ((prefix (gnus-group-real-prefix group))) | |
2497 (if (equal prefix "") | |
2498 gnus-select-method | |
2499 (let ((servers gnus-opened-servers) | |
2500 (server "") | |
2501 backend possible found) | |
2502 (if (string-match "^[^\\+]+\\+" prefix) | |
2503 (setq backend (intern (substring prefix 0 (1- (match-end 0)))) | |
2504 server (substring prefix (match-end 0) (1- (length prefix)))) | |
2505 (setq backend (intern (substring prefix 0 (1- (length prefix)))))) | |
2506 (while servers | |
2507 (when (eq (caaar servers) backend) | |
2508 (setq possible (caar servers)) | |
2509 (when (equal (cadaar servers) server) | |
2510 (setq found (caar servers)))) | |
2511 (pop servers)) | |
2512 (or (car (rassoc found gnus-server-alist)) | |
2513 found | |
2514 (car (rassoc possible gnus-server-alist)) | |
2515 possible | |
2516 (list backend server)))))) | |
2517 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2518 (defsubst gnus-native-method-p (method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2519 "Return whether METHOD is the native select method." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2520 (gnus-method-equal method gnus-select-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2521 |
17493 | 2522 (defsubst gnus-secondary-method-p (method) |
2523 "Return whether METHOD is a secondary select method." | |
2524 (let ((methods gnus-secondary-select-methods) | |
2525 (gmethod (gnus-server-get-method nil method))) | |
2526 (while (and methods | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2527 (not (gnus-method-equal |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2528 (gnus-server-get-method nil (car methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2529 gmethod))) |
17493 | 2530 (setq methods (cdr methods))) |
2531 methods)) | |
2532 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2533 (defun gnus-method-simplify (method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2534 "Return the shortest uniquely identifying string or method for METHOD." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2535 (cond ((stringp method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2536 method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2537 ((gnus-native-method-p method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2538 nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2539 ((gnus-secondary-method-p method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2540 (format "%s:%s" (nth 0 method) (nth 1 method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2541 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2542 method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2543 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2544 (defun gnus-groups-from-server (server) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2545 "Return a list of all groups that are fetched from SERVER." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2546 (let ((alist (cdr gnus-newsrc-alist)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2547 info groups) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2548 (while (setq info (pop alist)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2549 (when (gnus-server-equal (gnus-info-method info) server) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2550 (push (gnus-info-group info) groups))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2551 (sort groups 'string<))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2552 |
17493 | 2553 (defun gnus-group-foreign-p (group) |
2554 "Say whether a group is foreign or not." | |
2555 (and (not (gnus-group-native-p group)) | |
2556 (not (gnus-group-secondary-p group)))) | |
2557 | |
2558 (defun gnus-group-native-p (group) | |
2559 "Say whether the group is native or not." | |
2560 (not (string-match ":" group))) | |
2561 | |
2562 (defun gnus-group-secondary-p (group) | |
2563 "Say whether the group is secondary or not." | |
2564 (gnus-secondary-method-p (gnus-find-method-for-group group))) | |
2565 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2566 (defun gnus-group-find-parameter (group &optional symbol allow-list) |
17493 | 2567 "Return the group parameters for GROUP. |
2568 If SYMBOL, return the value of that symbol in the group parameters." | |
2569 (save-excursion | |
2570 (set-buffer gnus-group-buffer) | |
2571 (let ((parameters (funcall gnus-group-get-parameter-function group))) | |
2572 (if symbol | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2573 (gnus-group-parameter-value parameters symbol allow-list) |
17493 | 2574 parameters)))) |
2575 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2576 (defun gnus-group-get-parameter (group &optional symbol allow-list) |
17493 | 2577 "Return the group parameters for GROUP. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2578 If SYMBOL, return the value of that symbol in the group parameters. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2579 Most functions should use `gnus-group-find-parameter', which |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2580 also examines the topic parameters." |
17493 | 2581 (let ((params (gnus-info-params (gnus-get-info group)))) |
2582 (if symbol | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2583 (gnus-group-parameter-value params symbol allow-list) |
17493 | 2584 params))) |
2585 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2586 (defun gnus-group-parameter-value (params symbol &optional allow-list) |
17493 | 2587 "Return the value of SYMBOL in group PARAMS." |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2588 ;; We only wish to return group parameters (dotted lists) and |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2589 ;; not local variables, which may have the same names. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2590 ;; But first we handle single elements... |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2591 (or (car (memq symbol params)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2592 ;; Handle alist. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2593 (let (elem) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2594 (catch 'found |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2595 (while (setq elem (pop params)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2596 (when (and (consp elem) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2597 (eq (car elem) symbol) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2598 (or allow-list |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2599 (atom (cdr elem)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2600 (throw 'found (cdr elem)))))))) |
17493 | 2601 |
2602 (defun gnus-group-add-parameter (group param) | |
2603 "Add parameter PARAM to GROUP." | |
2604 (let ((info (gnus-get-info group))) | |
2605 (when info | |
2606 (gnus-group-remove-parameter group (if (consp param) (car param) param)) | |
2607 ;; Cons the new param to the old one and update. | |
2608 (gnus-group-set-info (cons param (gnus-info-params info)) | |
2609 group 'params)))) | |
2610 | |
2611 (defun gnus-group-set-parameter (group name value) | |
2612 "Set parameter NAME to VALUE in GROUP." | |
2613 (let ((info (gnus-get-info group))) | |
2614 (when info | |
2615 (gnus-group-remove-parameter group name) | |
2616 (let ((old-params (gnus-info-params info)) | |
2617 (new-params (list (cons name value)))) | |
2618 (while old-params | |
2619 (when (or (not (listp (car old-params))) | |
2620 (not (eq (caar old-params) name))) | |
2621 (setq new-params (append new-params (list (car old-params))))) | |
2622 (setq old-params (cdr old-params))) | |
2623 (gnus-group-set-info new-params group 'params))))) | |
2624 | |
2625 (defun gnus-group-remove-parameter (group name) | |
2626 "Remove parameter NAME from GROUP." | |
2627 (let ((info (gnus-get-info group))) | |
2628 (when info | |
2629 (let ((params (gnus-info-params info))) | |
2630 (when params | |
2631 (setq params (delq name params)) | |
2632 (while (assq name params) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2633 (gnus-pull name params)) |
17493 | 2634 (gnus-info-set-params info params)))))) |
2635 | |
2636 (defun gnus-group-add-score (group &optional score) | |
2637 "Add SCORE to the GROUP score. | |
2638 If SCORE is nil, add 1 to the score of GROUP." | |
2639 (let ((info (gnus-get-info group))) | |
2640 (when info | |
2641 (gnus-info-set-score info (+ (gnus-info-score info) (or score 1)))))) | |
2642 | |
2643 (defun gnus-short-group-name (group &optional levels) | |
2644 "Collapse GROUP name LEVELS. | |
2645 Select methods are stripped and any remote host name is stripped down to | |
2646 just the host name." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2647 (let* ((name "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2648 (foreign "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2649 (depth 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2650 (skip 1) |
17493 | 2651 (levels (or levels |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2652 gnus-group-uncollapsed-levels |
17493 | 2653 (progn |
2654 (while (string-match "\\." group skip) | |
2655 (setq skip (match-end 0) | |
2656 depth (+ depth 1))) | |
2657 depth)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2658 ;; Separate foreign select method from group name and collapse. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2659 ;; If method contains a server, collapse to non-domain server name, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2660 ;; otherwise collapse to select method. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2661 (let* ((colon (string-match ":" group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2662 (server (and colon (substring group 0 colon))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2663 (plus (and server (string-match "+" server)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2664 (when server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2665 (if plus |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2666 (setq foreign (substring server (+ 1 plus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2667 (string-match "\\." server)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2668 group (substring group (+ 1 colon))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2669 (setq foreign server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2670 group (substring group (+ 1 colon)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2671 (setq foreign (concat foreign ":"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2672 ;; Collapse group name leaving LEVELS uncollapsed elements |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2673 (let* ((slist (split-string group "/")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2674 (slen (length slist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2675 (dlist (split-string group "\\.")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2676 (dlen (length dlist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2677 glist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2678 glen |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2679 gsep |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2680 res) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2681 (if (> slen dlen) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2682 (setq glist slist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2683 glen slen |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2684 gsep "/") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2685 (setq glist dlist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2686 glen dlen |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2687 gsep ".")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2688 (setq levels (- glen levels)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2689 (dolist (g glist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2690 (push (if (>= (decf levels) 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2691 (if (zerop (length g)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2692 "" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2693 (substring g 0 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2694 g) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2695 res)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2696 (concat foreign (mapconcat 'identity (nreverse res) gsep)))))) |
17493 | 2697 |
2698 (defun gnus-narrow-to-body () | |
2699 "Narrow to the body of an article." | |
2700 (narrow-to-region | |
2701 (progn | |
2702 (goto-char (point-min)) | |
2703 (or (search-forward "\n\n" nil t) | |
2704 (point-max))) | |
2705 (point-max))) | |
2706 | |
2707 | |
2708 ;;; | |
2709 ;;; Kill file handling. | |
2710 ;;; | |
2711 | |
2712 (defun gnus-apply-kill-file () | |
2713 "Apply a kill file to the current newsgroup. | |
2714 Returns the number of articles marked as read." | |
2715 (if (or (file-exists-p (gnus-newsgroup-kill-file nil)) | |
2716 (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name))) | |
2717 (gnus-apply-kill-file-internal) | |
2718 0)) | |
2719 | |
2720 (defun gnus-kill-save-kill-buffer () | |
2721 (let ((file (gnus-newsgroup-kill-file gnus-newsgroup-name))) | |
2722 (when (get-file-buffer file) | |
2723 (save-excursion | |
2724 (set-buffer (get-file-buffer file)) | |
2725 (when (buffer-modified-p) | |
2726 (save-buffer)) | |
2727 (kill-buffer (current-buffer)))))) | |
2728 | |
2729 (defcustom gnus-kill-file-name "KILL" | |
2730 "Suffix of the kill files." | |
2731 :group 'gnus-score-kill | |
2732 :group 'gnus-score-files | |
2733 :type 'string) | |
2734 | |
2735 (defun gnus-newsgroup-kill-file (newsgroup) | |
2736 "Return the name of a kill file name for NEWSGROUP. | |
2737 If NEWSGROUP is nil, return the global kill file name instead." | |
2738 (cond | |
2739 ;; The global KILL file is placed at top of the directory. | |
2740 ((or (null newsgroup) | |
2741 (string-equal newsgroup "")) | |
2742 (expand-file-name gnus-kill-file-name | |
2743 gnus-kill-files-directory)) | |
2744 ;; Append ".KILL" to newsgroup name. | |
2745 ((gnus-use-long-file-name 'not-kill) | |
2746 (expand-file-name (concat (gnus-newsgroup-savable-name newsgroup) | |
2747 "." gnus-kill-file-name) | |
2748 gnus-kill-files-directory)) | |
2749 ;; Place "KILL" under the hierarchical directory. | |
2750 (t | |
2751 (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup) | |
2752 "/" gnus-kill-file-name) | |
2753 gnus-kill-files-directory)))) | |
2754 | |
2755 ;;; Server things. | |
2756 | |
2757 (defun gnus-member-of-valid (symbol group) | |
2758 "Find out if GROUP has SYMBOL as part of its \"valid\" spec." | |
2759 (memq symbol (assoc | |
2760 (symbol-name (car (gnus-find-method-for-group group))) | |
2761 gnus-valid-select-methods))) | |
2762 | |
2763 (defun gnus-method-option-p (method option) | |
2764 "Return non-nil if select METHOD has OPTION as a parameter." | |
2765 (when (stringp method) | |
2766 (setq method (gnus-server-to-method method))) | |
2767 (memq option (assoc (format "%s" (car method)) | |
2768 gnus-valid-select-methods))) | |
2769 | |
2770 (defun gnus-similar-server-opened (method) | |
2771 (let ((opened gnus-opened-servers)) | |
2772 (while (and method opened) | |
2773 (when (and (equal (cadr method) (cadaar opened)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2774 (equal (car method) (caaar opened)) |
17493 | 2775 (not (equal method (caar opened)))) |
2776 (setq method nil)) | |
2777 (pop opened)) | |
2778 (not method))) | |
2779 | |
2780 (defun gnus-server-extend-method (group method) | |
2781 ;; This function "extends" a virtual server. If the server is | |
2782 ;; "hello", and the select method is ("hello" (my-var "something")) | |
2783 ;; in the group "alt.alt", this will result in a new virtual server | |
2784 ;; called "hello+alt.alt". | |
2785 (if (or (not (inline (gnus-similar-server-opened method))) | |
2786 (not (cddr method))) | |
2787 method | |
2788 `(,(car method) ,(concat (cadr method) "+" group) | |
2789 (,(intern (format "%s-address" (car method))) ,(cadr method)) | |
2790 ,@(cddr method)))) | |
2791 | |
2792 (defun gnus-server-status (method) | |
2793 "Return the status of METHOD." | |
2794 (nth 1 (assoc method gnus-opened-servers))) | |
2795 | |
2796 (defun gnus-group-name-to-method (group) | |
2797 "Guess a select method based on GROUP." | |
2798 (if (string-match ":" group) | |
2799 (let ((server (substring group 0 (match-beginning 0)))) | |
2800 (if (string-match "\\+" server) | |
2801 (list (intern (substring server 0 (match-beginning 0))) | |
2802 (substring server (match-end 0))) | |
2803 (list (intern server) ""))) | |
2804 gnus-select-method)) | |
2805 | |
2806 (defun gnus-find-method-for-group (group &optional info) | |
2807 "Find the select method that GROUP uses." | |
2808 (or gnus-override-method | |
2809 (and (not group) | |
2810 gnus-select-method) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2811 (and (not (gnus-group-entry group));; a new group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2812 (gnus-group-name-to-method group)) |
17493 | 2813 (let ((info (or info (gnus-get-info group))) |
2814 method) | |
2815 (if (or (not info) | |
2816 (not (setq method (gnus-info-method info))) | |
2817 (equal method "native")) | |
2818 gnus-select-method | |
2819 (setq method | |
2820 (cond ((stringp method) | |
2821 (inline (gnus-server-to-method method))) | |
2822 ((stringp (cadr method)) | |
2823 (inline (gnus-server-extend-method group method))) | |
2824 (t | |
2825 method))) | |
2826 (cond ((equal (cadr method) "") | |
2827 method) | |
2828 ((null (cadr method)) | |
2829 (list (car method) "")) | |
2830 (t | |
2831 (gnus-server-add-address method))))))) | |
2832 | |
2833 (defun gnus-methods-using (feature) | |
2834 "Find all methods that have FEATURE." | |
2835 (let ((valids gnus-valid-select-methods) | |
2836 outs) | |
2837 (while valids | |
2838 (when (memq feature (car valids)) | |
2839 (push (car valids) outs)) | |
2840 (setq valids (cdr valids))) | |
2841 outs)) | |
2842 | |
2843 (defun gnus-read-group (prompt &optional default) | |
2844 "Prompt the user for a group name. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2845 Disallow invalid group names." |
17493 | 2846 (let ((prefix "") |
2847 group) | |
2848 (while (not group) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2849 (when (string-match |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2850 gnus-invalid-group-regexp |
17493 | 2851 (setq group (read-string (concat prefix prompt) |
2852 (cons (or default "") 0) | |
2853 'gnus-group-history))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2854 (setq prefix (format "Invalid group name: \"%s\". " group) |
17493 | 2855 group nil))) |
2856 group)) | |
2857 | |
2858 (defun gnus-read-method (prompt) | |
2859 "Prompt the user for a method. | |
2860 Allow completion over sensible values." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2861 (let* ((servers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2862 (append gnus-valid-select-methods |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2863 (mapcar (lambda (i) (list (format "%s:%s" (caar i) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2864 (cadar i)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2865 gnus-opened-servers) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2866 gnus-predefined-server-alist |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2867 gnus-server-alist)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2868 (method |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2869 (completing-read |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2870 prompt servers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2871 nil t nil 'gnus-method-history))) |
17493 | 2872 (cond |
2873 ((equal method "") | |
2874 (setq method gnus-select-method)) | |
2875 ((assoc method gnus-valid-select-methods) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2876 (let ((address (if (memq 'prompt-address |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2877 (assoc method gnus-valid-select-methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2878 (read-string "Address: ") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2879 ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2880 (or (let ((opened gnus-opened-servers)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2881 (while (and opened |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2882 (not (equal (format "%s:%s" method address) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2883 (format "%s:%s" (caaar opened) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2884 (cadaar opened))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2885 (pop opened)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2886 (caar opened)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2887 (list (intern method) address)))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2888 ((assoc method servers) |
17493 | 2889 method) |
2890 (t | |
2891 (list (intern method) ""))))) | |
2892 | |
2893 ;;; User-level commands. | |
2894 | |
2895 ;;;###autoload | |
2896 (defun gnus-slave-no-server (&optional arg) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2897 "Read network news as a slave, without connecting to local server." |
17493 | 2898 (interactive "P") |
2899 (gnus-no-server arg t)) | |
2900 | |
2901 ;;;###autoload | |
2902 (defun gnus-no-server (&optional arg slave) | |
2903 "Read network news. | |
2904 If ARG is a positive number, Gnus will use that as the | |
2905 startup level. If ARG is nil, Gnus will be started at level 2. | |
2906 If ARG is non-nil and not a positive number, Gnus will | |
2907 prompt the user for the name of an NNTP server to use. | |
2908 As opposed to `gnus', this command will not connect to the local server." | |
2909 (interactive "P") | |
2910 (gnus-no-server-1 arg slave)) | |
2911 | |
2912 ;;;###autoload | |
2913 (defun gnus-slave (&optional arg) | |
2914 "Read news as a slave." | |
2915 (interactive "P") | |
2916 (gnus arg nil 'slave)) | |
2917 | |
2918 ;;;###autoload | |
2919 (defun gnus-other-frame (&optional arg) | |
2920 "Pop up a frame to read news." | |
2921 (interactive "P") | |
2922 (let ((window (get-buffer-window gnus-group-buffer))) | |
2923 (cond (window | |
2924 (select-frame (window-frame window))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2925 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2926 (select-frame (make-frame))))) |
17493 | 2927 (gnus arg)) |
2928 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2929 ;;(setq thing ? ; this is a comment |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2930 ;; more 'yes) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2931 |
17493 | 2932 ;;;###autoload |
2933 (defun gnus (&optional arg dont-connect slave) | |
2934 "Read network news. | |
2935 If ARG is non-nil and a positive number, Gnus will use that as the | |
2936 startup level. If ARG is non-nil and not a positive number, Gnus will | |
2937 prompt the user for the name of an NNTP server to use." | |
2938 (interactive "P") | |
2939 (gnus-1 arg dont-connect slave)) | |
2940 | |
2941 ;; Allow redefinition of Gnus functions. | |
2942 | |
2943 (gnus-ems-redefine) | |
2944 | |
2945 (provide 'gnus) | |
2946 | |
2947 ;;; gnus.el ends here |