Mercurial > hg > xemacs-beta
comparison lisp/auto-autoloads.el @ 373:6240c7796c7a r21-2b2
Import from CVS: tag r21-2b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:04:06 +0200 |
parents | cc15677e0335 |
children | a300bb07d72d |
comparison
equal
deleted
inserted
replaced
372:49e1ed2d7ed8 | 373:6240c7796c7a |
---|---|
1212 (autoload 'package-get-all "package-get" "\ | 1212 (autoload 'package-get-all "package-get" "\ |
1213 Fetch PACKAGE with VERSION and all other required packages. | 1213 Fetch PACKAGE with VERSION and all other required packages. |
1214 Uses `package-get-base' to determine just what is required and what | 1214 Uses `package-get-base' to determine just what is required and what |
1215 package provides that functionality. If VERSION is nil, retrieves | 1215 package provides that functionality. If VERSION is nil, retrieves |
1216 latest version. Optional argument FETCHED-PACKAGES is used to keep | 1216 latest version. Optional argument FETCHED-PACKAGES is used to keep |
1217 track of packages already fetched." t nil) | 1217 track of packages already fetched. |
1218 | |
1219 Returns nil upon error." t nil) | |
1218 | 1220 |
1219 (autoload 'package-get "package-get" "\ | 1221 (autoload 'package-get "package-get" "\ |
1220 Fetch PACKAGE from remote site. | 1222 Fetch PACKAGE from remote site. |
1221 Optional arguments VERSION indicates which version to retrieve, nil | 1223 Optional arguments VERSION indicates which version to retrieve, nil |
1222 means most recent version. CONFLICT indicates what happens if the | 1224 means most recent version. CONFLICT indicates what happens if the |
1223 package is already installed. Valid values for CONFLICT are: | 1225 package is already installed. Valid values for CONFLICT are: |
1224 'always always retrieve the package even if it is already installed | 1226 'always always retrieve the package even if it is already installed |
1225 'never do not retrieve the package if it is installed. | 1227 'never do not retrieve the package if it is installed. |
1228 INSTALL-DIR, if non-nil, specifies the package directory where | |
1229 fetched packages should be installed. | |
1226 | 1230 |
1227 The value of `package-get-base' is used to determine what files should | 1231 The value of `package-get-base' is used to determine what files should |
1228 be retrieved. The value of `package-get-remote' is used to determine | 1232 be retrieved. The value of `package-get-remote' is used to determine |
1229 where a package should be retrieved from. The sites are tried in | 1233 where a package should be retrieved from. The sites are tried in |
1230 order so one is better off listing easily reached sites first. | 1234 order so one is better off listing easily reached sites first. |
1231 | 1235 |
1232 Once the package is retrieved, its md5 checksum is computed. If that | 1236 Once the package is retrieved, its md5 checksum is computed. If that |
1233 sum does not match that stored in `package-get-base' for this version | 1237 sum does not match that stored in `package-get-base' for this version |
1234 of the package, an error is signalled." t nil) | 1238 of the package, an error is signalled. |
1239 | |
1240 Returns `t' upon success, the symbol `error' if the package was | |
1241 successfully installed but errors occurred during initialization, or | |
1242 `nil' upon error." t nil) | |
1235 | 1243 |
1236 (autoload 'package-get-package-provider "package-get" "\ | 1244 (autoload 'package-get-package-provider "package-get" "\ |
1237 Search for a package that provides SYM and return the name and | 1245 Search for a package that provides SYM and return the name and |
1238 version. Searches in `package-get-base' for SYM. If SYM is a | 1246 version. Searches in `package-get-base' for SYM. If SYM is a |
1239 consp, then it must match a corresponding (provide (SYM VERSION)) from | 1247 consp, then it must match a corresponding (provide (SYM VERSION)) from |
1240 the package." t nil) | 1248 the package." t nil) |
1241 | 1249 |
1242 (autoload 'package-get-custom "package-get" "\ | 1250 (autoload 'package-get-custom "package-get" "\ |
1243 Fetch and install the latest versions of all customized packages." t nil) | 1251 Fetch and install the latest versions of all customized packages." t nil) |
1252 | |
1253 ;;;*** | |
1254 | |
1255 ;;;### (autoloads (pui-list-packages pui-add-install-directory) "package-ui" "lisp/package-ui.el") | |
1256 | |
1257 (autoload 'pui-add-install-directory "package-ui" "\ | |
1258 Add a new package binary directory to the head of `package-get-remote'. | |
1259 Note that no provision is made for saving any changes made by this function. | |
1260 It exists mainly as a convenience for one-time package installations from | |
1261 disk." t nil) | |
1262 | |
1263 (autoload 'pui-list-packages "package-ui" "\ | |
1264 List all packages and package information. | |
1265 The package name, version, and description are displayed. From the displayed | |
1266 buffer, the user can see which packages are installed, which are not, and | |
1267 which are out-of-date (a newer version is available). The user can then | |
1268 select packages for installation via the keyboard or mouse." t nil) | |
1244 | 1269 |
1245 ;;;*** | 1270 ;;;*** |
1246 | 1271 |
1247 ;;;### (autoloads (picture-mode) "picture" "lisp/picture.el") | 1272 ;;;### (autoloads (picture-mode) "picture" "lisp/picture.el") |
1248 | 1273 |