Mercurial > hg > xemacs-beta
comparison lisp/apel/auto-autoloads.el @ 167:85ec50267440 r20-3b10
Import from CVS: tag r20-3b10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:45:46 +0200 |
parents | |
children | 15872534500d |
comparison
equal
deleted
inserted
replaced
166:7a77eb660975 | 167:85ec50267440 |
---|---|
1 ;;; DO NOT MODIFY THIS FILE | |
2 (if (not (featurep 'apel-autoloads)) | |
3 (progn | |
4 | |
5 (provide 'apel-autoloads) | |
6 )) | |
7 | |
8 ;;;### (autoloads (module-installed-p exec-installed-p file-installed-p get-latest-path add-latest-path add-path) "file-detect" "apel/file-detect.el") | |
9 | |
10 (autoload 'add-path "file-detect" "\ | |
11 Add PATH to `load-path' if it exists under `default-load-path' | |
12 directories and it does not exist in `load-path'. | |
13 | |
14 You can use following PATH styles: | |
15 load-path relative: \"PATH/\" | |
16 (it is searched from `defaul-load-path') | |
17 home directory relative: \"~/PATH/\" \"~USER/PATH/\" | |
18 absolute path: \"/HOO/BAR/BAZ/\" | |
19 | |
20 You can specify following OPTIONS: | |
21 'all-paths search from `load-path' | |
22 instead of `default-load-path' | |
23 'append add PATH to the last of `load-path'" nil nil) | |
24 | |
25 (autoload 'add-latest-path "file-detect" "\ | |
26 Add latest path matched by PATTERN to `load-path' | |
27 if it exists under `default-load-path' directories | |
28 and it does not exist in `load-path'. | |
29 | |
30 If optional argument ALL-PATHS is specified, it is searched from all | |
31 of load-path instead of default-load-path. [file-detect.el]" nil nil) | |
32 | |
33 (autoload 'get-latest-path "file-detect" "\ | |
34 Return latest directory in default-load-path | |
35 which is matched to regexp PATTERN. | |
36 If optional argument ALL-PATHS is specified, | |
37 it is searched from all of load-path instead of default-load-path." nil nil) | |
38 | |
39 (autoload 'file-installed-p "file-detect" "\ | |
40 Return absolute-path of FILE if FILE exists in PATHS. | |
41 If PATHS is omitted, `load-path' is used." nil nil) | |
42 | |
43 (defvar exec-suffix-list '("") "\ | |
44 *List of suffixes for executable.") | |
45 | |
46 (autoload 'exec-installed-p "file-detect" "\ | |
47 Return absolute-path of FILE if FILE exists in PATHS. | |
48 If PATHS is omitted, `exec-path' is used. | |
49 If suffixes is omitted, `exec-suffix-list' is used." nil nil) | |
50 | |
51 (autoload 'module-installed-p "file-detect" "\ | |
52 Return t if module is provided or exists in PATHS. | |
53 If PATHS is omitted, `load-path' is used." nil nil) | |
54 | |
55 ;;;*** | |
56 | |
57 ;;;### (autoloads (richtext-decode richtext-encode) "richtext" "apel/richtext.el") | |
58 | |
59 (autoload 'richtext-encode "richtext" nil nil nil) | |
60 | |
61 (autoload 'richtext-decode "richtext" nil nil nil) | |
62 | |
63 ;;;*** |