Mercurial > hg > xemacs-beta
comparison lisp/auto-autoloads.el @ 396:6719134a07c2 r21-2-13
Import from CVS: tag r21-2-13
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:12:05 +0200 |
parents | 1f50e6fe4f3f |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
395:de2c2a7459d2 | 396:6719134a07c2 |
---|---|
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 |
1219 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) | 1248 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil) |
1220 | 1249 |
1221 ;;;*** | 1250 ;;;*** |
1222 | 1251 |
1223 ;;;### (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") | 1252 ;;;### (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") |
1253 | |
1254 (defvar package-get-base nil "\ | |
1255 List of packages that are installed at this site. | |
1256 For each element in the alist, car is the package name and the cdr is | |
1257 a plist containing information about the package. Typical fields | |
1258 kept in the plist are: | |
1259 | |
1260 version - version of this package | |
1261 provides - list of symbols provided | |
1262 requires - list of symbols that are required. | |
1263 These in turn are provided by other packages. | |
1264 filename - name of the file. | |
1265 size - size of the file (aka the bundled package) | |
1266 md5sum - computed md5 checksum | |
1267 description - What this package is for. | |
1268 type - Whether this is a 'binary (default) or 'single file package | |
1269 | |
1270 More fields may be added as needed. An example: | |
1271 | |
1272 '( | |
1273 (name | |
1274 (version \"<version 2>\" | |
1275 file \"filename\" | |
1276 description \"what this package is about.\" | |
1277 provides (<list>) | |
1278 requires (<list>) | |
1279 size <integer-bytes> | |
1280 md5sum \"<checksum\" | |
1281 type single | |
1282 ) | |
1283 (version \"<version 1>\" | |
1284 file \"filename\" | |
1285 description \"what this package is about.\" | |
1286 provides (<list>) | |
1287 requires (<list>) | |
1288 size <integer-bytes> | |
1289 md5sum \"<checksum\" | |
1290 type single | |
1291 ) | |
1292 ... | |
1293 )) | |
1294 | |
1295 For version information, it is assumed things are listed in most | |
1296 recent to least recent -- in other words, the version names don't have to | |
1297 be lexically ordered. It is debatable if it makes sense to have more than | |
1298 one version of a package available.") | |
1224 | 1299 |
1225 (autoload 'package-get-download-menu "package-get" "\ | 1300 (autoload 'package-get-download-menu "package-get" "\ |
1226 Build the `Add Download Site' menu." nil nil) | 1301 Build the `Add Download Site' menu." nil nil) |
1227 | 1302 |
1228 (autoload 'package-get-require-base "package-get" "\ | 1303 (autoload 'package-get-require-base "package-get" "\ |