Mercurial > hg > xemacs-beta
comparison lisp/auto-autoloads.el @ 337:fbbf69b4e8a7 r21-0-66
Import from CVS: tag r21-0-66
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:51:02 +0200 |
parents | 4f79e16b1112 |
children | 8bec6624d99b |
comparison
equal
deleted
inserted
replaced
336:fe0a93612022 | 337:fbbf69b4e8a7 |
---|---|
7 | 7 |
8 ;;;### (autoloads (about-xemacs) "about" "lisp/about.el") | 8 ;;;### (autoloads (about-xemacs) "about" "lisp/about.el") |
9 | 9 |
10 (autoload 'about-xemacs "about" "\ | 10 (autoload 'about-xemacs "about" "\ |
11 Describe the True Editor and its minions." t nil) | 11 Describe the True Editor and its minions." t nil) |
12 | |
13 ;;;*** | |
14 | |
15 ;;;### (autoloads (set-modified-alist modify-alist remove-alist set-alist del-alist put-alist) "alist" "lisp/alist.el") | |
16 | |
17 (autoload 'put-alist "alist" "\ | |
18 Modify ALIST to set VALUE to ITEM. | |
19 If there is a pair whose car is ITEM, replace its cdr by VALUE. | |
20 If there is not such pair, create new pair (ITEM . VALUE) and | |
21 return new alist whose car is the new pair and cdr is ALIST. | |
22 [tomo's ELIS like function]" nil nil) | |
23 | |
24 (autoload 'del-alist "alist" "\ | |
25 If there is a pair whose key is ITEM, delete it from ALIST. | |
26 [tomo's ELIS emulating function]" nil nil) | |
27 | |
28 (autoload 'set-alist "alist" "\ | |
29 Modify a alist indicated by SYMBOL to set VALUE to ITEM." nil nil) | |
30 | |
31 (autoload 'remove-alist "alist" "\ | |
32 Remove ITEM from the alist indicated by SYMBOL." nil nil) | |
33 | |
34 (autoload 'modify-alist "alist" "\ | |
35 Modify alist DEFAULT into alist MODIFIER." nil nil) | |
36 | |
37 (autoload 'set-modified-alist "alist" "\ | |
38 Modify a value of a symbol SYM into alist MODIFIER. | |
39 The symbol SYM should be alist. If it is not bound, | |
40 its value regard as nil." nil nil) | |
12 | 41 |
13 ;;;*** | 42 ;;;*** |
14 | 43 |
15 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "lisp/apropos.el") | 44 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "lisp/apropos.el") |
16 | 45 |
1215 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) | 1244 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) |
1216 | 1245 |
1217 ;;;*** | 1246 ;;;*** |
1218 | 1247 |
1219 ;;;### (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") | 1248 ;;;### (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") |
1249 | |
1250 (defvar package-get-base nil "\ | |
1251 List of packages that are installed at this site. | |
1252 For each element in the alist, car is the package name and the cdr is | |
1253 a plist containing information about the package. Typical fields | |
1254 kept in the plist are: | |
1255 | |
1256 version - version of this package | |
1257 provides - list of symbols provided | |
1258 requires - list of symbols that are required. | |
1259 These in turn are provided by other packages. | |
1260 filename - name of the file. | |
1261 size - size of the file (aka the bundled package) | |
1262 md5sum - computed md5 checksum | |
1263 description - What this package is for. | |
1264 type - Whether this is a 'binary (default) or 'single file package | |
1265 | |
1266 More fields may be added as needed. An example: | |
1267 | |
1268 '( | |
1269 (name | |
1270 (version \"<version 2>\" | |
1271 file \"filename\" | |
1272 description \"what this package is about.\" | |
1273 provides (<list>) | |
1274 requires (<list>) | |
1275 size <integer-bytes> | |
1276 md5sum \"<checksum\" | |
1277 type single | |
1278 ) | |
1279 (version \"<version 1>\" | |
1280 file \"filename\" | |
1281 description \"what this package is about.\" | |
1282 provides (<list>) | |
1283 requires (<list>) | |
1284 size <integer-bytes> | |
1285 md5sum \"<checksum\" | |
1286 type single | |
1287 ) | |
1288 ... | |
1289 )) | |
1290 | |
1291 For version information, it is assumed things are listed in most | |
1292 recent to least recent -- in other words, the version names don't have to | |
1293 be lexically ordered. It is debatable if it makes sense to have more than | |
1294 one version of a package available.") | |
1220 | 1295 |
1221 (autoload 'package-get-download-menu "package-get" "\ | 1296 (autoload 'package-get-download-menu "package-get" "\ |
1222 Build the `Add Download Site' menu." nil nil) | 1297 Build the `Add Download Site' menu." nil nil) |
1223 | 1298 |
1224 (autoload 'package-get-require-base "package-get" "\ | 1299 (autoload 'package-get-require-base "package-get" "\ |