]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_window_hscroll): Don't reject args > SHORTBITS.
authorRichard M. Stallman <rms@gnu.org>
Thu, 5 Oct 1995 23:44:20 +0000 (23:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 5 Oct 1995 23:44:20 +0000 (23:44 +0000)
src/window.c

index 1a506767460c2b49e5fb788fe801796a21a33de7..3ea58035fa81362daff161b4fcf9697809c22cbc 100644 (file)
@@ -307,8 +307,6 @@ NCOL should be zero or positive.")
 
   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 */