summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ex_cmds.c5
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index b7434774a..6461c3c08 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -6114,6 +6114,11 @@ find_help_tags(
|| (arg[0] == '\\' && arg[1] == '{'))
*d++ = '\\';
+ /*
+ * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
+ */
+ if (*arg == '(' && arg[1] == '\'')
+ arg++;
for (s = arg; *s; ++s)
{
/*
diff --git a/src/version.c b/src/version.c
index eecbfe1ed..bfb196870 100644
--- a/src/version.c
+++ b/src/version.c
@@ -744,6 +744,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1568,
+/**/
1567,
/**/
1566,