From 39e0da627d03096c30d9524bcbc711bf15736419 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 4 Feb 1998 11:25:01 +0000 Subject: [PATCH] (encode-hz-region): Do not bind enable-multibyte-characters to nil locally. --- lisp/language/china-util.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) -- 2.39.5