]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the mistake that led to the reverts
authorGerd Möllmann <gerd@gnu.org>
Sat, 25 Jan 2025 13:43:17 +0000 (14:43 +0100)
committerEshel Yaron <me@eshelyaron.com>
Sat, 25 Jan 2025 17:49:15 +0000 (18:49 +0100)
* src/terminal.c (raw_cursor_to): Fix reversed arguments.

(cherry picked from commit 1d086441166f564d8f8cd4945cb9590410c9676b)

src/terminal.c

index e6d5a5d309aa3d430d7444d6b8d9278d479b9796..17dc4770ef77238ebcc4cfad1f711cf679cf8560 100644 (file)
@@ -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);
     }
 }