]> git.eshelyaron.com Git - emacs.git/commitdiff
Allow non-float values in x-scroll-event-delta-factor
authorPo Lu <luangruo@yahoo.com>
Tue, 30 Nov 2021 01:46:25 +0000 (09:46 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 30 Nov 2021 01:46:25 +0000 (09:46 +0800)
* src/xterm.c (handle_one_xevent): Use XFLOATINT instead of
XFLOAT_DATA.

src/xterm.c

index a6d9c8c7a1b0fa639051e552fffa2a634c4f50db..ed6a31125c935897790afab64008d4b31fa6bb32 100644 (file)
@@ -10045,8 +10045,8 @@ handle_one_xevent (struct x_display_info *dpyinfo,
 
                        scroll_unit = pow (FRAME_PIXEL_HEIGHT (f), 2.0 / 3.0);
 
-                       if (FLOATP (Vx_scroll_event_delta_factor))
-                         scroll_unit *= XFLOAT_DATA (Vx_scroll_event_delta_factor);
+                       if (NUMBERP (Vx_scroll_event_delta_factor))
+                         scroll_unit *= XFLOATINT (Vx_scroll_event_delta_factor);
 
                        if (val->horizontal)
                          {