coding-category-iso-8-else 'iso-2022-8bit-ss2
coding-category-ccl nil
coding-category-utf-8 'mule-utf-8
- coding-category-utf-16-be 'mule-utf-16-be-with-signature
- coding-category-utf-16-le 'mule-utf-16-le-with-signature
+ coding-category-utf-16-be 'mule-utf-16be-with-signature
+ coding-category-utf-16-le 'mule-utf-16le-with-signature
coding-category-big5 'chinese-big5
coding-category-raw-text 'raw-text
coding-category-binary 'no-conversion)
'utf-7 0 ?U
"UTF-7 encoding of Unicode (RFC 2152)"
nil
- `((safe-chars . ,(coding-system-get 'utf-16-be 'safe-chars))
+ `((safe-chars . ,(coding-system-get 'utf-16be 'safe-chars))
(mime-charset . utf-7)
(pre-write-conversion . utf-7-pre-write-conversion)
(post-read-conversion . utf-7-post-read-conversion)))
;; 'utf-7-imap 0 ?u
;; "UTF-7 encoding of Unicode, IMAP version (RFC 2060)"
;; nil
-;; `((safe-chars . ,(coding-system-get 'utf-16-be 'safe-chars))
+;; `((safe-chars . ,(coding-system-get 'utf-16be 'safe-chars))
;; (pre-write-conversion . utf-7-imap-pre-write-conversion)
;; (post-read-conversion . utf-7-imap-post-read-conversion)))
(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) ?/ ?,))