annotate lisp/bytecomp/auto-autoloads.el @ 202:61eefc8fc970

Added tag r20-3b27 for changeset eb5470882647
author cvs
date Mon, 13 Aug 2007 10:01:24 +0200
parents e121b013d1f0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 163
diff changeset
2 (if (featurep 'bytecomp-autoloads) (error "Already loaded"))
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
3
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
4 ;;;### (autoloads (batch-byte-recompile-directory batch-byte-recompile-directory-norecurse batch-byte-compile display-call-tree byte-compile-sexp byte-compile compile-defun byte-compile-file byte-recompile-file byte-recompile-directory byte-force-recompile) "bytecomp" "bytecomp/bytecomp.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
5
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
6 (autoload 'byte-force-recompile "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
7 Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
8 Files in subdirectories of DIRECTORY are processed also." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
9
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
10 (autoload 'byte-recompile-directory "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
11 Recompile every `.el' file in DIRECTORY that needs recompilation.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
12 This is if a `.elc' file exists but is older than the `.el' file.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
13 Files in subdirectories of DIRECTORY are processed also unless argument
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
14 NORECURSION is non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
15
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
16 If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
17 But a prefix argument (optional second arg) means ask user,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
18 for each such `.el' file, whether to compile it. Prefix argument 0 means
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
19 don't ask and compile the file anyway.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
20
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
21 A nonzero prefix argument also means ask about each subdirectory.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
22
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
23 If the fourth argument FORCE is non-nil,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
24 recompile every `.el' file that already has a `.elc' file." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
25
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
26 (autoload 'byte-recompile-file "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
27 Recompile a file of Lisp code named FILENAME if it needs recompilation.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
28 This is if the `.elc' file exists but is older than the `.el' file.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
29
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
30 If the `.elc' file does not exist, normally the `.el' file is *not*
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
31 compiled. But a prefix argument (optional second arg) means ask user
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
32 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
33
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
34 (autoload 'byte-compile-file "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
35 Compile a file of Lisp code named FILENAME into a file of byte code.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
36 The output file's name is made by appending `c' to the end of FILENAME.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
37 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
38
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
39 (autoload 'compile-defun "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
40 Compile and evaluate the current top-level form.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
41 Print the result in the minibuffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
42 With argument, insert value in current buffer after the form." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
43
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
44 (autoload 'byte-compile "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
45 If FORM is a symbol, byte-compile its function definition.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
46 If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
47
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
48 (autoload 'byte-compile-sexp "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
49 Compile and return SEXP." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
50
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
51 (autoload 'display-call-tree "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
52 Display a call graph of a specified file.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
53 This lists which functions have been called, what functions called
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
54 them, and what functions they call. The list includes all functions
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
55 whose definitions have been compiled in this Emacs session, as well as
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
56 all functions called by those functions.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
57
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
58 The call graph does not include macros, inline functions, or
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
59 primitives that the byte-code interpreter knows about directly (eq,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
60 cons, etc.).
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
61
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
62 The call tree also lists those functions which are not known to be called
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
63 \(that is, to which no calls have been compiled), and which cannot be
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
64 invoked interactively." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
65
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
66 (autoload 'batch-byte-compile "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
67 Run `byte-compile-file' on the files remaining on the command line.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
68 Use this from the command line, with `-batch';
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
69 it won't work in an interactive Emacs.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
70 Each file is processed even if an error occurred previously.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
71 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
72
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
73 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
74 Same as `batch-byte-recompile-directory' but without recursion." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
75
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
76 (autoload 'batch-byte-recompile-directory "bytecomp" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
77 Runs `byte-recompile-directory' on the dirs remaining on the command line.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
78 Must be used only with `-batch', and kills Emacs on completion.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
79 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
80
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
81 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
82
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
83 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
84
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
85 (autoload 'disassemble "disass" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
86 Print disassembled code for OBJECT in (optional) BUFFER.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
87 OBJECT can be a symbol defined as a function, or a function itself
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
88 \(a lambda expression or a compiled-function object).
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
89 If OBJECT is not already compiled, we compile it, but do not
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
90 redefine OBJECT if it is a symbol." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
91
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
92 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
93
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
94 (provide 'bytecomp-autoloads)