167
|
1 ;;; DO NOT MODIFY THIS FILE
|
183
|
2 (if (featurep 'apel-autoloads) (error "Already loaded"))
|
167
|
3
|
|
4 ;;;### (autoloads (module-installed-p exec-installed-p file-installed-p get-latest-path add-latest-path add-path) "file-detect" "apel/file-detect.el")
|
|
5
|
|
6 (autoload 'add-path "file-detect" "\
|
|
7 Add PATH to `load-path' if it exists under `default-load-path'
|
|
8 directories and it does not exist in `load-path'.
|
|
9
|
|
10 You can use following PATH styles:
|
|
11 load-path relative: \"PATH/\"
|
|
12 (it is searched from `defaul-load-path')
|
|
13 home directory relative: \"~/PATH/\" \"~USER/PATH/\"
|
|
14 absolute path: \"/HOO/BAR/BAZ/\"
|
|
15
|
|
16 You can specify following OPTIONS:
|
|
17 'all-paths search from `load-path'
|
|
18 instead of `default-load-path'
|
|
19 'append add PATH to the last of `load-path'" nil nil)
|
|
20
|
|
21 (autoload 'add-latest-path "file-detect" "\
|
|
22 Add latest path matched by PATTERN to `load-path'
|
|
23 if it exists under `default-load-path' directories
|
|
24 and it does not exist in `load-path'.
|
|
25
|
|
26 If optional argument ALL-PATHS is specified, it is searched from all
|
|
27 of load-path instead of default-load-path. [file-detect.el]" nil nil)
|
|
28
|
|
29 (autoload 'get-latest-path "file-detect" "\
|
|
30 Return latest directory in default-load-path
|
|
31 which is matched to regexp PATTERN.
|
|
32 If optional argument ALL-PATHS is specified,
|
|
33 it is searched from all of load-path instead of default-load-path." nil nil)
|
|
34
|
|
35 (autoload 'file-installed-p "file-detect" "\
|
|
36 Return absolute-path of FILE if FILE exists in PATHS.
|
|
37 If PATHS is omitted, `load-path' is used." nil nil)
|
|
38
|
|
39 (defvar exec-suffix-list '("") "\
|
|
40 *List of suffixes for executable.")
|
|
41
|
|
42 (autoload 'exec-installed-p "file-detect" "\
|
|
43 Return absolute-path of FILE if FILE exists in PATHS.
|
|
44 If PATHS is omitted, `exec-path' is used.
|
|
45 If suffixes is omitted, `exec-suffix-list' is used." nil nil)
|
|
46
|
|
47 (autoload 'module-installed-p "file-detect" "\
|
|
48 Return t if module is provided or exists in PATHS.
|
|
49 If PATHS is omitted, `load-path' is used." nil nil)
|
|
50
|
|
51 ;;;***
|
|
52
|
|
53 ;;;### (autoloads (richtext-decode richtext-encode) "richtext" "apel/richtext.el")
|
|
54
|
|
55 (autoload 'richtext-encode "richtext" nil nil nil)
|
|
56
|
|
57 (autoload 'richtext-decode "richtext" nil nil nil)
|
|
58
|
|
59 ;;;***
|
169
|
60
|
|
61 (provide 'apel-autoloads)
|