mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
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
|
|
@ -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…
Reference in a new issue