mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-15 04:11:53 -08:00
(describe-character-set): Pay attention to charsets that don't have
ISO2022's final char.
This commit is contained in:
parent
c12553c1db
commit
c7bf5db996
2 changed files with 5 additions and 3 deletions
|
|
@ -1,7 +1,9 @@
|
|||
2001-01-31 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* international/mule-diag.el (describe-character-set): Pay
|
||||
attention to charsets that don't have ISO2022's final char.
|
||||
* international/mule.el (charset-info): Fix docstring.
|
||||
|
||||
* international/mule-diag.el (describe-character-set): Check final
|
||||
char valid before printing it.
|
||||
|
||||
2001-01-30 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
|
|
|
|||
|
|
@ -492,7 +492,7 @@ detailed meanings of these arguments."
|
|||
(format "%d\n" (aref info 3))
|
||||
(format "%dx%d\n" (aref info 3) (aref info 3))))
|
||||
(insert "the final char of ISO2022's designation sequence: ")
|
||||
(if (aref info 8)
|
||||
(if (>= (aref info 8) 0)
|
||||
(insert (format "`%c'\n" (aref info 8)))
|
||||
(insert "not assigned\n"))
|
||||
(insert (format "width (how many columns on screen): %d\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue