aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-12 16:28:37 -0700
committerPaul Eggert2011-06-12 16:28:37 -0700
commitd37ca62316e7526da7d75cc44c7a4cd8a6281bb5 (patch)
treee50d173d4fdedd10d52bb4258bd89a0d29f4fff1 /src/ChangeLog
parentea204efb8a3e81a4d9b04d2a36cb8c2a1c74662c (diff)
downloademacs-d37ca62316e7526da7d75cc44c7a4cd8a6281bb5.tar.gz
emacs-d37ca62316e7526da7d75cc44c7a4cd8a6281bb5.zip
Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
These casts should not be needed on 32-bit hosts, either. * keyboard.c (read_char): * lread.c (Fload): Remove casts to unsigned.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cb3ed502c96..921f976334a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12011-06-12 Paul Eggert <eggert@cs.ucla.edu> 12011-06-12 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
4 These casts should not be needed on 32-bit hosts, either.
5 * keyboard.c (read_char):
6 * lread.c (Fload): Remove casts to unsigned.
7
3 * lisp.h (UNSIGNED_CMP): New macro. 8 * lisp.h (UNSIGNED_CMP): New macro.
4 This fixes comparison bugs on 64-bit hosts. 9 This fixes comparison bugs on 64-bit hosts.
5 (ASCII_CHAR_P): Use it. 10 (ASCII_CHAR_P): Use it.