mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(utf7-encode, utf7-decode): Use coding system
`utf-7'/`utf-7-imap' from utf-7.el' if available.
This commit is contained in:
parent
2ea6167b2d
commit
f21470efb6
2 changed files with 20 additions and 11 deletions
|
|
@ -209,20 +209,26 @@ Characters are in raw byte pairs in narrowed buffer."
|
|||
|
||||
(defun utf7-encode (string &optional for-imap)
|
||||
"Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil."
|
||||
(let ((default-enable-multibyte-characters t))
|
||||
(with-temp-buffer
|
||||
(insert string)
|
||||
(utf7-encode-internal for-imap)
|
||||
(buffer-string))))
|
||||
(if (and (coding-system-p 'utf-7) (coding-system-p 'utf-7-imap))
|
||||
;; Emacs 23 with proper support for IMAP
|
||||
(encode-coding-string string (if for-imap 'utf-7-imap 'utf-7))
|
||||
(let ((default-enable-multibyte-characters t))
|
||||
(with-temp-buffer
|
||||
(insert string)
|
||||
(utf7-encode-internal for-imap)
|
||||
(buffer-string)))))
|
||||
|
||||
(defun utf7-decode (string &optional for-imap)
|
||||
"Decode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil."
|
||||
(let ((default-enable-multibyte-characters nil))
|
||||
(with-temp-buffer
|
||||
(insert string)
|
||||
(utf7-decode-internal for-imap)
|
||||
(mm-enable-multibyte)
|
||||
(buffer-string))))
|
||||
(if (and (coding-system-p 'utf-7) (coding-system-p 'utf-7-imap))
|
||||
;; Emacs 23 with proper support for IMAP
|
||||
(decode-coding-string string (if for-imap 'utf-7-imap 'utf-7))
|
||||
(let ((default-enable-multibyte-characters nil))
|
||||
(with-temp-buffer
|
||||
(insert string)
|
||||
(utf7-decode-internal for-imap)
|
||||
(mm-enable-multibyte)
|
||||
(buffer-string)))))
|
||||
|
||||
(provide 'utf7)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue