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