diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-05 18:02:24 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:49:59 -0400 |
commit | 41dbb69a85302e9af5c8b76e0d8217ad7d197f8a (patch) | |
tree | 4c5e39b95785f2f6dca422a7ceb0ac9dc442bdff /src/nvim/getchar.c | |
parent | 47d52e1578aa6dd0b55d397d24fc929b95d586f2 (diff) | |
download | rneovim-41dbb69a85302e9af5c8b76e0d8217ad7d197f8a.tar.gz rneovim-41dbb69a85302e9af5c8b76e0d8217ad7d197f8a.tar.bz2 rneovim-41dbb69a85302e9af5c8b76e0d8217ad7d197f8a.zip |
lint
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 8fb9cbf14a..e20c75cf7b 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -442,7 +442,7 @@ void flush_buffers(int flush_typeahead) // Reset the flag that text received from a client or from feedkeys() // was inserted in the typeahead buffer. typebuf_was_filled = false; - } else { /* remove mapped characters at the start only */ + } else { // remove mapped characters at the start only typebuf.tb_off += typebuf.tb_maplen; typebuf.tb_len -= typebuf.tb_maplen; } |