summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-19 15:17:21 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-19 15:17:21 +0000
commitf47c5a8e2d8eda7c2c8a9cccf9568eb56c03a0cf (patch)
treed494b8e64cfee58471197e389c0b731f4309cb14 /src/errors.h
parent265f811f5a2dac81d9698f5202a661a04ed095f1 (diff)
patch 8.2.3852: Vim9: not enough testsv8.2.3852
Problem: Vim9: not enough tests. Solution: Also run existing tests for Vim9 script. Make errors more consistent.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 3fd8e5a01d..31f275d171 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -286,6 +286,8 @@ EXTERN char e_invalid_command[]
#ifdef FEAT_EVAL
EXTERN char e_invalid_command_str[]
INIT(= N_("E476: Invalid command: %s"));
+EXTERN char e_cannot_index_a_funcref[]
+ INIT(= N_("E695: Cannot index a Funcref"));
EXTERN char e_list_value_has_more_items_than_targets[]
INIT(= N_("E710: List value has more items than targets"));
EXTERN char e_list_value_does_not_have_enough_items[]