1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 19:10:37 -08:00

(Fvertical_motion): Add cast.

This commit is contained in:
Karl Heuer 1995-06-06 01:44:34 +00:00
parent 2371fad4d8
commit ef423eacfa

View file

@ -1226,7 +1226,7 @@ if beginning or end of buffer was reached.")
else
window = selected_window;
pos = *vmotion (point, XINT (lines), XWINDOW (window));
pos = *vmotion (point, (int) XINT (lines), XWINDOW (window));
SET_PT (pos.bufpos);
return make_number (pos.vpos);