1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

* src/xwidget.c (Fxwidget_resize): Fix inappropriate use of XFASTINT.

This commit is contained in:
YAMAMOTO Mitsuharu 2016-03-27 18:00:08 +09:00
parent e5c17f4678
commit 278c8a7ef7

View File

@ -774,7 +774,7 @@ VALUE is the amount to scroll, either relatively or absolutely. */)
? gtk_scrolled_window_get_hadjustment
: gtk_scrolled_window_get_vadjustment)
(GTK_SCROLLED_WINDOW (xw->widgetscrolledwindow_osr)));
double final_value = XFASTINT (value);
double final_value = XINT (value);
if (EQ (Qt, relative))
final_value += gtk_adjustment_get_value (adjustment);
gtk_adjustment_set_value (adjustment, final_value);