From: Kenichi Handa Date: Wed, 4 Feb 1998 11:25:01 +0000 (+0000) Subject: (encode-hz-region): Do not bind X-Git-Tag: emacs-20.3~2236 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=39e0da627d03096c30d9524bcbc711bf15736419;p=emacs.git (encode-hz-region): Do not bind enable-multibyte-characters to nil locally. --- diff --git a/lisp/language/china-util.el b/lisp/language/china-util.el index e70afa9b908..1933770d685 100644 --- a/lisp/language/china-util.el +++ b/lisp/language/china-util.el @@ -159,8 +159,7 @@ Return the length of resulting text." ;; Chinese GB2312 -> "~{...~}" (goto-char (point-min)) (if (re-search-forward "\\cc" nil t) - (let ((enable-multibyte-characters nil) - pos) + (let (pos) (goto-char (setq pos (match-beginning 0))) (encode-coding-region pos (point-max) 'iso-2022-7bit) (goto-char pos)