diff options
author | Eli Zaretskii <eliz@gnu.org> | 2018-07-27 09:47:37 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2018-07-27 09:47:37 +0300 |
commit | 0feb6733d4bea5f360abc3f64bfc5b9b29087c48 (patch) | |
tree | 289563c5ce2b6f655b65c2c697a93c6b709ecd56 /lisp/descr-text.el | |
parent | 2e2f00f8a55e0092a5b81e513a732f70d5fd863b (diff) | |
download | emacs-0feb6733d4bea5f360abc3f64bfc5b9b29087c48.tar.gz |
Display raw bytes as belonging to 'eight-bit' charset
* lisp/descr-text.el (describe-char):
* lisp/simple.el (what-cursor-position): Display characters in the
range #x3FFF80..#x3FFF9F as belonging to charset 'eight-bit', not
'tis620-2533'.
* lisp/international/mule-diag.el (describe-character-set):
Improve description of :supplementary-p.
Diffstat (limited to 'lisp/descr-text.el')
-rw-r--r-- | lisp/descr-text.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/descr-text.el b/lisp/descr-text.el index ddd7d801d2a..00b40826f48 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -404,6 +404,12 @@ relevant to POS." (charset (if eight-bit-p 'eight-bit (or (get-text-property pos 'charset) (char-charset char)))) + ;; TIS620.2533 overlaps eight-bit-control, but we want to + ;; show eight-bit for raw bytes, not some obscure character + ;; set no one heard of. + (charset (if (eq charset 'tis620-2533) + 'eight-bit + charset)) (composition (find-composition pos nil nil t)) (component-chars nil) (display-table (or (window-display-table) |