summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-05-09 23:19:22 +0200
committerBram Moolenaar <Bram@vim.org>2021-05-09 23:19:22 +0200
commit68db996b621b98066fb7ab7028ed5c6aaa3954a8 (patch)
tree1f2bdef2e7049b051dcbe12c5effde327322b3eb /src/globals.h
parent918b08957c51ae079f8f456198f8a1869a3d2a4c (diff)
patch 8.2.2846: Vim9: "echo Func()" does not give an error for using voidv8.2.2846
Problem: Vim9: "echo Func()" does not give an error for a function without a return value. Solution: Give an error. Be more specific about why a value is invalid.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index b6541a4f4f..0a6b87a780 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1728,7 +1728,6 @@ EXTERN char e_list_end[] INIT(= N_("E697: Missing end of List ']': %s"));
EXTERN char e_listdictarg[] INIT(= N_("E712: Argument of %s must be a List or Dictionary"));
EXTERN char e_listdictblobarg[] INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
EXTERN char e_modulus[] INIT(= N_("E804: Cannot use '%' with Float"));
-EXTERN char e_inval_string[] INIT(= N_("E908: using an invalid value as a String"));
EXTERN char e_const_option[] INIT(= N_("E996: Cannot lock an option"));
EXTERN char e_unknown_option[] INIT(= N_("E113: Unknown option: %s"));
EXTERN char e_letunexp[] INIT(= N_("E18: Unexpected characters in :let"));