mirror of
https://github.com/neovim/neovim.git
synced 2025-11-26 12:10:40 +00:00
refactor: use int for Columns and Rows
This commit is contained in:
@@ -589,8 +589,8 @@ void getout(int exitval)
|
||||
|
||||
set_vim_var_nr(VV_EXITING, exitval);
|
||||
|
||||
/* Position the cursor on the last screen line, below all the text */
|
||||
ui_cursor_goto((int)Rows - 1, 0);
|
||||
// Position the cursor on the last screen line, below all the text
|
||||
ui_cursor_goto(Rows - 1, 0);
|
||||
|
||||
/* Optionally print hashtable efficiency. */
|
||||
hash_debug_results();
|
||||
@@ -656,8 +656,8 @@ void getout(int exitval)
|
||||
wait_return(FALSE);
|
||||
}
|
||||
|
||||
/* Position the cursor again, the autocommands may have moved it */
|
||||
ui_cursor_goto((int)Rows - 1, 0);
|
||||
// Position the cursor again, the autocommands may have moved it
|
||||
ui_cursor_goto(Rows - 1, 0);
|
||||
|
||||
// Apply 'titleold'.
|
||||
if (p_title && *p_titleold != NUL) {
|
||||
|
||||
Reference in New Issue
Block a user