1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-29 11:02:01 +00:00

Revert changes included by mistake in previous commit.

This commit is contained in:
Glenn Morris 2008-04-10 07:53:50 +00:00
parent eda0be5a2c
commit 4ef65ef932

View File

@ -12539,7 +12539,7 @@ try_scrolling (window, just_this_one_p, scroll_conservatively,
{
double float_amount = XFLOATINT (aggressive) * height;
amount_to_scroll = float_amount;
if (amount_to_scroll == 0 && float_amount >= 0)
if (amount_to_scroll == 0 && float_amount > 0)
amount_to_scroll = 1;
}
}
@ -12602,7 +12602,7 @@ try_scrolling (window, just_this_one_p, scroll_conservatively,
{
double float_amount = XFLOATINT (aggressive) * height;
amount_to_scroll = float_amount;
if (amount_to_scroll == 0 && float_amount >= 0)
if (amount_to_scroll == 0 && float_amount > 0)
amount_to_scroll = 1;
}
}