From 299e47536173c62fc5edf1bd12baadc29d718674 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Tue, 15 Mar 2022 10:24:13 +0800 Subject: [PATCH] * src/xterm.c (handle_one_xevent): Fix use of wrong motion structure. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 71c0bd3dcd5..b198dab983a 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -11286,7 +11286,7 @@ handle_one_xevent (struct x_display_info *dpyinfo, last_mouse_window = window; } - if (!x_note_mouse_movement (f, &event->xmotion)) + if (!x_note_mouse_movement (f, &xmotion)) help_echo_string = previous_help_echo_string; } else -- 2.39.5