+2003-06-23 Kenichi Handa <handa@m17n.org>
+
+ * international/mule-conf.el (utf-16-be): Make it an alias of
+ utf-16be-with-signature.
+ (utf-16-le): Make it an alias of utf-16le-with-signature.
+ (utf-16-be-with-signature, utf-16-le-with-signature): Remove these
+ coding system aliases.
+
+ * international/utf-7.el (utf-7-decode, utf-7-encode): Use
+ utf-16be, not utf-16-be.
+
2003-06-06 Kenichi Handa <handa@m17n.org>
* international/mule.el (coding-system-category): New function.
(if imap
(subst-char-in-region p (point) ?, ?/))
(base64-decode-region p (point)))
- (decode-coding-region p (point) 'utf-16-be)
+ (decode-coding-region p (point) 'utf-16be)
(save-excursion
(goto-char p)
(delete-backward-char 1)))))))
(save-restriction
;; encode-coding-region doesn't preserve point
(narrow-to-region p (point))
- (encode-coding-region p (point-max) 'utf-16-be)
+ (encode-coding-region p (point-max) 'utf-16be)
(base64-encode-region p (point-max))
(if imap
(subst-char-in-region p (point-max) ?/ ?,))