We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da59dd5 commit 2795e21Copy full SHA for 2795e21
src/syntax.c
@@ -5833,6 +5833,11 @@ syn_cmd_sync(eap, syncing)
5833
}
5834
else if (STRCMP(key, "LINECONT") == 0)
5835
{
5836
+ if (*next_arg == NUL) /* missing pattern */
5837
+ {
5838
+ illegal = TRUE;
5839
+ break;
5840
+ }
5841
if (curwin->w_s->b_syn_linecont_pat != NULL)
5842
5843
EMSG(_("E403: syntax sync: line continuations pattern specified twice"));
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 1054,
746
/**/
747
1053,
748
0 commit comments