mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: use int for Columns and Rows
This commit is contained in:
@@ -2130,8 +2130,8 @@ static void version_msg(char *s)
|
||||
int len = (int)STRLEN(s);
|
||||
|
||||
if (!got_int
|
||||
&& (len < (int)Columns)
|
||||
&& (msg_col + len >= (int)Columns)
|
||||
&& (len < Columns)
|
||||
&& (msg_col + len >= Columns)
|
||||
&& (*s != '\n')) {
|
||||
msg_putchar('\n');
|
||||
}
|
||||
|
Reference in New Issue
Block a user