diff src/vim9script.c @ 21909:a211bca98bc3 v8.2.1504

patch 8.2.1504: Vim9: white space checks are only done for a :def function Commit: https://github.com/vim/vim/commit/7cb6fc29d067ed97c0b0c1d2d5767125ef9ae1ab Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 21 22:36:47 2020 +0200 patch 8.2.1504: Vim9: white space checks are only done for a :def function Problem: Vim9: white space checks are only done for a :def function. Solution: Also do checks at the script level. Adjust the name of a few error messages.
author Bram Moolenaar <Bram@vim.org>
date Fri, 21 Aug 2020 22:45:03 +0200
parents f4e21796f47d
children a9e60176dcd3
line wrap: on
line diff
--- a/src/vim9script.c
+++ b/src/vim9script.c
@@ -532,7 +532,7 @@ vim9_declare_scriptvar(exarg_T *eap, cha
     }
     if (!VIM_ISWHITE(p[1]))
     {
-	semsg(_(e_white_space_required_after), ":");
+	semsg(_(e_white_space_required_after_str), ":");
 	return arg + STRLEN(arg);
     }
     name = vim_strnsave(arg, p - arg);