mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.0051
This commit is contained in:
12
src/screen.c
12
src/screen.c
@@ -6846,18 +6846,6 @@ screen_start()
|
||||
screen_cur_row = screen_cur_col = 9999;
|
||||
}
|
||||
|
||||
/*
|
||||
* Note that the cursor has gone down to the next line, column 0.
|
||||
* Used for Ex mode.
|
||||
*/
|
||||
void
|
||||
screen_down()
|
||||
{
|
||||
screen_cur_col = 0;
|
||||
if (screen_cur_row < Rows - 1)
|
||||
++screen_cur_row;
|
||||
}
|
||||
|
||||
/*
|
||||
* Move the cursor to position "row","col" in the screen.
|
||||
* This tries to find the most efficient way to move, minimizing the number of
|
||||
|
Reference in New Issue
Block a user