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:48:59 +0000

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

Index: xdisp.c
===================================================================
RCS file: /sources/emacs/emacs/src/xdisp.c,v
retrieving revision 1.1206
retrieving revision 1.1207
diff -u -b -r1.1206 -r1.1207
--- xdisp.c     9 Apr 2008 13:29:44 -0000       1.1206
+++ xdisp.c     10 Apr 2008 07:48:58 -0000      1.1207
@@ -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;
                }
            }
@@ -24587,7 +24587,8 @@
 
   DEFVAR_BOOL ("truncate-partial-width-windows",
               &truncate_partial_width_windows,
-    doc: /* *Non-nil means truncate lines in all windows less than full frame 
wide.  */);
+    doc: /* *Non-nil means truncate lines in all windows less than full frame 
wide.
+Nil means to respect the value of `truncate-lines'.  */);
   truncate_partial_width_windows = 1;
 
   DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,




reply via email to

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