comparison src/vim9compile.c @ 21391:8b882afa8ed2 v8.2.1246

patch 8.2.1246: Vim9: comment after assignment doesn't work Commit: https://github.com/vim/vim/commit/b209750b5e907003568c20856215122670ee22d2 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 19 17:17:02 2020 +0200 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 https://github.com/vim/vim/issues/6481)
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jul 2020 17:30:03 +0200
parents 8d58cbb07a12
children 320581a133d9
comparison
equal deleted inserted replaced
21390:00c6c02dc0b8 21391:8b882afa8ed2
5704 { 5704 {
5705 if (generate_instr_drop(cctx, ISN_DROP, 1) == NULL) 5705 if (generate_instr_drop(cctx, ISN_DROP, 1) == NULL)
5706 goto theend; 5706 goto theend;
5707 } 5707 }
5708 5708
5709 ret = end; 5709 ret = skipwhite(end);
5710 5710
5711 theend: 5711 theend:
5712 vim_free(name); 5712 vim_free(name);
5713 return ret; 5713 return ret;
5714 } 5714 }