diff options
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 1951cd6737..864aa6a622 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -848,11 +848,11 @@ static void init_typebuf(void) * If nottyped is TRUE, the string does not return KeyTyped (don't use when * offset is non-zero!). * - * If silent is TRUE, cmd_silent is set when the characters are obtained. + * If silent is true, cmd_silent is set when the characters are obtained. * * return FAIL for failure, OK otherwise */ -int ins_typebuf(char_u *str, int noremap, int offset, int nottyped, int silent) +int ins_typebuf(char_u *str, int noremap, int offset, int nottyped, bool silent) { char_u *s1, *s2; int newlen; |