From 677658ae49de31fe2e5b1fa6d93fdfab85a4362e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 5 Jan 2022 16:09:06 +0000 Subject: patch 8.2.4008: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h. --- src/insexpand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/insexpand.c') diff --git a/src/insexpand.c b/src/insexpand.c index 09786091f8..5dbd782161 100644 --- a/src/insexpand.c +++ b/src/insexpand.c @@ -2864,7 +2864,7 @@ f_complete(typval_T *argvars, typval_T *rettv UNUSED) if ((State & INSERT) == 0) { - emsg(_("E785: complete() can only be used in Insert mode")); + emsg(_(e_complete_can_only_be_used_in_insert_mode)); return; } -- cgit v1.2.3