diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-02 21:26:16 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-02 21:26:16 +0000 |
commit | 1d423ef75fc8bce2edfd2aab61cc9beaa63e31aa (patch) | |
tree | 6db703ecd2dc317aa69c9c03f3130002a857e4af /src/digraph.c | |
parent | b09feaa86ecc53b9b953710082496951776dc5c6 (diff) | |
download | vim-git-1d423ef75fc8bce2edfd2aab61cc9beaa63e31aa.tar.gz |
patch 8.2.3987: error messages are spread outv8.2.3987
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/digraph.c')
-rw-r--r-- | src/digraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/digraph.c b/src/digraph.c index a9fcba541..391b64a91 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); |