(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / descr-text.el
blobce46b3f828d70d0c19c544452230380a5623f71e
1 ;;; descr-text.el --- describe text mode
3 ;; Copyright (c) 1994, 1995, 1996, 2001, 2002, 2003, 2004, 2005
4 ;; Free Software Foundation, Inc.
6 ;; Author: Boris Goldowsky <boris@gnu.org>
7 ;; Keywords: faces, i18n, Unicode, multilingual
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;;; Describe-Text Mode.
30 ;;; Code:
32 (eval-when-compile (require 'button) (require 'quail))
34 (defun describe-text-done ()
35 "Delete the current window or bury the current buffer."
36 (interactive)
37 (if (> (count-windows) 1)
38 (delete-window)
39 (bury-buffer)))
41 (defvar describe-text-mode-map
42 (let ((map (make-sparse-keymap)))
43 (set-keymap-parent map widget-keymap)
44 map)
45 "Keymap for `describe-text-mode'.")
47 (defcustom describe-text-mode-hook nil
48 "List of hook functions ran by `describe-text-mode'."
49 :type 'hook
50 :group 'facemenu)
52 (defun describe-text-mode ()
53 "Major mode for buffers created by `describe-char'.
55 \\{describe-text-mode-map}
56 Entry to this mode calls the value of `describe-text-mode-hook'
57 if that value is non-nil."
58 (kill-all-local-variables)
59 (setq major-mode 'describe-text-mode
60 mode-name "Describe-Text")
61 (use-local-map describe-text-mode-map)
62 (widget-setup)
63 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
64 (run-mode-hooks 'describe-text-mode-hook))
66 ;;; Describe-Text Utilities.
68 (defun describe-text-widget (widget)
69 "Insert text to describe WIDGET in the current buffer."
70 (widget-create 'link
71 :notify `(lambda (&rest ignore)
72 (widget-browse ',widget))
73 (format "%S" (if (symbolp widget)
74 widget
75 (car widget))))
76 (widget-insert " ")
77 (widget-create 'info-link :tag "widget" "(widget)Top"))
79 (defun describe-text-sexp (sexp)
80 "Insert a short description of SEXP in the current buffer."
81 (let ((pp (condition-case signal
82 (pp-to-string sexp)
83 (error (prin1-to-string signal)))))
84 (when (string-match "\n\\'" pp)
85 (setq pp (substring pp 0 (1- (length pp)))))
86 (if (cond ((string-match "\n" pp)
87 nil)
88 ((> (length pp) (- (window-width) (current-column)))
89 nil)
90 (t t))
91 (widget-insert pp)
92 (widget-create 'push-button
93 :tag "show"
94 :action (lambda (widget &optional event)
95 (with-output-to-temp-buffer
96 "*Pp Eval Output*"
97 (princ (widget-get widget :value))))
98 pp))))
100 (defun describe-property-list (properties)
101 "Insert a description of PROPERTIES in the current buffer.
102 PROPERTIES should be a list of overlay or text properties.
103 The `category', `face' and `font-lock-face' properties are made
104 into widget buttons that call `describe-text-category' or
105 `describe-face' when pushed."
106 ;; Sort the properties by the size of their value.
107 (dolist (elt (sort (let (ret)
108 (while properties
109 (push (list (pop properties) (pop properties)) ret))
110 ret)
111 (lambda (a b) (string< (nth 0 a) (nth 0 b)))))
112 (let ((key (nth 0 elt))
113 (value (nth 1 elt)))
114 (widget-insert (propertize (format " %-20s " key)
115 'font-lock-face 'italic))
116 (cond ((eq key 'category)
117 (widget-create 'link
118 :notify `(lambda (&rest ignore)
119 (describe-text-category ',value))
120 (format "%S" value)))
121 ((memq key '(face font-lock-face mouse-face))
122 (widget-create 'link
123 :notify `(lambda (&rest ignore)
124 (describe-face ',value))
125 (format "%S" value)))
126 ((widgetp value)
127 (describe-text-widget value))
129 (describe-text-sexp value))))
130 (widget-insert "\n")))
132 ;;; Describe-Text Commands.
134 (defun describe-text-category (category)
135 "Describe a text property category."
136 (interactive "S")
137 (save-excursion
138 (with-output-to-temp-buffer "*Help*"
139 (set-buffer standard-output)
140 (widget-insert "Category " (format "%S" category) ":\n\n")
141 (describe-property-list (symbol-plist category))
142 (describe-text-mode)
143 (goto-char (point-min)))))
145 ;;;###autoload
146 (defun describe-text-properties (pos &optional output-buffer)
147 "Describe widgets, buttons, overlays and text properties at POS.
148 Interactively, describe them for the character after point.
149 If optional second argument OUTPUT-BUFFER is non-nil,
150 insert the output into that buffer, and don't initialize or clear it
151 otherwise."
152 (interactive "d")
153 (if (>= pos (point-max))
154 (error "No character follows specified position"))
155 (if output-buffer
156 (describe-text-properties-1 pos output-buffer)
157 (if (not (or (text-properties-at pos) (overlays-at pos)))
158 (message "This is plain text.")
159 (let ((buffer (current-buffer))
160 (target-buffer "*Help*"))
161 (when (eq buffer (get-buffer target-buffer))
162 (setq target-buffer "*Help-2*"))
163 (save-excursion
164 (with-output-to-temp-buffer target-buffer
165 (set-buffer standard-output)
166 (setq output-buffer (current-buffer))
167 (widget-insert "Text content at position " (format "%d" pos) ":\n\n")
168 (with-current-buffer buffer
169 (describe-text-properties-1 pos output-buffer))
170 (describe-text-mode)
171 (goto-char (point-min))))))))
173 (defun describe-text-properties-1 (pos output-buffer)
174 (let* ((properties (text-properties-at pos))
175 (overlays (overlays-at pos))
176 (wid-field (get-char-property pos 'field))
177 (wid-button (get-char-property pos 'button))
178 (wid-doc (get-char-property pos 'widget-doc))
179 ;; If button.el is not loaded, we have no buttons in the text.
180 (button (and (fboundp 'button-at) (button-at pos)))
181 (button-type (and button (button-type button)))
182 (button-label (and button (button-label button)))
183 (widget (or wid-field wid-button wid-doc)))
184 (with-current-buffer output-buffer
185 ;; Widgets
186 (when (widgetp widget)
187 (newline)
188 (widget-insert (cond (wid-field "This is an editable text area")
189 (wid-button "This is an active area")
190 (wid-doc "This is documentation text")))
191 (widget-insert " of a ")
192 (describe-text-widget widget)
193 (widget-insert ".\n\n"))
194 ;; Buttons
195 (when (and button (not (widgetp wid-button)))
196 (newline)
197 (widget-insert "Here is a " (format "%S" button-type)
198 " button labeled `" button-label "'.\n\n"))
199 ;; Overlays
200 (when overlays
201 (newline)
202 (if (eq (length overlays) 1)
203 (widget-insert "There is an overlay here:\n")
204 (widget-insert "There are " (format "%d" (length overlays))
205 " overlays here:\n"))
206 (dolist (overlay overlays)
207 (widget-insert " From " (format "%d" (overlay-start overlay))
208 " to " (format "%d" (overlay-end overlay)) "\n")
209 (describe-property-list (overlay-properties overlay)))
210 (widget-insert "\n"))
211 ;; Text properties
212 (when properties
213 (newline)
214 (widget-insert "There are text properties here:\n")
215 (describe-property-list properties)))))
217 (defcustom describe-char-unicodedata-file nil
218 "Location of Unicode data file.
219 This is the UnicodeData.txt file from the Unicode consortium, used for
220 diagnostics. If it is non-nil `describe-char' will print data
221 looked up from it. This facility is mostly of use to people doing
222 multilingual development.
224 This is a fairly large file, not typically present on GNU systems. At
225 the time of writing it is at
226 <URL:http://www.unicode.org/Public/UNIDATA/UnicodeData.txt>."
227 :group 'mule
228 :version "22.1"
229 :type '(choice (const :tag "None" nil)
230 file))
232 ;; We could convert the unidata file into a Lispy form once-for-all
233 ;; and distribute it for loading on demand. It might be made more
234 ;; space-efficient by splitting strings word-wise and replacing them
235 ;; with lists of symbols interned in a private obarray, e.g.
236 ;; "LATIN SMALL LETTER A" => '(LATIN SMALL LETTER A).
238 ;; Fixme: Check whether this needs updating for Unicode 4.
239 (defun describe-char-unicode-data (char)
240 "Return a list of Unicode data for unicode CHAR.
241 Each element is a list of a property description and the property value.
242 The list is null if CHAR isn't found in `describe-char-unicodedata-file'."
243 (when describe-char-unicodedata-file
244 (unless (file-exists-p describe-char-unicodedata-file)
245 (error "`unicodedata-file' %s not found" describe-char-unicodedata-file))
246 (with-current-buffer
247 ;; Find file in fundamental mode to avoid, e.g. flyspell turned
248 ;; on for .txt. Don't use RAWFILE arg in case of DOS line endings.
249 (let ((auto-mode-alist))
250 (find-file-noselect describe-char-unicodedata-file))
251 (goto-char (point-min))
252 (let ((hex (format "%04X" char))
253 found first last)
254 (if (re-search-forward (concat "^" hex) nil t)
255 (setq found t)
256 ;; It's not listed explicitly. Look for ranges, e.g. CJK
257 ;; ideographs, and check whether it's in one of them.
258 (while (and (re-search-forward "^\\([^;]+\\);[^;]+First>;" nil t)
259 (>= char (setq first
260 (string-to-number (match-string 1) 16)))
261 (progn
262 (forward-line 1)
263 (looking-at "^\\([^;]+\\);[^;]+Last>;")
264 (> char
265 (setq last
266 (string-to-number (match-string 1) 16))))))
267 (if (and (>= char first)
268 (<= char last))
269 (setq found t)))
270 (if found
271 (let ((fields (mapcar (lambda (elt)
272 (if (> (length elt) 0)
273 elt))
274 (cdr (split-string
275 (buffer-substring
276 (line-beginning-position)
277 (line-end-position))
278 ";")))))
279 ;; The length depends on whether the last field was empty.
280 (unless (or (= 13 (length fields))
281 (= 14 (length fields)))
282 (error "Invalid contents in %s" describe-char-unicodedata-file))
283 ;; The field names and values lists are slightly
284 ;; modified from Mule-UCS unidata.el.
285 (list
286 (list "Name" (let ((name (nth 0 fields)))
287 ;; Check for <..., First>, <..., Last>
288 (if (string-match "\\`\\(<[^,]+\\)," name)
289 (concat (match-string 1 name) ">")
290 name)))
291 (list "Category"
292 (cdr (assoc
293 (nth 1 fields)
294 '(("Lu" . "uppercase letter")
295 ("Ll" . "lowercase letter")
296 ("Lt" . "titlecase letter")
297 ("Mn" . "non-spacing mark")
298 ("Mc" . "spacing-combining mark")
299 ("Me" . "enclosing mark")
300 ("Nd" . "decimal digit")
301 ("Nl" . "letter number")
302 ("No" . "other number")
303 ("Zs" . "space separator")
304 ("Zl" . "line separator")
305 ("Zp" . "paragraph separator")
306 ("Cc" . "other control")
307 ("Cf" . "other format")
308 ("Cs" . "surrogate")
309 ("Co" . "private use")
310 ("Cn" . "not assigned")
311 ("Lm" . "modifier letter")
312 ("Lo" . "other letter")
313 ("Pc" . "connector punctuation")
314 ("Pd" . "dash punctuation")
315 ("Ps" . "open punctuation")
316 ("Pe" . "close punctuation")
317 ("Pi" . "initial-quotation punctuation")
318 ("Pf" . "final-quotation punctuation")
319 ("Po" . "other punctuation")
320 ("Sm" . "math symbol")
321 ("Sc" . "currency symbol")
322 ("Sk" . "modifier symbol")
323 ("So" . "other symbol")))))
324 (list "Combining class"
325 (cdr (assoc
326 (string-to-number (nth 2 fields))
327 '((0 . "Spacing")
328 (1 . "Overlays and interior")
329 (7 . "Nuktas")
330 (8 . "Hiragana/Katakana voicing marks")
331 (9 . "Viramas")
332 (10 . "Start of fixed position classes")
333 (199 . "End of fixed position classes")
334 (200 . "Below left attached")
335 (202 . "Below attached")
336 (204 . "Below right attached")
337 (208 . "Left attached (reordrant around \
338 single base character)")
339 (210 . "Right attached")
340 (212 . "Above left attached")
341 (214 . "Above attached")
342 (216 . "Above right attached")
343 (218 . "Below left")
344 (220 . "Below")
345 (222 . "Below right")
346 (224 . "Left (reordrant around single base \
347 character)")
348 (226 . "Right")
349 (228 . "Above left")
350 (230 . "Above")
351 (232 . "Above right")
352 (233 . "Double below")
353 (234 . "Double above")
354 (240 . "Below (iota subscript)")))))
355 (list "Bidi category"
356 (cdr (assoc
357 (nth 3 fields)
358 '(("L" . "Left-to-Right")
359 ("LRE" . "Left-to-Right Embedding")
360 ("LRO" . "Left-to-Right Override")
361 ("R" . "Right-to-Left")
362 ("AL" . "Right-to-Left Arabic")
363 ("RLE" . "Right-to-Left Embedding")
364 ("RLO" . "Right-to-Left Override")
365 ("PDF" . "Pop Directional Format")
366 ("EN" . "European Number")
367 ("ES" . "European Number Separator")
368 ("ET" . "European Number Terminator")
369 ("AN" . "Arabic Number")
370 ("CS" . "Common Number Separator")
371 ("NSM" . "Non-Spacing Mark")
372 ("BN" . "Boundary Neutral")
373 ("B" . "Paragraph Separator")
374 ("S" . "Segment Separator")
375 ("WS" . "Whitespace")
376 ("ON" . "Other Neutrals")))))
377 (list
378 "Decomposition"
379 (if (nth 4 fields)
380 (let* ((parts (split-string (nth 4 fields)))
381 (info (car parts)))
382 (if (string-match "\\`<\\(.+\\)>\\'" info)
383 (setq info (match-string 1 info))
384 (setq info nil))
385 (if info (setq parts (cdr parts)))
386 ;; Maybe printing ? for unrepresentable unicodes
387 ;; here and below should be changed?
388 (setq parts (mapconcat
389 (lambda (arg)
390 (string (or (decode-char
391 'ucs
392 (string-to-number arg 16))
393 ??)))
394 parts " "))
395 (concat info parts))))
396 (list "Decimal digit value"
397 (nth 5 fields))
398 (list "Digit value"
399 (nth 6 fields))
400 (list "Numeric value"
401 (nth 7 fields))
402 (list "Mirrored"
403 (if (equal "Y" (nth 8 fields))
404 "yes"))
405 (list "Old name" (nth 9 fields))
406 (list "ISO 10646 comment" (nth 10 fields))
407 (list "Uppercase" (and (nth 11 fields)
408 (string (or (decode-char
409 'ucs
410 (string-to-number
411 (nth 11 fields) 16))
412 ??))))
413 (list "Lowercase" (and (nth 12 fields)
414 (string (or (decode-char
415 'ucs
416 (string-to-number
417 (nth 12 fields) 16))
418 ??))))
419 (list "Titlecase" (and (nth 13 fields)
420 (string (or (decode-char
421 'ucs
422 (string-to-number
423 (nth 13 fields) 16))
424 ??)))))))))))
426 ;; Return information about how CHAR is displayed at the buffer
427 ;; position POS. If the selected frame is on a graphic display,
428 ;; return a cons (FONTNAME . GLYPH-CODE). Otherwise, return a string
429 ;; describing the terminal codes for the character.
430 (defun describe-char-display (pos char)
431 (if (display-graphic-p (selected-frame))
432 (internal-char-font pos char)
433 (let* ((coding (terminal-coding-system))
434 (encoded (encode-coding-char char coding)))
435 (if encoded
436 (encoded-string-description encoded coding)))))
439 ;;;###autoload
440 (defun describe-char (pos)
441 "Describe the character after POS (interactively, the character after point).
442 The information includes character code, charset and code points in it,
443 syntax, category, how the character is encoded in a file,
444 character composition information (if relevant),
445 as well as widgets, buttons, overlays, and text properties."
446 (interactive "d")
447 (if (>= pos (point-max))
448 (error "No character follows specified position"))
449 (let* ((char (char-after pos))
450 (charset (char-charset char))
451 (composition (find-composition pos nil nil t))
452 (component-chars nil)
453 (display-table (or (window-display-table)
454 buffer-display-table
455 standard-display-table))
456 (disp-vector (and display-table (aref display-table char)))
457 (multibyte-p enable-multibyte-characters)
458 (overlays (mapcar #'(lambda (o) (overlay-properties o))
459 (overlays-at pos)))
460 item-list max-width unicode)
462 (if (or (< char 256)
463 (memq 'mule-utf-8 (find-coding-systems-region pos (1+ pos)))
464 (get-char-property pos 'untranslated-utf-8))
465 (setq unicode (or (get-char-property pos 'untranslated-utf-8)
466 (encode-char char 'ucs))))
467 (setq item-list
468 `(("character"
469 ,(format "%s (0%o, %d, 0x%x%s)"
470 (apply 'propertize (if (not multibyte-p)
471 (single-key-description char)
472 (if (< char 128)
473 (single-key-description char)
474 (string-to-multibyte
475 (char-to-string char))))
476 (text-properties-at pos))
477 char char char
478 (if unicode
479 (format ", U+%04X" unicode)
480 "")))
481 ("charset"
482 ,(symbol-name charset)
483 ,(format "(%s)" (charset-description charset)))
484 ("code point"
485 ,(let ((split (split-char char)))
486 (if (= (charset-dimension charset) 1)
487 (format "%d" (nth 1 split))
488 (format "%d %d" (nth 1 split) (nth 2 split)))))
489 ("syntax"
490 ,(let ((syntax (syntax-after pos)))
491 (with-temp-buffer
492 (internal-describe-syntax-value syntax)
493 (buffer-string))))
494 ("category"
495 ,@(let ((category-set (char-category-set char)))
496 (if (not category-set)
497 '("-- none --")
498 (mapcar #'(lambda (x) (format "%c:%s "
499 x (category-docstring x)))
500 (category-set-mnemonics category-set)))))
501 ,@(let ((props (aref char-code-property-table char))
503 (when props
504 (while props
505 (push (format "%s:" (pop props)) ps)
506 (push (format "%s;" (pop props)) ps))
507 (list (cons "Properties" (nreverse ps)))))
508 ("to input"
509 ,@(let ((key-list (and (eq input-method-function
510 'quail-input-method)
511 (quail-find-key char))))
512 (if (consp key-list)
513 (list "type"
514 (mapconcat #'(lambda (x) (concat "\"" x "\""))
515 key-list " or ")))))
516 ("buffer code"
517 ,(encoded-string-description
518 (string-as-unibyte (char-to-string char)) nil))
519 ("file code"
520 ,@(let* ((coding buffer-file-coding-system)
521 (encoded (encode-coding-char char coding)))
522 (if encoded
523 (list (encoded-string-description encoded coding)
524 (format "(encoded by coding system %S)" coding))
525 (list "not encodable by coding system"
526 (symbol-name coding)))))
527 ("display"
528 ,(cond
529 (disp-vector
530 (setq disp-vector (copy-sequence disp-vector))
531 (dotimes (i (length disp-vector))
532 (setq char (aref disp-vector i))
533 (aset disp-vector i
534 (cons char (describe-char-display
535 pos (logand char #x7ffff)))))
536 (format "by display table entry [%s] (see below)"
537 (mapconcat
538 #'(lambda (x)
539 (if (> (car x) #x7ffff)
540 (format "?%c<face-id=%s>"
541 (logand (car x) #x7ffff)
542 (lsh (car x) -19))
543 (format "?%c" (car x))))
544 disp-vector " ")))
545 (composition
546 (let ((from (car composition))
547 (to (nth 1 composition))
548 (next (1+ pos))
549 (components (nth 2 composition))
551 (setcar composition
552 (and (< from pos) (buffer-substring from pos)))
553 (setcar (cdr composition)
554 (and (< next to) (buffer-substring next to)))
555 (dotimes (i (length components))
556 (if (integerp (setq ch (aref components i)))
557 (push (cons ch (describe-char-display pos ch))
558 component-chars)))
559 (setq component-chars (nreverse component-chars))
560 (format "composed to form \"%s\" (see below)"
561 (buffer-substring from to))))
563 (let ((display (describe-char-display pos char)))
564 (if (display-graphic-p (selected-frame))
565 (if display
566 (concat
567 "by this font (glyph code)\n"
568 (format " %s (0x%02X)"
569 (car display) (cdr display)))
570 "no font available")
571 (if display
572 (format "terminal code %s" display)
573 "not encodable for terminal"))))))
574 ,@(let ((unicodedata (and unicode
575 (describe-char-unicode-data unicode))))
576 (if unicodedata
577 (cons (list "Unicode data" " ") unicodedata)))))
578 (setq max-width (apply #'max (mapcar #'(lambda (x) (length (car x)))
579 item-list)))
580 (with-output-to-temp-buffer "*Help*"
581 (with-current-buffer standard-output
582 (set-buffer-multibyte multibyte-p)
583 (let ((formatter (format "%%%ds:" max-width)))
584 (dolist (elt item-list)
585 (when (cadr elt)
586 (insert (format formatter (car elt)))
587 (dolist (clm (cdr elt))
588 (when (>= (+ (current-column)
589 (or (string-match "\n" clm)
590 (string-width clm)) 1)
591 (window-width))
592 (insert "\n")
593 (indent-to (1+ max-width)))
594 (insert " " clm))
595 (insert "\n"))))
597 (save-excursion
598 (goto-char (point-min))
599 (re-search-forward "character:[ \t\n]+")
600 (setq pos (point)))
601 (if overlays
602 (mapc #'(lambda (props)
603 (let ((o (make-overlay pos (1+ pos))))
604 (while props
605 (overlay-put o (car props) (nth 1 props))
606 (setq props (cddr props)))))
607 overlays))
609 (when disp-vector
610 (insert
611 "\nThe display table entry is displayed by ")
612 (if (display-graphic-p (selected-frame))
613 (progn
614 (insert "these fonts (glyph codes):\n")
615 (dotimes (i (length disp-vector))
616 (insert (logand (car (aref disp-vector i)) #x7ffff) ?:
617 (propertize " " 'display '(space :align-to 5))
618 (if (cdr (aref disp-vector i))
619 (format "%s (0x%02X)" (cadr (aref disp-vector i))
620 (cddr (aref disp-vector i)))
621 "-- no font --")
622 "\n ")))
623 (insert "these terminal codes:\n")
624 (dotimes (i (length disp-vector))
625 (insert (car (aref disp-vector i))
626 (propertize " " 'display '(space :align-to 5))
627 (or (cdr (aref disp-vector i)) "-- not encodable --")
628 "\n"))))
630 (when composition
631 (insert "\nComposed")
632 (if (car composition)
633 (if (cadr composition)
634 (insert " with the surrounding characters \""
635 (car composition) "\" and \""
636 (cadr composition) "\"")
637 (insert " with the preceding character(s) \""
638 (car composition) "\""))
639 (if (cadr composition)
640 (insert " with the following character(s) \""
641 (cadr composition) "\"")))
642 (insert " by the rule:\n\t("
643 (mapconcat (lambda (x)
644 (format (if (consp x) "%S" "?%c") x))
645 (nth 2 composition)
646 " ")
647 ")")
648 (insert "\nThe component character(s) are displayed by ")
649 (if (display-graphic-p (selected-frame))
650 (progn
651 (insert "these fonts (glyph codes):")
652 (dolist (elt component-chars)
653 (insert "\n " (car elt) ?:
654 (propertize " " 'display '(space :align-to 5))
655 (if (cdr elt)
656 (format "%s (0x%02X)" (cadr elt) (cddr elt))
657 "-- no font --"))))
658 (insert "these terminal codes:")
659 (dolist (elt component-chars)
660 (insert "\n " (car elt) ":"
661 (propertize " " 'display '(space :align-to 5))
662 (or (cdr elt) "-- not encodable --"))))
663 (insert "\nSee the variable `reference-point-alist' for "
664 "the meaning of the rule.\n"))
666 (describe-text-properties pos (current-buffer))
667 (describe-text-mode)))))
669 (defalias 'describe-char-after 'describe-char)
670 (make-obsolete 'describe-char-after 'describe-char "21.5")
672 (provide 'descr-text)
674 ;; arch-tag: fc55a498-f3e9-4312-b5bd-98cc02480af1
675 ;;; descr-text.el ends here