]> git.eshelyaron.com Git - emacs.git/commitdiff
(hscroll_margin): Change to EMACS_INT.
authorAndreas Schwab <schwab@suse.de>
Tue, 5 Mar 2002 10:51:31 +0000 (10:51 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 5 Mar 2002 10:51:31 +0000 (10:51 +0000)
src/ChangeLog
src/xdisp.c

index e796c9bd2b438d254dac06527cb14810bdd17a76..b979d1bb8ca6c1ea078c37871d0045279d763898 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-05  Andreas Schwab  <schwab@suse.de>
+
+       * xdisp.c (hscroll_margin): Change to EMACS_INT.
+
 2002-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
 
        * frame.c (default-frame-alist): Explain that setting it doesn't
index c591e69b7cc3790307edf4f77e34733704cf4315..b649cb2f04fc64f55839cecdfcafa54a58a64572 100644 (file)
@@ -1,5 +1,5 @@
 /* Display generation from window structure and buffer text.
-   Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000, 2001
+   Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 99, 2000, 2001, 2002
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -584,7 +584,7 @@ int automatic_hscrolling_p;
 
 /* How close to the margin can point get before the window is scrolled
    horizontally.  */
-int hscroll_margin;
+EMACS_INT hscroll_margin;
 
 /* How much to scroll horizontally when point is inside the above margin.  */
 Lisp_Object Vhscroll_step;