diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-12 21:28:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-12 21:28:26 +0100 |
commit | 6bef5306e4f2cacb3a93667992c2312d4b293c9d (patch) | |
tree | 8e460dcff0698e3ca8c0b60f466705d024a75ab0 /src/proto | |
parent | 2d8f56acb32428d0f965d42dd13b27100b46fa15 (diff) | |
download | vim-6bef5306e4f2cacb3a93667992c2312d4b293c9d.zip |
patch 7.4.1551
Problem: Cannot generate help tags in all doc directories.
Solution: Make ":helptags ALL" work.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_cmds2.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index 1f1177429..14546b50f 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -61,6 +61,7 @@ void ex_listdo(exarg_T *eap); void ex_compiler(exarg_T *eap); void ex_runtime(exarg_T *eap); int source_runtime(char_u *name, int all); +int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); int do_in_runtimepath(char_u *name, int all, void (*callback)(char_u *fname, void *ck), void *cookie); void ex_packloadall(exarg_T *eap); void ex_packadd(exarg_T *eap); |