From 460ae5dfca31fa627531c263184849976755cf6b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 1 Jan 2022 14:19:49 +0000 Subject: patch 8.2.3967: error messages are spread out Problem: Error messages are spread out. Solution: Move more errors to errors.h. --- src/vim9script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vim9script.c') diff --git a/src/vim9script.c b/src/vim9script.c index ad0830fa2..ab6557073 100644 --- a/src/vim9script.c +++ b/src/vim9script.c @@ -127,7 +127,7 @@ not_in_vim9(exarg_T *eap) case CMD_k: if (eap->addr_count > 0) { - emsg(_(e_norange)); + emsg(_(e_no_range_allowed)); return FAIL; } // FALLTHROUGH -- cgit v1.2.1