diff options
author | ZviRackover <zvirack@gmail.com> | 2018-08-29 23:32:57 +0300 |
---|---|---|
committer | ZviRackover <zvirack@gmail.com> | 2018-08-31 22:47:50 +0300 |
commit | a3549286b24000dcdd4411bd5faf637e1c9a0d3d (patch) | |
tree | bad8a0b911d27dd31bc02d019c17562b69c37807 /src/nvim/keymap.c | |
parent | 1015aa6ff36b6f936f4707119d57cf561df28feb (diff) | |
download | rneovim-a3549286b24000dcdd4411bd5faf637e1c9a0d3d.tar.gz rneovim-a3549286b24000dcdd4411bd5faf637e1c9a0d3d.tar.bz2 rneovim-a3549286b24000dcdd4411bd5faf637e1c9a0d3d.zip |
lint: clean-up after parent commits
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r-- | src/nvim/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index 8997778125..3cc74c0044 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -898,7 +898,7 @@ char_u *replace_termcodes(const char_u *from, const size_t from_len, } // skip multibyte char correctly - for (i = utfc_ptr2len_len(src, (int) (end - src) + 1); i > 0; i--) { + for (i = utfc_ptr2len_len(src, (int)(end - src) + 1); i > 0; i--) { // If the character is K_SPECIAL, replace it with K_SPECIAL // KS_SPECIAL KE_FILLER. // If compiled with the GUI replace CSI with K_CSI. |