comparison src/eval.c @ 20061:6e6a75800884 v8.2.0586

patch 8.2.0586: Vim9: # comment not sufficiently tested Commit: https://github.com/vim/vim/commit/4a8d9f2ed8c0079732e35d72656a000641353b94 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 16 22:54:32 2020 +0200 patch 8.2.0586: Vim9: # comment not sufficiently tested Problem: Vim9: # comment not sufficiently tested Solution: Check for preceding white space.
author Bram Moolenaar <Bram@vim.org>
date Thu, 16 Apr 2020 23:00:04 +0200
parents de756b3f4dee
children a64c16ff98b8
comparison
equal deleted inserted replaced
20060:324f7433a2c4 20061:6e6a75800884
6141 6141
6142 ga_init2(&ga, 1, 80); 6142 ga_init2(&ga, 1, 80);
6143 6143
6144 if (eap->skip) 6144 if (eap->skip)
6145 ++emsg_skip; 6145 ++emsg_skip;
6146 while (*arg != NUL && *arg != '|' && *arg != '\n') 6146 while (!ends_excmd2(eap->cmd, arg) || *arg == '"')
6147 { 6147 {
6148 ret = eval1_emsg(&arg, &rettv, !eap->skip); 6148 ret = eval1_emsg(&arg, &rettv, !eap->skip);
6149 if (ret == FAIL) 6149 if (ret == FAIL)
6150 break; 6150 break;
6151 6151