# HG changeset patch # User Richard M. Stallman # Date 812936660 0 # Node ID 3b3c339f71c0b930f2e4ad3514d592832d91f87b # Parent 731ef06c56772041314d5ee57d029c3eb05d353a (Fset_window_hscroll): Don't reject args > SHORTBITS. diff -r 731ef06c5677 -r 3b3c339f71c0 src/window.c --- a/src/window.c Thu Oct 05 23:40:03 1995 +0000 +++ b/src/window.c Thu Oct 05 23:44:20 1995 +0000 @@ -307,8 +307,6 @@ CHECK_NUMBER (ncol, 1); if (XINT (ncol) < 0) XSETFASTINT (ncol, 0); - if (XFASTINT (ncol) >= (1 << (SHORTBITS - 1))) - args_out_of_range (ncol, Qnil); w = decode_window (window); if (XINT (w->hscroll) != XINT (ncol)) XBUFFER (w->buffer)->clip_changed = 1; /* Prevent redisplay shortcuts */