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/ops.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/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index a1a6ba3136..47190be816 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -1958,7 +1958,7 @@ int swapchar(int op_type, pos_T *pos) /* Special handling of German sharp s: change to "SS". */ curwin->w_cursor = *pos; - del_char(FALSE); + del_char(false); ins_char('S'); ins_char('S'); curwin->w_cursor = sp; |