aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-12 18:35:47 -0700
committerPaul Eggert2011-06-12 18:35:47 -0700
commitf8c86b69a8489f33709de6b869be369a34d5adb0 (patch)
treec508e36cfb351ac8ba43c7bc92931002f9a3bdfb /src/ChangeLog
parent34206dd201b905b8f9eec84b4e90ba591b06a79a (diff)
downloademacs-f8c86b69a8489f33709de6b869be369a34d5adb0.tar.gz
emacs-f8c86b69a8489f33709de6b869be369a34d5adb0.zip
* composite.c: Use int, not EMACS_INT, for characters.
(fill_gstring_body, composition_compute_stop_pos): Use int, not EMACS_INT, for values that are known to be in character range. This doesn't fix any bugs but is the usual style inside Emacs and may generate better code on 32-bit machines.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6a6ae7d53cf..8f98b251234 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12011-06-13 Paul Eggert <eggert@cs.ucla.edu> 12011-06-13 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * composite.c: Use int, not EMACS_INT, for characters.
4 (fill_gstring_body, composition_compute_stop_pos): Use int, not
5 EMACS_INT, for values that are known to be in character range.
6 This doesn't fix any bugs but is the usual style inside Emacs and
7 may generate better code on 32-bit machines.
8
3 Make sure a 64-bit char is never passed to ENCODE_CHAR. 9 Make sure a 64-bit char is never passed to ENCODE_CHAR.
4 This is for reasons similar to the recent CHAR_STRING fix. 10 This is for reasons similar to the recent CHAR_STRING fix.
5 * charset.c (Fencode_char): Check that character arg is actually 11 * charset.c (Fencode_char): Check that character arg is actually