diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-28 18:43:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-28 18:43:40 +0200 |
commit | b7a78f7a6713f07d2fcad0b27dea22925c7b1cdf (patch) | |
tree | f1eb802f74a924f91ba0ceddde5db8229c75aeda /src/userfunc.c | |
parent | d5053d015a957b343ad9c9e45e0abd2978f10cf0 (diff) | |
download | vim-git-b7a78f7a6713f07d2fcad0b27dea22925c7b1cdf.tar.gz |
patch 8.2.1080: Vim9: no line break allowed in a for loopv8.2.1080
Problem: Vim9: no line break allowed in a for loop.
Solution: Skip line breaks in for command.
Diffstat (limited to 'src/userfunc.c')
-rw-r--r-- | src/userfunc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/userfunc.c b/src/userfunc.c index 51c437f20..05d3fda34 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -3825,6 +3825,7 @@ ex_return(exarg_T *eap) if (eap->skip) --emsg_skip; + clear_evalarg(&evalarg, eap); } /* |