From: Andreas Schwab Date: Tue, 5 Mar 2002 10:51:31 +0000 (+0000) Subject: (hscroll_margin): Change to EMACS_INT. X-Git-Tag: ttn-vms-21-2-B4~16328 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d335845144496f831be1dc36f9d9b6a571d5073;p=emacs.git (hscroll_margin): Change to EMACS_INT. --- diff --git a/src/ChangeLog b/src/ChangeLog index e796c9bd2b4..b979d1bb8ca 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-03-05 Andreas Schwab + + * xdisp.c (hscroll_margin): Change to EMACS_INT. + 2002-03-05 Per Abrahamsen * frame.c (default-frame-alist): Explain that setting it doesn't diff --git a/src/xdisp.c b/src/xdisp.c index c591e69b7cc..b649cb2f04f 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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;