summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-02-04 11:25:01 +0000
committerKenichi Handa <handa@m17n.org>1998-02-04 11:25:01 +0000
commit7bdac2268fb510b23630afbaaf6875dd847b75e6 (patch)
treed7734e59c03176d7a916c506b171ef8229ed09d5 /lisp
parentc2acddfe0de15915e65ecd538872fa4f2c6df7f7 (diff)
downloademacs-7bdac2268fb510b23630afbaaf6875dd847b75e6.tar.gz
(encode-hz-region): Do not bind
enable-multibyte-characters to nil locally.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/language/china-util.el3
1 files changed, 1 insertions, 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)