+2005-02-28 Chong Yidong" <cyd@stupidchicken.com> (tiny change)
+
+ * international/utf-16.el (ccl-encode-mule-utf-16le): Fix
+ BUFFER_MAGNIFICATION to 2.
+ (ccl-encode-mule-utf-16be): Likewise.
+
+2005-02-28 Kenichi Handa <handa@m17n.org>
+
+ * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
+ Fix BUFFER_MAGNIFICATION to 4.
+ (ccl-encode-mule-utf-16be-with-signature): Likewise.
+
2005-02-28 Nick Roberts <nickrob@snap.net.nz>
* speedbar.el (speedbar-update-flag): Doc fix.
(define-ccl-program ccl-encode-mule-utf-16le
- `(1
+ `(2
,utf-16le-encode-loop)
"Encode to UTF-16LE (little endian without signature).
Characters from the charsets ascii, eight-bit-control,
Others are encoded as U+FFFD.")
(define-ccl-program ccl-encode-mule-utf-16be
- `(1
+ `(2
,utf-16be-encode-loop)
"Encode to UTF-16BE (big endian without signature).
Characters from the charsets ascii, eight-bit-control,
Others are encoded as U+FFFD.")
(define-ccl-program ccl-encode-mule-utf-16le-with-signature
- `(1
+ `(4
((write #xFF)
(write #xFE)
,@utf-16le-encode-loop))
Others are encoded as U+FFFD.")
(define-ccl-program ccl-encode-mule-utf-16be-with-signature
- `(1
+ `(4
((write #xFE)
(write #xFF)
,@utf-16be-encode-loop))