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