Problem: Vim9: test fails on MS-Windows.
Solution: Skip Ex command inside "if false".
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1530,
/**/
1529,
/**/
break;
default:
- // Not recognized, execute with do_cmdline_cmd().
- ea.arg = p;
- line = compile_exec(line, &ea, &cctx);
+ if (cctx.ctx_skip == SKIP_YES)
+ {
+ // We don't check for a next command here.
+ line = (char_u *)"";
+ }
+ else
+ {
+ // Not recognized, execute with do_cmdline_cmd().
+ ea.arg = p;
+ line = compile_exec(line, &ea, &cctx);
+ }
break;
}
nextline: