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