From: Richard M. Stallman Date: Thu, 5 Oct 1995 23:44:20 +0000 (+0000) Subject: (Fset_window_hscroll): Don't reject args > SHORTBITS. X-Git-Tag: emacs-19.34~2734 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff5e95b7c43c1a8a89f3e0ce42d1df780928cc33;p=emacs.git (Fset_window_hscroll): Don't reject args > SHORTBITS. --- diff --git a/src/window.c b/src/window.c index 1a506767460..3ea58035fa8 100644 --- a/src/window.c +++ b/src/window.c @@ -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 */