comparison lisp/international/mule-diag.el @ 90742:d12279146267

(list-character-sets-2): Don't print width.
author Kenichi Handa <handa@m17n.org>
date Tue, 30 Jan 2007 07:44:44 +0000
parents 95d0cdf160ea
children 63467424b001
comparison
equal deleted inserted replaced
90741:d46ef6f75d9c 90742:d12279146267
182 ## The following attributes are listed in this order 182 ## The following attributes are listed in this order
183 ## separated by a colon `:' in one line. 183 ## separated by a colon `:' in one line.
184 ## CHARSET-SYMBOL-NAME, 184 ## CHARSET-SYMBOL-NAME,
185 ## DIMENSION (1 or 2) 185 ## DIMENSION (1 or 2)
186 ## CHARS (94 or 96) 186 ## CHARS (94 or 96)
187 ## WIDTH (occupied column numbers: 1 or 2),
188 ## DIRECTION (0:left-to-right, 1:right-to-left),
189 ## ISO-FINAL-CHAR (character code of ISO-2022's final character) 187 ## ISO-FINAL-CHAR (character code of ISO-2022's final character)
190 ## ISO-GRAPHIC-PLANE (ISO-2022's graphic plane, 0:GL, 1:GR) 188 ## -1 means that no final character is assigned.
191 ## DESCRIPTION (describing string of the charset) 189 ## DESCRIPTION (describing string of the charset)
192 ") 190 ")
193 (let ((l charset-list) 191 (let ((l charset-list)
194 charset) 192 charset)
195 (while l 193 (while l
196 (setq charset (car l) l (cdr l)) 194 (setq charset (car l) l (cdr l))
197 (princ (format "%s:%d:%d:%d:%d:%s\n" 195 (princ (format "%s:%d:%d:%d:%s\n"
198 charset 196 charset
199 (charset-dimension charset) 197 (charset-dimension charset)
200 (charset-chars charset) 198 (charset-chars charset)
201 (aref char-width-table (make-char charset)) 199 ;;; (char-width (make-char charset))
202 ;;; (charset-direction charset) 200 ;;; (charset-direction charset)
203 (charset-iso-final-char charset) 201 (charset-iso-final-char charset)
204 ;;; (charset-iso-graphic-plane charset) 202 ;;; (charset-iso-graphic-plane charset)
205 (charset-description charset)))))) 203 (charset-description charset))))))
206 204