Mercurial > hg > xemacs-beta
diff lisp/auto-autoloads.el @ 286:57709be46d1b r21-0b41
Import from CVS: tag r21-0b41
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:35:03 +0200 |
parents | c42ec1d1cded |
children | 4b85ae5eabfb |
line wrap: on
line diff
--- a/lisp/auto-autoloads.el Mon Aug 13 10:34:15 2007 +0200 +++ b/lisp/auto-autoloads.el Mon Aug 13 10:35:03 2007 +0200 @@ -88,7 +88,7 @@ ;;;*** -;;;### (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" "lisp/bytecomp.el") +;;;### (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") (autoload 'byte-force-recompile "bytecomp" "\ Recompile every `.el' file in DIRECTORY that already has a `.elc' file. @@ -123,6 +123,14 @@ The output file's name is made by appending `c' to the end of FILENAME. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil) +(autoload 'byte-compile-and-load-file "bytecomp" "\ +Compile a file of Lisp code named FILENAME into a file of byte code, +and then load it. The output file's name is made by appending \"c\" to +the end of FILENAME." t nil) + +(autoload 'byte-compile-buffer "bytecomp" "\ +Byte-compile and evaluate contents of BUFFER (default: the current buffer)." t nil) + (autoload 'compile-defun "bytecomp" "\ Compile and evaluate the current top-level form. Print the result in the minibuffer. @@ -637,7 +645,7 @@ (autoload 'customize-browse "cus-edit" "\ Create a tree browser for the customize hierarchy." t nil) -(defcustom custom-file (if (boundp 'user-init-directory) (concat "~" init-file-user user-init-directory "options.el") "~/.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) +(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) (autoload 'customize-save-customized "cus-edit" "\ Save all user options which have been set in this session." t nil) @@ -826,7 +834,6 @@ (autoload 'tags-apropos "etags" "\ Display list of all tags in tag table REGEXP matches." t nil) - (define-key esc-map "*" 'pop-tag-mark) ;;;***