loaddefs.el 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. ;;; loaddefs.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. ;;;### (autoloads nil "package" "package.el" (21696 22242 277097
  5. ;;;;;; 0))
  6. ;;; Generated autoloads from package.el
  7. (defvar package-enable-at-startup t "\
  8. Whether to activate installed packages when Emacs starts.
  9. If non-nil, packages are activated after reading the init file
  10. and before `after-init-hook'. Activation is not done if
  11. `user-init-file' is nil (e.g. Emacs was started with \"-q\").
  12. Even if the value is nil, you can type \\[package-initialize] to
  13. activate the package system at any time.")
  14. (custom-autoload 'package-enable-at-startup "package" t)
  15. (autoload 'package-install "package" "\
  16. Install the package named NAME.
  17. Interactively, prompt for the package name.
  18. The package is found on one of the archives in `package-archives'.
  19. \(fn NAME)" t nil)
  20. (autoload 'package-install-from-buffer "package" "\
  21. Install a package from the current buffer.
  22. When called interactively, the current buffer is assumed to be a
  23. single .el file that follows the packaging guidelines; see info
  24. node `(elisp)Packaging'.
  25. When called from Lisp, PKG-INFO is a vector describing the
  26. information, of the type returned by `package-buffer-info'; and
  27. TYPE is the package type (either `single' or `tar').
  28. \(fn PKG-INFO TYPE)" t nil)
  29. (autoload 'package-install-file "package" "\
  30. Install a package from a file.
  31. The file can either be a tar file or an Emacs Lisp file.
  32. \(fn FILE)" t nil)
  33. (autoload 'package-initialize "package" "\
  34. Load Emacs Lisp packages, and activate them.
  35. The variable `package-load-list' controls which packages to load.
  36. If optional arg NO-ACTIVATE is non-nil, don't activate packages.
  37. \(fn &optional NO-ACTIVATE)" t nil)
  38. (autoload 'describe-package "package" "\
  39. Display the full documentation of PACKAGE (a symbol).
  40. \(fn PACKAGE)" t nil)
  41. (autoload 'list-packages "package" "\
  42. Display a list of packages.
  43. Fetches the updated list of packages before displaying.
  44. The list is displayed in a buffer named `*Packages*'.
  45. \(fn)" t nil)
  46. (defalias 'package-list-packages 'list-packages)
  47. ;;;***
  48. (provide 'loaddefs)
  49. ;; Local Variables:
  50. ;; version-control: never
  51. ;; no-byte-compile: t
  52. ;; no-update-autoloads: t
  53. ;; coding: utf-8
  54. ;; End:
  55. ;;; loaddefs.el ends here