aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2004-01-25 08:13:15 +0000
committerKenichi Handa2004-01-25 08:13:15 +0000
commit5d6b87e1ccd2a98dfd1fa642a941eb0fd94b116e (patch)
tree1bb858f4c511bef4db218207a93a089e2c3fb704
parent4f3565513d241397c952239a3d3a58eb6897424b (diff)
downloademacs-5d6b87e1ccd2a98dfd1fa642a941eb0fd94b116e.tar.gz
emacs-5d6b87e1ccd2a98dfd1fa642a941eb0fd94b116e.zip
*** empty log message ***
-rw-r--r--admin/ChangeLog.227
-rw-r--r--etc/ChangeLog.224
-rw-r--r--lisp/ChangeLog.2211
-rw-r--r--src/ChangeLog.2218
4 files changed, 40 insertions, 0 deletions
diff --git a/admin/ChangeLog.22 b/admin/ChangeLog.22
index ee129d9c119..1a1a7067169 100644
--- a/admin/ChangeLog.22
+++ b/admin/ChangeLog.22
@@ -1,3 +1,10 @@
12004-01-25 Kenichi Handa <handa@m17n.org>
2
3 * charsets/mapconv: Handle UNICODE2.
4
5 * charsets/Makefile (CJK): Include CP932-2BYTE.map
6 (CP932-2BYTE.map): New target.
7
12003-08-16 Kenichi Handa <handa@m17n.org> 82003-08-16 Kenichi Handa <handa@m17n.org>
2 9
3 * charsets: New directory for scripts to generate charset map 10 * charsets: New directory for scripts to generate charset map
diff --git a/etc/ChangeLog.22 b/etc/ChangeLog.22
index 067cb672b51..c6d6919345e 100644
--- a/etc/ChangeLog.22
+++ b/etc/ChangeLog.22
@@ -1,3 +1,7 @@
12004-01-25 Kenichi Handa <handa@m17n.org>
2
3 * CP932-2BYTE.map: New file.
4
12003-09-26 Kenichi Handa <handa@m17n.org> 52003-09-26 Kenichi Handa <handa@m17n.org>
2 6
3 * ps-prin1.ps (HeaderOrFooterTextLines): Handle multiple strings 7 * ps-prin1.ps (HeaderOrFooterTextLines): Handle multiple strings
diff --git a/lisp/ChangeLog.22 b/lisp/ChangeLog.22
index 92630d134c6..dc1f7e58c79 100644
--- a/lisp/ChangeLog.22
+++ b/lisp/ChangeLog.22
@@ -1,3 +1,14 @@
12004-01-25 Kenichi Handa <handa@m17n.org>
2
3 * language/japanese.el (japanese-cp932): New coding system.
4 (cp932): New alias of it.
5
6 * international/mule-conf.el (katakana-sjis, cp932-2-byte)
7 (cp932): New charsets.
8
9 * international/mule.el (define-charset): If :code-space is not
10 given, generate it from :dimension.
11
12004-01-23 Kenichi Handa <handa@m17n.org> 122004-01-23 Kenichi Handa <handa@m17n.org>
2 13
3 * composite.el (reference-point-alist): Doc fixed. 14 * composite.el (reference-point-alist): Doc fixed.
diff --git a/src/ChangeLog.22 b/src/ChangeLog.22
index 92d19454e42..422ddf8f739 100644
--- a/src/ChangeLog.22
+++ b/src/ChangeLog.22
@@ -1,3 +1,21 @@
12004-01-25 Kenichi Handa <handa@m17n.org>
2
3 * coding.h (enum coding_attr_index): New member
4 coding_attr_trans_tbl.
5 (CODING_ATTR_TRANS_TBL): New macro.
6
7 * coding.c (get_translation_table): New function.
8 (translate_chars): Fix the bug of skipping annotation data.
9 (decode_coding): Utilze get_translation_table.
10 (encode_coding): Likewise.
11 (char_encodable_p): Translate char if necessary.
12 (Funencodable_char_position): Likewise.
13 (Ffind_coding_systems_region_internal): Setup translation table
14 for encode in a coding system attribute vector in advance.
15 (Fcheck_coding_systems_region): Likewise.
16 (Fdefine_coding_system_internal): Allow a symbol as translation
17 table. For shift-jis type coding system, allow 4th charset.
18
12004-01-24 Kenichi Handa <handa@m17n.org> 192004-01-24 Kenichi Handa <handa@m17n.org>
2 20
3 * coding.c (decode_coding_sjis): Check the first byte rigidly. 21 * coding.c (decode_coding_sjis): Check the first byte rigidly.