mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.3460: some type casts are not needed
Problem: Some type casts are not needed. Solution: Remove unnecessary type casts. (closes #8934)
This commit is contained in:
committed by
Bram Moolenaar
parent
51491adfa8
commit
dfa5e464d4
@@ -1028,7 +1028,7 @@ curs_columns(
|
||||
// column
|
||||
sbr = get_showbreak_value(curwin);
|
||||
if (*sbr && *ml_get_cursor() == NUL
|
||||
&& curwin->w_wcol == (int)vim_strsize(sbr))
|
||||
&& curwin->w_wcol == vim_strsize(sbr))
|
||||
curwin->w_wcol = 0;
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user