Fix the mistake that led to the reverts
* src/terminal.c (raw_cursor_to): Fix reversed arguments.
This commit is contained in:
parent
20f2672377
commit
1d08644116
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ raw_cursor_to (struct frame *f, int row, int col)
|
|||
if (term->raw_cursor_to_hook)
|
||||
{
|
||||
int x, y;
|
||||
root_xy (f, row, col, &x, &y);
|
||||
root_xy (f, col, row, &x, &y);
|
||||
term->raw_cursor_to_hook (f, y, x);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue