From 12f3c1b77fb39dc338304d5484cdbc99da27389a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 5 Dec 2021 21:46:34 +0000 Subject: patch 8.2.3749: error messages are everywhere Problem: Error messages are everywhere. Solution: Move more error messages to errors.h and adjust the names. --- src/getchar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/getchar.c') diff --git a/src/getchar.c b/src/getchar.c index bdf0272ef0..8c6b48d0cf 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -1010,7 +1010,7 @@ ins_typebuf( if (typebuf.tb_len > 2147483647 - extra) { // string is getting too long for a 32 bit int - emsg(_(e_toocompl)); // also calls flush_buffers + emsg(_(e_command_too_complex)); // also calls flush_buffers setcursor(); return FAIL; } -- cgit v1.2.3