Mercurial > hg > xemacs-beta
diff src/event-stream.c @ 2039:fd0cbe945410
[xemacs-hg @ 2004-04-22 03:24:00 by james]
Change VALBITS to INT_VALBITS in a number of places.
author | james |
---|---|
date | Thu, 22 Apr 2004 03:24:02 +0000 |
parents | a8d8f419b459 |
children | caf11603feef |
line wrap: on
line diff
--- a/src/event-stream.c Wed Apr 21 21:50:35 2004 +0000 +++ b/src/event-stream.c Thu Apr 22 03:24:02 2004 +0000 @@ -4782,7 +4782,7 @@ /* This junk is so that timestamps don't get to be negative, but contain as many bits as this particular emacs will allow. */ - return make_int (((1L << (VALBITS - 1)) - 1) & tiempo); + return make_int (EMACS_INT_MAX & tiempo); }