Mercurial > hg > xemacs-beta
comparison lisp/auto-autoloads.el @ 321:19dcec799385 r21-0-58
Import from CVS: tag r21-0-58
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:46:44 +0200 |
parents | 341dac730539 |
children | 03446687b7cc |
comparison
equal
deleted
inserted
replaced
320:73c75c43c1f2 | 321:19dcec799385 |
---|---|
663 Otherwise the menu will be named `Customize'. | 663 Otherwise the menu will be named `Customize'. |
664 The format is suitable for use with `easy-menu-define'." nil nil) | 664 The format is suitable for use with `easy-menu-define'." nil nil) |
665 | 665 |
666 ;;;*** | 666 ;;;*** |
667 | 667 |
668 ;;;### (autoloads (custom-set-faces custom-declare-face) "cus-face" "lisp/cus-face.el") | 668 ;;;### (autoloads (custom-set-faces custom-set-face-update-spec custom-declare-face) "cus-face" "lisp/cus-face.el") |
669 | 669 |
670 (autoload 'custom-declare-face "cus-face" "\ | 670 (autoload 'custom-declare-face "cus-face" "\ |
671 Like `defface', but FACE is evaluated as a normal argument." nil nil) | 671 Like `defface', but FACE is evaluated as a normal argument." nil nil) |
672 | |
673 (autoload 'custom-set-face-update-spec "cus-face" "\ | |
674 Customize the FACE for display types matching DISPLAY, merging | |
675 in the new items from PLIST" nil nil) | |
672 | 676 |
673 (autoload 'custom-set-faces "cus-face" "\ | 677 (autoload 'custom-set-faces "cus-face" "\ |
674 Initialize faces according to user preferences. | 678 Initialize faces according to user preferences. |
675 The arguments should be a list where each entry has the form: | 679 The arguments should be a list where each entry has the form: |
676 | 680 |
1202 (autoload 'package-admin-add-binary-package "package-admin" "\ | 1206 (autoload 'package-admin-add-binary-package "package-admin" "\ |
1203 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) | 1207 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) |
1204 | 1208 |
1205 ;;;*** | 1209 ;;;*** |
1206 | 1210 |
1207 ;;;### (autoloads (package-get-custom package-get-package-provider package-get package-get-all package-get-update-all) "package-get" "lisp/package-get.el") | 1211 ;;;### (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-save-base package-get-update-base-from-buffer package-get-update-base package-get-update-base-entry package-get-require-base package-get-download-menu) "package-get" "lisp/package-get.el") |
1212 | |
1213 (autoload 'package-get-download-menu "package-get" "\ | |
1214 Build the `Add Download Site' menu." nil nil) | |
1215 | |
1216 (autoload 'package-get-require-base "package-get" "\ | |
1217 Require that a package-get database has been loaded. | |
1218 If the optional FORCE-CURRENT argument or the value of | |
1219 `package-get-always-update' is Non-nil, try to update the database | |
1220 from a location in `package-get-remote'. Otherwise a local copy is used | |
1221 if available and remote access is never done. | |
1222 | |
1223 Please use FORCE-CURRENT only when the user is explictly dealing with packages | |
1224 and remote access is likely in the near future." nil nil) | |
1225 | |
1226 (autoload 'package-get-update-base-entry "package-get" "\ | |
1227 Update an entry in `package-get-base'." nil nil) | |
1228 | |
1229 (autoload 'package-get-update-base "package-get" "\ | |
1230 Update the package-get database file with entries from DB-FILE. | |
1231 Unless FORCE-CURRENT is non-nil never try to update the database." t nil) | |
1232 | |
1233 (autoload 'package-get-update-base-from-buffer "package-get" "\ | |
1234 Update the package-get database with entries from BUFFER. | |
1235 BUFFER defaults to the current buffer. This command can be | |
1236 used interactively, for example from a mail or news buffer." t nil) | |
1237 | |
1238 (autoload 'package-get-save-base "package-get" "\ | |
1239 Write the package-get database to FILE. | |
1240 | |
1241 Note: This database will be unsigned of course." t nil) | |
1242 | |
1243 (autoload 'package-get-delete-package "package-get" "\ | |
1244 Delete an installation of PACKAGE below directory PKG-TOPDIR. | |
1245 PACKAGE is a symbol, not a string. | |
1246 This is just an interactive wrapper for `package-admin-delete-binary-package'." t nil) | |
1208 | 1247 |
1209 (autoload 'package-get-update-all "package-get" "\ | 1248 (autoload 'package-get-update-all "package-get" "\ |
1210 Fetch and install the latest versions of all currently installed packages." t nil) | 1249 Fetch and install the latest versions of all currently installed packages." t nil) |
1211 | 1250 |
1212 (autoload 'package-get-all "package-get" "\ | 1251 (autoload 'package-get-all "package-get" "\ |
1213 Fetch PACKAGE with VERSION and all other required packages. | 1252 Fetch PACKAGE with VERSION and all other required packages. |
1214 Uses `package-get-base' to determine just what is required and what | 1253 Uses `package-get-base' to determine just what is required and what |
1215 package provides that functionality. If VERSION is nil, retrieves | 1254 package provides that functionality. If VERSION is nil, retrieves |
1216 latest version. Optional argument FETCHED-PACKAGES is used to keep | 1255 latest version. Optional argument FETCHED-PACKAGES is used to keep |
1217 track of packages already fetched. | 1256 track of packages already fetched. Optional argument INSTALL-DIR, |
1257 if non-nil, specifies the package directory where fetched packages | |
1258 should be installed. | |
1218 | 1259 |
1219 Returns nil upon error." t nil) | 1260 Returns nil upon error." t nil) |
1261 | |
1262 (autoload 'package-get-dependencies "package-get" "\ | |
1263 Compute dependencies for PACKAGES. | |
1264 Uses `package-get-base' to determine just what is required and what | |
1265 package provides that functionality. Returns the list of packages | |
1266 required by PACKAGES." nil nil) | |
1220 | 1267 |
1221 (autoload 'package-get "package-get" "\ | 1268 (autoload 'package-get "package-get" "\ |
1222 Fetch PACKAGE from remote site. | 1269 Fetch PACKAGE from remote site. |
1223 Optional arguments VERSION indicates which version to retrieve, nil | 1270 Optional arguments VERSION indicates which version to retrieve, nil |
1224 means most recent version. CONFLICT indicates what happens if the | 1271 means most recent version. CONFLICT indicates what happens if the |
1243 | 1290 |
1244 (autoload 'package-get-package-provider "package-get" "\ | 1291 (autoload 'package-get-package-provider "package-get" "\ |
1245 Search for a package that provides SYM and return the name and | 1292 Search for a package that provides SYM and return the name and |
1246 version. Searches in `package-get-base' for SYM. If SYM is a | 1293 version. Searches in `package-get-base' for SYM. If SYM is a |
1247 consp, then it must match a corresponding (provide (SYM VERSION)) from | 1294 consp, then it must match a corresponding (provide (SYM VERSION)) from |
1248 the package." t nil) | 1295 the package. |
1296 | |
1297 If FORCE-CURRENT is non-nil make sure the database is up to date. This might | |
1298 lead to Emacs accessing remote sites." t nil) | |
1249 | 1299 |
1250 (autoload 'package-get-custom "package-get" "\ | 1300 (autoload 'package-get-custom "package-get" "\ |
1251 Fetch and install the latest versions of all customized packages." t nil) | 1301 Fetch and install the latest versions of all customized packages." t nil) |
1252 | 1302 |
1253 ;;;*** | 1303 ;;;*** |