comparison src/ChangeLog @ 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 aaa6e4c4e653
children a7dd0aed0fe6
comparison
equal deleted inserted replaced
2038:c6190a5b1ece 2039:fd0cbe945410
1 2004-04-19 Jerry James <james@xemacs.org>
2
3 * data.c (sign_extend_lisp_int): Use INT_VALBITS instead of
4 VALBITS to compute the location of the sign bit.
5 * event-stream.c (Fcurrent_event_timestamp): Replace incorrect use
6 of VALBITS with EMACS_INT_MAX.
7 * events.c (Fevent_timestamp): Ditto.
8 * events.c (TIMESTAMP_HALFSPACE): Change VALBITS to INT_VALBITS to
9 compute the halfway point to timestamp wraparound.
10 * floatfns.c (float_to_int): Compare against EMACS_INT_MAX and
11 EMACS_INT_MIN instead of using VALBITS.
12 * floatfns.c (Flogb): Use EMACS_INT_MIN instead of building an
13 incorrect number with VALBITS.
14 * fns.c (Frandom): Use INT_VALBITS instead of VALBITS to compute
15 the denominator.
16 * sysdep.c (get_random): Use INT_VALBITS instead of VALBITS to
17 build random numbers.
18
1 2004-04-18 Jerry James <james@xemacs.org> 19 2004-04-18 Jerry James <james@xemacs.org>
2 20
3 * dump-data.c (dumped_data_get): Change return type to char *. 21 * dump-data.c (dumped_data_get): Change return type to char *.
4 * dump-data.h (dumped_data_get): Ditto. 22 * dump-data.h (dumped_data_get): Ditto.
5 23