diff options
| author | Eli Zaretskii | 2002-02-13 18:21:21 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-02-13 18:21:21 +0000 |
| commit | 55a317c26276f2a43abc6087005f158da7637ca8 (patch) | |
| tree | 8fdeccc7f75d6e7c4b106313de67e0ef6897ea17 | |
| parent | 80b473796a21d013ef78787c89ec3e8dc45d34bb (diff) | |
| download | emacs-55a317c26276f2a43abc6087005f158da7637ca8.tar.gz emacs-55a317c26276f2a43abc6087005f158da7637ca8.zip | |
Remove the extraneous entries for lbytecomp.el.
| -rw-r--r-- | lisp/loaddefs.el | 71 |
1 files changed, 1 insertions, 70 deletions
diff --git a/lisp/loaddefs.el b/lisp/loaddefs.el index 6b65e083209..c517de5882a 100644 --- a/lisp/loaddefs.el +++ b/lisp/loaddefs.el | |||
| @@ -1966,7 +1966,7 @@ name of buffer configuration." t nil) | |||
| 1966 | ;;;;;; 28360)) | 1966 | ;;;;;; 28360)) |
| 1967 | ;;; Generated autoloads from button.el | 1967 | ;;; Generated autoloads from button.el |
| 1968 | 1968 | ||
| 1969 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ | 1969 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map "" (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ |
| 1970 | Keymap used by buttons.") | 1970 | Keymap used by buttons.") |
| 1971 | 1971 | ||
| 1972 | (defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map [backtab] (quote backward-button)) map) "\ | 1972 | (defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map [backtab] (quote backward-button)) map) "\ |
| @@ -10937,75 +10937,6 @@ Unconditionally turn on Lazy Lock mode." nil nil) | |||
| 10937 | 10937 | ||
| 10938 | ;;;*** | 10938 | ;;;*** |
| 10939 | 10939 | ||
| 10940 | ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile | ||
| 10941 | ;;;;;; display-call-tree byte-compile compile-defun byte-compile-file | ||
| 10942 | ;;;;;; byte-recompile-directory byte-force-recompile) "lbytecomp" | ||
| 10943 | ;;;;;; "emacs-lisp/lbytecomp.el" (15348 54632)) | ||
| 10944 | ;;; Generated autoloads from emacs-lisp/lbytecomp.el | ||
| 10945 | |||
| 10946 | (autoload (quote byte-force-recompile) "lbytecomp" "\ | ||
| 10947 | Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | ||
| 10948 | Files in subdirectories of DIRECTORY are processed also." t nil) | ||
| 10949 | |||
| 10950 | (autoload (quote byte-recompile-directory) "lbytecomp" "\ | ||
| 10951 | Recompile every `.el' file in DIRECTORY that needs recompilation. | ||
| 10952 | This is if a `.elc' file exists but is older than the `.el' file. | ||
| 10953 | Files in subdirectories of DIRECTORY are processed also. | ||
| 10954 | |||
| 10955 | If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | ||
| 10956 | But a prefix argument (optional second arg) means ask user, | ||
| 10957 | for each such `.el' file, whether to compile it. Prefix argument 0 means | ||
| 10958 | don't ask and compile the file anyway. | ||
| 10959 | |||
| 10960 | A nonzero prefix argument also means ask about each subdirectory. | ||
| 10961 | |||
| 10962 | If the third argument FORCE is non-nil, | ||
| 10963 | recompile every `.el' file that already has a `.elc' file." t nil) | ||
| 10964 | |||
| 10965 | (autoload (quote byte-compile-file) "lbytecomp" "\ | ||
| 10966 | Compile a file of Lisp code named FILENAME into a file of byte code. | ||
| 10967 | The output file's name is made by appending `c' to the end of FILENAME. | ||
| 10968 | With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling. | ||
| 10969 | The value is non-nil if there were no errors, nil if errors." t nil) | ||
| 10970 | |||
| 10971 | (autoload (quote compile-defun) "lbytecomp" "\ | ||
| 10972 | Compile and evaluate the current top-level form. | ||
| 10973 | Print the result in the minibuffer. | ||
| 10974 | With argument, insert value in current buffer after the form." t nil) | ||
| 10975 | |||
| 10976 | (autoload (quote byte-compile) "lbytecomp" "\ | ||
| 10977 | If FORM is a symbol, byte-compile its function definition. | ||
| 10978 | If FORM is a lambda or a macro, byte-compile it as a function." nil nil) | ||
| 10979 | |||
| 10980 | (autoload (quote display-call-tree) "lbytecomp" "\ | ||
| 10981 | Display a call graph of a specified file. | ||
| 10982 | This lists which functions have been called, what functions called | ||
| 10983 | them, and what functions they call. The list includes all functions | ||
| 10984 | whose definitions have been compiled in this Emacs session, as well as | ||
| 10985 | all functions called by those functions. | ||
| 10986 | |||
| 10987 | The call graph does not include macros, inline functions, or | ||
| 10988 | primitives that the byte-code interpreter knows about directly (eq, | ||
| 10989 | cons, etc.). | ||
| 10990 | |||
| 10991 | The call tree also lists those functions which are not known to be called | ||
| 10992 | \(that is, to which no calls have been compiled), and which cannot be | ||
| 10993 | invoked interactively." t nil) | ||
| 10994 | |||
| 10995 | (autoload (quote batch-byte-compile) "lbytecomp" "\ | ||
| 10996 | Run `byte-compile-file' on the files remaining on the command line. | ||
| 10997 | Use this from the command line, with `-batch'; | ||
| 10998 | it won't work in an interactive Emacs. | ||
| 10999 | Each file is processed even if an error occurred previously. | ||
| 11000 | For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil) | ||
| 11001 | |||
| 11002 | (autoload (quote batch-byte-recompile-directory) "lbytecomp" "\ | ||
| 11003 | Runs `byte-recompile-directory' on the dirs remaining on the command line. | ||
| 11004 | Must be used only with `-batch', and kills Emacs on completion. | ||
| 11005 | For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." nil nil) | ||
| 11006 | |||
| 11007 | ;;;*** | ||
| 11008 | |||
| 11009 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" | 10940 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" |
| 11010 | ;;;;;; (15371 46416)) | 10941 | ;;;;;; (15371 46416)) |
| 11011 | ;;; Generated autoloads from ledit.el | 10942 | ;;; Generated autoloads from ledit.el |