annotate lisp/prim/loaddefs.el @ 58:8b0bdfdf0cf0 r19-16-pre4

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