From 769cd028f44b8b0aed98beb5749ecf809416d121 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 5 Oct 1995 23:44:20 +0000 Subject: (Fset_window_hscroll): Don't reject args > SHORTBITS. --- src/window.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') 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 */ -- cgit v1.2.1