summaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-08-17 23:08:53 +0200
committerChristian Brabandt <cb@256bit.org>2023-08-17 23:08:53 +0200
commit008c91537b55835aa91cd8fbe1a139256581da31 (patch)
treee9826ea3e0ab6bddc2d6dbdd8c2caa1b4c71de87 /src/help.c
parentbfe377b8f2d080e5f85c8cbecf3533456e1d6312 (diff)
patch 9.0.1730: passing multiple patterns to runtime not workingv9.0.1730
Problem: passing multiple patterns to runtime not working Solution: prepend prefix to each argument separately closes: #12617 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/help.c')
-rw-r--r--src/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/help.c b/src/help.c
index 4d1efe8fe4..c33985ed93 100644
--- a/src/help.c
+++ b/src/help.c
@@ -1312,7 +1312,7 @@ ex_helptags(exarg_T *eap)
if (STRCMP(eap->arg, "ALL") == 0)
{
- do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
+ do_in_path(p_rtp, "", (char_u *)"doc", DIP_ALL + DIP_DIR,
helptags_cb, &add_help_tags);
}
else