summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2011-12-05 16:02:09 +0900
committerKenichi Handa <handa@m17n.org>2011-12-05 16:02:09 +0900
commita79703f53ccd12623371263d93baf0d1be928ec7 (patch)
tree5c4d6573e4a400a6273ad2e5cb6640f124f76c8d
parent5eb05ea3f926fcf31163e87d19a94a1674449196 (diff)
downloademacs-a79703f53ccd12623371263d93baf0d1be928ec7.tar.gz
src/ChangeLog: Fix previous change.
-rw-r--r--src/ChangeLog17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8c4a0ff4572..760bf575da5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,12 @@
* coding.c (encode_designation_at_bol): New args charbuf_end and
dst. Return the number of produced bytes. Callers changed.
+ (coding_set_source): Return how many bytes coding->source was
+ relocated.
+ (coding_set_destination): Return how many bytes
+ coding->destination was relocated.
+ (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
+ (CODING_CHAR_CHARSET_P): Adjusted for the avove changes.
2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
@@ -13,17 +19,10 @@
The following changes are to fix Bug#9318.
- * coding.c (CODING_DECODE_CHAR): Adjusted for the new interface of
- coding_set_source.
- (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
- (coding_set_source): Return how many bytes coding->source was
- relocated.
- (coding_set_destination): Return how many bytes
- coding->destination was relocated.
+ * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
(encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
(encode_coding_iso_2022, encode_coding_sjis)
- (encode_coding_big5, encode_coding_charset): Use macros
- CODING_ENCODE_CHAR, CODING_CHAR_CHARSET.
+ (encode_coding_big5, encode_coding_charset): Use the above macros.
2011-11-29 Jan Djärv <jan.h.d@swipnet.se>