From: Juri Linkov Date: Wed, 15 Jul 2020 23:43:06 +0000 (+0300) Subject: Use describe-char-padded-string for composed character names in "C-u C-x =" X-Git-Tag: emacs-28.0.90~6998 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=96971e38a6bfb1302cb59eab55d75c9868ea663a;p=emacs.git Use describe-char-padded-string for composed character names in "C-u C-x =" * lisp/descr-text.el (describe-char): Use describe-char-padded-string for displaying Unicode names of composed characters on GUI frames. (Bug#42256) --- diff --git a/lisp/descr-text.el b/lisp/descr-text.el index be5e01435a7..55f0b7dcb40 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -781,8 +781,8 @@ The character information includes: (let ((chars (match-string 1 (car composition)))) (dotimes (i (length chars)) (let ((char (aref chars i))) - (insert (format " %c (#x%x) %s\n" - char char + (insert (format " %s (#x%x) %s\n" + (describe-char-padded-string char) char (get-char-code-property char 'name)))))))) ;; TTY frame: show composition in terms of characters.