aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/help.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-08-18 08:24:49 +0800
committerGitHub <noreply@github.com>2023-08-18 08:24:49 +0800
commit46163ddf5d718c4e749df78ef8e54d0715de6cb9 (patch)
tree382083e5f760e2bc9d2595d56925009b6260b79a /src/nvim/help.c
parent1d6c4ad073ecff42a4421c7b30b42937809bd248 (diff)
downloadrneovim-46163ddf5d718c4e749df78ef8e54d0715de6cb9.tar.gz
rneovim-46163ddf5d718c4e749df78ef8e54d0715de6cb9.tar.bz2
rneovim-46163ddf5d718c4e749df78ef8e54d0715de6cb9.zip
vim-patch:9.0.1730: passing multiple patterns to runtime not working (#24771)
Problem: passing multiple patterns to runtime not working Solution: prepend prefix to each argument separately closes: vim/vim#12617 https://github.com/vim/vim/commit/008c91537b55835aa91cd8fbe1a139256581da31
Diffstat (limited to 'src/nvim/help.c')
-rw-r--r--src/nvim/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/help.c b/src/nvim/help.c
index 4602ddd40e..dc384e3d14 100644
--- a/src/nvim/help.c
+++ b/src/nvim/help.c
@@ -1188,7 +1188,7 @@ void ex_helptags(exarg_T *eap)
}
if (strcmp(eap->arg, "ALL") == 0) {
- do_in_path(p_rtp, "doc", DIP_ALL + DIP_DIR, helptags_cb, &add_help_tags);
+ do_in_path(p_rtp, "", "doc", DIP_ALL + DIP_DIR, helptags_cb, &add_help_tags);
} else {
ExpandInit(&xpc);
xpc.xp_context = EXPAND_DIRECTORIES;