diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-05 23:44:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-05 23:44:20 +0000 |
commit | 769cd028f44b8b0aed98beb5749ecf809416d121 (patch) | |
tree | 0e88d4a7228952f1623528cea35ad1f1e97e233d /src/window.c | |
parent | 96c35b707c83c4415f75c1a59171cebe5e88b897 (diff) | |
download | emacs-769cd028f44b8b0aed98beb5749ecf809416d121.tar.gz |
(Fset_window_hscroll): Don't reject args > SHORTBITS.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 0 insertions, 2 deletions
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 */ |