Mercurial > emacs
annotate lisp/international/mule-diag.el @ 89891:441b233fd039
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 12 Apr 2004 13:35:01 +0000 |
parents | 9b7ce1c86476 |
children | 76c449b624ad |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36989
diff
changeset
|
1 ;;; mule-diag.el --- show diagnosis of multilingual environment (Mule) |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
89483 | 4 ;; Licensed to the Free Software Foundation. |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
5 ;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. |
89483 | 6 ;; Copyright (C) 2003 |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
7 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
8 ;; Registration Number H13PRO009 |
17052 | 9 |
27953 | 10 ;; Keywords: multilingual, charset, coding system, fontset, diagnosis, i18n |
17052 | 11 |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
16 ;; the Free Software Foundation; either version 2, or (at your option) | |
17 ;; any later version. | |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
17071 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
27 ;; Boston, MA 02111-1307, USA. | |
17052 | 28 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36989
diff
changeset
|
29 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36989
diff
changeset
|
30 |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36989
diff
changeset
|
31 ;;; Code: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36989
diff
changeset
|
32 |
40722
1b9616706fd5
(help-funs): Require help-funs.
Richard M. Stallman <rms@gnu.org>
parents:
40664
diff
changeset
|
33 ;; Make sure the help-xref button type is defined. |
41586
f41a14872734
Require help-fns instead of help-funs.
Eli Zaretskii <eliz@gnu.org>
parents:
40722
diff
changeset
|
34 (require 'help-fns) |
40722
1b9616706fd5
(help-funs): Require help-funs.
Richard M. Stallman <rms@gnu.org>
parents:
40664
diff
changeset
|
35 |
17052 | 36 ;;; General utility function |
37 | |
38 (defun print-list (&rest args) | |
88534 | 39 "Print all arguments with single space separator in one line." |
17052 | 40 (while (cdr args) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
41 (when (car args) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
42 (princ (car args)) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
43 (princ " ")) |
17052 | 44 (setq args (cdr args))) |
45 (princ (car args)) | |
46 (princ "\n")) | |
47 | |
48 ;;; CHARSET | |
49 | |
40639 | 50 (define-button-type 'sort-listed-character-sets |
51 'help-echo (purecopy "mouse-2, RET: sort on this column") | |
52 'face 'bold | |
53 'action #'(lambda (button) | |
54 (sort-listed-character-sets (button-get button 'sort-key)))) | |
55 | |
56 (define-button-type 'list-charset-chars | |
57 :supertype 'help-xref | |
58 'help-function #'list-charset-chars | |
59 'help-echo "mouse-2, RET: show table of characters for this character set") | |
60 | |
17052 | 61 ;;;###autoload |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
62 (defun list-character-sets (arg) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
63 "Display a list of all character sets. |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
64 |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
65 The D column contains the dimension of this character set. The CH |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
66 column contains the number of characters in a block of this character |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
67 set. The FINAL-CHAR column contains an ISO-2022 <final-char> to use |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
68 for designating this character set in ISO-2022-based coding systems. |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
69 |
22306 | 70 With prefix arg, the output format gets more cryptic, |
71 but still shows the full information." | |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
72 (interactive "P") |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
73 (help-setup-xref (list #'list-character-sets arg) (interactive-p)) |
47603
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
74 (with-output-to-temp-buffer "*Character Set List*" |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
75 (with-current-buffer standard-output |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
76 (if arg |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
77 (list-character-sets-2) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
78 ;; Insert header. |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
79 (insert "Supplementary character sets are shown below.\n") |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
80 (insert |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
81 (substitute-command-keys |
27973
cf535f97695d
(list-character-sets): Make help-echo
Kenichi Handa <handa@m17n.org>
parents:
27953
diff
changeset
|
82 (concat "Use " |
cf535f97695d
(list-character-sets): Make help-echo
Kenichi Handa <handa@m17n.org>
parents:
27953
diff
changeset
|
83 (if (display-mouse-p) "\\[help-follow-mouse] or ") |
cf535f97695d
(list-character-sets): Make help-echo
Kenichi Handa <handa@m17n.org>
parents:
27953
diff
changeset
|
84 "\\[help-follow]:\n"))) |
cf535f97695d
(list-character-sets): Make help-echo
Kenichi Handa <handa@m17n.org>
parents:
27953
diff
changeset
|
85 (insert " on a column title to sort by that title,") |
88534 | 86 (indent-to 48) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
87 (insert "+----DIMENSION\n") |
27973
cf535f97695d
(list-character-sets): Make help-echo
Kenichi Handa <handa@m17n.org>
parents:
27953
diff
changeset
|
88 (insert " on a charset name to list characters.") |
88534 | 89 (indent-to 48) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
90 (insert "| +--CHARS\n") |
88534 | 91 (let ((columns '(("CHARSET-NAME" . name) "\t\t\t\t\t" |
92 ("D CH FINAL-CHAR" . iso-spec))) | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
93 pos) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
94 (while columns |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
95 (if (stringp (car columns)) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
96 (insert (car columns)) |
40639 | 97 (insert-text-button (car (car columns)) |
98 :type 'sort-listed-character-sets | |
99 'sort-key (cdr (car columns))) | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
100 (goto-char (point-max))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
101 (setq columns (cdr columns))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
102 (insert "\n")) |
88534 | 103 (insert "------------\t\t\t\t\t- --- ----------\n") |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
104 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
105 ;; Insert body sorted by charset IDs. |
88534 | 106 (list-character-sets-1 'name))))) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
107 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
108 (defun sort-listed-character-sets (sort-key) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
109 (if sort-key |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
110 (save-excursion |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
111 (let ((buffer-read-only nil)) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
112 (goto-char (point-min)) |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
113 (search-forward "\n-") |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
114 (forward-line 1) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
115 (delete-region (point) (point-max)) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
116 (list-character-sets-1 sort-key))))) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
117 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
118 (defun list-character-sets-1 (sort-key) |
88534 | 119 "Insert a list of character sets sorted by SORT-KEY. |
120 SORT-KEY should be `name' or `iso-spec' (default `name')." | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
121 (or sort-key |
88534 | 122 (setq sort-key 'name)) |
123 (let ((tail charset-list) | |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
124 charset-info-list supplementary-list charset sort-func) |
88534 | 125 (dolist (charset charset-list) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
126 ;; Generate a list that contains all information to display. |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
127 (let ((elt (list charset |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
128 (charset-dimension charset) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
129 (charset-chars charset) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
130 (charset-iso-final-char charset)))) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
131 (if (plist-get (charset-plist charset) :supplementary-p) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
132 (push elt supplementary-list) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
133 (push elt charset-info-list)))) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
134 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
135 ;; Determine a predicate for `sort' by SORT-KEY. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
136 (setq sort-func |
88534 | 137 (cond ((eq sort-key 'name) |
138 (lambda (x y) (string< (car x) (car y)))) | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
139 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
140 ((eq sort-key 'iso-spec) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
141 ;; Sort by DIMENSION CHARS FINAL-CHAR |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
142 (function |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
143 (lambda (x y) |
88534 | 144 (or (< (nth 1 x) (nth 1 y)) |
145 (and (= (nth 1 x) (nth 1 y)) | |
146 (or (< (nth 2 x) (nth 2 y)) | |
147 (and (= (nth 2 x) (nth 2 y)) | |
148 (< (nth 3 x) (nth 3 y))))))))) | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
149 (t |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
150 (error "Invalid charset sort key: %s" sort-key)))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
151 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
152 (setq charset-info-list (sort charset-info-list sort-func)) |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
153 (setq supplementary-list (sort supplementary-list sort-func)) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
154 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
155 ;; Insert information of character sets. |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
156 (dolist (elt (append charset-info-list (list t) supplementary-list)) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
157 (if (eq elt t) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
158 (insert "-------------- Supplementary Character Sets --------------") |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
159 (insert-text-button (symbol-name (car elt)) ; NAME |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
160 :type 'list-charset-chars |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
161 'help-args (list (car elt))) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
162 (goto-char (point-max)) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
163 (insert "\t") |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
164 (indent-to 48) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
165 (insert (format "%d %3d " |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
166 (nth 1 elt) (nth 2 elt)) ; DIMENSION and CHARS |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
167 (if (< (nth 3 elt) 0) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
168 "none" |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
169 (nth 3 elt)))) ; FINAL-CHAR |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
170 (insert "\n")))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
171 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
172 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
173 ;; List all character sets in a form that a program can easily parse. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
174 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
175 (defun list-character-sets-2 () |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
176 (insert "######################### |
17052 | 177 ## LIST OF CHARSETS |
178 ## Each line corresponds to one charset. | |
179 ## The following attributes are listed in this order | |
180 ## separated by a colon `:' in one line. | |
181 ## CHARSET-SYMBOL-NAME, | |
182 ## DIMENSION (1 or 2) | |
183 ## CHARS (94 or 96) | |
184 ## WIDTH (occupied column numbers: 1 or 2), | |
185 ## DIRECTION (0:left-to-right, 1:right-to-left), | |
186 ## ISO-FINAL-CHAR (character code of ISO-2022's final character) | |
187 ## ISO-GRAPHIC-PLANE (ISO-2022's graphic plane, 0:GL, 1:GR) | |
188 ## DESCRIPTION (describing string of the charset) | |
189 ") | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
190 (let ((l charset-list) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
191 charset) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
192 (while l |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
193 (setq charset (car l) l (cdr l)) |
88534 | 194 (princ (format "%s:%d:%d:%d:%d:%s\n" |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
195 charset |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
196 (charset-dimension charset) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
197 (charset-chars charset) |
88534 | 198 (aref char-width-table (make-char charset)) |
199 ;;; (charset-direction charset) | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
200 (charset-iso-final-char charset) |
88534 | 201 ;;; (charset-iso-graphic-plane charset) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
202 (charset-description charset)))))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
203 |
88534 | 204 (defvar non-iso-charset-alist nil |
205 "Obsolete.") | |
206 (make-obsolete-variable 'non-iso-charset-alist "no longer relevant" "22.1") | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
207 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
208 (defun decode-codepage-char (codepage code) |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
209 "Decode a character that has code CODE in CODEPAGE. |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
210 Return a decoded character string. Each CODEPAGE corresponds to a |
88534 | 211 coding system cpCODEPAGE. This function is obsolete." |
212 (decode-char (intern (format "cp%d" codepage)) code)) | |
213 (make-obsolete 'decode-codepage-char 'decode-char "22.1") | |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
214 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
215 ;; A variable to hold charset input history. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
216 (defvar charset-history nil) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
217 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
218 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
219 ;;;###autoload |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
220 (defun read-charset (prompt &optional default-value initial-input) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
221 "Read a character set from the minibuffer, prompting with string PROMPT. |
88534 | 222 It must be an Emacs character set listed in the variable `charset-list'. |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
223 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
224 Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
225 DEFAULT-VALUE, if non-nil, is the default value. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
226 INITIAL-INPUT, if non-nil, is a string inserted in the minibuffer initially. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
227 See the documentation of the function `completing-read' for the |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
228 detailed meanings of these arguments." |
88534 | 229 (let* ((table (mapcar (lambda (x) (list (symbol-name x))) charset-list)) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
230 (charset (completing-read prompt table |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
231 nil t initial-input 'charset-history |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
232 default-value))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
233 (if (> (length charset) 0) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
234 (intern charset)))) |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
235 |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
236 ;; List characters of the range MIN and MAX of CHARSET. If dimension |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
237 ;; of CHARSET is two (i.e. 2-byte charset), ROW is the first byte |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
238 ;; (block index) of the characters, and MIN and MAX are the second |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
239 ;; bytes of the characters. If the dimension is one, ROW should be 0. |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
240 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
241 (defun list-block-of-chars (charset row min max) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
242 (let (i ch) |
89713
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
243 (insert-char ?- (+ 7 (* 4 16))) |
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
244 (insert "\n ") |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
245 (setq i 0) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
246 (while (< i 16) |
89483 | 247 (insert (format "%4X" i)) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
248 (setq i (1+ i))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
249 (setq i (* (/ min 16) 16)) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
250 (while (<= i max) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
251 (if (= (% i 16) 0) |
89713
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
252 (insert (format "\n%6Xx" (/ (+ (* row 256) i) 16)))) |
89483 | 253 (setq ch (if (< i min) |
254 32 | |
255 (or (decode-char charset (+ (* row 256) i)) | |
256 32))) ; gap in mapping | |
257 ;; Don't insert a control code. | |
258 (if (or (< ch 32) (= ch 127)) | |
259 (setq ch (single-key-description ch)) | |
260 (if (and (>= ch 128) (< ch 160)) | |
261 (setq ch (format "%02Xh" ch)))) | |
89713
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
262 (insert "\t" ch) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
263 (setq i (1+ i)))) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
264 (insert "\n")) |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
265 |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
266 ;;;###autoload |
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
267 (defun list-charset-chars (charset) |
88540 | 268 "Display a list of characters in character set CHARSET." |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
269 (interactive (list (read-charset "Character set: "))) |
89799
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
270 (or (charsetp charset) |
694e157b2143
(list-character-sets): Fix the first line message.
Kenichi Handa <handa@m17n.org>
parents:
89713
diff
changeset
|
271 (error "Invalid character set: %s" charset)) |
47603
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
272 (with-output-to-temp-buffer "*Character List*" |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
273 (with-current-buffer standard-output |
89498
bc83bb07e632
(list-charset-chars): Set buffer file
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
274 (if (coding-system-p charset) |
bc83bb07e632
(list-charset-chars): Set buffer file
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
275 ;; Useful to be able to do C-u C-x = to find file code, for |
bc83bb07e632
(list-charset-chars): Set buffer file
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
276 ;; instance: |
bc83bb07e632
(list-charset-chars): Set buffer file
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
277 (set-buffer-file-coding-system charset)) |
47603
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
278 (setq mode-line-format (copy-sequence mode-line-format)) |
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
279 (let ((slot (memq 'mode-line-buffer-identification mode-line-format))) |
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
280 (if slot |
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
281 (setcdr slot |
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
282 (cons (format " (%s)" charset) |
28c9630ee23e
(list-character-sets): Use the buffer
Kenichi Handa <handa@m17n.org>
parents:
47548
diff
changeset
|
283 (cdr slot))))) |
89713
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
284 (setq tab-width 4) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
285 (set-buffer-multibyte t) |
88540 | 286 (let ((dim (charset-dimension charset)) |
287 (chars (charset-chars charset)) | |
288 ;; (plane (charset-iso-graphic-plane charset)) | |
289 (plane 1) | |
290 (range (plist-get (charset-plist charset) :code-space)) | |
291 min max min2 max2) | |
292 (if (> dim 2) | |
293 (error "Can only list 1- and 2-dimensional charsets")) | |
294 (insert (format "Characters in the coded character set %s.\n" charset)) | |
89807
9b7ce1c86476
(list-charset-chars): Put charset text property.
Kenichi Handa <handa@m17n.org>
parents:
89799
diff
changeset
|
295 (narrow-to-region (point) (point)) |
88540 | 296 (setq min (aref range 0) |
297 max (aref range 1)) | |
298 (if (= dim 1) | |
299 (list-block-of-chars charset 0 min max) | |
300 (setq min2 (aref range 2) | |
301 max2 (aref range 3)) | |
302 (let ((i min2)) | |
303 (while (<= i max2) | |
304 (list-block-of-chars charset i min max) | |
89807
9b7ce1c86476
(list-charset-chars): Put charset text property.
Kenichi Handa <handa@m17n.org>
parents:
89799
diff
changeset
|
305 (setq i (1+ i))))) |
9b7ce1c86476
(list-charset-chars): Put charset text property.
Kenichi Handa <handa@m17n.org>
parents:
89799
diff
changeset
|
306 (put-text-property (point-min) (point-max) 'charset charset) |
9b7ce1c86476
(list-charset-chars): Put charset text property.
Kenichi Handa <handa@m17n.org>
parents:
89799
diff
changeset
|
307 (widen))))) |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
308 |
28899
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
309 |
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
310 ;;;###autoload |
31246
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
311 (defun describe-character-set (charset) |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
312 "Display information about built-in character set CHARSET." |
88534 | 313 (interactive (list (read-charset "Charset: "))) |
31246
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
314 (or (charsetp charset) |
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
315 (error "Invalid charset: %S" charset)) |
88537
4668340a1e0d
(list-character-sets-1): Fix last change.
Dave Love <fx@gnu.org>
parents:
88534
diff
changeset
|
316 (help-setup-xref (list #'describe-character-set charset) (interactive-p)) |
4668340a1e0d
(list-character-sets-1): Fix last change.
Dave Love <fx@gnu.org>
parents:
88534
diff
changeset
|
317 (with-output-to-temp-buffer (help-buffer) |
4668340a1e0d
(list-character-sets-1): Fix last change.
Dave Love <fx@gnu.org>
parents:
88534
diff
changeset
|
318 (with-current-buffer standard-output |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
319 (insert "Character set: " (symbol-name charset)) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
320 (let ((name (get-charset-property charset :name))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
321 (if (not (eq name charset)) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
322 (insert " (alias of " (symbol-name name) ?\)))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
323 (insert "\n\n" (charset-description charset) "\n\n") |
88701
c68f88e42678
(describe-character-set): Account for
Dave Love <fx@gnu.org>
parents:
88655
diff
changeset
|
324 (insert "Number of contained characters: ") |
c68f88e42678
(describe-character-set): Account for
Dave Love <fx@gnu.org>
parents:
88655
diff
changeset
|
325 (dotimes (i (charset-dimension charset)) |
c68f88e42678
(describe-character-set): Account for
Dave Love <fx@gnu.org>
parents:
88655
diff
changeset
|
326 (unless (= i 0) |
89412 | 327 (insert ?×)) |
328 (insert (format "%d" (charset-chars charset (1+ i))))) | |
88701
c68f88e42678
(describe-character-set): Account for
Dave Love <fx@gnu.org>
parents:
88655
diff
changeset
|
329 (insert ?\n) |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
330 (let ((char (charset-iso-final-char charset))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
331 (when (> char 0) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
332 (insert "Final char of ISO2022 designation sequence: ") |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
333 (insert (format "`%c'\n" char)))) |
88537
4668340a1e0d
(list-character-sets-1): Fix last change.
Dave Love <fx@gnu.org>
parents:
88534
diff
changeset
|
334 (insert (format "Width (how many columns on screen): %d\n" |
88540 | 335 (aref char-width-table (make-char charset)))) |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
336 (let (aliases) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
337 (dolist (c charset-list) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
338 (if (and (not (eq c charset)) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
339 (eq charset (get-charset-property c :name))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
340 (push c aliases))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
341 (if aliases |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
342 (insert "Aliases: " (mapconcat #'symbol-name aliases ", ") ?\n))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
343 |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
344 (dolist (elt `((:ascii-compatible-p "ASCII compatible." nil) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
345 (:map "Map file: " identity) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
346 (:unify-map "Unification map file: " identity) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
347 (:invalid-code |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
348 nil |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
349 ,(lambda (c) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
350 (format "Invalid character: %c (code %d)" c c))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
351 (:emacs-mule-id "Id in emacs-mule coding system: " |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
352 number-to-string) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
353 (:parents "Parents: " |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
354 (lambda (parents) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
355 (mapconcat ,(lambda (elt) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
356 (format "%s" elt)) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
357 parents |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
358 ", "))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
359 (:code-space "Code space: " ,(lambda (c) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
360 (format "%s" c))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
361 (:code-offset "Code offset: " number-to-string) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
362 (:iso-revision-number "ISO revision number: " |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
363 number-to-string) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
364 (:supplementary-p |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
365 "Used only as a parent of some other charset." nil))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
366 (let ((val (get-charset-property charset (car elt)))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
367 (when val |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
368 (if (cadr elt) (insert (cadr elt))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
369 (if (nth 2 elt) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
370 (insert (funcall (nth 2 elt) val))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
371 (insert ?\n))))))) |
17052 | 372 |
373 ;;; CODING-SYSTEM | |
374 | |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
375 (eval-when-compile ; dynamic bondage |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
376 (defvar graphic-register)) |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
377 |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
378 ;; Print information about designation of each graphic register in |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
379 ;; DESIGNATIONS in human readable format. See the documentation of |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
380 ;; `define-coding-system' for the meaning of DESIGNATIONS |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
381 ;; (`:designation' property). |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
382 (defun print-designation (designations) |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
383 (let (charset) |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
384 (dotimes (graphic-register 4) |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
385 (setq charset (aref designations graphic-register)) |
17052 | 386 (princ (format |
387 " G%d -- %s\n" | |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
388 graphic-register |
17052 | 389 (cond ((null charset) |
390 "never used") | |
391 ((eq charset t) | |
392 "no initial designation, and used by any charsets") | |
393 ((symbolp charset) | |
394 (format "%s:%s" | |
395 charset (charset-description charset))) | |
396 ((listp charset) | |
397 (if (charsetp (car charset)) | |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
398 (format "%s:%s, and also used by the following:" |
17052 | 399 (car charset) |
400 (charset-description (car charset))) | |
401 "no initial designation, and used by the followings:")) | |
402 (t | |
403 "invalid designation information")))) | |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
404 (when (listp charset) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
405 (setq charset (cdr charset)) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
406 (while charset |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
407 (cond ((eq (car charset) t) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
408 (princ "\tany other charsets\n")) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
409 ((charsetp (car charset)) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
410 (princ (format "\t%s:%s\n" |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
411 (car charset) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
412 (charset-description (car charset))))) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
413 (t |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
414 "invalid designation information")) |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
415 (setq charset (cdr charset))))))) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
416 |
17052 | 417 ;;;###autoload |
418 (defun describe-coding-system (coding-system) | |
22306 | 419 "Display information about CODING-SYSTEM." |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
420 (interactive "zDescribe coding system (default, current choices): ") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
421 (if (null coding-system) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
422 (describe-current-coding-system) |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
423 (help-setup-xref (list #'describe-coding-system coding-system) |
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
424 (interactive-p)) |
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
425 (with-output-to-temp-buffer (help-buffer) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
426 (print-coding-system-briefly coding-system 'doc-string) |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
427 (let ((type (coding-system-type coding-system)) |
89483 | 428 ;; Fixme: use this |
429 (extra-spec (coding-system-plist coding-system))) | |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
430 (princ "Type: ") |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
431 (princ type) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
432 (cond ((eq type 'undecided) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
433 (princ " (do automatic conversion)")) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
434 ((eq type 'utf-8) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
435 (princ " (UTF-8: Emacs internal multibyte form)")) |
88993
a7223f475d71
(describe-coding-system): Add utf-16
Dave Love <fx@gnu.org>
parents:
88895
diff
changeset
|
436 ((eq type 'utf-16) |
a7223f475d71
(describe-coding-system): Add utf-16
Dave Love <fx@gnu.org>
parents:
88895
diff
changeset
|
437 ;; (princ " (UTF-16)") |
a7223f475d71
(describe-coding-system): Add utf-16
Dave Love <fx@gnu.org>
parents:
88895
diff
changeset
|
438 ) |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
439 ((eq type 'shift-jis) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
440 (princ " (Shift-JIS, MS-KANJI)")) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
441 ((eq type 'iso-2022) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
442 (princ " (variant of ISO-2022)\n") |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
443 (princ "Initial designations:\n") |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
444 (print-designation (coding-system-get coding-system |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
445 :designation)) |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
446 |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
447 (when (coding-system-get coding-system :flags) |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
448 (princ "Other specifications: \n ") |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
449 (apply #'print-list |
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
450 (coding-system-get coding-system :flags)))) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
451 ((eq type 'charset) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
452 (princ " (charset)")) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
453 ((eq type 'ccl) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
454 (princ " (do conversion by CCL program)")) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
455 ((eq type 'raw-text) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
456 (princ " (text with random binary characters)")) |
88566
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
457 ((eq type 'emacs-mule) |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
458 (princ " (Emacs 21 internal encoding)")) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
459 (t (princ ": invalid coding-system."))) |
20163
5ff1329561b4
(list-input-methods): Handle the case
Kenichi Handa <handa@m17n.org>
parents:
20114
diff
changeset
|
460 (princ "\nEOL type: ") |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
461 (let ((eol-type (coding-system-eol-type coding-system))) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
462 (cond ((vectorp eol-type) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
463 (princ "Automatic selection from:\n\t") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
464 (princ eol-type) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
465 (princ "\n")) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
466 ((or (null eol-type) (eq eol-type 0)) (princ "LF\n")) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
467 ((eq eol-type 1) (princ "CRLF\n")) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
468 ((eq eol-type 2) (princ "CR\n")) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
469 (t (princ "invalid\n"))))) |
88534 | 470 (let ((postread (coding-system-get coding-system :post-read-conversion))) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
471 (when postread |
35585 | 472 (princ "After decoding text normally,") |
473 (princ " perform post-conversion using the function: ") | |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
474 (princ "\n ") |
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
475 (princ postread) |
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
476 (princ "\n"))) |
88534 | 477 (let ((prewrite (coding-system-get coding-system :pre-write-conversion))) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
478 (when prewrite |
35585 | 479 (princ "Before encoding text normally,") |
480 (princ " perform pre-conversion using the function: ") | |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
481 (princ "\n ") |
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
482 (princ prewrite) |
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
483 (princ "\n"))) |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
484 (with-current-buffer standard-output |
88566
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
485 (let ((charsets (coding-system-charset-list coding-system))) |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
486 (when (and (not (eq (coding-system-base coding-system) 'raw-text)) |
36989
ce090eb0edda
(describe-coding-system): For raw-text and emacs-mule, don't add
Kenichi Handa <handa@m17n.org>
parents:
35747
diff
changeset
|
487 charsets) |
88566
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
488 (cond |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
489 ((eq charsets 'iso-2022) |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
490 (insert "This coding system can encode all ISO 2022 charsets.")) |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
491 ((eq charsets 'emacs-mule) |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
492 (insert "This coding system can encode all emacs-mule charsets\ |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
493 .""")) |
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
494 (t |
35585 | 495 (insert "This coding system encodes the following charsets:\n ") |
31246
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
496 (while charsets |
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
497 (insert " " (symbol-name (car charsets))) |
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
498 (search-backward (symbol-name (car charsets))) |
40639 | 499 (help-xref-button 0 'help-character-set (car charsets)) |
31246
d8ce7bce2aab
(charset-multibyte-form-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
30765
diff
changeset
|
500 (goto-char (point-max)) |
88566
2c3cb7fbba2a
(describe-coding-system): Avoid error
Dave Love <fx@gnu.org>
parents:
88542
diff
changeset
|
501 (setq charsets (cdr charsets))))))))))) |
17052 | 502 |
503 ;;;###autoload | |
504 (defun describe-current-coding-system-briefly () | |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
505 "Display coding systems currently used in a brief format in echo area. |
17052 | 506 |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
507 The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\", |
17052 | 508 where mnemonics of the following coding systems come in this order |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
509 in place of `..': |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
510 `buffer-file-coding-system' (of the current buffer) |
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
511 eol-type of `buffer-file-coding-system' (of the current buffer) |
22306 | 512 Value returned by `keyboard-coding-system' |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
513 eol-type of `keyboard-coding-system' |
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
514 Value returned by `terminal-coding-system'. |
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
515 eol-type of `terminal-coding-system' |
22306 | 516 `process-coding-system' for read (of the current buffer, if any) |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
517 eol-type of `process-coding-system' for read (of the current buffer, if any) |
22306 | 518 `process-coding-system' for write (of the current buffer, if any) |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
519 eol-type of `process-coding-system' for write (of the current buffer, if any) |
22306 | 520 `default-buffer-file-coding-system' |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
521 eol-type of `default-buffer-file-coding-system' |
22306 | 522 `default-process-coding-system' for read |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
523 eol-type of `default-process-coding-system' for read |
22306 | 524 `default-process-coding-system' for write |
30765
1e5a486b8b25
punctuation fixes in doc strings
Sam Steingold <sds@gnu.org>
parents:
30126
diff
changeset
|
525 eol-type of `default-process-coding-system'" |
17052 | 526 (interactive) |
527 (let* ((proc (get-buffer-process (current-buffer))) | |
528 (process-coding-systems (if proc (process-coding-system proc)))) | |
529 (message | |
24865
a4b8bb7bed21
(describe-current-coding-system-briefly): Fix format string.
Kenichi Handa <handa@m17n.org>
parents:
24724
diff
changeset
|
530 "F[%c%s],K[%c%s],T[%c%s],P>[%c%s],P<[%c%s], default F[%c%s],P>[%c%s],P<[%c%s]" |
17052 | 531 (coding-system-mnemonic buffer-file-coding-system) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
532 (coding-system-eol-type-mnemonic buffer-file-coding-system) |
17052 | 533 (coding-system-mnemonic (keyboard-coding-system)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
534 (coding-system-eol-type-mnemonic (keyboard-coding-system)) |
17052 | 535 (coding-system-mnemonic (terminal-coding-system)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
536 (coding-system-eol-type-mnemonic (terminal-coding-system)) |
17052 | 537 (coding-system-mnemonic (car process-coding-systems)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
538 (coding-system-eol-type-mnemonic (car process-coding-systems)) |
17052 | 539 (coding-system-mnemonic (cdr process-coding-systems)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
540 (coding-system-eol-type-mnemonic (cdr process-coding-systems)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
541 (coding-system-mnemonic default-buffer-file-coding-system) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
542 (coding-system-eol-type-mnemonic default-buffer-file-coding-system) |
17052 | 543 (coding-system-mnemonic (car default-process-coding-system)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
544 (coding-system-eol-type-mnemonic (car default-process-coding-system)) |
17052 | 545 (coding-system-mnemonic (cdr default-process-coding-system)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
546 (coding-system-eol-type-mnemonic (cdr default-process-coding-system)) |
17052 | 547 ))) |
548 | |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
549 (defun print-coding-system-briefly (coding-system &optional doc-string) |
89483 | 550 "Print symbol name and mnemonic letter of CODING-SYSTEM with `princ'. |
551 If DOC-STRING is non-nil, print also the docstring of CODING-SYSTEM. | |
552 If DOC-STRING is `tightly', don't print an empty line before the | |
553 docstring, and print only the first line of the docstring." | |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
554 (if (not coding-system) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
555 (princ "nil\n") |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
556 (princ (format "%c -- %s" |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
557 (coding-system-mnemonic coding-system) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
558 coding-system)) |
88655
ea446bb886ad
(print-coding-system-briefly): Fix
Dave Love <fx@gnu.org>
parents:
88648
diff
changeset
|
559 (let ((aliases (coding-system-aliases coding-system))) |
46490
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
560 (cond ((eq coding-system (car aliases)) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
561 (if (cdr aliases) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
562 (princ (format " %S" (cons 'alias: (cdr aliases)))))) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
563 ((memq coding-system aliases) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
564 (princ (format " (alias of %s)" (car aliases)))) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
565 (t |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
566 (let ((eol-type (coding-system-eol-type coding-system)) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
567 (base-eol-type (coding-system-eol-type (car aliases)))) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
568 (if (and (integerp eol-type) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
569 (vectorp base-eol-type) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
570 (not (eq coding-system (aref base-eol-type eol-type)))) |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
571 (princ (format " (alias of %s)" |
e541dfaa4964
(print-coding-system-briefly): Fix the handling of an alias of which
Kenichi Handa <handa@m17n.org>
parents:
45909
diff
changeset
|
572 (aref base-eol-type eol-type)))))))) |
50496
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
573 (princ "\n") |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
574 (or (eq doc-string 'tightly) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
575 (princ "\n")) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
576 (if doc-string |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
577 (let ((doc (or (coding-system-doc-string coding-system) ""))) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
578 (when (eq doc-string 'tightly) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
579 (if (string-match "\n" doc) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
580 (setq doc (substring doc 0 (match-beginning 0)))) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
581 (setq doc (concat " " doc))) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
582 (princ (format "%s\n" doc)))))) |
17052 | 583 |
584 ;;;###autoload | |
585 (defun describe-current-coding-system () | |
22306 | 586 "Display coding systems currently used, in detail." |
17052 | 587 (interactive) |
588 (with-output-to-temp-buffer "*Help*" | |
589 (let* ((proc (get-buffer-process (current-buffer))) | |
590 (process-coding-systems (if proc (process-coding-system proc)))) | |
19081
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
591 (princ "Coding system for saving this buffer:\n ") |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
592 (if (local-variable-p 'buffer-file-coding-system) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
593 (print-coding-system-briefly buffer-file-coding-system) |
19081
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
594 (princ "Not set locally, use the default.\n")) |
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
595 (princ "Default coding system (for new files):\n ") |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
596 (print-coding-system-briefly default-buffer-file-coding-system) |
19081
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
597 (princ "Coding system for keyboard input:\n ") |
17052 | 598 (print-coding-system-briefly (keyboard-coding-system)) |
19081
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
599 (princ "Coding system for terminal output:\n ") |
17052 | 600 (print-coding-system-briefly (terminal-coding-system)) |
88705 | 601 (princ "Coding system for inter-client cut and paste:\n ") |
602 (print-coding-system-briefly selection-coding-system) | |
19081
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
603 (when (get-buffer-process (current-buffer)) |
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
604 (princ "Coding systems for process I/O:\n") |
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
605 (princ " encoding input to the process: ") |
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
606 (print-coding-system-briefly (cdr process-coding-systems)) |
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
607 (princ " decoding output from the process: ") |
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
608 (print-coding-system-briefly (car process-coding-systems))) |
19657
940d50684d68
(describe-current-coding-system): Add missing newline in output.
Richard M. Stallman <rms@gnu.org>
parents:
19557
diff
changeset
|
609 (princ "Defaults for subprocess I/O:\n") |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
610 (princ " decoding: ") |
17052 | 611 (print-coding-system-briefly (car default-process-coding-system)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
612 (princ " encoding: ") |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
613 (print-coding-system-briefly (cdr default-process-coding-system))) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
614 |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
615 (with-current-buffer standard-output |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
616 |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
617 (princ " |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
618 Priority order for recognizing coding systems when reading files:\n") |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
619 (let ((i 1)) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
620 (dolist (elt (coding-system-priority-list)) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
621 (princ (format " %d. %s " i elt)) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
622 (let ((aliases (coding-system-aliases elt))) |
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
623 (if (eq elt (car aliases)) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
624 (if (cdr aliases) |
88648
dd88ab5e7207
(describe-current-coding-system): Fix
Dave Love <fx@gnu.org>
parents:
88637
diff
changeset
|
625 (princ (cons 'alias: (cdr aliases)))) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
626 (princ (list 'alias 'of (car aliases)))) |
19265
6b31dac7f72b
(print-fontset): Don't hang even if a
Kenichi Handa <handa@m17n.org>
parents:
19081
diff
changeset
|
627 (terpri) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
628 (setq i (1+ i))))) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
629 |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
630 (princ "\n Other coding systems cannot be distinguished automatically |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
631 from these, and therefore cannot be recognized automatically |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
632 with the present coding system priorities.\n\n") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
633 |
88655
ea446bb886ad
(print-coding-system-briefly): Fix
Dave Love <fx@gnu.org>
parents:
88648
diff
changeset
|
634 ;; Fixme: should this be replaced or junked? |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
635 (if nil |
18799
6c0d648d2cf8
(describe-current-coding-system): Use coding-category-iso-7-else
Kenichi Handa <handa@m17n.org>
parents:
18696
diff
changeset
|
636 (let ((categories '(coding-category-iso-7 coding-category-iso-7-else)) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
637 coding-system codings) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
638 (while categories |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
639 (setq coding-system (symbol-value (car categories))) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
640 (mapcar |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
641 (lambda (x) |
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
642 (if (and (not (eq x coding-system)) |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
643 (let ((flags (coding-system-get :flags))) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
644 (not (or (memq 'use-roman flags) |
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
645 (memq 'use-oldjis flags))))) |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
646 (setq codings (cons x codings)))) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
647 (get (car categories) 'coding-systems)) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
648 (if codings |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
649 (let ((max-col (frame-width)) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
650 pos) |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
651 (princ (format "\ |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
652 The following are decoded correctly but recognized as %s:\n " |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
653 coding-system)) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
654 (while codings |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
655 (setq pos (point)) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
656 (insert (format " %s" (car codings))) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
657 (when (> (current-column) max-col) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
658 (goto-char pos) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
659 (insert "\n ") |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
660 (goto-char (point-max))) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
661 (setq codings (cdr codings))) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
662 (insert "\n\n"))) |
88412
524f9b5b2ac5
(print-designation): Arguments changed.
Kenichi Handa <handa@m17n.org>
parents:
43292
diff
changeset
|
663 (setq categories (cdr categories))))) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
664 |
19081
f33df9d64fe8
(describe-current-coding-system): Clean up output format.
Richard M. Stallman <rms@gnu.org>
parents:
18799
diff
changeset
|
665 (princ "Particular coding systems specified for certain file names:\n") |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
666 (terpri) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
667 (princ " OPERATION\tTARGET PATTERN\t\tCODING SYSTEM(s)\n") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
668 (princ " ---------\t--------------\t\t----------------\n") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
669 (let ((func (lambda (operation alist) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
670 (princ " ") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
671 (princ operation) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
672 (if (not alist) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
673 (princ "\tnothing specified\n") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
674 (while alist |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
675 (indent-to 16) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
676 (prin1 (car (car alist))) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
677 (if (>= (current-column) 40) |
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
678 (newline)) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
679 (indent-to 40) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
680 (princ (cdr (car alist))) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
681 (princ "\n") |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
682 (setq alist (cdr alist))))))) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
683 (funcall func "File I/O" file-coding-system-alist) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
684 (funcall func "Process I/O" process-coding-system-alist) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
685 (funcall func "Network I/O" network-coding-system-alist)) |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
686 (help-mode)))) |
17052 | 687 |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
688 (defun print-coding-system (coding-system) |
88534 | 689 "Print detailed information on CODING-SYSTEM." |
17052 | 690 (let ((type (coding-system-type coding-system)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
691 (eol-type (coding-system-eol-type coding-system)) |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
692 (flags (coding-system-get coding-system :flags)) |
88655
ea446bb886ad
(print-coding-system-briefly): Fix
Dave Love <fx@gnu.org>
parents:
88648
diff
changeset
|
693 (aliases (coding-system-aliases coding-system))) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
694 (if (not (eq (car aliases) coding-system)) |
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
695 (princ (format "%s (alias of %s)\n" coding-system (car aliases))) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
696 (princ coding-system) |
20114
cbf191888430
(describe-coding-system): Print
Kenichi Handa <handa@m17n.org>
parents:
20092
diff
changeset
|
697 (setq aliases (cdr aliases)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
698 (while aliases |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
699 (princ ",") |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
700 (princ (car aliases)) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
701 (setq aliases (cdr aliases))) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
702 (princ (format ":%s:%c:%d:" |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
703 type |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
704 (coding-system-mnemonic coding-system) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
705 (if (integerp eol-type) eol-type 3))) |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
706 (cond ((eq type 'iso2022) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
707 (let ((idx 0) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
708 charset) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
709 (while (< idx 4) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
710 (setq charset (aref flags idx)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
711 (cond ((null charset) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
712 (princ -1)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
713 ((eq charset t) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
714 (princ -2)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
715 ((charsetp charset) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
716 (princ charset)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
717 ((listp charset) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
718 (princ "(") |
17052 | 719 (princ (car charset)) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
720 (setq charset (cdr charset)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
721 (while charset |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
722 (princ ",") |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
723 (princ (car charset)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
724 (setq charset (cdr charset))) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
725 (princ ")"))) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
726 (princ ",") |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
727 (setq idx (1+ idx))) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
728 (while (< idx 12) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
729 (princ (if (aref flags idx) 1 0)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
730 (princ ",") |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
731 (setq idx (1+ idx))) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
732 (princ (if (aref flags idx) 1 0)))) |
88637
10c911c19787
(print-coding-system): (Incomplete)
Dave Love <fx@gnu.org>
parents:
88566
diff
changeset
|
733 ((eq type 'ccl) |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
734 (let (i len) |
21967 | 735 (if (symbolp (car flags)) |
736 (princ (format " %s" (car flags))) | |
737 (setq i 0 len (length (car flags))) | |
738 (while (< i len) | |
739 (princ (format " %x" (aref (car flags) i))) | |
740 (setq i (1+ i)))) | |
17052 | 741 (princ ",") |
21967 | 742 (if (symbolp (cdr flags)) |
743 (princ (format "%s" (cdr flags))) | |
744 (setq i 0 len (length (cdr flags))) | |
745 (while (< i len) | |
746 (princ (format " %x" (aref (cdr flags) i))) | |
747 (setq i (1+ i)))))) | |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
748 (t (princ 0))) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
749 (princ ":") |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
750 (princ (coding-system-doc-string coding-system)) |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
751 (princ "\n")))) |
17052 | 752 |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
753 ;;;###autoload |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
754 (defun list-coding-systems (&optional arg) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
755 "Display a list of all coding systems. |
22306 | 756 This shows the mnemonic letter, name, and description of each coding system. |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
757 |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
758 With prefix arg, the output format gets more cryptic, |
22306 | 759 but still contains full information about each coding system." |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
760 (interactive "P") |
17052 | 761 (with-output-to-temp-buffer "*Help*" |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
762 (list-coding-systems-1 arg))) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
763 |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
764 (defun list-coding-systems-1 (arg) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
765 (if (null arg) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
766 (princ "\ |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
767 ############################################### |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
768 # List of coding systems in the following format: |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
769 # MNEMONIC-LETTER -- CODING-SYSTEM-NAME |
50496
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
770 # DOC-STRING |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
771 ") |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
772 (princ "\ |
17052 | 773 ######################### |
774 ## LIST OF CODING SYSTEMS | |
775 ## Each line corresponds to one coding system | |
776 ## Format of a line is: | |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
777 ## NAME[,ALIAS...]:TYPE:MNEMONIC:EOL:FLAGS:POST-READ-CONVERSION |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
778 ## :PRE-WRITE-CONVERSION:DOC-STRING, |
17052 | 779 ## where |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
780 ## NAME = coding system name |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
781 ## ALIAS = alias of the coding system |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
782 ## TYPE = nil (no conversion), t (undecided or automatic detection), |
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
783 ## 0 (EMACS-MULE), 1 (SJIS), 2 (ISO2022), 3 (BIG5), or 4 (CCL) |
17052 | 784 ## EOL = 0 (LF), 1 (CRLF), 2 (CR), or 3 (Automatic detection) |
785 ## FLAGS = | |
786 ## if TYPE = 2 then | |
787 ## comma (`,') separated data of the followings: | |
788 ## G0, G1, G2, G3, SHORT-FORM, ASCII-EOL, ASCII-CNTL, SEVEN, | |
789 ## LOCKING-SHIFT, SINGLE-SHIFT, USE-ROMAN, USE-OLDJIS, NO-ISO6429 | |
790 ## else if TYPE = 4 then | |
791 ## comma (`,') separated CCL programs for read and write | |
792 ## else | |
793 ## 0 | |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
794 ## POST-READ-CONVERSION, PRE-WRITE-CONVERSION = function name to be called |
17052 | 795 ## |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
796 ")) |
50496
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
797 (dolist (coding-system (sort-coding-systems (coding-system-list 'base-only))) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
798 (if (null arg) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
799 (print-coding-system-briefly coding-system 'tightly) |
ad2c77c56a81
(print-coding-system-briefly): If
Kenichi Handa <handa@m17n.org>
parents:
49875
diff
changeset
|
800 (print-coding-system coding-system)))) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
801 |
88655
ea446bb886ad
(print-coding-system-briefly): Fix
Dave Love <fx@gnu.org>
parents:
88648
diff
changeset
|
802 ;; Fixme: delete? |
26688
1830bc1903fb
(list-coding-categories): Fix typo;
Gerd Moellmann <gerd@gnu.org>
parents:
26189
diff
changeset
|
803 ;;;###autoload |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
804 (defun list-coding-categories () |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
805 "Display a list of all coding categories." |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
806 (with-output-to-temp-buffer "*Help*" |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
807 (princ "\ |
17052 | 808 ############################ |
809 ## LIST OF CODING CATEGORIES (ordered by priority) | |
810 ## CATEGORY:CODING-SYSTEM | |
811 ## | |
812 ") | |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
813 (let ((l coding-category-list)) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
814 (while l |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
815 (princ (format "%s:%s\n" (car l) (symbol-value (car l)))) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
816 (setq l (cdr l)))))) |
17052 | 817 |
818 ;;; FONT | |
819 | |
820 (defun describe-font-internal (font-info &optional verbose) | |
88534 | 821 "Print information about a font in FONT-INFO." |
17052 | 822 (print-list "name (opened by):" (aref font-info 0)) |
823 (print-list " full name:" (aref font-info 1)) | |
28899
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
824 (print-list " size:" (format "%2d" (aref font-info 2))) |
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
825 (print-list " height:" (format "%2d" (aref font-info 3))) |
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
826 (print-list " baseline-offset:" (format "%2d" (aref font-info 4))) |
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
827 (print-list "relative-compose:" (format "%2d" (aref font-info 5)))) |
17052 | 828 |
829 ;;;###autoload | |
830 (defun describe-font (fontname) | |
831 "Display information about fonts which partially match FONTNAME." | |
20092 | 832 (interactive "sFontname (default, current choice for ASCII chars): ") |
28216
cad26a9da36b
(describe-font): Don't refer to
Kenichi Handa <handa@m17n.org>
parents:
27973
diff
changeset
|
833 (or (and window-system (fboundp 'fontset-list)) |
21469
ea652c41eec6
(list-input-methods): Fix doc string.
Karl Heuer <kwzh@gnu.org>
parents:
20731
diff
changeset
|
834 (error "No fontsets being used")) |
18696
1caf720e4f55
(print-fontset): Output format improved.
Kenichi Handa <handa@m17n.org>
parents:
18643
diff
changeset
|
835 (when (or (not fontname) (= (length fontname) 0)) |
1caf720e4f55
(print-fontset): Output format improved.
Kenichi Handa <handa@m17n.org>
parents:
18643
diff
changeset
|
836 (setq fontname (cdr (assq 'font (frame-parameters)))) |
1caf720e4f55
(print-fontset): Output format improved.
Kenichi Handa <handa@m17n.org>
parents:
18643
diff
changeset
|
837 (if (query-fontset fontname) |
1caf720e4f55
(print-fontset): Output format improved.
Kenichi Handa <handa@m17n.org>
parents:
18643
diff
changeset
|
838 (setq fontname |
30126
f5fd9fcdaeb2
(describe-font): Adjusted for the chnage of fontset-info.
Kenichi Handa <handa@m17n.org>
parents:
29454
diff
changeset
|
839 (nth 1 (assq 'ascii (aref (fontset-info fontname) 2)))))) |
17052 | 840 (let ((font-info (font-info fontname))) |
841 (if (null font-info) | |
842 (message "No matching font") | |
843 (with-output-to-temp-buffer "*Help*" | |
844 (describe-font-internal font-info 'verbose))))) | |
845 | |
89355
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
846 (defun print-fontset-element (val) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
847 ;; VAL has this format: |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
848 ;; ((REQUESTED-FONT-NAME OPENED-FONT-NAME ...) ...) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
849 ;; CHAR RANGE is already inserted. Get character codes from |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
850 ;; the current line. |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
851 (beginning-of-line) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
852 (let ((from (following-char)) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
853 (to (if (looking-at "[^.]*[.]* ") |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
854 (char-after (match-end 0))))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
855 (if (re-search-forward "[ \t]*$" nil t) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
856 (delete-region (match-beginning 0) (match-end 0))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
857 |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
858 ;; For non-ASCII characters, insert also CODE RANGE. |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
859 (if (or (>= from 128) (and to (>= to 128))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
860 (if to |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
861 (insert (format " (#x%02X .. #x%02X)" from to)) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
862 (insert (format " (#x%02X)" from)))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
863 |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
864 ;; Insert a requested font name. |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
865 (dolist (elt val) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
866 (let ((requested (car elt))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
867 (if (stringp requested) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
868 (insert "\n " requested) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
869 (let ((family (aref requested 0)) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
870 (registry (aref requested 5))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
871 (if (not family) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
872 (setq family "*-*") |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
873 (or (string-match "-" family) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
874 (setq family (concat "*-" family)))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
875 (or (string-match "-" registry) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
876 (= (aref registry (1- (length registry))) ?*) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
877 (setq registry (concat registry "*"))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
878 (insert "\n -" family |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
879 ?- (or (aref requested 1) ?*) ; weight |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
880 ?- (or (aref requested 2) ?*) ; slant |
89713
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
881 ?- (or (aref requested 3) ?*) ; width |
dd442ee53657
(stretches-for-character-list): Delete it.
Kenichi Handa <handa@m17n.org>
parents:
89498
diff
changeset
|
882 ?- (or (aref requested 4) ?*) ; adstyle |
89355
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
883 "-*-*-*-*-*-*-" registry)))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
884 |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
885 ;; Insert opened font names (if any). |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
886 (if (and (boundp 'print-opened) (symbol-value 'print-opened)) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
887 (dolist (opened (cdr elt)) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
888 (insert "\n\t[" opened "]")))))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
889 |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
890 (defun print-fontset (fontset &optional print-opened) |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
891 "Print information about FONTSET. |
49875
40b0b48205b3
(print-fontset): If FONTSET is nil,
Kenichi Handa <handa@m17n.org>
parents:
49049
diff
changeset
|
892 If FONTSET is nil, print information about the default fontset. |
89355
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
893 If optional arg PRINT-OPENED is non-nil, also print names of all opened |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
894 fonts for FONTSET. This function actually inserts the information in |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
895 the current buffer." |
49875
40b0b48205b3
(print-fontset): If FONTSET is nil,
Kenichi Handa <handa@m17n.org>
parents:
49049
diff
changeset
|
896 (or fontset |
40b0b48205b3
(print-fontset): If FONTSET is nil,
Kenichi Handa <handa@m17n.org>
parents:
49049
diff
changeset
|
897 (setq fontset (query-fontset "fontset-default"))) |
88895
ab54ec5d2b3c
(print-fontset): Use describe-vector
Kenichi Handa <handa@m17n.org>
parents:
88818
diff
changeset
|
898 (beginning-of-line) |
ab54ec5d2b3c
(print-fontset): Use describe-vector
Kenichi Handa <handa@m17n.org>
parents:
88818
diff
changeset
|
899 (insert "Fontset: " fontset "\n") |
89355
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
900 (insert (propertize "CHAR RANGE" 'face 'underline) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
901 " (" (propertize "CODE RANGE" 'face 'underline) ")\n") |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
902 (insert " " (propertize "FONT NAME" 'face 'underline) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
903 " (" (propertize "REQUESTED" 'face 'underline) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
904 " and [" (propertize "OPENED" 'face 'underline) "])") |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
905 (let ((info (fontset-info fontset))) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
906 (describe-vector info 'print-fontset-element) |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
907 (insert "\n ---<fallback to the default fontset>---") |
6f8fa82cac02
(print-fontset-element): New
Kenichi Handa <handa@m17n.org>
parents:
89346
diff
changeset
|
908 (describe-vector (char-table-extra-slot info 0) 'print-fontset-element))) |
17052 | 909 |
910 ;;;###autoload | |
911 (defun describe-fontset (fontset) | |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
912 "Display information about FONTSET. |
28899
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
913 This shows which font is used for which character(s)." |
17052 | 914 (interactive |
28216
cad26a9da36b
(describe-font): Don't refer to
Kenichi Handa <handa@m17n.org>
parents:
27973
diff
changeset
|
915 (if (not (and window-system (fboundp 'fontset-list))) |
21469
ea652c41eec6
(list-input-methods): Fix doc string.
Karl Heuer <kwzh@gnu.org>
parents:
20731
diff
changeset
|
916 (error "No fontsets being used") |
35585 | 917 (let ((fontset-list (nconc |
45909
9f98a97f5469
(describe-fontset): Don't cons uselessly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45871
diff
changeset
|
918 (fontset-list) |
9f98a97f5469
(describe-fontset): Don't cons uselessly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45871
diff
changeset
|
919 (mapcar 'cdr fontset-alias-alist))) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
920 (completion-ignore-case t)) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
921 (list (completing-read |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
922 "Fontset (default, used by the current frame): " |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
923 fontset-list nil t))))) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
924 (if (= (length fontset) 0) |
49875
40b0b48205b3
(print-fontset): If FONTSET is nil,
Kenichi Handa <handa@m17n.org>
parents:
49049
diff
changeset
|
925 (setq fontset (frame-parameter nil 'font))) |
40b0b48205b3
(print-fontset): If FONTSET is nil,
Kenichi Handa <handa@m17n.org>
parents:
49049
diff
changeset
|
926 (setq fontset (query-fontset fontset)) |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
927 (help-setup-xref (list #'describe-fontset fontset) (interactive-p)) |
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
928 (with-output-to-temp-buffer (help-buffer) |
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
929 (with-current-buffer standard-output |
28899
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
930 (print-fontset fontset t)))) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
931 |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
932 ;;;###autoload |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
933 (defun list-fontsets (arg) |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
934 "Display a list of all fontsets. |
22306 | 935 This shows the name, size, and style of each fontset. |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
936 With prefix arg, also list the fonts contained in each fontset; |
22306 | 937 see the function `describe-fontset' for the format of the list." |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
938 (interactive "P") |
28216
cad26a9da36b
(describe-font): Don't refer to
Kenichi Handa <handa@m17n.org>
parents:
27973
diff
changeset
|
939 (if (not (and window-system (fboundp 'fontset-list))) |
21469
ea652c41eec6
(list-input-methods): Fix doc string.
Karl Heuer <kwzh@gnu.org>
parents:
20731
diff
changeset
|
940 (error "No fontsets being used") |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
941 (help-setup-xref (list #'list-fontsets arg) (interactive-p)) |
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
942 (with-output-to-temp-buffer (help-buffer) |
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
943 (with-current-buffer standard-output |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
944 ;; This code is duplicated near the end of mule-diag. |
24161
782215de9b98
(list-fontsets): Sort fontsets by plain names.
Kenichi Handa <handa@m17n.org>
parents:
23582
diff
changeset
|
945 (let ((fontsets |
782215de9b98
(list-fontsets): Sort fontsets by plain names.
Kenichi Handa <handa@m17n.org>
parents:
23582
diff
changeset
|
946 (sort (fontset-list) |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
947 (lambda (x y) |
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
948 (string< (fontset-plain-name x) |
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
949 (fontset-plain-name y)))))) |
21469
ea652c41eec6
(list-input-methods): Fix doc string.
Karl Heuer <kwzh@gnu.org>
parents:
20731
diff
changeset
|
950 (while fontsets |
28899
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
951 (if arg |
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
952 (print-fontset (car fontsets) nil) |
133a92b8094d
(syntax-description-table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
28216
diff
changeset
|
953 (insert "Fontset: " (car fontsets) "\n")) |
21469
ea652c41eec6
(list-input-methods): Fix doc string.
Karl Heuer <kwzh@gnu.org>
parents:
20731
diff
changeset
|
954 (setq fontsets (cdr fontsets)))))))) |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
955 |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
956 ;;;###autoload |
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
957 (defun list-input-methods () |
22306 | 958 "Display information about all input methods." |
18300
0436624abece
(list-character-sets): Set major mode of *Help*
Kenichi Handa <handa@m17n.org>
parents:
18199
diff
changeset
|
959 (interactive) |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
960 (help-setup-xref '(list-input-methods) (interactive-p)) |
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
961 (with-output-to-temp-buffer (help-buffer) |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
962 (list-input-methods-1) |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
963 (with-current-buffer standard-output |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
964 (save-excursion |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
965 (goto-char (point-min)) |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
966 (while (re-search-forward |
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
967 "^ \\([^ ]+\\) (`.*' in mode line)$" nil t) |
43292 | 968 (help-xref-button 1 #'help-input-method |
43231
06e0fbd07e17
Various doc and message fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
42362
diff
changeset
|
969 (match-string 1) |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
970 "mouse-2: describe this method")))))) |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
971 |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
972 (defun list-input-methods-1 () |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
973 (if (not input-method-alist) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
974 (progn |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
975 (princ " |
44746
8f2bf8b392fe
(list-input-methods-1): Doc fix
Pavel Janík <Pavel@Janik.cz>
parents:
43977
diff
changeset
|
976 No input method is available, perhaps because you have not |
8f2bf8b392fe
(list-input-methods-1): Doc fix
Pavel Janík <Pavel@Janik.cz>
parents:
43977
diff
changeset
|
977 installed LEIM (Libraries of Emacs Input Methods).")) |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
978 (princ "LANGUAGE\n NAME (`TITLE' in mode line)\n") |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
979 (princ " SHORT-DESCRIPTION\n------------------------------\n") |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
980 (setq input-method-alist |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
981 (sort input-method-alist |
47548
698b4a4bb562
(describe-coding-system): Remove unused `coding-spec' variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46490
diff
changeset
|
982 (lambda (x y) (string< (nth 1 x) (nth 1 y))))) |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
983 (let ((l input-method-alist) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
984 language elt) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
985 (while l |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
986 (setq elt (car l) l (cdr l)) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
987 (when (not (equal language (nth 1 elt))) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
988 (setq language (nth 1 elt)) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
989 (princ language) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
990 (terpri)) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
991 (princ (format " %s (`%s' in mode line)\n %s\n" |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
992 (car elt) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
993 (let ((title (nth 3 elt))) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
994 (if (and (consp title) (stringp (car title))) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
995 (car title) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
996 title)) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
997 (let ((description (nth 4 elt))) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
998 (string-match ".*" description) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
999 (match-string 0 description)))))))) |
17052 | 1000 |
1001 ;;; DIAGNOSIS | |
1002 | |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1003 ;; Insert a header of a section with SECTION-NUMBER and TITLE. |
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1004 (defun insert-section (section-number title) |
17052 | 1005 (insert "########################################\n" |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1006 "# Section " (format "%d" section-number) ". " title "\n" |
17052 | 1007 "########################################\n\n")) |
1008 | |
1009 ;;;###autoload | |
1010 (defun mule-diag () | |
24724
df2a95fa1429
(mule-diag): Change MULE to Mule in docstring.
Kenichi Handa <handa@m17n.org>
parents:
24691
diff
changeset
|
1011 "Display diagnosis of the multilingual environment (Mule). |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1012 |
22306 | 1013 This shows various information related to the current multilingual |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1014 environment, including lists of input methods, coding systems, |
22306 | 1015 character sets, and fontsets (if Emacs is running under a window |
21469
ea652c41eec6
(list-input-methods): Fix doc string.
Karl Heuer <kwzh@gnu.org>
parents:
20731
diff
changeset
|
1016 system which uses fontsets)." |
17052 | 1017 (interactive) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1018 (with-output-to-temp-buffer "*Mule-Diagnosis*" |
40664
4e5f8e42b8d1
(list-character-sets, sort-listed-character-sets, describe-character-set)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40639
diff
changeset
|
1019 (with-current-buffer standard-output |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1020 (insert "###############################################\n" |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1021 "### Current Status of Multilingual Features ###\n" |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1022 "###############################################\n\n" |
17052 | 1023 "CONTENTS: Section 1. General Information\n" |
1024 " Section 2. Display\n" | |
1025 " Section 3. Input methods\n" | |
1026 " Section 4. Coding systems\n" | |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1027 " Section 5. Character sets\n") |
28216
cad26a9da36b
(describe-font): Don't refer to
Kenichi Handa <handa@m17n.org>
parents:
27973
diff
changeset
|
1028 (if (and window-system (fboundp 'fontset-list)) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1029 (insert " Section 6. Fontsets\n")) |
17052 | 1030 (insert "\n") |
1031 | |
1032 (insert-section 1 "General Information") | |
19425
572165bfff3e
(mule-diag): Don't print primary-language.
Richard M. Stallman <rms@gnu.org>
parents:
19265
diff
changeset
|
1033 (insert "Version of this emacs:\n " (emacs-version) "\n\n") |
34631
aeb6db8df2b9
(mule-diag): Insert information about
Kenichi Handa <handa@m17n.org>
parents:
34078
diff
changeset
|
1034 (insert "Configuration options:\n " system-configuration-options "\n\n") |
aeb6db8df2b9
(mule-diag): Insert information about
Kenichi Handa <handa@m17n.org>
parents:
34078
diff
changeset
|
1035 (insert "Multibyte characters awareness:\n" |
aeb6db8df2b9
(mule-diag): Insert information about
Kenichi Handa <handa@m17n.org>
parents:
34078
diff
changeset
|
1036 (format " default: %S\n" default-enable-multibyte-characters) |
aeb6db8df2b9
(mule-diag): Insert information about
Kenichi Handa <handa@m17n.org>
parents:
34078
diff
changeset
|
1037 (format " current-buffer: %S\n\n" enable-multibyte-characters)) |
aeb6db8df2b9
(mule-diag): Insert information about
Kenichi Handa <handa@m17n.org>
parents:
34078
diff
changeset
|
1038 (insert "Current language environment: " current-language-environment |
aeb6db8df2b9
(mule-diag): Insert information about
Kenichi Handa <handa@m17n.org>
parents:
34078
diff
changeset
|
1039 "\n\n") |
17052 | 1040 |
1041 (insert-section 2 "Display") | |
1042 (if window-system | |
1043 (insert "Window-system: " | |
1044 (symbol-name window-system) | |
1045 (format "%s" window-system-version)) | |
1046 (insert "Terminal: " (getenv "TERM"))) | |
1047 (insert "\n\n") | |
1048 | |
1049 (if (eq window-system 'x) | |
1050 (let ((font (cdr (assq 'font (frame-parameters))))) | |
1051 (insert "The selected frame is using the " | |
1052 (if (query-fontset font) "fontset" "font") | |
1053 ":\n\t" font)) | |
1054 (insert "Coding system of the terminal: " | |
1055 (symbol-name (terminal-coding-system)))) | |
1056 (insert "\n\n") | |
1057 | |
1058 (insert-section 3 "Input methods") | |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1059 (list-input-methods-1) |
17052 | 1060 (insert "\n") |
1061 (if default-input-method | |
26189
88faf40281cd
(mule-diag): Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
24865
diff
changeset
|
1062 (insert (format "Default input method: %s\n" default-input-method)) |
19657
940d50684d68
(describe-current-coding-system): Add missing newline in output.
Richard M. Stallman <rms@gnu.org>
parents:
19557
diff
changeset
|
1063 (insert "No default input method is specified\n")) |
17052 | 1064 |
1065 (insert-section 4 "Coding systems") | |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1066 (list-coding-systems-1 t) |
17052 | 1067 (insert "\n") |
1068 | |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1069 (insert-section 5 "Character sets") |
27912
ed26ed5b0afc
(list-character-sets): Completely
Kenichi Handa <handa@m17n.org>
parents:
26688
diff
changeset
|
1070 (list-character-sets-2) |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1071 (insert "\n") |
17052 | 1072 |
28216
cad26a9da36b
(describe-font): Don't refer to
Kenichi Handa <handa@m17n.org>
parents:
27973
diff
changeset
|
1073 (when (and window-system (fboundp 'fontset-list)) |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1074 ;; This code duplicates most of list-fontsets. |
18559
20369fbd0f91
(print-list): Use macro when.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1075 (insert-section 6 "Fontsets") |
22339
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1076 (insert "Fontset-Name\t\t\t\t\t\t WDxHT Style\n") |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1077 (insert "------------\t\t\t\t\t\t ----- -----\n") |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1078 (let ((fontsets (fontset-list))) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1079 (while fontsets |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1080 (print-fontset (car fontsets) t) |
69de59462e22
(list-character-sets-1): New subroutine.
Karl Heuer <kwzh@gnu.org>
parents:
22306
diff
changeset
|
1081 (setq fontsets (cdr fontsets))))) |
22290
31291d62195e
(mule-diag): Don't call help-mode.
Karl Heuer <kwzh@gnu.org>
parents:
21979
diff
changeset
|
1082 (print-help-return-message)))) |
17052 | 1083 |
89483 | 1084 ;;;###autoload |
88818
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1085 (defcustom unicodedata-file nil |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1086 "Location of UnicodeData file. |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1087 This is the UnicodeData.txt file from the Unicode consortium, used for |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1088 diagnostics. If it is non-nil `describe-char-after' will print data |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1089 looked up from it." |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1090 :group 'mule |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1091 :type '(choice (const :tag "None" nil) |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1092 file)) |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1093 |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1094 ;; We could convert the unidata file into a Lispy form once-for-all |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1095 ;; and distribute it for loading on demand. It might be made more |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1096 ;; space-efficient by splitting strings word-wise and replacing them |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1097 ;; with lists of symbols interned in a private obarray, e.g. |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1098 ;; "LATIN SMALL LETTER A" => '(LATIN SMALL LETTER A). |
89483 | 1099 |
1100 ;;;###autoload | |
88818
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1101 (defun unicode-data (char) |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1102 "Return a list of Unicode data for unicode CHAR. |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1103 Each element is a list of a property description and the property value. |
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1104 The list is null if CHAR isn't found in `unicodedata-file'." |
89147 | 1105 (when unicodedata-file |
1106 (unless (file-exists-p unicodedata-file) | |
1107 (error "`unicodedata-file' %s not found" unicodedata-file)) | |
1108 (save-excursion | |
89276
500483434aa3
(unicode-data): Find unicodedata-file
Dave Love <fx@gnu.org>
parents:
89147
diff
changeset
|
1109 (set-buffer (find-file-noselect unicodedata-file nil t)) |
89147 | 1110 (goto-char (point-min)) |
1111 (let ((hex (format "%04X" char)) | |
1112 found first last) | |
1113 (if (re-search-forward (concat "^" hex) nil t) | |
1114 (setq found t) | |
1115 ;; It's not listed explicitly. Look for ranges, e.g. CJK | |
1116 ;; ideographs, and check whether it's in one of them. | |
1117 (while (and (re-search-forward "^\\([^;]+\\);[^;]+First>;" nil t) | |
1118 (>= char (setq first | |
1119 (string-to-number (match-string 1) 16))) | |
1120 (progn | |
1121 (forward-line 1) | |
1122 (looking-at "^\\([^;]+\\);[^;]+Last>;") | |
1123 (> char | |
1124 (setq last | |
1125 (string-to-number (match-string 1) 16)))))) | |
1126 (if (and (>= char first) | |
1127 (<= char last)) | |
1128 (setq found t))) | |
1129 (if found | |
1130 (let ((fields (mapcar (lambda (elt) | |
1131 (if (> (length elt) 0) | |
1132 elt)) | |
1133 (cdr (split-string | |
1134 (buffer-substring | |
1135 (line-beginning-position) | |
1136 (line-end-position)) | |
1137 ";"))))) | |
1138 ;; The length depends on whether the last field was empty. | |
1139 (unless (or (= 13 (length fields)) | |
1140 (= 14 (length fields))) | |
1141 (error "Invalid contents in %s" unicodedata-file)) | |
1142 ;; The field names and values lists are slightly | |
1143 ;; modified from Mule-UCS unidata.el. | |
1144 (list | |
1145 (list "Name" (let ((name (nth 0 fields))) | |
1146 ;; Check for <..., First>, <..., Last> | |
1147 (if (string-match "\\`\\(<[^,]+\\)," name) | |
1148 (concat (match-string 1 name) ">") | |
1149 name))) | |
1150 (list "Category" | |
1151 (cdr (assoc | |
1152 (nth 1 fields) | |
1153 '(("Lu" . "uppercase letter") | |
1154 ("Ll" . "lowercase letter") | |
1155 ("Lt" . "titlecase letter") | |
1156 ("Mn" . "non-spacing mark") | |
1157 ("Mc" . "spacing-combining mark") | |
1158 ("Me" . "enclosing mark") | |
1159 ("Nd" . "decimal digit") | |
1160 ("Nl" . "letter number") | |
1161 ("No" . "other number") | |
1162 ("Zs" . "space separator") | |
1163 ("Zl" . "line separator") | |
1164 ("Zp" . "paragraph separator") | |
1165 ("Cc" . "other control") | |
1166 ("Cf" . "other format") | |
1167 ("Cs" . "surrogate") | |
1168 ("Co" . "private use") | |
1169 ("Cn" . "not assigned") | |
1170 ("Lm" . "modifier letter") | |
1171 ("Lo" . "other letter") | |
1172 ("Pc" . "connector punctuation") | |
1173 ("Pd" . "dash punctuation") | |
1174 ("Ps" . "open punctuation") | |
1175 ("Pe" . "close punctuation") | |
1176 ("Pi" . "initial-quotation punctuation") | |
1177 ("Pf" . "final-quotation punctuation") | |
1178 ("Po" . "other punctuation") | |
1179 ("Sm" . "math symbol") | |
1180 ("Sc" . "currency symbol") | |
1181 ("Sk" . "modifier symbol") | |
1182 ("So" . "other symbol"))))) | |
1183 (list "Combining class" | |
1184 (cdr (assoc | |
1185 (string-to-number (nth 2 fields)) | |
1186 '((0 . "Spacing") | |
1187 (1 . "Overlays and interior") | |
1188 (7 . "Nuktas") | |
1189 (8 . "Hiragana/Katakana voicing marks") | |
1190 (9 . "Viramas") | |
1191 (10 . "Start of fixed position classes") | |
1192 (199 . "End of fixed position classes") | |
1193 (200 . "Below left attached") | |
1194 (202 . "Below attached") | |
1195 (204 . "Below right attached") | |
1196 (208 . "Left attached (reordrant around \ | |
88818
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1197 single base character)") |
89147 | 1198 (210 . "Right attached") |
1199 (212 . "Above left attached") | |
1200 (214 . "Above attached") | |
1201 (216 . "Above right attached") | |
1202 (218 . "Below left") | |
1203 (220 . "Below") | |
1204 (222 . "Below right") | |
1205 (224 . "Left (reordrant around single base \ | |
88818
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1206 character)") |
89147 | 1207 (226 . "Right") |
1208 (228 . "Above left") | |
1209 (230 . "Above") | |
1210 (232 . "Above right") | |
1211 (233 . "Double below") | |
1212 (234 . "Double above") | |
1213 (240 . "Below (iota subscript)"))))) | |
1214 (list "Bidi category" | |
1215 (cdr (assoc | |
1216 (nth 3 fields) | |
1217 '(("L" . "Left-to-Right") | |
1218 ("LRE" . "Left-to-Right Embedding") | |
1219 ("LRO" . "Left-to-Right Override") | |
1220 ("R" . "Right-to-Left") | |
1221 ("AL" . "Right-to-Left Arabic") | |
1222 ("RLE" . "Right-to-Left Embedding") | |
1223 ("RLO" . "Right-to-Left Override") | |
1224 ("PDF" . "Pop Directional Format") | |
1225 ("EN" . "European Number") | |
1226 ("ES" . "European Number Separator") | |
1227 ("ET" . "European Number Terminator") | |
1228 ("AN" . "Arabic Number") | |
1229 ("CS" . "Common Number Separator") | |
1230 ("NSM" . "Non-Spacing Mark") | |
1231 ("BN" . "Boundary Neutral") | |
1232 ("B" . "Paragraph Separator") | |
1233 ("S" . "Segment Separator") | |
1234 ("WS" . "Whitespace") | |
1235 ("ON" . "Other Neutrals"))))) | |
1236 (list "Decomposition" | |
1237 (if (nth 4 fields) | |
1238 (let* ((parts (split-string (nth 4 fields))) | |
1239 (info (car parts))) | |
1240 (if (string-match "\\`<\\(.+\\)>\\'" info) | |
1241 (setq info (match-string 1 info)) | |
1242 (setq info nil)) | |
1243 (if info (setq parts (cdr parts))) | |
1244 (setq parts (mapconcat | |
1245 (lambda (arg) | |
1246 (string (string-to-number arg 16))) | |
1247 parts " ")) | |
1248 (concat info parts)))) | |
1249 (list "Decimal digit value" | |
89315 | 1250 (nth 5 fields)) |
89147 | 1251 (list "Digit value" |
89315 | 1252 (nth 6 fields)) |
89147 | 1253 (list "Numeric value" |
89315 | 1254 (nth 7 fields)) |
89147 | 1255 (list "Mirrored" |
1256 (if (equal "Y" (nth 8 fields)) | |
1257 "yes")) | |
1258 (list "Old name" (nth 9 fields)) | |
1259 (list "ISO 10646 comment" (nth 10 fields)) | |
1260 (list "Uppercase" (and (nth 11 fields) | |
1261 (string (string-to-number | |
1262 (nth 11 fields) 16)))) | |
1263 (list "Lowercase" (and (nth 12 fields) | |
1264 (string (string-to-number | |
1265 (nth 12 fields) 16)))) | |
1266 (list "Titlecase" (and (nth 13 fields) | |
1267 (string (string-to-number | |
1268 (nth 13 fields) 16))))))))))) | |
88818
9ae3a7ed0b93
(describe-char-after): Modify display
Dave Love <fx@gnu.org>
parents:
88705
diff
changeset
|
1269 |
48050 | 1270 (provide 'mule-diag) |
1271 | |
89412 | 1272 ;; Local Variables: |
1273 ;; coding: utf-8 | |
1274 ;; End: | |
18199
15177bdb2fcf
(describe-coding-system): Change format of output.
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
1275 ;;; mule-diag.el ends here |