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