209
|
1 ;;; DO NOT MODIFY THIS FILE
|
217
|
2 (if (featurep 'Standard-autoloads) (error "Already loaded"))
|
|
3
|
|
4 ;;;### (autoloads nil "abbrev" "lisp/abbrev.el")
|
|
5
|
|
6 ;;;***
|
|
7
|
|
8 ;;;### (autoloads (about-xemacs) "about" "lisp/about.el")
|
|
9
|
|
10 (autoload 'about-xemacs "about" "\
|
|
11 Describe the True Editor and its minions." t nil)
|
|
12
|
|
13 ;;;***
|
|
14
|
|
15 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "lisp/apropos.el")
|
|
16
|
|
17 (fset 'command-apropos 'apropos-command)
|
|
18
|
|
19 (autoload 'apropos-command "apropos" "\
|
|
20 Shows commands (interactively callable functions) that match REGEXP.
|
|
21 With optional prefix ARG or if `apropos-do-all' is non-nil, also show
|
|
22 variables." t nil)
|
|
23
|
|
24 (autoload 'apropos "apropos" "\
|
|
25 Show all bound symbols whose names match REGEXP.
|
|
26 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound
|
|
27 symbols and key bindings, which is a little more time-consuming.
|
|
28 Returns list of symbols and documentation found." t nil)
|
|
29
|
|
30 (autoload 'apropos-value "apropos" "\
|
|
31 Show all symbols whose value's printed image matches REGEXP.
|
|
32 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks
|
|
33 at the function and at the names and values of properties.
|
|
34 Returns list of symbols and values found." t nil)
|
|
35
|
|
36 (autoload 'apropos-documentation "apropos" "\
|
|
37 Show symbols whose documentation contain matches for REGEXP.
|
|
38 With optional prefix ARG or if `apropos-do-all' is non-nil, also use
|
|
39 documentation that is not stored in the documentation file and show key
|
|
40 bindings.
|
|
41 Returns list of symbols and documentation found." t nil)
|
|
42
|
|
43 ;;;***
|
|
44
|
|
45 ;;;### (autoloads (batch-update-directory batch-update-autoloads update-autoloads-from-directory update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "lisp/autoload.el")
|
|
46
|
|
47 (autoload 'generate-file-autoloads "autoload" "\
|
|
48 Insert at point a loaddefs autoload section for FILE.
|
|
49 autoloads are generated for defuns and defmacros in FILE
|
|
50 marked by `generate-autoload-cookie' (which see).
|
|
51 If FILE is being visited in a buffer, the contents of the buffer
|
|
52 are used." t nil)
|
|
53
|
|
54 (autoload 'update-file-autoloads "autoload" "\
|
|
55 Update the autoloads for FILE in `generated-autoload-file'
|
|
56 \(which FILE might bind in its local variables).
|
|
57 This functions refuses to update autoloads files." t nil)
|
|
58
|
|
59 (autoload 'update-autoloads-here "autoload" "\
|
|
60 Update sections of the current buffer generated by `update-file-autoloads'." t nil)
|
|
61
|
|
62 (autoload 'update-autoloads-from-directory "autoload" "\
|
|
63 Update `generated-autoload-file' with all the current autoloads from DIR.
|
|
64 This runs `update-file-autoloads' on each .el file in DIR.
|
|
65 Obsolete autoload entries for files that no longer exist are deleted." t nil)
|
|
66
|
|
67 (autoload 'batch-update-autoloads "autoload" "\
|
|
68 Update the autoloads for the files or directories on the command line.
|
|
69 Runs `update-file-autoloads' on files and `update-directory-autoloads'
|
|
70 on directories. Must be used only with -batch, and kills Emacs on completion.
|
|
71 Each file will be processed even if an error occurred previously.
|
|
72 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'.
|
|
73 The directory to which the auto-autoloads.el file must be the first parameter
|
|
74 on the command line." nil nil)
|
|
75
|
|
76 (autoload 'batch-update-directory "autoload" "\
|
|
77 Update the autoloads for the directory on the command line.
|
|
78 Runs `update-file-autoloads' on each file in the given directory, must
|
|
79 be used only with -batch and kills XEmacs on completion." nil nil)
|
|
80
|
|
81 ;;;***
|
|
82
|
|
83 ;;;### (autoloads nil "buff-menu" "lisp/buff-menu.el")
|
|
84
|
|
85 (defvar list-buffers-directory nil)
|
|
86
|
|
87 (make-variable-buffer-local 'list-buffers-directory)
|
|
88
|
|
89 ;;;***
|
209
|
90
|
|
91 ;;;### (autoloads (batch-byte-recompile-directory batch-byte-recompile-directory-norecurse batch-byte-compile display-call-tree byte-compile-sexp byte-compile compile-defun byte-compile-file byte-recompile-file byte-recompile-directory byte-force-recompile) "bytecomp" "lisp/bytecomp.el")
|
|
92
|
|
93 (autoload 'byte-force-recompile "bytecomp" "\
|
|
94 Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
|
|
95 Files in subdirectories of DIRECTORY are processed also." t nil)
|
|
96
|
|
97 (autoload 'byte-recompile-directory "bytecomp" "\
|
|
98 Recompile every `.el' file in DIRECTORY that needs recompilation.
|
|
99 This is if a `.elc' file exists but is older than the `.el' file.
|
|
100 Files in subdirectories of DIRECTORY are processed also unless argument
|
|
101 NORECURSION is non-nil.
|
|
102
|
|
103 If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
|
|
104 But a prefix argument (optional second arg) means ask user,
|
|
105 for each such `.el' file, whether to compile it. Prefix argument 0 means
|
|
106 don't ask and compile the file anyway.
|
|
107
|
|
108 A nonzero prefix argument also means ask about each subdirectory.
|
|
109
|
|
110 If the fourth argument FORCE is non-nil,
|
|
111 recompile every `.el' file that already has a `.elc' file." t nil)
|
|
112
|
|
113 (autoload 'byte-recompile-file "bytecomp" "\
|
|
114 Recompile a file of Lisp code named FILENAME if it needs recompilation.
|
|
115 This is if the `.elc' file exists but is older than the `.el' file.
|
|
116
|
|
117 If the `.elc' file does not exist, normally the `.el' file is *not*
|
|
118 compiled. But a prefix argument (optional second arg) means ask user
|
|
119 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil)
|
|
120
|
|
121 (autoload 'byte-compile-file "bytecomp" "\
|
|
122 Compile a file of Lisp code named FILENAME into a file of byte code.
|
|
123 The output file's name is made by appending `c' to the end of FILENAME.
|
|
124 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
|
|
125
|
|
126 (autoload 'compile-defun "bytecomp" "\
|
|
127 Compile and evaluate the current top-level form.
|
|
128 Print the result in the minibuffer.
|
|
129 With argument, insert value in current buffer after the form." t nil)
|
|
130
|
|
131 (autoload 'byte-compile "bytecomp" "\
|
|
132 If FORM is a symbol, byte-compile its function definition.
|
|
133 If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
|
|
134
|
|
135 (autoload 'byte-compile-sexp "bytecomp" "\
|
|
136 Compile and return SEXP." nil nil)
|
|
137
|
|
138 (autoload 'display-call-tree "bytecomp" "\
|
|
139 Display a call graph of a specified file.
|
|
140 This lists which functions have been called, what functions called
|
|
141 them, and what functions they call. The list includes all functions
|
|
142 whose definitions have been compiled in this Emacs session, as well as
|
|
143 all functions called by those functions.
|
|
144
|
|
145 The call graph does not include macros, inline functions, or
|
|
146 primitives that the byte-code interpreter knows about directly (eq,
|
|
147 cons, etc.).
|
|
148
|
|
149 The call tree also lists those functions which are not known to be called
|
|
150 \(that is, to which no calls have been compiled), and which cannot be
|
|
151 invoked interactively." t nil)
|
|
152
|
|
153 (autoload 'batch-byte-compile "bytecomp" "\
|
|
154 Run `byte-compile-file' on the files remaining on the command line.
|
|
155 Use this from the command line, with `-batch';
|
|
156 it won't work in an interactive Emacs.
|
|
157 Each file is processed even if an error occurred previously.
|
|
158 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
|
|
159
|
|
160 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
|
|
161 Same as `batch-byte-recompile-directory' but without recursion." nil nil)
|
|
162
|
|
163 (autoload 'batch-byte-recompile-directory "bytecomp" "\
|
|
164 Runs `byte-recompile-directory' on the dirs remaining on the command line.
|
|
165 Must be used only with `-batch', and kills Emacs on completion.
|
|
166 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
|
|
167
|
|
168 ;;;***
|
|
169
|
|
170 ;;;### (autoloads (compiler-macroexpand define-compiler-macro ignore-errors assert check-type typep deftype cl-struct-setf-expander defstruct define-modify-macro callf2 callf letf* letf rotatef shiftf remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method declare the locally multiple-value-setq multiple-value-bind lexical-let* lexical-let symbol-macrolet macrolet labels flet progv psetq do-all-symbols do-symbols dotimes dolist do* do loop return-from return block etypecase typecase ecase case load-time-value eval-when destructuring-bind function* defmacro* defun* gentemp gensym cl-compile-time-init) "cl-macs" "lisp/cl-macs.el")
|
|
171
|
|
172 (autoload 'cl-compile-time-init "cl-macs" nil nil nil)
|
|
173
|
|
174 (autoload 'gensym "cl-macs" "\
|
|
175 Generate a new uninterned symbol.
|
|
176 The name is made by appending a number to PREFIX, default \"G\"." nil nil)
|
|
177
|
|
178 (autoload 'gentemp "cl-macs" "\
|
|
179 Generate a new interned symbol with a unique name.
|
|
180 The name is made by appending a number to PREFIX, default \"G\"." nil nil)
|
|
181
|
|
182 (autoload 'defun* "cl-macs" "\
|
|
183 (defun* NAME ARGLIST [DOCSTRING] BODY...): define NAME as a function.
|
|
184 Like normal `defun', except ARGLIST allows full Common Lisp conventions,
|
|
185 and BODY is implicitly surrounded by (block NAME ...)." nil 'macro)
|
|
186
|
|
187 (autoload 'defmacro* "cl-macs" "\
|
|
188 (defmacro* NAME ARGLIST [DOCSTRING] BODY...): define NAME as a macro.
|
|
189 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
|
|
190 and BODY is implicitly surrounded by (block NAME ...)." nil 'macro)
|
|
191
|
|
192 (autoload 'function* "cl-macs" "\
|
|
193 (function* SYMBOL-OR-LAMBDA): introduce a function.
|
|
194 Like normal `function', except that if argument is a lambda form, its
|
|
195 ARGLIST allows full Common Lisp conventions." nil 'macro)
|
|
196
|
|
197 (autoload 'destructuring-bind "cl-macs" nil nil 'macro)
|
|
198
|
|
199 (autoload 'eval-when "cl-macs" "\
|
|
200 (eval-when (WHEN...) BODY...): control when BODY is evaluated.
|
|
201 If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
|
|
202 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
|
|
203 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level." nil 'macro)
|
|
204
|
|
205 (autoload 'load-time-value "cl-macs" "\
|
|
206 Like `progn', but evaluates the body at load time.
|
|
207 The result of the body appears to the compiler as a quoted constant." nil 'macro)
|
|
208
|
|
209 (autoload 'case "cl-macs" "\
|
|
210 (case EXPR CLAUSES...): evals EXPR, chooses from CLAUSES on that value.
|
|
211 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
|
|
212 against each key in each KEYLIST; the corresponding BODY is evaluated.
|
|
213 If no clause succeeds, case returns nil. A single atom may be used in
|
|
214 place of a KEYLIST of one atom. A KEYLIST of `t' or `otherwise' is
|
|
215 allowed only in the final clause, and matches if no other keys match.
|
|
216 Key values are compared by `eql'." nil 'macro)
|
|
217
|
|
218 (autoload 'ecase "cl-macs" "\
|
|
219 (ecase EXPR CLAUSES...): like `case', but error if no case fits.
|
|
220 `otherwise'-clauses are not allowed." nil 'macro)
|
|
221
|
|
222 (autoload 'typecase "cl-macs" "\
|
|
223 (typecase EXPR CLAUSES...): evals EXPR, chooses from CLAUSES on that value.
|
|
224 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
|
|
225 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
|
|
226 typecase returns nil. A TYPE of `t' or `otherwise' is allowed only in the
|
|
227 final clause, and matches if no other keys match." nil 'macro)
|
|
228
|
|
229 (autoload 'etypecase "cl-macs" "\
|
|
230 (etypecase EXPR CLAUSES...): like `typecase', but error if no case fits.
|
|
231 `otherwise'-clauses are not allowed." nil 'macro)
|
|
232
|
|
233 (autoload 'block "cl-macs" "\
|
|
234 (block NAME BODY...): define a lexically-scoped block named NAME.
|
|
235 NAME may be any symbol. Code inside the BODY forms can call `return-from'
|
|
236 to jump prematurely out of the block. This differs from `catch' and `throw'
|
|
237 in two respects: First, the NAME is an unevaluated symbol rather than a
|
|
238 quoted symbol or other form; and second, NAME is lexically rather than
|
|
239 dynamically scoped: Only references to it within BODY will work. These
|
|
240 references may appear inside macro expansions, but not inside functions
|
|
241 called from BODY." nil 'macro)
|
|
242
|
|
243 (autoload 'return "cl-macs" "\
|
|
244 (return [RESULT]): return from the block named nil.
|
|
245 This is equivalent to `(return-from nil RESULT)'." nil 'macro)
|
|
246
|
|
247 (autoload 'return-from "cl-macs" "\
|
|
248 (return-from NAME [RESULT]): return from the block named NAME.
|
|
249 This jump out to the innermost enclosing `(block NAME ...)' form,
|
|
250 returning RESULT from that form (or nil if RESULT is omitted).
|
|
251 This is compatible with Common Lisp, but note that `defun' and
|
|
252 `defmacro' do not create implicit blocks as they do in Common Lisp." nil 'macro)
|
|
253
|
|
254 (autoload 'loop "cl-macs" "\
|
|
255 (loop CLAUSE...): The Common Lisp `loop' macro.
|
|
256 Valid clauses are:
|
|
257 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
|
|
258 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
|
|
259 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
|
|
260 always COND, never COND, thereis COND, collect EXPR into VAR,
|
|
261 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
|
|
262 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
|
|
263 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
|
|
264 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
|
|
265 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
|
|
266 finally return EXPR, named NAME." nil 'macro)
|
|
267
|
|
268 (autoload 'do "cl-macs" "\
|
|
269 The Common Lisp `do' loop.
|
|
270 Format is: (do ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil 'macro)
|
|
271
|
|
272 (autoload 'do* "cl-macs" "\
|
|
273 The Common Lisp `do*' loop.
|
|
274 Format is: (do* ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil 'macro)
|
|
275
|
|
276 (autoload 'dolist "cl-macs" "\
|
|
277 (dolist (VAR LIST [RESULT]) BODY...): loop over a list.
|
|
278 Evaluate BODY with VAR bound to each `car' from LIST, in turn.
|
|
279 Then evaluate RESULT to get return value, default nil." nil 'macro)
|
|
280
|
|
281 (autoload 'dotimes "cl-macs" "\
|
|
282 (dotimes (VAR COUNT [RESULT]) BODY...): loop a certain number of times.
|
|
283 Evaluate BODY with VAR bound to successive integers from 0, inclusive,
|
|
284 to COUNT, exclusive. Then evaluate RESULT to get return value, default
|
|
285 nil." nil 'macro)
|
|
286
|
|
287 (autoload 'do-symbols "cl-macs" "\
|
|
288 (dosymbols (VAR [OBARRAY [RESULT]]) BODY...): loop over all symbols.
|
|
289 Evaluate BODY with VAR bound to each interned symbol, or to each symbol
|
|
290 from OBARRAY." nil 'macro)
|
|
291
|
|
292 (autoload 'do-all-symbols "cl-macs" nil nil 'macro)
|
|
293
|
|
294 (autoload 'psetq "cl-macs" "\
|
|
295 (psetq SYM VAL SYM VAL ...): set SYMs to the values VALs in parallel.
|
|
296 This is like `setq', except that all VAL forms are evaluated (in order)
|
|
297 before assigning any symbols SYM to the corresponding values." nil 'macro)
|
|
298
|
|
299 (autoload 'progv "cl-macs" "\
|
|
300 (progv SYMBOLS VALUES BODY...): bind SYMBOLS to VALUES dynamically in BODY.
|
|
301 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
|
|
302 Each SYMBOL in the first list is bound to the corresponding VALUE in the
|
|
303 second list (or made unbound if VALUES is shorter than SYMBOLS); then the
|
|
304 BODY forms are executed and their result is returned. This is much like
|
|
305 a `let' form, except that the list of symbols can be computed at run-time." nil 'macro)
|
|
306
|
|
307 (autoload 'flet "cl-macs" "\
|
|
308 (flet ((FUNC ARGLIST BODY...) ...) FORM...): make temporary function defns.
|
|
309 This is an analogue of `let' that operates on the function cell of FUNC
|
|
310 rather than its value cell. The FORMs are evaluated with the specified
|
|
311 function definitions in place, then the definitions are undone (the FUNCs
|
|
312 go back to their previous definitions, or lack thereof)." nil 'macro)
|
|
313
|
|
314 (autoload 'labels "cl-macs" "\
|
|
315 (labels ((FUNC ARGLIST BODY...) ...) FORM...): make temporary func bindings.
|
|
316 This is like `flet', except the bindings are lexical instead of dynamic.
|
|
317 Unlike `flet', this macro is fully complaint with the Common Lisp standard." nil 'macro)
|
|
318
|
|
319 (autoload 'macrolet "cl-macs" "\
|
|
320 (macrolet ((NAME ARGLIST BODY...) ...) FORM...): make temporary macro defns.
|
|
321 This is like `flet', but for macros instead of functions." nil 'macro)
|
|
322
|
|
323 (autoload 'symbol-macrolet "cl-macs" "\
|
|
324 (symbol-macrolet ((NAME EXPANSION) ...) FORM...): make symbol macro defns.
|
|
325 Within the body FORMs, references to the variable NAME will be replaced
|
|
326 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...)." nil 'macro)
|
|
327
|
|
328 (autoload 'lexical-let "cl-macs" "\
|
|
329 (lexical-let BINDINGS BODY...): like `let', but lexically scoped.
|
|
330 The main visible difference is that lambdas inside BODY will create
|
|
331 lexical closures as in Common Lisp." nil 'macro)
|
|
332
|
|
333 (autoload 'lexical-let* "cl-macs" "\
|
|
334 (lexical-let* BINDINGS BODY...): like `let*', but lexically scoped.
|
|
335 The main visible difference is that lambdas inside BODY will create
|
|
336 lexical closures as in Common Lisp." nil 'macro)
|
|
337
|
|
338 (autoload 'multiple-value-bind "cl-macs" "\
|
|
339 (multiple-value-bind (SYM SYM...) FORM BODY): collect multiple return values.
|
|
340 FORM must return a list; the BODY is then executed with the first N elements
|
|
341 of this list bound (`let'-style) to each of the symbols SYM in turn. This
|
|
342 is analogous to the Common Lisp `multiple-value-bind' macro, using lists to
|
|
343 simulate true multiple return values. For compatibility, (values A B C) is
|
|
344 a synonym for (list A B C)." nil 'macro)
|
|
345
|
|
346 (autoload 'multiple-value-setq "cl-macs" "\
|
|
347 (multiple-value-setq (SYM SYM...) FORM): collect multiple return values.
|
|
348 FORM must return a list; the first N elements of this list are stored in
|
|
349 each of the symbols SYM in turn. This is analogous to the Common Lisp
|
|
350 `multiple-value-setq' macro, using lists to simulate true multiple return
|
|
351 values. For compatibility, (values A B C) is a synonym for (list A B C)." nil 'macro)
|
|
352
|
|
353 (autoload 'locally "cl-macs" nil nil 'macro)
|
|
354
|
|
355 (autoload 'the "cl-macs" nil nil 'macro)
|
|
356
|
|
357 (autoload 'declare "cl-macs" nil nil 'macro)
|
|
358
|
|
359 (autoload 'define-setf-method "cl-macs" "\
|
|
360 (define-setf-method NAME ARGLIST BODY...): define a `setf' method.
|
|
361 This method shows how to handle `setf's to places of the form (NAME ARGS...).
|
|
362 The argument forms ARGS are bound according to ARGLIST, as if NAME were
|
|
363 going to be expanded as a macro, then the BODY forms are executed and must
|
|
364 return a list of five elements: a temporary-variables list, a value-forms
|
|
365 list, a store-variables list (of length one), a store-form, and an access-
|
|
366 form. See `defsetf' for a simpler way to define most setf-methods." nil 'macro)
|
|
367
|
|
368 (autoload 'defsetf "cl-macs" "\
|
|
369 (defsetf NAME FUNC): define a `setf' method.
|
|
370 This macro is an easy-to-use substitute for `define-setf-method' that works
|
|
371 well for simple place forms. In the simple `defsetf' form, `setf's of
|
|
372 the form (setf (NAME ARGS...) VAL) are transformed to function or macro
|
|
373 calls of the form (FUNC ARGS... VAL). Example: (defsetf aref aset).
|
|
374 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
|
|
375 Here, the above `setf' call is expanded by binding the argument forms ARGS
|
|
376 according to ARGLIST, binding the value form VAL to STORE, then executing
|
|
377 BODY, which must return a Lisp form that does the necessary `setf' operation.
|
|
378 Actually, ARGLIST and STORE may be bound to temporary variables which are
|
|
379 introduced automatically to preserve proper execution order of the arguments.
|
|
380 Example: (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))." nil 'macro)
|
|
381
|
|
382 (autoload 'get-setf-method "cl-macs" "\
|
|
383 Return a list of five values describing the setf-method for PLACE.
|
|
384 PLACE may be any Lisp form which can appear as the PLACE argument to
|
|
385 a macro like `setf' or `incf'." nil nil)
|
|
386
|
|
387 (autoload 'setf "cl-macs" "\
|
|
388 (setf PLACE VAL PLACE VAL ...): set each PLACE to the value of its VAL.
|
|
389 This is a generalized version of `setq'; the PLACEs may be symbolic
|
|
390 references such as (car x) or (aref x i), as well as plain symbols.
|
|
391 For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y).
|
|
392 The return value is the last VAL in the list." nil 'macro)
|
|
393
|
|
394 (autoload 'psetf "cl-macs" "\
|
|
395 (psetf PLACE VAL PLACE VAL ...): set PLACEs to the values VALs in parallel.
|
|
396 This is like `setf', except that all VAL forms are evaluated (in order)
|
|
397 before assigning any PLACEs to the corresponding values." nil 'macro)
|
|
398
|
|
399 (autoload 'cl-do-pop "cl-macs" nil nil nil)
|
|
400
|
|
401 (autoload 'remf "cl-macs" "\
|
|
402 (remf PLACE TAG): remove TAG from property list PLACE.
|
|
403 PLACE may be a symbol, or any generalized variable allowed by `setf'.
|
|
404 The form returns true if TAG was found and removed, nil otherwise." nil 'macro)
|
|
405
|
|
406 (autoload 'shiftf "cl-macs" "\
|
|
407 (shiftf PLACE PLACE... VAL): shift left among PLACEs.
|
|
408 Example: (shiftf A B C) sets A to B, B to C, and returns the old A.
|
|
409 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." nil 'macro)
|
|
410
|
|
411 (autoload 'rotatef "cl-macs" "\
|
|
412 (rotatef PLACE...): rotate left among PLACEs.
|
|
413 Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
|
|
414 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." nil 'macro)
|
|
415
|
|
416 (autoload 'letf "cl-macs" "\
|
|
417 (letf ((PLACE VALUE) ...) BODY...): temporarily bind to PLACEs.
|
|
418 This is the analogue of `let', but with generalized variables (in the
|
|
419 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
|
|
420 VALUE, then the BODY forms are executed. On exit, either normally or
|
|
421 because of a `throw' or error, the PLACEs are set back to their original
|
|
422 values. Note that this macro is *not* available in Common Lisp.
|
|
423 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
|
|
424 the PLACE is not modified before executing BODY." nil 'macro)
|
|
425
|
|
426 (autoload 'letf* "cl-macs" "\
|
|
427 (letf* ((PLACE VALUE) ...) BODY...): temporarily bind to PLACEs.
|
|
428 This is the analogue of `let*', but with generalized variables (in the
|
|
429 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
|
|
430 VALUE, then the BODY forms are executed. On exit, either normally or
|
|
431 because of a `throw' or error, the PLACEs are set back to their original
|
|
432 values. Note that this macro is *not* available in Common Lisp.
|
|
433 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
|
|
434 the PLACE is not modified before executing BODY." nil 'macro)
|
|
435
|
|
436 (autoload 'callf "cl-macs" "\
|
|
437 (callf FUNC PLACE ARGS...): set PLACE to (FUNC PLACE ARGS...).
|
|
438 FUNC should be an unquoted function name. PLACE may be a symbol,
|
|
439 or any generalized variable allowed by `setf'." nil 'macro)
|
|
440
|
|
441 (autoload 'callf2 "cl-macs" "\
|
|
442 (callf2 FUNC ARG1 PLACE ARGS...): set PLACE to (FUNC ARG1 PLACE ARGS...).
|
|
443 Like `callf', but PLACE is the second argument of FUNC, not the first." nil 'macro)
|
|
444
|
|
445 (autoload 'define-modify-macro "cl-macs" "\
|
|
446 (define-modify-macro NAME ARGLIST FUNC): define a `setf'-like modify macro.
|
|
447 If NAME is called, it combines its PLACE argument with the other arguments
|
|
448 from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)" nil 'macro)
|
|
449
|
|
450 (autoload 'defstruct "cl-macs" "\
|
|
451 (defstruct (NAME OPTIONS...) (SLOT SLOT-OPTS...)...): define a struct type.
|
|
452 This macro defines a new Lisp data type called NAME, which contains data
|
|
453 stored in SLOTs. This defines a `make-NAME' constructor, a `copy-NAME'
|
|
454 copier, a `NAME-p' predicate, and setf-able `NAME-SLOT' accessors." nil 'macro)
|
|
455
|
|
456 (autoload 'cl-struct-setf-expander "cl-macs" nil nil nil)
|
|
457
|
|
458 (autoload 'deftype "cl-macs" "\
|
|
459 (deftype NAME ARGLIST BODY...): define NAME as a new data type.
|
|
460 The type name can then be used in `typecase', `check-type', etc." nil 'macro)
|
|
461
|
|
462 (autoload 'typep "cl-macs" "\
|
|
463 Check that OBJECT is of type TYPE.
|
|
464 TYPE is a Common Lisp-style type specifier." nil nil)
|
|
465
|
|
466 (autoload 'check-type "cl-macs" "\
|
|
467 Verify that FORM is of type TYPE; signal an error if not.
|
|
468 STRING is an optional description of the desired type." nil 'macro)
|
|
469
|
|
470 (autoload 'assert "cl-macs" "\
|
|
471 Verify that FORM returns non-nil; signal an error if not.
|
|
472 Second arg SHOW-ARGS means to include arguments of FORM in message.
|
|
473 Other args STRING and ARGS... are arguments to be passed to `error'.
|
|
474 They are not evaluated unless the assertion fails. If STRING is
|
|
475 omitted, a default message listing FORM itself is used." nil 'macro)
|
|
476
|
|
477 (autoload 'ignore-errors "cl-macs" "\
|
|
478 Execute FORMS; if an error occurs, return nil.
|
|
479 Otherwise, return result of last FORM." nil 'macro)
|
|
480
|
|
481 (autoload 'define-compiler-macro "cl-macs" "\
|
|
482 (define-compiler-macro FUNC ARGLIST BODY...): Define a compiler-only macro.
|
|
483 This is like `defmacro', but macro expansion occurs only if the call to
|
|
484 FUNC is compiled (i.e., not interpreted). Compiler macros should be used
|
|
485 for optimizing the way calls to FUNC are compiled; the form returned by
|
|
486 BODY should do the same thing as a call to the normal function called
|
|
487 FUNC, though possibly more efficiently. Note that, like regular macros,
|
|
488 compiler macros are expanded repeatedly until no further expansions are
|
|
489 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
|
|
490 original function call alone by declaring an initial `&whole foo' parameter
|
|
491 and then returning foo." nil 'macro)
|
|
492
|
|
493 (autoload 'compiler-macroexpand "cl-macs" nil nil nil)
|
|
494
|
|
495 ;;;***
|
|
496
|
217
|
497 ;;;### (autoloads (batch-remove-old-elc) "cleantree" "lisp/cleantree.el")
|
|
498
|
|
499 (autoload 'batch-remove-old-elc "cleantree" nil nil nil)
|
|
500
|
|
501 ;;;***
|
|
502
|
|
503 ;;;### (autoloads (config-value config-value-hash-table) "config" "lisp/config.el")
|
|
504
|
|
505 (autoload 'config-value-hash-table "config" "\
|
|
506 Returns hashtable of configuration parameters and their values." nil nil)
|
|
507
|
|
508 (autoload 'config-value "config" "\
|
|
509 Return the value of the configuration parameter CONFIG_SYMBOL." nil nil)
|
|
510
|
|
511 ;;;***
|
|
512
|
209
|
513 ;;;### (autoloads (Custom-make-dependencies) "cus-dep" "lisp/cus-dep.el")
|
|
514
|
|
515 (autoload 'Custom-make-dependencies "cus-dep" "\
|
|
516 Extract custom dependencies from .el files in SUBDIRS.
|
|
517 SUBDIRS is a list of directories. If it is nil, the command-line
|
|
518 arguments are used. If it is a string, only that directory is
|
|
519 processed. This function is especially useful in batch mode.
|
|
520
|
|
521 Batch usage: xemacs -batch -l cus-dep.el -f Custom-make-dependencies DIRS" t nil)
|
|
522
|
|
523 ;;;***
|
|
524
|
|
525 ;;;### (autoloads (customize-menu-create custom-menu-create custom-save-all customize-save-customized customize-browse custom-buffer-create-other-window custom-buffer-create customize-apropos-groups customize-apropos-faces customize-apropos-options customize-apropos customize-saved customize-customized customize-face-other-window customize-face customize-option-other-window customize-variable customize-other-window customize customize-save-variable customize-set-variable customize-set-value) "cus-edit" "lisp/cus-edit.el")
|
|
526
|
|
527 (autoload 'customize-set-value "cus-edit" "\
|
|
528 Set VARIABLE to VALUE. VALUE is a Lisp object.
|
|
529
|
|
530 If VARIABLE has a `variable-interactive' property, that is used as if
|
|
531 it were the arg to `interactive' (which see) to interactively read the value.
|
|
532
|
|
533 If VARIABLE has a `custom-type' property, it must be a widget and the
|
|
534 `:prompt-value' property of that widget will be used for reading the value." t nil)
|
|
535
|
|
536 (autoload 'customize-set-variable "cus-edit" "\
|
|
537 Set the default for VARIABLE to VALUE. VALUE is a Lisp object.
|
|
538
|
|
539 If VARIABLE has a `custom-set' property, that is used for setting
|
|
540 VARIABLE, otherwise `set-default' is used.
|
|
541
|
|
542 The `customized-value' property of the VARIABLE will be set to a list
|
|
543 with a quoted VALUE as its sole list member.
|
|
544
|
|
545 If VARIABLE has a `variable-interactive' property, that is used as if
|
|
546 it were the arg to `interactive' (which see) to interactively read the value.
|
|
547
|
|
548 If VARIABLE has a `custom-type' property, it must be a widget and the
|
|
549 `:prompt-value' property of that widget will be used for reading the value. " t nil)
|
|
550
|
|
551 (autoload 'customize-save-variable "cus-edit" "\
|
|
552 Set the default for VARIABLE to VALUE, and save it for future sessions.
|
|
553 If VARIABLE has a `custom-set' property, that is used for setting
|
|
554 VARIABLE, otherwise `set-default' is used.
|
|
555
|
|
556 The `customized-value' property of the VARIABLE will be set to a list
|
|
557 with a quoted VALUE as its sole list member.
|
|
558
|
|
559 If VARIABLE has a `variable-interactive' property, that is used as if
|
|
560 it were the arg to `interactive' (which see) to interactively read the value.
|
|
561
|
|
562 If VARIABLE has a `custom-type' property, it must be a widget and the
|
|
563 `:prompt-value' property of that widget will be used for reading the value. " t nil)
|
|
564
|
|
565 (autoload 'customize "cus-edit" "\
|
|
566 Select a customization buffer which you can use to set user options.
|
|
567 User options are structured into \"groups\".
|
|
568 The default group is `Emacs'." t nil)
|
|
569
|
|
570 (defalias 'customize-group 'customize)
|
|
571
|
|
572 (autoload 'customize-other-window "cus-edit" "\
|
|
573 Customize SYMBOL, which must be a customization group." t nil)
|
|
574
|
|
575 (defalias 'customize-group-other-window 'customize-other-window)
|
|
576
|
|
577 (defalias 'customize-option 'customize-variable)
|
|
578
|
|
579 (autoload 'customize-variable "cus-edit" "\
|
|
580 Customize SYMBOL, which must be a user option variable." t nil)
|
|
581
|
|
582 (defalias 'customize-variable-other-window 'customize-option-other-window)
|
|
583
|
|
584 (autoload 'customize-option-other-window "cus-edit" "\
|
|
585 Customize SYMBOL, which must be a user option variable.
|
|
586 Show the buffer in another window, but don't select it." t nil)
|
|
587
|
|
588 (autoload 'customize-face "cus-edit" "\
|
|
589 Customize SYMBOL, which should be a face name or nil.
|
|
590 If SYMBOL is nil, customize all faces." t nil)
|
|
591
|
|
592 (autoload 'customize-face-other-window "cus-edit" "\
|
|
593 Show customization buffer for FACE in other window." t nil)
|
|
594
|
|
595 (autoload 'customize-customized "cus-edit" "\
|
|
596 Customize all user options set since the last save in this session." t nil)
|
|
597
|
|
598 (autoload 'customize-saved "cus-edit" "\
|
|
599 Customize all already saved user options." t nil)
|
|
600
|
|
601 (autoload 'customize-apropos "cus-edit" "\
|
|
602 Customize all user options matching REGEXP.
|
|
603 If ALL is `options', include only options.
|
|
604 If ALL is `faces', include only faces.
|
|
605 If ALL is `groups', include only groups.
|
|
606 If ALL is t (interactively, with prefix arg), include options which are not
|
|
607 user-settable, as well as faces and groups." t nil)
|
|
608
|
|
609 (autoload 'customize-apropos-options "cus-edit" "\
|
|
610 Customize all user options matching REGEXP.
|
|
611 With prefix arg, include options which are not user-settable." t nil)
|
|
612
|
|
613 (autoload 'customize-apropos-faces "cus-edit" "\
|
|
614 Customize all user faces matching REGEXP." t nil)
|
|
615
|
|
616 (autoload 'customize-apropos-groups "cus-edit" "\
|
|
617 Customize all user groups matching REGEXP." t nil)
|
|
618
|
|
619 (autoload 'custom-buffer-create "cus-edit" "\
|
|
620 Create a buffer containing OPTIONS.
|
|
621 Optional NAME is the name of the buffer.
|
|
622 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
|
|
623 SYMBOL is a customization option, and WIDGET is a widget for editing
|
|
624 that option." nil nil)
|
|
625
|
|
626 (autoload 'custom-buffer-create-other-window "cus-edit" "\
|
|
627 Create a buffer containing OPTIONS.
|
|
628 Optional NAME is the name of the buffer.
|
|
629 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
|
|
630 SYMBOL is a customization option, and WIDGET is a widget for editing
|
|
631 that option." nil nil)
|
|
632
|
|
633 (autoload 'customize-browse "cus-edit" "\
|
|
634 Create a tree browser for the customize hierarchy." t nil)
|
|
635
|
217
|
636 (defcustom custom-file (if (boundp 'user-init-directory) (concat "~" init-file-user user-init-directory "options.el") "~/.emacs") "File used for storing customization information.\nIf you change this from the default \"~/.emacs\" you need to\nexplicitly load that file for the settings to take effect." :type 'file :group 'customize)
|
209
|
637
|
|
638 (autoload 'customize-save-customized "cus-edit" "\
|
|
639 Save all user options which have been set in this session." t nil)
|
|
640
|
|
641 (autoload 'custom-save-all "cus-edit" "\
|
|
642 Save all customizations in `custom-file'." nil nil)
|
|
643
|
|
644 (autoload 'custom-menu-create "cus-edit" "\
|
|
645 Create menu for customization group SYMBOL.
|
|
646 The menu is in a format applicable to `easy-menu-define'." nil nil)
|
|
647
|
|
648 (autoload 'customize-menu-create "cus-edit" "\
|
|
649 Return a customize menu for customization group SYMBOL.
|
|
650 If optional NAME is given, use that as the name of the menu.
|
|
651 Otherwise the menu will be named `Customize'.
|
|
652 The format is suitable for use with `easy-menu-define'." nil nil)
|
|
653
|
|
654 ;;;***
|
|
655
|
|
656 ;;;### (autoloads (custom-set-faces custom-declare-face) "cus-face" "lisp/cus-face.el")
|
|
657
|
|
658 (autoload 'custom-declare-face "cus-face" "\
|
|
659 Like `defface', but FACE is evaluated as a normal argument." nil nil)
|
|
660
|
|
661 (autoload 'custom-set-faces "cus-face" "\
|
|
662 Initialize faces according to user preferences.
|
|
663 The arguments should be a list where each entry has the form:
|
|
664
|
|
665 (FACE SPEC [NOW])
|
|
666
|
|
667 SPEC will be stored as the saved value for FACE. If NOW is present
|
|
668 and non-nil, FACE will also be created according to SPEC.
|
|
669
|
|
670 See `defface' for the format of SPEC." nil nil)
|
|
671
|
|
672 ;;;***
|
|
673
|
|
674 ;;;### (autoloads (disassemble) "disass" "lisp/disass.el")
|
|
675
|
|
676 (autoload 'disassemble "disass" "\
|
|
677 Print disassembled code for OBJECT in (optional) BUFFER.
|
|
678 OBJECT can be a symbol defined as a function, or a function itself
|
|
679 \(a lambda expression or a compiled-function object).
|
|
680 If OBJECT is not already compiled, we compile it, but do not
|
|
681 redefine OBJECT if it is a symbol." t nil)
|
|
682
|
|
683 ;;;***
|
|
684
|
219
|
685 ;;;### (autoloads (standard-display-european standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "lisp/disp-table.el")
|
|
686
|
|
687 (autoload 'describe-current-display-table "disp-table" "\
|
|
688 Describe the display table in use in the selected window and buffer." t nil)
|
|
689
|
|
690 (autoload 'make-display-table "disp-table" "\
|
|
691 Return a new, empty display table." nil nil)
|
|
692
|
|
693 (autoload 'standard-display-8bit "disp-table" "\
|
|
694 Display characters in the range L to H literally." nil nil)
|
|
695
|
|
696 (autoload 'standard-display-default "disp-table" "\
|
|
697 Display characters in the range L to H using the default notation." nil nil)
|
|
698
|
|
699 (autoload 'standard-display-ascii "disp-table" "\
|
|
700 Display character C using printable string S." nil nil)
|
|
701
|
|
702 (autoload 'standard-display-g1 "disp-table" "\
|
|
703 Display character C as character SC in the g1 character set.
|
|
704 This function assumes that your terminal uses the SO/SI characters;
|
|
705 it is meaningless for an X frame." nil nil)
|
|
706
|
|
707 (autoload 'standard-display-graphic "disp-table" "\
|
|
708 Display character C as character GC in graphics character set.
|
|
709 This function assumes VT100-compatible escapes; it is meaningless for an
|
|
710 X frame." nil nil)
|
|
711
|
|
712 (autoload 'standard-display-underline "disp-table" "\
|
|
713 Display character C as character UC plus underlining." nil nil)
|
|
714
|
|
715 (autoload 'standard-display-european "disp-table" "\
|
|
716 Toggle display of European characters encoded with ISO 8859.
|
|
717 When enabled, characters in the range of 160 to 255 display not
|
|
718 as octal escapes, but as accented characters.
|
|
719 With prefix argument, enable European character display iff arg is positive." t nil)
|
|
720
|
|
721 ;;;***
|
|
722
|
217
|
723 ;;;### (autoloads nil "easymenu" "lisp/easymenu.el")
|
|
724
|
|
725 ;;;***
|
|
726
|
|
727 ;;;### (autoloads (tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-other-window find-tag visit-tags-table) "etags" "lisp/etags.el")
|
|
728
|
|
729 (defcustom tags-build-completion-table 'ask "*If this variable is nil, then tags completion is disabled.\nIf this variable is t, then things which prompt for tags will do so with \n completion across all known tags.\nIf this variable is the symbol `ask', then you will be asked whether each\n tags table should be added to the completion list as it is read in.\n (With the exception that for very small tags tables, you will not be asked,\n since they can be parsed quickly.)" :type '(radio (const :tag "Disabled" nil) (const :tag "Complete All" t) (const :tag "Ask" ask)) :group 'etags)
|
|
730
|
|
731 (defcustom tags-always-exact nil "*If this variable is non-nil, then tags always looks for exact matches." :type 'boolean :group 'etags)
|
|
732
|
|
733 (defcustom tag-table-alist nil "*A list which determines which tags files are active for a buffer.\nThis is not really an association list, in that all elements are\nchecked. The CAR of each element of this list is a pattern against\nwhich the buffer's file name is compared; if it matches, then the CDR\nof the list should be the name of the tags table to use. If more than\none element of this list matches the buffer's file name, then all of\nthe associated tags tables will be used. Earlier ones will be\nsearched first.\n\nIf the CAR of elements of this list are strings, then they are treated\nas regular-expressions against which the file is compared (like the\nauto-mode-alist). If they are not strings, then they are evaluated.\nIf they evaluate to non-nil, then the current buffer is considered to\nmatch.\n\nIf the CDR of the elements of this list are strings, then they are\nassumed to name a TAGS file. If they name a directory, then the string\n\"TAGS\" is appended to them to get the file name. If they are not \nstrings, then they are evaluated, and must return an appropriate string.\n\nFor example:\n (setq tag-table-alist\n '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\")\n (\"\\\\.el$\" . \"/usr/local/emacs/src/\")\n (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\")\n (\"\" . \"/usr/local/emacs/src/\")\n ))\n\nThis means that anything in the /usr/src/public/perl/ directory should use\nthe TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should\nuse the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the\ndirectory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS.\nA file called something like \"/usr/jbw/foo.el\" would use both the TAGS files\n/usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order)\nbecause it matches both patterns.\n\nIf the buffer-local variable `buffer-tag-table' is set, then it names a tags\ntable that is searched before all others when find-tag is executed from this\nbuffer.\n\nIf there is a file called \"TAGS\" in the same directory as the file in \nquestion, then that tags file will always be used as well (after the\n`buffer-tag-table' but before the tables specified by this list.)\n\nIf the variable tags-file-name is set, then the tags file it names will apply\nto all buffers (for backwards compatibility.) It is searched first.\n" :type '(repeat (cons (choice :value "" (regexp :tag "Buffer regexp") (function :tag "Expression")) (string :tag "Tag file or directory"))) :group 'etags)
|
|
734
|
|
735 (autoload 'visit-tags-table "etags" "\
|
|
736 Tell tags commands to use tags table file FILE first.
|
|
737 FILE should be the name of a file created with the `etags' program.
|
|
738 A directory name is ok too; it means file TAGS in that directory." t nil)
|
|
739
|
|
740 (autoload 'find-tag "etags" "\
|
|
741 *Find tag whose name contains TAGNAME.
|
|
742 Selects the buffer that the tag is contained in
|
|
743 and puts point at its definition.
|
|
744 If TAGNAME is a null string, the expression in the buffer
|
|
745 around or before point is used as the tag name.
|
|
746 If called interactively with a numeric argument, searches for the next tag
|
|
747 in the tag table that matches the tagname used in the previous find-tag.
|
|
748 If second arg OTHER-WINDOW is non-nil, uses another window to display
|
|
749 the tag.
|
|
750
|
|
751 This version of this function supports multiple active tags tables,
|
|
752 and completion.
|
|
753
|
|
754 Variables of note:
|
|
755
|
|
756 tag-table-alist controls which tables apply to which buffers
|
|
757 tags-file-name a default tags table
|
|
758 tags-build-completion-table controls completion behavior
|
|
759 buffer-tag-table another way of specifying a buffer-local table
|
|
760 make-tags-files-invisible whether tags tables should be very hidden
|
|
761 tag-mark-stack-max how many tags-based hops to remember" t nil)
|
|
762
|
|
763 (autoload 'find-tag-other-window "etags" "\
|
|
764 *Find tag whose name contains TAGNAME.
|
|
765 Selects the buffer that the tag is contained in in another window
|
|
766 and puts point at its definition.
|
|
767 If TAGNAME is a null string, the expression in the buffer
|
|
768 around or before point is used as the tag name.
|
|
769 If second arg NEXT is non-nil (interactively, with prefix arg),
|
|
770 searches for the next tag in the tag table
|
|
771 that matches the tagname used in the previous find-tag.
|
|
772
|
|
773 This version of this function supports multiple active tags tables,
|
|
774 and completion.
|
|
775
|
|
776 Variables of note:
|
|
777
|
|
778 tag-table-alist controls which tables apply to which buffers
|
|
779 tags-file-name a default tags table
|
|
780 tags-build-completion-table controls completion behavior
|
|
781 buffer-tag-table another way of specifying a buffer-local table
|
|
782 make-tags-files-invisible whether tags tables should be very hidden
|
|
783 tag-mark-stack-max how many tags-based hops to remember" t nil)
|
|
784
|
|
785 (autoload 'next-file "etags" "\
|
|
786 Select next file among files in current tag table(s).
|
|
787
|
|
788 A first argument of t (prefix arg, if interactive) initializes to the
|
|
789 beginning of the list of files in the (first) tags table. If the argument
|
|
790 is neither nil nor t, it is evalled to initialize the list of files.
|
|
791
|
|
792 Non-nil second argument NOVISIT means use a temporary buffer
|
|
793 to save time and avoid uninteresting warnings.
|
|
794
|
|
795 Value is nil if the file was already visited;
|
|
796 if the file was newly read in, the value is the filename." t nil)
|
|
797
|
|
798 (autoload 'tags-loop-continue "etags" "\
|
|
799 Continue last \\[tags-search] or \\[tags-query-replace] command.
|
|
800 Used noninteractively with non-nil argument to begin such a command (the
|
|
801 argument is passed to `next-file', which see).
|
|
802 Two variables control the processing we do on each file:
|
|
803 the value of `tags-loop-scan' is a form to be executed on each file
|
|
804 to see if it is interesting (it returns non-nil if so)
|
|
805 and `tags-loop-operate' is a form to execute to operate on an interesting file
|
|
806 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
|
|
807
|
|
808 (autoload 'tags-search "etags" "\
|
|
809 Search through all files listed in tags table for match for REGEXP.
|
|
810 Stops when a match is found.
|
|
811 To continue searching for next match, use command \\[tags-loop-continue].
|
|
812
|
|
813 See documentation of variable `tag-table-alist'." t nil)
|
|
814
|
|
815 (autoload 'tags-query-replace "etags" "\
|
|
816 Query-replace-regexp FROM with TO through all files listed in tags table.
|
|
817 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
|
|
818 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
|
|
819 with the command \\[tags-loop-continue].
|
|
820
|
|
821 See documentation of variable `tag-table-alist'." t nil)
|
|
822
|
|
823 (autoload 'list-tags "etags" "\
|
|
824 Display list of tags in file FILE.
|
|
825 FILE should not contain a directory spec
|
|
826 unless it has one in the tag table." t nil)
|
|
827
|
|
828 (autoload 'tags-apropos "etags" "\
|
|
829 Display list of all tags in tag table REGEXP matches." t nil)
|
|
830
|
|
831 ;;;***
|
|
832
|
|
833 ;;;### (autoloads (font-lock-set-defaults-1 font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "lisp/font-lock.el")
|
|
834
|
|
835 (defvar font-lock-auto-fontify t "\
|
|
836 *Whether font-lock should automatically fontify files as they're loaded.
|
|
837 This will only happen if font-lock has fontifying keywords for the major
|
|
838 mode of the file. You can get finer-grained control over auto-fontification
|
|
839 by using this variable in combination with `font-lock-mode-enable-list' or
|
|
840 `font-lock-mode-disable-list'.")
|
|
841
|
|
842 (defvar font-lock-mode-enable-list nil "\
|
|
843 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.")
|
|
844
|
|
845 (defvar font-lock-mode-disable-list nil "\
|
|
846 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.")
|
|
847
|
|
848 (defvar font-lock-use-colors '(color) "\
|
|
849 *Specification for when Font Lock will set up color defaults.
|
|
850 Normally this should be '(color), meaning that Font Lock will set up
|
|
851 color defaults that are only used on color displays. Set this to nil
|
|
852 if you don't want Font Lock to set up color defaults at all. This
|
|
853 should be one of
|
|
854
|
|
855 -- a list of valid tags, meaning that the color defaults will be used
|
|
856 when all of the tags apply. (e.g. '(color x))
|
|
857 -- a list whose first element is 'or and whose remaining elements are
|
|
858 lists of valid tags, meaning that the defaults will be used when
|
|
859 any of the tag lists apply.
|
|
860 -- nil, meaning that the defaults should not be set up at all.
|
|
861
|
|
862 \(If you specify face values in your init file, they will override any
|
|
863 that Font Lock specifies, regardless of whether you specify the face
|
|
864 values before or after loading Font Lock.)
|
|
865
|
|
866 See also `font-lock-use-fonts'. If you want more control over the faces
|
|
867 used for fontification, see the documentation of `font-lock-mode' for
|
|
868 how to do it.")
|
|
869
|
|
870 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\
|
|
871 *Specification for when Font Lock will set up non-color defaults.
|
|
872
|
|
873 Normally this should be '(or (mono) (grayscale)), meaning that Font
|
|
874 Lock will set up non-color defaults that are only used on either mono
|
|
875 or grayscale displays. Set this to nil if you don't want Font Lock to
|
|
876 set up non-color defaults at all. This should be one of
|
|
877
|
|
878 -- a list of valid tags, meaning that the non-color defaults will be used
|
|
879 when all of the tags apply. (e.g. '(grayscale x))
|
|
880 -- a list whose first element is 'or and whose remaining elements are
|
|
881 lists of valid tags, meaning that the defaults will be used when
|
|
882 any of the tag lists apply.
|
|
883 -- nil, meaning that the defaults should not be set up at all.
|
|
884
|
|
885 \(If you specify face values in your init file, they will override any
|
|
886 that Font Lock specifies, regardless of whether you specify the face
|
|
887 values before or after loading Font Lock.)
|
|
888
|
|
889 See also `font-lock-use-colors'. If you want more control over the faces
|
|
890 used for fontification, see the documentation of `font-lock-mode' for
|
|
891 how to do it.")
|
|
892
|
|
893 (defvar font-lock-maximum-decoration nil "\
|
|
894 *If non-nil, the maximum decoration level for fontifying.
|
|
895 If nil, use the minimum decoration (equivalent to level 0).
|
|
896 If t, use the maximum decoration available.
|
|
897 If a number, use that level of decoration (or if not available the maximum).
|
|
898 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
|
|
899 where MAJOR-MODE is a symbol or t (meaning the default). For example:
|
|
900 ((c++-mode . 2) (c-mode . t) (t . 1))
|
|
901 means use level 2 decoration for buffers in `c++-mode', the maximum decoration
|
|
902 available for buffers in `c-mode', and level 1 decoration otherwise.")
|
|
903
|
|
904 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration)
|
|
905
|
|
906 (defvar font-lock-maximum-size (* 250 1024) "\
|
|
907 *If non-nil, the maximum size for buffers for fontifying.
|
|
908 Only buffers less than this can be fontified when Font Lock mode is turned on.
|
|
909 If nil, means size is irrelevant.
|
|
910 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
|
|
911 where MAJOR-MODE is a symbol or t (meaning the default). For example:
|
|
912 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))
|
|
913 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one
|
|
914 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.")
|
|
915
|
|
916 (defvar font-lock-keywords nil "\
|
|
917 *A list of the keywords to highlight.
|
|
918 Each element should be of the form:
|
|
919
|
|
920 MATCHER
|
|
921 (MATCHER . MATCH)
|
|
922 (MATCHER . FACENAME)
|
|
923 (MATCHER . HIGHLIGHT)
|
|
924 (MATCHER HIGHLIGHT ...)
|
|
925 (eval . FORM)
|
|
926
|
|
927 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED.
|
|
928
|
|
929 FORM is an expression, whose value should be a keyword element,
|
|
930 evaluated when the keyword is (first) used in a buffer. This feature
|
|
931 can be used to provide a keyword that can only be generated when Font
|
|
932 Lock mode is actually turned on.
|
|
933
|
|
934 For highlighting single items, typically only MATCH-HIGHLIGHT is required.
|
|
935 However, if an item or (typically) items is to be highlighted following the
|
|
936 instance of another item (the anchor) then MATCH-ANCHORED may be required.
|
|
937
|
|
938 MATCH-HIGHLIGHT should be of the form:
|
|
939
|
|
940 (MATCH FACENAME OVERRIDE LAXMATCH)
|
|
941
|
|
942 Where MATCHER can be either the regexp to search for, a variable
|
|
943 containing the regexp to search for, or the function to call to make
|
|
944 the search (called with one argument, the limit of the search). MATCH
|
|
945 is the subexpression of MATCHER to be highlighted. FACENAME is either
|
|
946 a symbol naming a face, or an expression whose value is the face name
|
|
947 to use. If you want FACENAME to be a symbol that evaluates to a face,
|
|
948 use a form like \"(progn sym)\".
|
|
949
|
|
950 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may
|
|
951 be overwritten. If `keep', only parts not already fontified are highlighted.
|
|
952 If `prepend' or `append', existing fontification is merged with the new, in
|
|
953 which the new or existing fontification, respectively, takes precedence.
|
|
954 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER.
|
|
955
|
|
956 For example, an element of the form highlights (if not already highlighted):
|
|
957
|
|
958 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the
|
|
959 variable `font-lock-keyword-face'.
|
|
960 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in
|
|
961 the value of `font-lock-keyword-face'.
|
|
962 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'.
|
|
963 (\"foo\\\\|bar\" 0 foo-bar-face t)
|
|
964 Occurrences of either \"foo\" or \"bar\" in the value
|
|
965 of `foo-bar-face', even if already highlighted.
|
|
966
|
|
967 MATCH-ANCHORED should be of the form:
|
|
968
|
|
969 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
|
|
970
|
|
971 Where MATCHER is as for MATCH-HIGHLIGHT with one exception; see below.
|
|
972 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
|
|
973 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
|
|
974 used to initialise before, and cleanup after, MATCHER is used. Typically,
|
|
975 PRE-MATCH-FORM is used to move to some position relative to the original
|
|
976 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
|
|
977 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER.
|
|
978
|
|
979 For example, an element of the form highlights (if not already highlighted):
|
|
980
|
|
981 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
|
|
982
|
|
983 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent
|
|
984 discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
|
|
985 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is
|
|
986 initially searched for starting from the end of the match of \"anchor\", and
|
|
987 searching for subsequent instance of \"anchor\" resumes from where searching
|
|
988 for \"item\" concluded.)
|
|
989
|
|
990 The above-mentioned exception is as follows. The limit of the MATCHER search
|
|
991 defaults to the end of the line after PRE-MATCH-FORM is evaluated.
|
|
992 However, if PRE-MATCH-FORM returns a position greater than the position after
|
|
993 PRE-MATCH-FORM is evaluated, that position is used as the limit of the search.
|
|
994 It is generally a bad idea to return a position greater than the end of the
|
|
995 line, i.e., cause the MATCHER search to span lines.
|
|
996
|
|
997 Note that the MATCH-ANCHORED feature is experimental; in the future, we may
|
|
998 replace it with other ways of providing this functionality.
|
|
999
|
|
1000 These regular expressions should not match text which spans lines. While
|
|
1001 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating
|
|
1002 when you edit the buffer does not, since it considers text one line at a time.
|
|
1003
|
|
1004 Be very careful composing regexps for this list;
|
|
1005 the wrong pattern can dramatically slow things down!")
|
|
1006
|
|
1007 (make-variable-buffer-local 'font-lock-keywords)
|
|
1008
|
|
1009 (defvar font-lock-mode nil)
|
|
1010
|
|
1011 (defvar font-lock-mode-hook nil "\
|
|
1012 Function or functions to run on entry to font-lock-mode.")
|
|
1013
|
|
1014 (autoload 'font-lock-mode "font-lock" "\
|
|
1015 Toggle Font Lock Mode.
|
|
1016 With arg, turn font-lock mode on if and only if arg is positive.
|
|
1017
|
|
1018 When Font Lock mode is enabled, text is fontified as you type it:
|
|
1019
|
|
1020 - Comments are displayed in `font-lock-comment-face';
|
|
1021 - Strings are displayed in `font-lock-string-face';
|
|
1022 - Documentation strings (in Lisp-like languages) are displayed in
|
|
1023 `font-lock-doc-string-face';
|
|
1024 - Language keywords (\"reserved words\") are displayed in
|
|
1025 `font-lock-keyword-face';
|
|
1026 - Function names in their defining form are displayed in
|
|
1027 `font-lock-function-name-face';
|
|
1028 - Variable names in their defining form are displayed in
|
|
1029 `font-lock-variable-name-face';
|
|
1030 - Type names are displayed in `font-lock-type-face';
|
|
1031 - References appearing in help files and the like are displayed
|
|
1032 in `font-lock-reference-face';
|
|
1033 - Preprocessor declarations are displayed in
|
|
1034 `font-lock-preprocessor-face';
|
|
1035
|
|
1036 and
|
|
1037
|
|
1038 - Certain other expressions are displayed in other faces according
|
|
1039 to the value of the variable `font-lock-keywords'.
|
|
1040
|
|
1041 Where modes support different levels of fontification, you can use the variable
|
|
1042 `font-lock-maximum-decoration' to specify which level you generally prefer.
|
|
1043 When you turn Font Lock mode on/off the buffer is fontified/defontified, though
|
|
1044 fontification occurs only if the buffer is less than `font-lock-maximum-size'.
|
|
1045 To fontify a buffer without turning on Font Lock mode, and regardless of buffer
|
|
1046 size, you can use \\[font-lock-fontify-buffer].
|
|
1047
|
|
1048 See the variable `font-lock-keywords' for customization." t nil)
|
|
1049
|
|
1050 (autoload 'turn-on-font-lock "font-lock" "\
|
|
1051 Unconditionally turn on Font Lock mode." nil nil)
|
|
1052
|
|
1053 (autoload 'turn-off-font-lock "font-lock" "\
|
|
1054 Unconditionally turn off Font Lock mode." nil nil)
|
|
1055
|
|
1056 (autoload 'font-lock-fontify-buffer "font-lock" "\
|
|
1057 Fontify the current buffer the way `font-lock-mode' would.
|
|
1058 See `font-lock-mode' for details.
|
|
1059
|
|
1060 This can take a while for large buffers." t nil)
|
|
1061
|
|
1062 (autoload 'font-lock-set-defaults-1 "font-lock" nil nil nil)
|
|
1063
|
|
1064 (add-minor-mode 'font-lock-mode " Font")
|
|
1065
|
|
1066 ;;;***
|
|
1067
|
|
1068 ;;;### (autoloads (x-font-build-cache font-default-size-for-device font-default-encoding-for-device font-default-registry-for-device font-default-family-for-device font-default-object-for-device font-default-font-for-device font-create-object) "font" "lisp/font.el")
|
|
1069
|
|
1070 (autoload 'font-create-object "font" nil nil nil)
|
|
1071
|
|
1072 (autoload 'font-default-font-for-device "font" nil nil nil)
|
|
1073
|
|
1074 (autoload 'font-default-object-for-device "font" nil nil nil)
|
|
1075
|
|
1076 (autoload 'font-default-family-for-device "font" nil nil nil)
|
|
1077
|
|
1078 (autoload 'font-default-registry-for-device "font" nil nil nil)
|
|
1079
|
|
1080 (autoload 'font-default-encoding-for-device "font" nil nil nil)
|
|
1081
|
|
1082 (autoload 'font-default-size-for-device "font" nil nil nil)
|
|
1083
|
|
1084 (autoload 'x-font-build-cache "font" nil nil nil)
|
|
1085
|
|
1086 ;;;***
|
|
1087
|
|
1088 ;;;### (autoloads (gnuserv-start gnuserv-running-p) "gnuserv" "lisp/gnuserv.el")
|
|
1089
|
|
1090 (defcustom gnuserv-frame nil "*The frame to be used to display all edited files.\nIf nil, then a new frame is created for each file edited.\nIf t, then the currently selected frame will be used.\nIf a function, then this will be called with a symbol `x' or `tty' as the\nonly argument, and its return value will be interpreted as above." :tag "Gnuserv Frame" :type '(radio (const :tag "Create new frame each time" nil) (const :tag "Use selected frame" t) (function-item :tag "Use main Emacs frame" gnuserv-main-frame-function) (function-item :tag "Use visible frame, otherwise create new" gnuserv-visible-frame-function) (function-item :tag "Create special Gnuserv frame and use it" gnuserv-special-frame-function) (function :tag "Other")) :group 'gnuserv :group 'frames)
|
|
1091
|
|
1092 (autoload 'gnuserv-running-p "gnuserv" "\
|
|
1093 Return non-nil if a gnuserv process is running from this XEmacs session." nil nil)
|
|
1094
|
|
1095 (autoload 'gnuserv-start "gnuserv" "\
|
|
1096 Allow this Emacs process to be a server for client processes.
|
|
1097 This starts a gnuserv communications subprocess through which
|
|
1098 client \"editors\" (gnuclient and gnudoit) can send editing commands to
|
|
1099 this Emacs job. See the gnuserv(1) manual page for more details.
|
|
1100
|
|
1101 Prefix arg means just kill any existing server communications subprocess." t nil)
|
|
1102
|
|
1103 ;;;***
|
|
1104
|
|
1105 ;;;### (autoloads nil "help-macro" "lisp/help-macro.el")
|
|
1106
|
|
1107 (defcustom three-step-help t "*Non-nil means give more info about Help command in three steps.\nThe three steps are simple prompt, prompt with all options,\nand window listing and describing the options.\nA value of nil means skip the middle step, so that\n\\[help-command] \\[help-command] gives the window that lists the options." :type 'boolean :group 'help-appearance)
|
|
1108
|
|
1109 ;;;***
|
|
1110
|
|
1111 ;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-read-variable-symbol hyper-describe-function hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "lisp/hyper-apropos.el")
|
|
1112
|
|
1113 (autoload 'hyper-apropos "hyper-apropos" "\
|
|
1114 Display lists of functions and variables matching REGEXP
|
|
1115 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the
|
|
1116 value of `hyper-apropos-programming-apropos' is toggled for this search.
|
|
1117 See also `hyper-apropos-mode'." t nil)
|
|
1118
|
|
1119 (autoload 'hyper-describe-key "hyper-apropos" nil t nil)
|
|
1120
|
|
1121 (autoload 'hyper-describe-key-briefly "hyper-apropos" nil t nil)
|
|
1122
|
|
1123 (autoload 'hyper-describe-face "hyper-apropos" "\
|
|
1124 Describe face..
|
|
1125 See also `hyper-apropos' and `hyper-describe-function'." t nil)
|
|
1126
|
|
1127 (autoload 'hyper-describe-variable "hyper-apropos" "\
|
|
1128 Hypertext drop-in replacement for `describe-variable'.
|
|
1129 See also `hyper-apropos' and `hyper-describe-function'." t nil)
|
|
1130
|
|
1131 (autoload 'hyper-describe-function "hyper-apropos" "\
|
|
1132 Hypertext replacement for `describe-function'. Unlike `describe-function'
|
|
1133 in that the symbol under the cursor is the default if it is a function.
|
|
1134 See also `hyper-apropos' and `hyper-describe-variable'." t nil)
|
|
1135
|
|
1136 (autoload 'hyper-apropos-read-variable-symbol "hyper-apropos" "\
|
|
1137 Hypertext drop-in replacement for `describe-variable'.
|
|
1138 See also `hyper-apropos' and `hyper-describe-function'." nil nil)
|
|
1139
|
|
1140 (define-obsolete-function-alias 'hypropos-read-variable-symbol 'hyper-apropos-read-variable-symbol)
|
|
1141
|
|
1142 (define-obsolete-function-alias 'hypropos-get-doc 'hyper-apropos-get-doc)
|
|
1143
|
|
1144 (autoload 'hyper-set-variable "hyper-apropos" nil t nil)
|
|
1145
|
|
1146 (autoload 'hyper-apropos-set-variable "hyper-apropos" "\
|
|
1147 Interactively set the variable on the current line." t nil)
|
|
1148
|
|
1149 (define-obsolete-function-alias 'hypropos-set-variable 'hyper-apropos-set-variable)
|
|
1150
|
|
1151 (autoload 'hyper-apropos-popup-menu "hyper-apropos" nil t nil)
|
|
1152
|
|
1153 (define-obsolete-function-alias 'hypropos-popup-menu 'hyper-apropos-popup-menu)
|
|
1154
|
|
1155 ;;;***
|
|
1156
|
|
1157 ;;;### (autoloads (Info-elisp-ref Info-emacs-key Info-goto-emacs-key-command-node Info-goto-emacs-command-node Info-emacs-command Info-search Info-visit-file Info-goto-node Info-query info) "info" "lisp/info.el")
|
|
1158
|
|
1159 (autoload 'info "info" "\
|
|
1160 Enter Info, the documentation browser.
|
|
1161 Optional argument FILE specifies the file to examine;
|
|
1162 the default is the top-level directory of Info.
|
|
1163
|
|
1164 In interactive use, a prefix argument directs this command
|
|
1165 to read a file name from the minibuffer." t nil)
|
|
1166
|
|
1167 (autoload 'Info-query "info" "\
|
|
1168 Enter Info, the documentation browser. Prompt for name of Info file." t nil)
|
|
1169
|
|
1170 (autoload 'Info-goto-node "info" "\
|
|
1171 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME.
|
|
1172 Actually, the following interpretations of NAME are tried in order:
|
|
1173 (FILENAME)NODENAME
|
|
1174 (FILENAME) (using Top node)
|
|
1175 NODENAME (in current file)
|
|
1176 TAGNAME (see below)
|
|
1177 FILENAME (using Top node)
|
|
1178 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an
|
|
1179 annotation for any node of any file. (See `a' and `x' commands.)" t nil)
|
|
1180
|
|
1181 (autoload 'Info-visit-file "info" "\
|
|
1182 Directly visit an info file." t nil)
|
|
1183
|
|
1184 (autoload 'Info-search "info" "\
|
|
1185 Search for REGEXP, starting from point, and select node it's found in." t nil)
|
|
1186
|
|
1187 (autoload 'Info-emacs-command "info" "\
|
|
1188 Look up an Emacs command in the Emacs manual in the Info system.
|
|
1189 This command is designed to be used whether you are already in Info or not." t nil)
|
|
1190
|
|
1191 (autoload 'Info-goto-emacs-command-node "info" "\
|
|
1192 Look up an Emacs command in the Emacs manual in the Info system.
|
|
1193 This command is designed to be used whether you are already in Info or not." t nil)
|
|
1194
|
|
1195 (autoload 'Info-goto-emacs-key-command-node "info" "\
|
|
1196 Look up an Emacs key sequence in the Emacs manual in the Info system.
|
|
1197 This command is designed to be used whether you are already in Info or not." t nil)
|
|
1198
|
|
1199 (autoload 'Info-emacs-key "info" "\
|
|
1200 Look up an Emacs key sequence in the Emacs manual in the Info system.
|
|
1201 This command is designed to be used whether you are already in Info or not." t nil)
|
|
1202
|
|
1203 (autoload 'Info-elisp-ref "info" "\
|
|
1204 Look up an Emacs Lisp function in the Elisp manual in the Info system.
|
|
1205 This command is designed to be used whether you are already in Info or not." t nil)
|
|
1206
|
|
1207 ;;;***
|
|
1208
|
|
1209 ;;;### (autoloads nil "itimer-autosave" "lisp/itimer-autosave.el")
|
|
1210
|
|
1211 ;;;***
|
|
1212
|
|
1213 ;;;### (autoloads nil "loaddefs" "lisp/loaddefs.el")
|
|
1214
|
|
1215 ;;;***
|
|
1216
|
|
1217 ;;;### (autoloads (package-admin-add-binary-package package-admin-add-single-file-package) "package-admin" "lisp/package-admin.el")
|
|
1218
|
|
1219 (autoload 'package-admin-add-single-file-package "package-admin" "\
|
|
1220 Install a single file Lisp package into XEmacs package hierarchy.
|
|
1221 `file' should be the full path to the lisp file to install.
|
|
1222 `destdir' should be a simple directory name.
|
|
1223 The optional `pkg-dir' can be used to override the default package hiearchy
|
|
1224 \(last package-path)." t nil)
|
|
1225
|
|
1226 (autoload 'package-admin-add-binary-package "package-admin" "\
|
|
1227 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil)
|
|
1228
|
|
1229 ;;;***
|
|
1230
|
219
|
1231 ;;;### (autoloads (picture-mode) "picture" "lisp/picture.el")
|
|
1232
|
|
1233 (autoload 'picture-mode "picture" "\
|
|
1234 Switch to Picture mode, in which a quarter-plane screen model is used.
|
|
1235 Printing characters replace instead of inserting themselves with motion
|
|
1236 afterwards settable by these commands:
|
|
1237 C-c < Move left after insertion.
|
|
1238 C-c > Move right after insertion.
|
|
1239 C-c ^ Move up after insertion.
|
|
1240 C-c . Move down after insertion.
|
|
1241 C-c ` Move northwest (nw) after insertion.
|
|
1242 C-c ' Move northeast (ne) after insertion.
|
|
1243 C-c / Move southwest (sw) after insertion.
|
|
1244 C-c \\ Move southeast (se) after insertion.
|
|
1245 The current direction is displayed in the modeline. The initial
|
|
1246 direction is right. Whitespace is inserted and tabs are changed to
|
|
1247 spaces when required by movement. You can move around in the buffer
|
|
1248 with these commands:
|
|
1249 \\[picture-move-down] Move vertically to SAME column in previous line.
|
|
1250 \\[picture-move-up] Move vertically to SAME column in next line.
|
|
1251 \\[picture-end-of-line] Move to column following last non-whitespace character.
|
|
1252 \\[picture-forward-column] Move right inserting spaces if required.
|
|
1253 \\[picture-backward-column] Move left changing tabs to spaces if required.
|
|
1254 C-c C-f Move in direction of current picture motion.
|
|
1255 C-c C-b Move in opposite direction of current picture motion.
|
|
1256 Return Move to beginning of next line.
|
|
1257 You can edit tabular text with these commands:
|
|
1258 M-Tab Move to column beneath (or at) next interesting character.
|
|
1259 `Indents' relative to a previous line.
|
|
1260 Tab Move to next stop in tab stop list.
|
|
1261 C-c Tab Set tab stops according to context of this line.
|
|
1262 With ARG resets tab stops to default (global) value.
|
|
1263 See also documentation of variable picture-tab-chars
|
|
1264 which defines \"interesting character\". You can manually
|
|
1265 change the tab stop list with command \\[edit-tab-stops].
|
|
1266 You can manipulate text with these commands:
|
|
1267 C-d Clear (replace) ARG columns after point without moving.
|
|
1268 C-c C-d Delete char at point - the command normally assigned to C-d.
|
|
1269 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them.
|
|
1270 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared
|
|
1271 text is saved in the kill ring.
|
|
1272 \\[picture-open-line] Open blank line(s) beneath current line.
|
|
1273 You can manipulate rectangles with these commands:
|
|
1274 C-c C-k Clear (or kill) a rectangle and save it.
|
|
1275 C-c C-w Like C-c C-k except rectangle is saved in named register.
|
|
1276 C-c C-y Overlay (or insert) currently saved rectangle at point.
|
|
1277 C-c C-x Like C-c C-y except rectangle is taken from named register.
|
|
1278 \\[copy-rectangle-to-register] Copies a rectangle to a register.
|
|
1279 \\[advertised-undo] Can undo effects of rectangle overlay commands
|
|
1280 commands if invoked soon enough.
|
|
1281 You can return to the previous mode with:
|
|
1282 C-c C-c Which also strips trailing whitespace from every line.
|
|
1283 Stripping is suppressed by supplying an argument.
|
|
1284
|
|
1285 Entry to this mode calls the value of picture-mode-hook if non-nil.
|
|
1286
|
|
1287 Note that Picture mode commands will work outside of Picture mode, but
|
|
1288 they are not defaultly assigned to keys." t nil)
|
|
1289
|
|
1290 (defalias 'edit-picture 'picture-mode)
|
|
1291
|
|
1292 ;;;***
|
|
1293
|
|
1294 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "lisp/rect.el")
|
|
1295
|
|
1296 (autoload 'delete-rectangle "rect" "\
|
|
1297 Delete (don't save) text in rectangle with point and mark as corners.
|
|
1298 The same range of columns is deleted in each line starting with the line
|
|
1299 where the region begins and ending with the line where the region ends." t nil)
|
|
1300
|
|
1301 (autoload 'delete-extract-rectangle "rect" "\
|
|
1302 Delete contents of rectangle and return it as a list of strings.
|
|
1303 Arguments START and END are the corners of the rectangle.
|
|
1304 The value is list of strings, one for each line of the rectangle." nil nil)
|
|
1305
|
|
1306 (autoload 'extract-rectangle "rect" "\
|
|
1307 Return contents of rectangle with corners at START and END.
|
|
1308 Value is list of strings, one for each line of the rectangle." nil nil)
|
|
1309
|
|
1310 (defvar killed-rectangle nil "\
|
|
1311 Rectangle for yank-rectangle to insert.")
|
|
1312
|
|
1313 (autoload 'kill-rectangle "rect" "\
|
|
1314 Delete rectangle with corners at point and mark; save as last killed one.
|
|
1315 Calling from program, supply two args START and END, buffer positions.
|
|
1316 But in programs you might prefer to use `delete-extract-rectangle'." t nil)
|
|
1317
|
|
1318 (autoload 'yank-rectangle "rect" "\
|
|
1319 Yank the last killed rectangle with upper left corner at point." t nil)
|
|
1320
|
|
1321 (autoload 'insert-rectangle "rect" "\
|
|
1322 Insert text of RECTANGLE with upper left corner at point.
|
|
1323 RECTANGLE's first line is inserted at point, its second
|
|
1324 line is inserted at a point vertically under point, etc.
|
|
1325 RECTANGLE should be a list of strings.
|
|
1326 After this command, the mark is at the upper left corner
|
|
1327 and point is at the lower right corner." nil nil)
|
|
1328
|
|
1329 (autoload 'open-rectangle "rect" "\
|
|
1330 Blank out rectangle with corners at point and mark, shifting text right.
|
|
1331 The text previously in the region is not overwritten by the blanks,
|
|
1332 but instead winds up to the right of the rectangle." t nil)
|
|
1333
|
|
1334 (autoload 'string-rectangle "rect" "\
|
|
1335 Insert STRING on each line of the region-rectangle, shifting text right.
|
|
1336 The left edge of the rectangle specifies the column for insertion.
|
|
1337 This command does not delete or overwrite any existing text.
|
|
1338
|
|
1339 Called from a program, takes three args; START, END and STRING." t nil)
|
|
1340
|
|
1341 (autoload 'clear-rectangle "rect" "\
|
|
1342 Blank out rectangle with corners at point and mark.
|
|
1343 The text previously in the region is overwritten by the blanks.
|
|
1344 When called from a program, requires two args which specify the corners." t nil)
|
|
1345
|
|
1346 ;;;***
|
|
1347
|
217
|
1348 ;;;### (autoloads (list-load-path-shadows) "shadow" "lisp/shadow.el")
|
|
1349
|
|
1350 (autoload 'list-load-path-shadows "shadow" "\
|
|
1351 Display a list of Emacs Lisp files that shadow other files.
|
|
1352
|
|
1353 This function lists potential load-path problems. Directories in the
|
|
1354 `load-path' variable are searched, in order, for Emacs Lisp
|
|
1355 files. When a previously encountered file name is found again, a
|
|
1356 message is displayed indicating that the later file is \"hidden\" by
|
|
1357 the earlier.
|
|
1358
|
|
1359 For example, suppose `load-path' is set to
|
|
1360
|
|
1361 \(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\")
|
|
1362
|
|
1363 and that each of these directories contains a file called XXX.el. Then
|
|
1364 XXX.el in the site-lisp directory is referred to by all of:
|
|
1365 \(require 'XXX), (autoload .... \"XXX\"), (load-library \"XXX\") etc.
|
|
1366
|
|
1367 The first XXX.el file prevents emacs from seeing the second (unless
|
|
1368 the second is loaded explicitly via load-file).
|
|
1369
|
|
1370 When not intended, such shadowings can be the source of subtle
|
|
1371 problems. For example, the above situation may have arisen because the
|
|
1372 XXX package was not distributed with versions of emacs prior to
|
|
1373 19.30. An emacs maintainer downloaded XXX from elsewhere and installed
|
|
1374 it. Later, XXX was updated and included in the emacs distribution.
|
|
1375 Unless the emacs maintainer checks for this, the new version of XXX
|
|
1376 will be hidden behind the old (which may no longer work with the new
|
|
1377 emacs version).
|
|
1378
|
|
1379 This function performs these checks and flags all possible
|
|
1380 shadowings. Because a .el file may exist without a corresponding .elc
|
|
1381 \(or vice-versa), these suffixes are essentially ignored. A file
|
|
1382 XXX.elc in an early directory (that does not contain XXX.el) is
|
|
1383 considered to shadow a later file XXX.el, and vice-versa.
|
|
1384
|
|
1385 When run interactively, the shadowings (if any) are displayed in a
|
|
1386 buffer called `*Shadows*'. Shadowings are located by calling the
|
|
1387 \(non-interactive) companion function, `find-emacs-lisp-shadows'." t nil)
|
|
1388
|
|
1389 ;;;***
|
|
1390
|
|
1391 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "lisp/sound.el")
|
|
1392
|
|
1393 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
|
|
1394
|
|
1395 (autoload 'load-sound-file "sound" "\
|
|
1396 Read in an audio-file and add it to the sound-alist.
|
|
1397
|
|
1398 You can only play sound files if you are running on display 0 of the
|
|
1399 console of a machine with native sound support or running a NetAudio
|
|
1400 server and XEmacs has the necessary sound support compiled in.
|
|
1401
|
|
1402 The sound file must be in the Sun/NeXT U-LAW format, except on Linux,
|
|
1403 where .wav files are also supported by the sound card drivers." t nil)
|
|
1404
|
|
1405 (autoload 'load-default-sounds "sound" "\
|
|
1406 Load and install some sound files as beep-types, using
|
|
1407 `load-sound-file'. This only works if you're on display 0 of the
|
|
1408 console of a machine with native sound support or running a NetAudio
|
|
1409 server and XEmacs has the necessary sound support compiled in." t nil)
|
|
1410
|
|
1411 ;;;***
|
|
1412
|
|
1413 ;;;### (autoloads (auto-view-mode view-major-mode view-mode view-minor-mode view-buffer-other-window view-file-other-window view-buffer view-file) "view-less" "lisp/view-less.el")
|
|
1414
|
|
1415 (defvar view-minor-mode-map (let ((map (make-keymap))) (set-keymap-name map 'view-minor-mode-map) (suppress-keymap map) (define-key map "-" 'negative-argument) (define-key map " " 'scroll-up) (define-key map "f" 'scroll-up) (define-key map "b" 'scroll-down) (define-key map 'backspace 'scroll-down) (define-key map 'delete 'scroll-down) (define-key map "
" 'view-scroll-lines-up) (define-key map "\n" 'view-scroll-lines-up) (define-key map "e" 'view-scroll-lines-up) (define-key map "j" 'view-scroll-lines-up) (define-key map "y" 'view-scroll-lines-down) (define-key map "k" 'view-scroll-lines-down) (define-key map "d" 'view-scroll-some-lines-up) (define-key map "u" 'view-scroll-some-lines-down) (define-key map "r" 'recenter) (define-key map "t" 'toggle-truncate-lines) (define-key map "N" 'view-buffer) (define-key map "E" 'view-file) (define-key map "P" 'view-buffer) (define-key map "!" 'shell-command) (define-key map "|" 'shell-command-on-region) (define-key map "=" 'what-line) (define-key map "?" 'view-search-backward) (define-key map "h" 'view-mode-describe) (define-key map "s" 'view-repeat-search) (define-key map "n" 'view-repeat-search) (define-key map "/" 'view-search-forward) (define-key map "\\" 'view-search-backward) (define-key map "g" 'view-goto-line) (define-key map "G" 'view-last-windowful) (define-key map "%" 'view-goto-percent) (define-key map "p" 'view-goto-percent) (define-key map "m" 'point-to-register) (define-key map "'" 'register-to-point) (define-key map "C" 'view-cleanup-backspaces) (define-key map "" 'view-quit) (define-key map "" 'view-quit-toggle-ro) (define-key map "q" 'view-quit) map))
|
|
1416
|
|
1417 (defvar view-mode-map (let ((map (copy-keymap view-minor-mode-map))) (set-keymap-name map 'view-mode-map) map))
|
|
1418
|
|
1419 (autoload 'view-file "view-less" "\
|
|
1420 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil)
|
|
1421
|
|
1422 (autoload 'view-buffer "view-less" "\
|
|
1423 Switch to BUF, enter view mode. With prefix arg use other window." t nil)
|
|
1424
|
|
1425 (autoload 'view-file-other-window "view-less" "\
|
|
1426 Find FILE in other window, and enter view mode." t nil)
|
|
1427
|
|
1428 (autoload 'view-buffer-other-window "view-less" "\
|
|
1429 Switch to BUFFER in another window, and enter view mode." t nil)
|
|
1430
|
|
1431 (autoload 'view-minor-mode "view-less" "\
|
|
1432 Minor mode for viewing text, with bindings like `less'.
|
|
1433 Commands are:
|
|
1434 \\<view-minor-mode-map>
|
|
1435 0..9 prefix args
|
|
1436 - prefix minus
|
|
1437 \\[scroll-up] page forward
|
|
1438 \\[scroll-down] page back
|
|
1439 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1.
|
|
1440 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1.
|
|
1441 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10.
|
|
1442 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10.
|
|
1443 \\[what-line] print line number
|
|
1444 \\[view-mode-describe] print this help message
|
|
1445 \\[view-search-forward] regexp search, uses previous string if you just hit RET
|
|
1446 \\[view-search-backward] as above but searches backward
|
|
1447 \\[view-repeat-search] repeat last search
|
|
1448 \\[view-goto-line] goto line prefix-arg, default 1
|
|
1449 \\[view-last-windowful] goto line prefix-arg, default last line
|
|
1450 \\[view-goto-percent] goto a position by percentage
|
|
1451 \\[toggle-truncate-lines] toggle truncate-lines
|
|
1452 \\[view-file] view another file
|
|
1453 \\[view-buffer] view another buffer
|
|
1454 \\[view-cleanup-backspaces] cleanup backspace constructions
|
|
1455 \\[shell-command] execute a shell command
|
|
1456 \\[shell-command-on-region] execute a shell command with the region as input
|
|
1457 \\[view-quit] exit view-mode, and bury the current buffer.
|
|
1458
|
|
1459 If invoked with the optional (prefix) arg non-nil, view-mode cleans up
|
|
1460 backspace constructions.
|
|
1461
|
|
1462 More precisely:
|
|
1463 \\{view-minor-mode-map}" t nil)
|
|
1464
|
|
1465 (autoload 'view-mode "view-less" "\
|
|
1466 View the current buffer using view-minor-mode. This exists to be 99.9%
|
|
1467 compatible with the implementations of `view-mode' in view.el and older
|
|
1468 versions of view-less.el." t nil)
|
|
1469
|
|
1470 (autoload 'view-major-mode "view-less" "\
|
|
1471 View the current buffer using view-mode, as a major mode.
|
|
1472 This function has a nonstandard name because `view-mode' is wrongly
|
|
1473 named but is like this for compatibility reasons." t nil)
|
|
1474
|
|
1475 (autoload 'auto-view-mode "view-less" "\
|
|
1476 If the file of the current buffer is not writable, call view-mode.
|
|
1477 This is meant to be added to `find-file-hooks'." nil nil)
|
|
1478
|
|
1479 ;;;***
|
|
1480
|
209
|
1481 ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse widget-browse-at) "wid-browse" "lisp/wid-browse.el")
|
|
1482
|
|
1483 (autoload 'widget-browse-at "wid-browse" "\
|
|
1484 Browse the widget under point." t nil)
|
|
1485
|
|
1486 (autoload 'widget-browse "wid-browse" "\
|
|
1487 Create a widget browser for WIDGET." t nil)
|
|
1488
|
|
1489 (autoload 'widget-browse-other-window "wid-browse" "\
|
|
1490 Show widget browser for WIDGET in other window." t nil)
|
|
1491
|
|
1492 (autoload 'widget-minor-mode "wid-browse" "\
|
|
1493 Togle minor mode for traversing widgets.
|
|
1494 With arg, turn widget mode on if and only if arg is positive." t nil)
|
|
1495
|
|
1496 ;;;***
|
|
1497
|
|
1498 ;;;### (autoloads (widget-delete widget-create widget-prompt-value) "wid-edit" "lisp/wid-edit.el")
|
|
1499
|
|
1500 (autoload 'widget-prompt-value "wid-edit" "\
|
|
1501 Prompt for a value matching WIDGET, using PROMPT.
|
|
1502 The current value is assumed to be VALUE, unless UNBOUND is non-nil." nil nil)
|
|
1503
|
|
1504 (autoload 'widget-create "wid-edit" "\
|
|
1505 Create widget of TYPE.
|
|
1506 The optional ARGS are additional keyword arguments." nil nil)
|
|
1507
|
|
1508 (autoload 'widget-delete "wid-edit" "\
|
|
1509 Delete WIDGET." nil nil)
|
|
1510
|
|
1511 ;;;***
|
|
1512
|
|
1513 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "lisp/x-font-menu.el")
|
|
1514
|
|
1515 (defcustom font-menu-ignore-scaled-fonts t "*If non-nil, then the font menu will try to show only bitmap fonts." :type 'boolean :group 'x)
|
|
1516
|
|
1517 (defcustom font-menu-this-frame-only-p nil "*If non-nil, then changing the default font from the font menu will only\naffect one frame instead of all frames." :type 'boolean :group 'x)
|
|
1518
|
|
1519 (fset 'install-font-menus 'reset-device-font-menus)
|
|
1520
|
|
1521 (autoload 'reset-device-font-menus "x-font-menu" "\
|
|
1522 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
|
|
1523 This is run the first time that a font-menu is needed for each device.
|
|
1524 If you don't like the lazy invocation of this function, you can add it to
|
|
1525 `create-device-hook' and that will make the font menus respond more quickly
|
|
1526 when they are selected for the first time. If you add fonts to your system,
|
|
1527 or if you change your font path, you can call this to re-initialize the menus." nil nil)
|
|
1528
|
|
1529 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil)
|
|
1530
|
|
1531 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil)
|
|
1532
|
|
1533 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil)
|
|
1534
|
|
1535 ;;;***
|
|
1536
|
217
|
1537 (provide 'Standard-autoloads)
|