0
|
1 ;;; loaddefs.el --- define standard autoloads of other files
|
|
2
|
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992-1995 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Maintainer: XEmacs
|
|
6 ;; Keywords: internal
|
|
7
|
|
8 ;; This file is part of XEmacs.
|
|
9
|
|
10 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
11 ;; under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
18 ;; General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
12
|
21 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
0
|
24
|
|
25 ;;; Synched up with: Not synched with FSF.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
30 ;;; Special formatting conventions are used in this file!
|
|
31 ;;;
|
|
32 ;;; a backslash-newline is used at the beginning of a documentation string
|
|
33 ;;; when that string should be stored in the file lib-src/DOCnnn, not in core.
|
|
34 ;;;
|
|
35 ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
|
|
36 ;;;
|
|
37 ;;; But you must obey certain rules to make sure the string is understood
|
|
38 ;;; and goes into lib-src/DOCnnn properly. Otherwise, the string will not go
|
|
39 ;;; anywhere!
|
|
40 ;;;
|
|
41 ;;; The doc string must appear in the standard place in a call to
|
|
42 ;;; defun, autoload, defvar or defconst. No Lisp macros are recognized.
|
|
43 ;;; The open-paren starting the definition must appear in column 0.
|
|
44 ;;;
|
|
45 ;;; In defvar and defconst, there is an additional rule:
|
|
46 ;;; The double-quote that starts the string must be on the same
|
|
47 ;;; line as the defvar or defconst.
|
|
48 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
49
|
|
50 ;;; **********************************************************************
|
|
51 ;;; You should never need to write autoloads by hand and put them here.
|
|
52 ;;;
|
|
53 ;;; It is no longer necessary. Instead use autoload.el to maintain them
|
|
54 ;;; for you. Just insert ";;;###autoload" before defuns or defmacros you
|
|
55 ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
|
|
56 ;;; (defvars, key definitions, etc.). For example,
|
|
57 ;;; ;;;###autoload
|
|
58 ;;; (defun foobar () ....)
|
|
59 ;;; ;;;###autoload (define-key global-map "f" 'foobar)
|
|
60 ;;; ;;;###autoload
|
|
61 ;;; (defvar foobar-var nil "\
|
|
62 ;;; This is foobar-var's doc-string.")
|
|
63 ;;;
|
|
64 ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
|
|
65 ;;;
|
|
66 ;;; You can also use M-x update-directory-autoloads to update the autoloads
|
|
67 ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
|
|
68 ;;; update-autoloads-here to update the autoloads for each file that
|
|
69 ;;; already has an autoload section in this file.
|
|
70 ;;; **********************************************************************
|
|
71
|
|
72 ;;; Code:
|
|
73
|
|
74 ;; These variables are used by autoloadable packages.
|
|
75 ;; They are defined here so that they do not get overridden
|
|
76 ;; by the loading of those packages.
|
|
77
|
|
78 ;; Names in directory that end in one of these
|
|
79 ;; are ignored in completion,
|
|
80 ;; making it more likely you will get a unique match.
|
|
81 (setq completion-ignored-extensions
|
|
82 (mapcar 'purecopy
|
|
83 (if (eq system-type 'vax-vms)
|
|
84 '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
|
|
85 ".dvi" ".toc" ".log" ".aux"
|
|
86 ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
|
|
87 ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
|
|
88 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
|
|
89 ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
|
|
90 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"
|
|
91 ".diff" ".oi"))))
|
|
92
|
|
93 (make-variable-buffer-local 'indent-tabs-mode)
|
78
|
94
|
0
|
95
|
|
96 ;;; This code also was not generated by autoload.el, because VM goes out
|
|
97 ;;; of its way to be perverse.
|
|
98
|
|
99 (autoload 'vm "vm"
|
|
100 "\
|
|
101 View Mail: an alternate mail reader for emacs.
|
|
102 Optional first arg FOLDER specifies the folder to visit. It defaults
|
|
103 to the value of vm-primary-inbox. The folder buffer is put into VM
|
|
104 mode, a major mode for reading mail.
|
|
105
|
|
106 Prefix arg or optional second arg READ-ONLY non-nil indicates
|
|
107 that the folder should be considered read only. No attribute
|
|
108 changes, messages additions or deletions will be allowed in the
|
|
109 visited folder.
|
|
110
|
|
111 Visiting the primary inbox causes any contents of the system mailbox to
|
|
112 be moved and appended to the resulting buffer.
|
|
113
|
|
114 All the messages can be read by repeatedly pressing SPC. Use `n'ext and
|
|
115 `p'revious to move about in the folder. Messages are marked for
|
|
116 deletion with `d', and saved to another folder with `s'. Quitting VM
|
|
117 with `q' expunges deleted messages and saves the buffered folder to
|
|
118 disk.
|
|
119
|
|
120 See the documentation for vm-mode for more information."
|
|
121 t)
|
|
122
|
|
123 (autoload 'vm-mode "vm"
|
|
124 "\
|
|
125 View Mail: an alternate mail reader for emacs.
|
|
126
|
|
127 Commands:
|
|
128 h - summarize folder contents
|
|
129 j - discard cached information about the current message
|
|
130
|
|
131 n - go to next message
|
|
132 p - go to previous message
|
|
133 N - like `n' but ignores skip-variable settings
|
|
134 P - like `p' but ignores skip-variable settings
|
|
135 M-n - go to next unread message
|
|
136 M-p - go to previous unread message
|
|
137 RET - go to numbered message (uses prefix arg or prompts in minibuffer)
|
|
138 TAB - go to last message seen
|
|
139 M-s - incremental search through the folder
|
|
140
|
|
141 t - display hidden headers
|
|
142 SPC - scroll forward a page (if at end of message, then display next message)
|
|
143 b - scroll backward a page
|
|
144 < - go to beginning of current message
|
|
145 > - go to end of current message
|
|
146
|
|
147 d - delete message, prefix arg deletes messages forward (flag as deleted)
|
|
148 C-d - delete message, prefix arg deletes messages backward (flag as deleted)
|
|
149 u - undelete
|
|
150 k - flag for deletion all messages with same subject as the current message
|
|
151
|
|
152 r - reply (only to the sender of the message)
|
|
153 R - reply with included text for current message
|
|
154 M-r - extract and resend bounced message
|
|
155 f - followup (reply to all recipients of message)
|
|
156 F - followup with included text from the current message
|
|
157 z - forward the current message
|
|
158 m - send a message
|
|
159 B - resend the current message to another user.
|
|
160 c - continue composing the most recent message you were composing
|
|
161
|
|
162 @ - digestify and mail entire folder contents (the folder is not modified)
|
|
163 * - burst a digest into individual messages, and append and assimilate these
|
|
164 message into the current folder.
|
|
165
|
|
166 G - sort messages by various keys
|
|
167
|
|
168 g - get any new mail that has arrived in the system mailbox
|
|
169 (new mail is appended to the disk and buffer copies of the
|
|
170 primary inbox.)
|
|
171 v - visit another mail folder
|
|
172 V - visit a virtual folder
|
|
173
|
|
174 e - edit the current message
|
|
175
|
|
176 s - save current message in a folder (appends if folder already exists)
|
|
177 w - write current message to a file without its headers (appends if exists)
|
|
178 S - save entire folder to disk, expunging deleted messages
|
|
179 A - save unfiled messages to their vm-auto-folder-alist specified folders
|
|
180 # - expunge deleted messages (without saving folder)
|
|
181 q - quit VM, deleted messages are expunged, folder saved to disk
|
|
182 x - exit VM with no change to the folder
|
|
183
|
|
184 M N - use marks; the next vm command will affect only marked messages
|
|
185 if it makes sense for the command to do so
|
|
186
|
|
187 M M - mark the current message
|
|
188 M U - unmark the current message
|
|
189 M m - mark all messages
|
|
190 M u - unmark all messages
|
|
191 M ? - help for the mark commands
|
|
192
|
|
193 W S - save the current window configuration to a name
|
|
194 W D - delete a window configuration
|
|
195 W W - apply a configuration
|
|
196 W ? - help for the window configuration commands
|
|
197
|
|
198 C-_ - undo, special undo that retracts the most recent
|
|
199 changes in message attributes. Expunges and saves
|
|
200 cannot be undone. C-x u is also bound to this
|
|
201 command.
|
|
202
|
|
203 L - reload your VM init file, ~/.vm
|
|
204
|
|
205 ? - help
|
|
206
|
|
207 ! - run a shell command
|
|
208 | - run a shell command with the current message as input
|
|
209
|
|
210 M-C - view conditions under which you may redistribute VM
|
|
211 M-W - view the details of VM's lack of a warranty
|
|
212
|
|
213 Variables:
|
|
214 vm-auto-center-summary
|
|
215 vm-auto-folder-alist
|
|
216 vm-auto-folder-case-fold-search
|
|
217 vm-auto-get-new-mail
|
|
218 vm-auto-next-message
|
|
219 vm-berkeley-mail-compatibility
|
|
220 vm-check-folder-types
|
|
221 vm-convert-folder-types
|
|
222 vm-circular-folders
|
|
223 vm-confirm-new-folders
|
|
224 vm-confirm-quit
|
|
225 vm-crash-box
|
|
226 vm-delete-after-archiving
|
|
227 vm-delete-after-bursting
|
|
228 vm-delete-after-saving
|
|
229 vm-delete-empty-folders
|
|
230 vm-digest-burst-type
|
|
231 vm-digest-center-preamble
|
|
232 vm-digest-preamble-format
|
|
233 vm-digest-send-type
|
|
234 vm-folder-directory
|
|
235 vm-folder-read-only
|
|
236 vm-follow-summary-cursor
|
|
237 vm-forwarded-headers
|
|
238 vm-forwarding-digest-type
|
|
239 vm-forwarding-subject-format
|
|
240 vm-gargle-uucp
|
|
241 vm-highlighted-header-regexp
|
|
242 vm-honor-page-delimiters
|
|
243 vm-in-reply-to-format
|
|
244 vm-included-text-attribution-format
|
|
245 vm-included-text-prefix
|
|
246 vm-inhibit-startup-message
|
|
247 vm-invisible-header-regexp
|
|
248 vm-jump-to-new-messages
|
|
249 vm-jump-to-unread-messages
|
|
250 vm-keep-sent-messages
|
|
251 vm-mail-header-from
|
|
252 vm-mail-mode-hook
|
|
253 vm-mail-window-percentage
|
|
254 vm-mode-hook
|
|
255 vm-move-after-deleting
|
|
256 vm-move-after-undeleting
|
|
257 vm-mutable-windows
|
|
258 vm-preview-lines
|
|
259 vm-preview-read-messages
|
|
260 vm-primary-inbox
|
|
261 vm-recognize-pop-maildrops
|
|
262 vm-reply-ignored-addresses
|
|
263 vm-reply-subject-prefix
|
|
264 vm-resend-bounced-headers
|
|
265 vm-resend-bounced-discard-header-regexp
|
|
266 vm-resend-headers
|
|
267 vm-resend-discard-header-regexp
|
|
268 vm-retain-message-order
|
|
269 vm-rfc1153-digest-discard-header-regexp
|
|
270 vm-rfc1153-digest-headers
|
|
271 vm-rfc934-digest-discard-header-regexp
|
|
272 vm-rfc934-digest-headers
|
|
273 vm-search-using-regexps
|
|
274 vm-skip-deleted-messages
|
|
275 vm-skip-read-messages
|
|
276 vm-spool-files
|
|
277 vm-startup-with-summary
|
|
278 vm-strip-reply-headers
|
|
279 vm-summary-format
|
|
280 vm-unforwarded-header-regexp
|
|
281 vm-virtual-folder-alist
|
|
282 vm-virtual-mirror
|
|
283 vm-visible-headers
|
|
284 vm-visit-when-saving
|
|
285 vm-window-configuration-file
|
|
286 "
|
|
287 t)
|
|
288
|
|
289 (autoload 'vm-visit-folder "vm"
|
|
290 "\
|
|
291 Visit a mail file with View Mail, an alternate mail reader for emacs.
|
|
292 See the description of the `vm' and `vm-mode' functions.
|
|
293
|
|
294 VM will parse and present its messages to you in the usual way.
|
|
295
|
|
296 First arg FOLDER specifies the mail file to visit. When this
|
|
297 command is called interactively the file name is read from the
|
|
298 minibuffer.
|
|
299
|
|
300 Prefix arg or optional second arg READ-ONLY non-nil indicates
|
|
301 that the folder should be considered read only. No attribute
|
|
302 changes, messages additions or deletions will be allowed in the
|
|
303 visited folder."
|
|
304 t)
|
|
305
|
|
306 (autoload 'vm-mail "vm"
|
|
307 "\
|
|
308 Send a mail message from within View Mail, or from without."
|
|
309 t)
|
|
310
|
|
311
|
78
|
312 ;;; Load in generated autoloads (made by autoload.el).
|
|
313 (condition-case nil
|
|
314 (load "auto-autoloads")
|
|
315 (file-error nil))
|
76
|
316
|
0
|
317 ;;; Local Variables:
|
|
318 ;;; no-byte-compile: t
|
|
319 ;;; no-update-autoloads: t
|
|
320 ;;; End:
|
|
321 ;;; loaddefs.el ends here
|