emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/xdisp.c,v


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c,v
Date: Thu, 10 Apr 2008 07:53:51 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       08/04/10 07:53:51

Index: xdisp.c
===================================================================
RCS file: /sources/emacs/emacs/src/xdisp.c,v
retrieving revision 1.1207
retrieving revision 1.1208
diff -u -b -r1.1207 -r1.1208
--- xdisp.c     10 Apr 2008 07:48:58 -0000      1.1207
+++ xdisp.c     10 Apr 2008 07:53:50 -0000      1.1208
@@ -12539,7 +12539,7 @@
            {
              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 @@
                {
                  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;
                }
            }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]