diff options
| author | Kenichi Handa | 2003-05-06 12:31:32 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-05-06 12:31:32 +0000 |
| commit | fd12904bd6af753b311eb2b89bc13a7e20daf660 (patch) | |
| tree | b39721a0736c7d53bad86c7a000b1bdc5d7ef7a9 | |
| parent | 4156e5b5e92725e3fddc1f40be0ab86c446dcbc5 (diff) | |
| download | emacs-fd12904bd6af753b311eb2b89bc13a7e20daf660.tar.gz emacs-fd12904bd6af753b311eb2b89bc13a7e20daf660.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | src/ChangeLog | 19 |
2 files changed, 30 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e23ac541da0..d16f2b1f6b6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2003-05-06 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * international/mule-conf.el (utf-16-be) | ||
| 4 | (utf-16-be-with-signature): Cancel the previous change. | ||
| 5 | (utf-16): Add :endinan 'big. | ||
| 6 | |||
| 7 | * international/mule.el (define-coding-system): Fix docstring | ||
| 8 | about :bom and :endian. | ||
| 9 | |||
| 1 | 2003-04-30 Dave Love <fx@gnu.org> | 10 | 2003-04-30 Dave Love <fx@gnu.org> |
| 2 | 11 | ||
| 3 | * mule-conf.el (utf-16-be) | 12 | * mule-conf.el (utf-16-be) |
| @@ -6,12 +15,12 @@ | |||
| 6 | * mule-diag.el (describe-character-set): Fix | 15 | * mule-diag.el (describe-character-set): Fix |
| 7 | printing dimensions. Use `,AW(B', not `x'. | 16 | printing dimensions. Use `,AW(B', not `x'. |
| 8 | 17 | ||
| 9 | 2003-04-12 Kenichi Handa <handa@etlken2> | 18 | 2003-04-12 Kenichi Handa <handa@m17n.org> |
| 10 | 19 | ||
| 11 | * international/fontset.el: Register CDAC fonts in | 20 | * international/fontset.el: Register CDAC fonts in |
| 12 | face-font-rescale-alist instead of face-resizing-fonts. | 21 | face-font-rescale-alist instead of face-resizing-fonts. |
| 13 | 22 | ||
| 14 | 2003-03-28 Kenichi Handa <handa@etlken2> | 23 | 2003-03-28 Kenichi Handa <handa@m17n.org> |
| 15 | 24 | ||
| 16 | * international/mule-conf.el (utf-16-le): Renamed from | 25 | * international/mule-conf.el (utf-16-le): Renamed from |
| 17 | utf-16-le-nosig. | 26 | utf-16-le-nosig. |
diff --git a/src/ChangeLog b/src/ChangeLog index 130028a96fb..f41f8da3992 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,24 @@ | |||
| 1 | 2003-05-06 Kenichi Handa <handa@m17n.org> | 1 | 2003-05-06 Kenichi Handa <handa@m17n.org> |
| 2 | 2 | ||
| 3 | * coding.c (Qsignature, Qendian): Delete these variables. | ||
| 4 | (syms_of_coding): Don't initialize them. | ||
| 5 | (CATEGORY_MASK_UTF_16_AUTO): New macro. | ||
| 6 | (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in | ||
| 7 | detect_info->found. | ||
| 8 | (decode_coding_utf_16): Don't detect BOM here. | ||
| 9 | (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding) | ||
| 10 | is NOT utf_16_without_bom. | ||
| 11 | (setup_coding_system): For a coding system of type utf-16, check | ||
| 12 | if the attribute :endian is Qbig or not (not nil or not), and set | ||
| 13 | CODING_REQUIRE_DETECTION_MASK if BOM detection is required. | ||
| 14 | (detect_coding): If coding type is utf-16 and BOM detection is | ||
| 15 | required, detect it. | ||
| 16 | (Fdefine_coding_system_internal): For a coding system of type | ||
| 17 | utf-16, check if the attribute :endian is Qbig or not (not nil or | ||
| 18 | not). | ||
| 19 | |||
| 20 | 2003-05-06 Kenichi Handa <handa@m17n.org> | ||
| 21 | |||
| 3 | * coding.c (coding_set_source): Fix for the case that the current | 22 | * coding.c (coding_set_source): Fix for the case that the current |
| 4 | buffer is different from coding->src_object. | 23 | buffer is different from coding->src_object. |
| 5 | (decode_coding_object): Don't use the conversion work buffer if | 24 | (decode_coding_object): Don't use the conversion work buffer if |