aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/keymap.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-07-23 15:25:35 +0200
committerDundar Göc <gocdundar@gmail.com>2021-07-25 21:51:50 +0200
commit11dcf1568251f7e54f5ea28310e1d603de089eca (patch)
treedefdc5456099598f76fca4e7988d0e33a495928f /src/nvim/keymap.c
parent192adfe99f33778a85e11fbfdceb37f347a3d235 (diff)
downloadrneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.tar.gz
rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.tar.bz2
rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.zip
refactor: replace TRUE/FALSE macros with C99 true/false
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r--src/nvim/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c
index 6dacace0a4..277b9ade89 100644
--- a/src/nvim/keymap.c
+++ b/src/nvim/keymap.c
@@ -543,7 +543,7 @@ unsigned int trans_special(const char_u **srcp, const size_t src_len,
/// Put the character sequence for "key" with "modifiers" into "dst" and return
/// the resulting length.
-/// When "keycode" is TRUE prefer key code, e.g. K_DEL instead of DEL.
+/// When "keycode" is true prefer key code, e.g. K_DEL instead of DEL.
/// The sequence is not NUL terminated.
/// This is how characters in a string are encoded.
unsigned int special_to_buf(int key, int modifiers, bool keycode, char_u *dst)