Skip to content

Commit

Permalink
misc1.c: enable -Wconversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Joachim committed Apr 18, 2016
1 parent 83c683f commit a3dfd16
Show file tree
Hide file tree
Showing 5 changed files with 211 additions and 258 deletions.
1 change: 0 additions & 1 deletion src/nvim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ set(CONV_SOURCES
mbyte.c
memline.c
message.c
misc1.c
ops.c
regexp.c
screen.c
Expand Down
2 changes: 1 addition & 1 deletion src/nvim/edit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1815,7 +1815,7 @@ static bool del_char_after_col(int limit_col)
if (*get_cursor_pos_ptr() == NUL || curwin->w_cursor.col == ecol) {
return false;
}
del_bytes((long)(ecol - curwin->w_cursor.col), false, true);
del_bytes(ecol - curwin->w_cursor.col, false, true);
} else {
del_char(false);
}
Expand Down
Loading

0 comments on commit a3dfd16

Please sign in to comment.