Mercurial > emacs
changeset 13126:3b3c339f71c0
(Fset_window_hscroll): Don't reject args > SHORTBITS.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 05 Oct 1995 23:44:20 +0000 |
parents | 731ef06c5677 |
children | 4ca49c2e0c03 |
files | src/window.c |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 */