aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-05-07 08:33:06 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-05-08 01:12:09 +0800
commit29c228dc1087676af5b72f4145ab146cff75156e (patch)
tree15b8e4f32045d5e01a5771e887e3de420e49817c /src/nvim/getchar.c
parentf7c1e460f8ae9e316a679a29945ce6a585336322 (diff)
downloadrneovim-29c228dc1087676af5b72f4145ab146cff75156e.tar.gz
rneovim-29c228dc1087676af5b72f4145ab146cff75156e.tar.bz2
rneovim-29c228dc1087676af5b72f4145ab146cff75156e.zip
vim-patch:8.2.3887: E1135 is used for two different errors
Problem: E1135 is used for two different errors. Solution: Renumber one error. https://github.com/vim/vim/commit/806da5176e9e9ab011d927c4ca33a8dde1769539 Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index 32fa517324..07d7887fc6 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -135,7 +135,7 @@ static size_t last_recorded_len = 0; // number of last recorded chars
static const char e_recursive_mapping[] = N_("E223: Recursive mapping");
static const char e_cmd_mapping_must_end_with_cr[]
- = N_("E1135: <Cmd> mapping must end with <CR>");
+ = N_("E1255: <Cmd> mapping must end with <CR>");
static const char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>");