comparison src/evalvars.c @ 19860:37c4779ca8f5 v8.2.0486

patch 8.2.0486: Vim9: some code and error messages not tested Commit: https://github.com/vim/vim/commit/9be61bbb170ed3df0e408c8ac12516e772dc0b75 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 30 22:51:24 2020 +0200 patch 8.2.0486: Vim9: some code and error messages not tested Problem: Vim9: some code and error messages not tested. Solution: Add more tests.
author Bram Moolenaar <Bram@vim.org>
date Mon, 30 Mar 2020 23:00:05 +0200
parents 2ef25a007bb7
children 435726a03481
comparison
equal deleted inserted replaced
19859:904b25746b64 19860:37c4779ca8f5
928 break; 928 break;
929 else if (*p == ';') 929 else if (*p == ';')
930 { 930 {
931 if (*semicolon == 1) 931 if (*semicolon == 1)
932 { 932 {
933 emsg(_("Double ; in list of variables")); 933 emsg(_("E452: Double ; in list of variables"));
934 return NULL; 934 return NULL;
935 } 935 }
936 *semicolon = 1; 936 *semicolon = 1;
937 } 937 }
938 else if (*p != ',') 938 else if (*p != ',')