commit | b209750b5e907003568c20856215122670ee22d2 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 19 17:17:02 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 19 17:17:02 2020 +0200 |
tree | 8aad47e083a1a915a32d2aad9afcc2d71c19cde2 | |
parent | f398238a37522fed9a2e7915741d1ab14ccc81a0 [diff] [blame] |
patch 8.2.1246: Vim9: comment after assignment doesn't work Problem: Vim9: comment after assignment doesn't work. Solution: Skip over white space. (closes #6481)
diff --git a/src/vim9compile.c b/src/vim9compile.c index 4b569f9..31cb31e 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c
@@ -5706,7 +5706,7 @@ goto theend; } - ret = end; + ret = skipwhite(end); theend: vim_free(name);