annotate lisp/prim/loaddefs.el @ 163:0132846995bd r20-3b8

Import from CVS: tag r20-3b8
author cvs
date Mon, 13 Aug 2007 09:43:35 +0200
parents c7528f8e288d
children 85ec50267440
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
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
93 (setq debug-ignored-errors
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
94 '(beginning-of-line
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
95 beginning-of-buffer
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
96 end-of-line
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
97 end-of-buffer
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
98 end-of-file buffer-read-only
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
99 "^Previous command was not a yank\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
100 "^Minibuffer window is not active\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
101 "^End of history; no next item\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
102 "^Beginning of history; no preceding item\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
103 "^No recursive edit is in progress\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
104 "^Changes to be undone are outside visible portion of buffer\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
105 "^No undo information in this buffer\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
106 "^No further undo information\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
107 "^Save not confirmed\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
108 "^Recover-file cancelled\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
109
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
110 ;; comint
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
111 "^Not at command line\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
112 "^Empty input ring\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
113 "^No history\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
114 "^Not found\\'";; To common?
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
115 "^Current buffer has no process\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
116
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
117 ;; dabbrev
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
118 "^No dynamic expansion for \".*\" found\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
119 "^No further dynamic expansions for \".*\" found\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
120 "^No further dynamic expansions for `.*' found\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
121
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
122 ;; Completion
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
123 "^To complete, the point must be after a symbol at least [0-9]* character long\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
124 "^The string \".*\" is too short to be saved as a completion\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
125
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
126 ;; Compile
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
127 "^No more errors\\( yet\\|\\)\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
128
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
129 ;; Gnus
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
130 "^NNTP: Connection closed\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
131
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
132 ;; info
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
133 "^Node has no Previous\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
134 "^No \".*\" in index\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
135
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
136 ;; imenu
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
137 "^No items suitable for an index found in this buffer\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
138 "^The mode \".*\" does not take full advantage of imenu\\.el yet\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
139
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
140 ;; ispell
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
141 "^No word found to check!\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
142
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
143 ;; man
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
144
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
145 ;; etags
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
146 "^No tags table in use! Use .* to select one\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
147 "^There is no default tag\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
148 "^No previous tag locations\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
149 "^File .* is not a valid tags table\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
150 "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
151 "^Rerun etags: `.*' not found in "
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
152 "^All files processed\\.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
153 "^No .* or .* in progress.\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
154 "^File .* not in current tags tables\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
155 "No tags table loaded."
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
156 "^Nothing to complete\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
157
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
158 ;; BBDB
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
159 "^no previous record\\'"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
160 "^no next record\\'"))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
161
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (make-variable-buffer-local 'indent-tabs-mode)
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
163
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 ;;; This code also was not generated by autoload.el, because VM goes out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 ;;; of its way to be perverse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (autoload 'vm "vm"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 View Mail: an alternate mail reader for emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 Optional first arg FOLDER specifies the folder to visit. It defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 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
173 mode, a major mode for reading mail.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 Prefix arg or optional second arg READ-ONLY non-nil indicates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 that the folder should be considered read only. No attribute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 changes, messages additions or deletions will be allowed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 visited folder.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 Visiting the primary inbox causes any contents of the system mailbox to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 be moved and appended to the resulting buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 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
184 `p'revious to move about in the folder. Messages are marked for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 deletion with `d', and saved to another folder with `s'. Quitting VM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 with `q' expunges deleted messages and saves the buffered folder to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 disk.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 See the documentation for vm-mode for more information."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (autoload 'vm-mode "vm"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 View Mail: an alternate mail reader for emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 Commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 h - summarize folder contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 j - discard cached information about the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 n - go to next message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 p - go to previous message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 N - like `n' but ignores skip-variable settings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 P - like `p' but ignores skip-variable settings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 M-n - go to next unread message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 M-p - go to previous unread message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 RET - go to numbered message (uses prefix arg or prompts in minibuffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 TAB - go to last message seen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 M-s - incremental search through the folder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 t - display hidden headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 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
212 b - scroll backward a page
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 < - go to beginning of current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 > - go to end of current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 d - delete message, prefix arg deletes messages forward (flag as deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 C-d - delete message, prefix arg deletes messages backward (flag as deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 u - undelete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 k - flag for deletion all messages with same subject as the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 r - reply (only to the sender of the message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 R - reply with included text for current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 M-r - extract and resend bounced message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 f - followup (reply to all recipients of message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 F - followup with included text from the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 z - forward the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 m - send a message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 B - resend the current message to another user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 c - continue composing the most recent message you were composing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 @ - digestify and mail entire folder contents (the folder is not modified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 * - burst a digest into individual messages, and append and assimilate these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 message into the current folder.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 G - sort messages by various keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 g - get any new mail that has arrived in the system mailbox
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (new mail is appended to the disk and buffer copies of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 primary inbox.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 v - visit another mail folder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 V - visit a virtual folder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 e - edit the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 s - save current message in a folder (appends if folder already exists)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 w - write current message to a file without its headers (appends if exists)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 S - save entire folder to disk, expunging deleted messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 A - save unfiled messages to their vm-auto-folder-alist specified folders
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 # - expunge deleted messages (without saving folder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 q - quit VM, deleted messages are expunged, folder saved to disk
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 x - exit VM with no change to the folder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 M N - use marks; the next vm command will affect only marked messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 if it makes sense for the command to do so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 M M - mark the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 M U - unmark the current message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 M m - mark all messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 M u - unmark all messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 M ? - help for the mark commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 W S - save the current window configuration to a name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 W D - delete a window configuration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 W W - apply a configuration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 W ? - help for the window configuration commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 C-_ - undo, special undo that retracts the most recent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 changes in message attributes. Expunges and saves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 cannot be undone. C-x u is also bound to this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 L - reload your VM init file, ~/.vm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 ? - help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 ! - run a shell command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 | - run a shell command with the current message as input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 M-C - view conditions under which you may redistribute VM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 M-W - view the details of VM's lack of a warranty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 Variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 vm-auto-center-summary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 vm-auto-folder-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 vm-auto-folder-case-fold-search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 vm-auto-get-new-mail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 vm-auto-next-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 vm-berkeley-mail-compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 vm-check-folder-types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 vm-convert-folder-types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 vm-circular-folders
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 vm-confirm-new-folders
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 vm-confirm-quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 vm-crash-box
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 vm-delete-after-archiving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 vm-delete-after-bursting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 vm-delete-after-saving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 vm-delete-empty-folders
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 vm-digest-burst-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 vm-digest-center-preamble
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 vm-digest-preamble-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 vm-digest-send-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 vm-folder-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 vm-folder-read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 vm-follow-summary-cursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 vm-forwarded-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 vm-forwarding-digest-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 vm-forwarding-subject-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 vm-gargle-uucp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 vm-highlighted-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 vm-honor-page-delimiters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 vm-in-reply-to-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 vm-included-text-attribution-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 vm-included-text-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 vm-inhibit-startup-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 vm-invisible-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 vm-jump-to-new-messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 vm-jump-to-unread-messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 vm-keep-sent-messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 vm-mail-header-from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 vm-mail-mode-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 vm-mail-window-percentage
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 vm-mode-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 vm-move-after-deleting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 vm-move-after-undeleting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 vm-mutable-windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 vm-preview-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 vm-preview-read-messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 vm-primary-inbox
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 vm-recognize-pop-maildrops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 vm-reply-ignored-addresses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 vm-reply-subject-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 vm-resend-bounced-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 vm-resend-bounced-discard-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 vm-resend-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 vm-resend-discard-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 vm-retain-message-order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 vm-rfc1153-digest-discard-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 vm-rfc1153-digest-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 vm-rfc934-digest-discard-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 vm-rfc934-digest-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 vm-search-using-regexps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 vm-skip-deleted-messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 vm-skip-read-messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 vm-spool-files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 vm-startup-with-summary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 vm-strip-reply-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 vm-summary-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 vm-unforwarded-header-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 vm-virtual-folder-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 vm-virtual-mirror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 vm-visible-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 vm-visit-when-saving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 vm-window-configuration-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (autoload 'vm-visit-folder "vm"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 Visit a mail file with View Mail, an alternate mail reader for emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 See the description of the `vm' and `vm-mode' functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 VM will parse and present its messages to you in the usual way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 First arg FOLDER specifies the mail file to visit. When this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 command is called interactively the file name is read from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 Prefix arg or optional second arg READ-ONLY non-nil indicates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 that the folder should be considered read only. No attribute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 changes, messages additions or deletions will be allowed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 visited folder."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (autoload 'vm-mail "vm"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 Send a mail message from within View Mail, or from without."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
381 ;;; Load in generated autoloads (made by autoload.el).
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
382 ;; (condition-case nil
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
383 ;; (load "auto-autoloads")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
384 ;; (file-error nil))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
385 (let ((dir load-path))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
386 (while dir
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
387 (condition-case nil
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
388 (load (concat (car dir) "/auto-autoloads"))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
389 (file-error nil))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 78
diff changeset
390 (pop dir)))
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
391
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 ;;; Local Variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 ;;; no-byte-compile: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ;;; no-update-autoloads: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ;;; End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 ;;; loaddefs.el ends here