diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-06-08 16:52:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 16:52:56 +0200 |
commit | d8c5d122f1ba95bc71a78c5d70465bfa88623bd7 (patch) | |
tree | 55bdbe00fbf6cb84457ad7474392398e2c7eb281 /src/nvim/keymap.c | |
parent | 980b12edbabc573f72d762dde844a771cc705e84 (diff) | |
parent | e01fc33515d5cd3a9a595d0e6905bd16d3a861e5 (diff) | |
download | rneovim-d8c5d122f1ba95bc71a78c5d70465bfa88623bd7.tar.gz rneovim-d8c5d122f1ba95bc71a78c5d70465bfa88623bd7.tar.bz2 rneovim-d8c5d122f1ba95bc71a78c5d70465bfa88623bd7.zip |
Merge pull request #12376 from erw7/fix-stack-overflow-on-input-enqueue
input: fix stack overflow
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r-- | src/nvim/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index 4b8b9992f5..a553110552 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -517,8 +517,8 @@ char_u *get_special_key_name(int c, int modifiers) /// @param[in,out] srcp Source from which <> are translated. Is advanced to /// after the <> name if there is a match. /// @param[in] src_len Length of the srcp. -/// @param[out] dst Location where translation result will be kept. Must have -/// at least six bytes. +/// @param[out] dst Location where translation result will be kept. It must +// be at least 19 bytes per "<x>" form. /// @param[in] keycode Prefer key code, e.g. K_DEL in place of DEL. /// @param[in] in_string Inside a double quoted string /// |