aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/keymap.c
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2020-06-08 16:52:56 +0200
committerGitHub <noreply@github.com>2020-06-08 16:52:56 +0200
commitd8c5d122f1ba95bc71a78c5d70465bfa88623bd7 (patch)
tree55bdbe00fbf6cb84457ad7474392398e2c7eb281 /src/nvim/keymap.c
parent980b12edbabc573f72d762dde844a771cc705e84 (diff)
parente01fc33515d5cd3a9a595d0e6905bd16d3a861e5 (diff)
downloadrneovim-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.c4
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
///