diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-07 19:07:54 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-07 19:07:54 -0400 |
commit | d5e8b3f451120d7b40d72b54d749fbe7b54ca90f (patch) | |
tree | 6469a6c711c9a4aad2ea7fad5f82bdd853d36480 /src/nvim/farsi.c | |
parent | 0e4a54a17b92545ce8c4d4ac0212a424bbe990ca (diff) | |
download | rneovim-d5e8b3f451120d7b40d72b54d749fbe7b54ca90f.tar.gz rneovim-d5e8b3f451120d7b40d72b54d749fbe7b54ca90f.tar.bz2 rneovim-d5e8b3f451120d7b40d72b54d749fbe7b54ca90f.zip |
misc: fixpos in del_char() is bool
Diffstat (limited to 'src/nvim/farsi.c')
-rw-r--r-- | src/nvim/farsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/farsi.c b/src/nvim/farsi.c index 6de84fbf4d..9862c50ab9 100644 --- a/src/nvim/farsi.c +++ b/src/nvim/farsi.c @@ -1081,7 +1081,7 @@ int fkmap(int c) if (gchar_cursor() == _LAM) { chg_l_toXor_X(); - del_char(FALSE); + del_char(false); AppendCharToRedobuff(K_BS); if (!p_ri) { |