Mercurial > hg > xemacs-beta
comparison lisp/auto-autoloads.el @ 375:a300bb07d72d r21-2b3
Import from CVS: tag r21-2b3
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:04:51 +0200 |
parents | 6240c7796c7a |
children | d883f39b8495 |
comparison
equal
deleted
inserted
replaced
374:4ebeb1a5388b | 375:a300bb07d72d |
---|---|
1202 (autoload 'package-admin-add-binary-package "package-admin" "\ | 1202 (autoload 'package-admin-add-binary-package "package-admin" "\ |
1203 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) | 1203 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) |
1204 | 1204 |
1205 ;;;*** | 1205 ;;;*** |
1206 | 1206 |
1207 ;;;### (autoloads (package-get-custom package-get-package-provider package-get package-get-all package-get-update-all) "package-get" "lisp/package-get.el") | 1207 ;;;### (autoloads (package-get-custom package-get-package-provider package-get package-get-dependencies package-get-all package-get-update-all package-get-delete-package package-get-update-base-from-buffer package-get-update-base package-get-update-base-entry package-get-require-base) "package-get" "lisp/package-get.el") |
1208 | |
1209 (autoload 'package-get-require-base "package-get" "\ | |
1210 Require that a package-get database has been loaded." nil nil) | |
1211 | |
1212 (autoload 'package-get-update-base-entry "package-get" "\ | |
1213 Update an entry in `package-get-base'." nil nil) | |
1214 | |
1215 (autoload 'package-get-update-base "package-get" "\ | |
1216 Update the package-get database file with entries from DB-FILE." t nil) | |
1217 | |
1218 (autoload 'package-get-update-base-from-buffer "package-get" "\ | |
1219 Update the package-get database with entries from BUFFER. | |
1220 BUFFER defaults to the current buffer. This command can be | |
1221 used interactively, for example from a mail or news buffer." t nil) | |
1222 | |
1223 (autoload 'package-get-delete-package "package-get" "\ | |
1224 Delete an installation of PACKAGE below directory PKG-TOPDIR. | |
1225 PACKAGE is a symbol, not a string. | |
1226 This is just an interactive wrapper for `package-admin-delete-binary-package'." t nil) | |
1208 | 1227 |
1209 (autoload 'package-get-update-all "package-get" "\ | 1228 (autoload 'package-get-update-all "package-get" "\ |
1210 Fetch and install the latest versions of all currently installed packages." t nil) | 1229 Fetch and install the latest versions of all currently installed packages." t nil) |
1211 | 1230 |
1212 (autoload 'package-get-all "package-get" "\ | 1231 (autoload 'package-get-all "package-get" "\ |
1213 Fetch PACKAGE with VERSION and all other required packages. | 1232 Fetch PACKAGE with VERSION and all other required packages. |
1214 Uses `package-get-base' to determine just what is required and what | 1233 Uses `package-get-base' to determine just what is required and what |
1215 package provides that functionality. If VERSION is nil, retrieves | 1234 package provides that functionality. If VERSION is nil, retrieves |
1216 latest version. Optional argument FETCHED-PACKAGES is used to keep | 1235 latest version. Optional argument FETCHED-PACKAGES is used to keep |
1217 track of packages already fetched. | 1236 track of packages already fetched. Optional argument INSTALL-DIR, |
1237 if non-nil, specifies the package directory where fetched packages | |
1238 should be installed. | |
1218 | 1239 |
1219 Returns nil upon error." t nil) | 1240 Returns nil upon error." t nil) |
1241 | |
1242 (autoload 'package-get-dependencies "package-get" "\ | |
1243 Compute dependencies for PACKAGES. | |
1244 Uses `package-get-base' to determine just what is required and what | |
1245 package provides that functionality. Returns the list of packages | |
1246 required by PACKAGES." nil nil) | |
1220 | 1247 |
1221 (autoload 'package-get "package-get" "\ | 1248 (autoload 'package-get "package-get" "\ |
1222 Fetch PACKAGE from remote site. | 1249 Fetch PACKAGE from remote site. |
1223 Optional arguments VERSION indicates which version to retrieve, nil | 1250 Optional arguments VERSION indicates which version to retrieve, nil |
1224 means most recent version. CONFLICT indicates what happens if the | 1251 means most recent version. CONFLICT indicates what happens if the |