From ddaedb1910cd9a6ea394754b0e98502170316e23 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 1 Dec 2021 15:57:59 +0200 Subject: [PATCH] ; * src/w32term.c (w32_construct_mouse_wheel): Fix a typo. --- src/w32term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w32term.c b/src/w32term.c index 6b7cbbea6ca..5c6a9fef3aa 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -3251,10 +3251,10 @@ w32_construct_mouse_wheel (struct input_event *result, W32Msg *msg, int scroll_unit = max (w32_wheel_scroll_lines, 1), nlines; double value_to_report; - /* w32_wheel_scroll_lines == INT_MAX means the user asked for + /* w32_wheel_scroll_lines == UINT_MAX means the user asked for "entire page" to be the scroll unit. We interpret that as the height of the window under the mouse pointer. */ - if (w32_wheel_scroll_lines == INT_MAX) + if (w32_wheel_scroll_lines == UINT_MAX) { Lisp_Object window = window_from_coordinates (f, p.x, p.y, NULL, false, false); -- 2.39.5