mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.0586: Vim9: # comment not sufficiently tested
Problem: Vim9: # comment not sufficiently tested Solution: Check for preceding white space.
This commit is contained in:
@@ -6143,7 +6143,7 @@ ex_execute(exarg_T *eap)
|
||||
|
||||
if (eap->skip)
|
||||
++emsg_skip;
|
||||
while (*arg != NUL && *arg != '|' && *arg != '\n')
|
||||
while (!ends_excmd2(eap->cmd, arg) || *arg == '"')
|
||||
{
|
||||
ret = eval1_emsg(&arg, &rettv, !eap->skip);
|
||||
if (ret == FAIL)
|
||||
|
Reference in New Issue
Block a user