aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-07-04 20:09:36 -0700
committerPaul Eggert2011-07-04 20:09:36 -0700
commit6089c5670b18a02fc2caca3e665d2bb7799dc4c8 (patch)
tree16b5f9dc30401413bead09c0005415d6c081adb0 /src/ChangeLog
parentd8ed26bd07abb23acc9c1879776f5afc44ed4874 (diff)
downloademacs-6089c5670b18a02fc2caca3e665d2bb7799dc4c8.tar.gz
emacs-6089c5670b18a02fc2caca3e665d2bb7799dc4c8.zip
* lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally well either way, and we prefer signed to unsigned.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9ad7da46ecf..e4702b4316b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12011-07-05 Paul Eggert <eggert@cs.ucla.edu> 12011-07-05 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
4 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
5 well either way, and we prefer signed to unsigned.
6
3 Random fixes. E.g., (random) never returned negative values. 7 Random fixes. E.g., (random) never returned negative values.
4 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the 8 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
5 subseconds part to the entropy, as that's a bit more random. 9 subseconds part to the entropy, as that's a bit more random.