annotate lisp/prim/loaddefs.el @ 167:85ec50267440 r20-3b10

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