misc: fixpos in del_char() is bool

This commit is contained in:
Jan Edmund Lazo
2018-08-07 19:07:54 -04:00
parent 0e4a54a17b
commit d5e8b3f451
4 changed files with 35 additions and 32 deletions

View File

@@ -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;