From 1d423ef75fc8bce2edfd2aab61cc9beaa63e31aa Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 2 Jan 2022 21:26:16 +0000 Subject: patch 8.2.3987: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h. --- src/digraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/digraph.c') diff --git a/src/digraph.c b/src/digraph.c index a9fcba5410..391b64a91f 100644 --- a/src/digraph.c +++ b/src/digraph.c @@ -2596,7 +2596,7 @@ keymap_init(void) if (source_runtime(buf, 0) == FAIL) { vim_free(buf); - return N_("E544: Keymap file not found"); + return N_(e_keymap_file_not_found); } } vim_free(buf); -- cgit v1.2.3