Mercurial > emacs
changeset 103451:16c3fe546430
(list-character-sets): Change
"FINAL-CHAR" to "FINAL-BYTE" for follow the official terminology.
(list-character-sets-1): Add one line explanation about
"supplementary charset". Make the part "Supplementary Character
Sets" clickable.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 17 Jun 2009 01:16:53 +0000 |
parents | 79a0347eb272 |
children | b434c081a8e8 |
files | lisp/international/mule-diag.el |
diffstat | 1 files changed, 12 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/mule-diag.el Wed Jun 17 01:14:36 2009 +0000 +++ b/lisp/international/mule-diag.el Wed Jun 17 01:16:53 2009 +0000 @@ -60,8 +60,9 @@ The D column contains the dimension of this character set. The CH column contains the number of characters in a block of this character -set. The FINAL-CHAR column contains an ISO-2022 <final-char> to use -for designating this character set in ISO-2022-based coding systems. +set. The FINAL-BYTE column contains an ISO-2022 <final-byte> to use +in the designation escape sequence for this character set in +ISO-2022-based coding systems. With prefix ARG, the output format gets more cryptic, but still shows the full information." @@ -85,7 +86,7 @@ (indent-to 48) (insert "| +--CHARS\n") (let ((columns '(("CHARSET-NAME" . name) "\t\t\t\t\t" - ("D CH FINAL-CHAR" . iso-spec))) + ("D CH FINAL-BYTE" . iso-spec))) pos) (while columns (if (stringp (car columns)) @@ -151,7 +152,14 @@ ;; Insert information of character sets. (dolist (elt (append charset-info-list (list t) supplementary-list)) (if (eq elt t) - (insert "-------------- Supplementary Character Sets --------------") + (progn + (insert "\n-------------- ") + (insert-text-button "Supplementary Character Sets" + 'type 'help-info + 'help-args '("(emacs)Charsets")) + (insert " -------------- +Character sets for defining another charset or obsolete now +")) (insert-text-button (symbol-name (car elt)) ; NAME :type 'list-charset-chars 'help-args (list (car elt)))