1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- ;;; loaddefs.el --- automatically extracted autoloads
- ;;
- ;;; Code:
- ;;;### (autoloads nil "package" "package.el" (21696 22242 277097
- ;;;;;; 0))
- ;;; Generated autoloads from package.el
- (defvar package-enable-at-startup t "\
- Whether to activate installed packages when Emacs starts.
- If non-nil, packages are activated after reading the init file
- and before `after-init-hook'. Activation is not done if
- `user-init-file' is nil (e.g. Emacs was started with \"-q\").
- Even if the value is nil, you can type \\[package-initialize] to
- activate the package system at any time.")
- (custom-autoload 'package-enable-at-startup "package" t)
- (autoload 'package-install "package" "\
- Install the package named NAME.
- Interactively, prompt for the package name.
- The package is found on one of the archives in `package-archives'.
- \(fn NAME)" t nil)
- (autoload 'package-install-from-buffer "package" "\
- Install a package from the current buffer.
- When called interactively, the current buffer is assumed to be a
- single .el file that follows the packaging guidelines; see info
- node `(elisp)Packaging'.
- When called from Lisp, PKG-INFO is a vector describing the
- information, of the type returned by `package-buffer-info'; and
- TYPE is the package type (either `single' or `tar').
- \(fn PKG-INFO TYPE)" t nil)
- (autoload 'package-install-file "package" "\
- Install a package from a file.
- The file can either be a tar file or an Emacs Lisp file.
- \(fn FILE)" t nil)
- (autoload 'package-initialize "package" "\
- Load Emacs Lisp packages, and activate them.
- The variable `package-load-list' controls which packages to load.
- If optional arg NO-ACTIVATE is non-nil, don't activate packages.
- \(fn &optional NO-ACTIVATE)" t nil)
- (autoload 'describe-package "package" "\
- Display the full documentation of PACKAGE (a symbol).
- \(fn PACKAGE)" t nil)
- (autoload 'list-packages "package" "\
- Display a list of packages.
- Fetches the updated list of packages before displaying.
- The list is displayed in a buffer named `*Packages*'.
- \(fn)" t nil)
- (defalias 'package-list-packages 'list-packages)
- ;;;***
- (provide 'loaddefs)
- ;; Local Variables:
- ;; version-control: never
- ;; no-byte-compile: t
- ;; no-update-autoloads: t
- ;; coding: utf-8
- ;; End:
- ;;; loaddefs.el ends here
|