From fd676baa6a8031ff2ef08913ecc47f20dc9ae06c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerd=20M=C3=B6llmann?= Date: Sat, 25 Jan 2025 14:43:17 +0100 Subject: [PATCH] Fix the mistake that led to the reverts * src/terminal.c (raw_cursor_to): Fix reversed arguments. (cherry picked from commit 1d086441166f564d8f8cd4945cb9590410c9676b) --- src/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal.c b/src/terminal.c index e6d5a5d309a..17dc4770ef7 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -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); } } -- 2.39.5