diff options
author | Kenichi Handa <handa@m17n.org> | 2000-12-21 01:57:24 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-12-21 01:57:24 +0000 |
commit | e360ac5bee4b090f94e54363e514d58705d49f1a (patch) | |
tree | 54b61b2cb9ec079021eb4e69f9d90f1d069fe7d0 /lisp/international/mule-diag.el | |
parent | 9fd1c1f7099bda3867a12f16cd3b2e2ce5a568d1 (diff) | |
download | emacs-e360ac5bee4b090f94e54363e514d58705d49f1a.tar.gz |
(describe-char-after): Make *Help*
buffer inherit multibyteness of the current buffer.
Diffstat (limited to 'lisp/international/mule-diag.el')
-rw-r--r-- | lisp/international/mule-diag.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 77ed1b9cfb0..4ed5fe165fe 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el @@ -525,6 +525,7 @@ which font is being used for displaying the character." (composition (find-composition (point) nil nil t)) (composed (if composition (buffer-substring (car composition) (nth 1 composition)))) + (multibyte-p enable-multibyte-characters) item-list max-width) (if (eq charset 'unknown) (setq item-list @@ -582,6 +583,7 @@ which font is being used for displaying the character." (with-output-to-temp-buffer "*Help*" (save-excursion (set-buffer standard-output) + (set-buffer-multibyte multibyte-p) (let ((formatter (format "%%%ds:" max-width))) (dolist (elt item-list) (insert (format formatter (car elt))) |