diff options
author | Kenichi Handa <handa@m17n.org> | 2003-05-06 12:31:32 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-05-06 12:31:32 +0000 |
commit | fd12904bd6af753b311eb2b89bc13a7e20daf660 (patch) | |
tree | b39721a0736c7d53bad86c7a000b1bdc5d7ef7a9 | |
parent | 4156e5b5e92725e3fddc1f40be0ab86c446dcbc5 (diff) | |
download | emacs-fd12904bd6af753b311eb2b89bc13a7e20daf660.tar.gz |
*** 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 @@ +2003-05-06 Kenichi Handa <handa@m17n.org> + + * international/mule-conf.el (utf-16-be) + (utf-16-be-with-signature): Cancel the previous change. + (utf-16): Add :endinan 'big. + + * international/mule.el (define-coding-system): Fix docstring + about :bom and :endian. + 2003-04-30 Dave Love <fx@gnu.org> * mule-conf.el (utf-16-be) @@ -6,12 +15,12 @@ * mule-diag.el (describe-character-set): Fix printing dimensions. Use `,AW(B', not `x'. -2003-04-12 Kenichi Handa <handa@etlken2> +2003-04-12 Kenichi Handa <handa@m17n.org> * international/fontset.el: Register CDAC fonts in face-font-rescale-alist instead of face-resizing-fonts. -2003-03-28 Kenichi Handa <handa@etlken2> +2003-03-28 Kenichi Handa <handa@m17n.org> * international/mule-conf.el (utf-16-le): Renamed from 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 @@ 2003-05-06 Kenichi Handa <handa@m17n.org> + * coding.c (Qsignature, Qendian): Delete these variables. + (syms_of_coding): Don't initialize them. + (CATEGORY_MASK_UTF_16_AUTO): New macro. + (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in + detect_info->found. + (decode_coding_utf_16): Don't detect BOM here. + (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding) + is NOT utf_16_without_bom. + (setup_coding_system): For a coding system of type utf-16, check + if the attribute :endian is Qbig or not (not nil or not), and set + CODING_REQUIRE_DETECTION_MASK if BOM detection is required. + (detect_coding): If coding type is utf-16 and BOM detection is + required, detect it. + (Fdefine_coding_system_internal): For a coding system of type + utf-16, check if the attribute :endian is Qbig or not (not nil or + not). + +2003-05-06 Kenichi Handa <handa@m17n.org> + * coding.c (coding_set_source): Fix for the case that the current buffer is different from coding->src_object. (decode_coding_object): Don't use the conversion work buffer if |