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 14c7530 commit 5cebca2Copy full SHA for 5cebca2
src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
755
756
static int included_patches[] =
757
{ /* Add new patch number below this line */
758
+/**/
759
+ 3349,
760
/**/
761
3348,
762
src/vim9script.c
@@ -40,8 +40,8 @@ in_vim9script(void)
40
int
41
in_old_script(int max_version)
42
{
43
- return (current_sctx.sc_version <= max_version
44
- && !(cmdmod.cmod_flags & CMOD_VIM9CMD))
+ return (current_sctx.sc_version < max_version
+ && !(cmdmod.cmod_flags & CMOD_VIM9CMD))
45
|| (cmdmod.cmod_flags & CMOD_LEGACY);
46
}
47
0 commit comments