mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-18 14:11:38 -08:00
Revert changes included by mistake in previous commit.
This commit is contained in:
parent
eda0be5a2c
commit
4ef65ef932
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue