(custom-mode-map): Bind `C-c C-c' to `Custom-set'.
[bpt/emacs.git] / lisp / descr-text.el
CommitLineData
dcb90b5f 1;;; descr-text.el --- describe text mode
2a1e884e 2
2d65673f 3;; Copyright (c) 1994, 1995, 1996, 2001, 2002, 2003, 2004, 2005
d8ac3d27 4;; Free Software Foundation, Inc.
2a1e884e
RS
5
6;; Author: Boris Goldowsky <boris@gnu.org>
2d65673f 7;; Keywords: faces, i18n, Unicode, multilingual
2a1e884e
RS
8
9;; This file is part of GNU Emacs.
10
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.
15
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.
20
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
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
2a1e884e
RS
25
26;;; Commentary:
27
28;;; Describe-Text Mode.
29
30;;; Code:
31
309473d0 32(eval-when-compile (require 'button) (require 'quail))
831ccfa6 33
2a1e884e
RS
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)))
40
71296446 41(defvar describe-text-mode-map
2a1e884e
RS
42 (let ((map (make-sparse-keymap)))
43 (set-keymap-parent map widget-keymap)
44 map)
45 "Keymap for `describe-text-mode'.")
71296446 46
2a1e884e
RS
47(defcustom describe-text-mode-hook nil
48 "List of hook functions ran by `describe-text-mode'."
d77a0b9b
MR
49 :type 'hook
50 :group 'facemenu)
2a1e884e
RS
51
52(defun describe-text-mode ()
4adb7c09 53 "Major mode for buffers created by `describe-char'.
2a1e884e
RS
54
55\\{describe-text-mode-map}
56Entry to this mode calls the value of `describe-text-mode-hook'
57if 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)
f0397cde 63 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
258cf562 64 (run-mode-hooks 'describe-text-mode-hook))
2a1e884e
RS
65
66;;; Describe-Text Utilities.
67
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))
71296446 73 (format "%S" (if (symbolp widget)
2a1e884e
RS
74 widget
75 (car widget))))
76 (widget-insert " ")
77 (widget-create 'info-link :tag "widget" "(widget)Top"))
78
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))))
2a1e884e 99
4adb7c09 100(defun describe-property-list (properties)
2a1e884e
RS
101 "Insert a description of PROPERTIES in the current buffer.
102PROPERTIES should be a list of overlay or text properties.
4eb59450
JL
103The `category', `face' and `font-lock-face' properties are made
104into widget buttons that call `describe-text-category' or
105`describe-face' when pushed."
e2fa2f6e 106 ;; Sort the properties by the size of their value.
8b18fb8f 107 (dolist (elt (sort (let (ret)
e2fa2f6e 108 (while properties
8b18fb8f 109 (push (list (pop properties) (pop properties)) ret))
e2fa2f6e 110 ret)
8b18fb8f 111 (lambda (a b) (string< (nth 0 a) (nth 0 b)))))
e2fa2f6e
CW
112 (let ((key (nth 0 elt))
113 (value (nth 1 elt)))
c1a1535a 114 (widget-insert (propertize (format " %-20s " key)
e2fa2f6e 115 'font-lock-face 'italic))
2a1e884e 116 (cond ((eq key 'category)
c1a1535a 117 (widget-create 'link
2a1e884e
RS
118 :notify `(lambda (&rest ignore)
119 (describe-text-category ',value))
120 (format "%S" value)))
8b18fb8f 121 ((memq key '(face font-lock-face mouse-face))
72354910
JL
122 (widget-create 'link
123 :notify `(lambda (&rest ignore)
124 (describe-face ',value))
125 (format "%S" value)))
f13cc97d 126 ((widgetp value)
2a1e884e
RS
127 (describe-text-widget value))
128 (t
8b18fb8f 129 (describe-text-sexp value))))
e2fa2f6e 130 (widget-insert "\n")))
2a1e884e
RS
131\f
132;;; Describe-Text Commands.
133
134(defun describe-text-category (category)
135 "Describe a text property category."
136 (interactive "S")
2a1e884e 137 (save-excursion
ca9088e7
SM
138 (with-output-to-temp-buffer "*Help*"
139 (set-buffer standard-output)
2a1e884e 140 (widget-insert "Category " (format "%S" category) ":\n\n")
4adb7c09 141 (describe-property-list (symbol-plist category))
2a1e884e
RS
142 (describe-text-mode)
143 (goto-char (point-min)))))
144
145;;;###autoload
4adb7c09
RS
146(defun describe-text-properties (pos &optional output-buffer)
147 "Describe widgets, buttons, overlays and text properties at POS.
148Interactively, describe them for the character after point.
149If optional second argument OUTPUT-BUFFER is non-nil,
150insert the output into that buffer, and don't initialize or clear it
151otherwise."
2a1e884e 152 (interactive "d")
4adb7c09
RS
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.")
0911ac26
KS
159 (let ((buffer (current-buffer))
160 (target-buffer "*Help*"))
161 (when (eq buffer (get-buffer target-buffer))
162 (setq target-buffer "*Help-2*"))
4adb7c09 163 (save-excursion
0911ac26 164 (with-output-to-temp-buffer target-buffer
ca9088e7 165 (set-buffer standard-output)
4adb7c09
RS
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))))))))
172
173(defun describe-text-properties-1 (pos output-buffer)
2a1e884e
RS
174 (let* ((properties (text-properties-at pos))
175 (overlays (overlays-at pos))
2a1e884e
RS
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)))
4adb7c09
RS
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)
71296446 197 (widget-insert "Here is a " (format "%S" button-type)
4adb7c09
RS
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)
71296446 207 (widget-insert " From " (format "%d" (overlay-start overlay))
4adb7c09
RS
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)))))
d6c135fb 216\f
49c2a2dc
SM
217(defcustom describe-char-unicodedata-file nil
218 "Location of Unicode data file.
219This is the UnicodeData.txt file from the Unicode consortium, used for
2a4960f9 220diagnostics. If it is non-nil `describe-char' will print data
49c2a2dc
SM
221looked up from it. This facility is mostly of use to people doing
222multilingual development.
4adb7c09 223
49c2a2dc
SM
224This is a fairly large file, not typically present on GNU systems. At
225the time of writing it is at
226<URL:http://www.unicode.org/Public/UNIDATA/UnicodeData.txt>."
227 :group 'mule
bf247b6e 228 :version "22.1"
49c2a2dc
SM
229 :type '(choice (const :tag "None" nil)
230 file))
831ccfa6 231
49c2a2dc
SM
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).
831ccfa6 237
49c2a2dc
SM
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.
241Each element is a list of a property description and the property value.
242The 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 \
338single 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 \
347character)")
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 ??)))))))))))
f15078e2
KH
425
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)))))
437
d6c135fb 438\f
4adb7c09
RS
439;;;###autoload
440(defun describe-char (pos)
441 "Describe the character after POS (interactively, the character after point).
442The information includes character code, charset and code points in it,
443syntax, category, how the character is encoded in a file,
444character composition information (if relevant),
445as well as widgets, buttons, overlays, and text properties."
446 (interactive "d")
4adb7c09
RS
447 (if (>= pos (point-max))
448 (error "No character follows specified position"))
449 (let* ((char (char-after pos))
450 (charset (char-charset char))
ca9088e7 451 (composition (find-composition pos nil nil t))
f15078e2
KH
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)))
4adb7c09 457 (multibyte-p enable-multibyte-characters)
6482d093
KH
458 (overlays (mapcar #'(lambda (o) (overlay-properties o))
459 (overlays-at pos)))
831ccfa6 460 item-list max-width unicode)
831ccfa6 461
ed441285
KH
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"
f13cc97d 469 ,(format "%s (0%o, %d, 0x%x%s)"
ed441285
KH
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"
d8ac3d27 490 ,(let ((syntax (syntax-after pos)))
ed441285
KH
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))
502 ps)
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)))))
309473d0 508 ("to input"
22259c93
KH
509 ,@(let ((key-list (and (eq input-method-function
510 'quail-input-method)
309473d0
KH
511 (quail-find-key char))))
512 (if (consp key-list)
513 (list "type"
514 (mapconcat #'(lambda (x) (concat "\"" x "\""))
515 key-list " or ")))))
ed441285
KH
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
8b18fb8f
JL
534 (cons char (describe-char-display
535 pos (logand char #x7ffff)))))
ed441285 536 (format "by display table entry [%s] (see below)"
8b18fb8f
JL
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 " ")))
ed441285
KH
545 (composition
546 (let ((from (car composition))
547 (to (nth 1 composition))
548 (next (1+ pos))
549 (components (nth 2 composition))
550 ch)
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))))
562 (t
563 (let ((display (describe-char-display pos char)))
564 (if (display-graphic-p (selected-frame))
f15078e2 565 (if display
ed441285
KH
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)))))
4adb7c09
RS
578 (setq max-width (apply #'max (mapcar #'(lambda (x) (length (car x)))
579 item-list)))
4adb7c09 580 (with-output-to-temp-buffer "*Help*"
ca9088e7 581 (with-current-buffer standard-output
4adb7c09
RS
582 (set-buffer-multibyte multibyte-p)
583 (let ((formatter (format "%%%ds:" max-width)))
584 (dolist (elt item-list)
831ccfa6
DL
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)
544cb6b0 591 (window-width))
831ccfa6
DL
592 (insert "\n")
593 (indent-to (1+ max-width)))
594 (insert " " clm))
595 (insert "\n"))))
f15078e2 596
ed441285
KH
597 (save-excursion
598 (goto-char (point-min))
f13cc97d 599 (re-search-forward "character:[ \t\n]+")
ed441285
KH
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))
608
f15078e2
KH
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))
8b18fb8f 616 (insert (logand (car (aref disp-vector i)) #x7ffff) ?:
f15078e2
KH
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))
544cb6b0 625 (insert (car (aref disp-vector i))
f15078e2
KH
626 (propertize " " 'display '(space :align-to 5))
627 (or (cdr (aref disp-vector i)) "-- not encodable --")
628 "\n"))))
629
4adb7c09 630 (when composition
f15078e2
KH
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"))
4adb7c09 665
6482d093 666 (describe-text-properties pos (current-buffer))
02f32cf0 667 (describe-text-mode)))))
2a1e884e 668
831ccfa6
DL
669(defalias 'describe-char-after 'describe-char)
670(make-obsolete 'describe-char-after 'describe-char "21.5")
671
288395a7
CW
672(provide 'descr-text)
673
d8ac3d27 674;; arch-tag: fc55a498-f3e9-4312-b5bd-98cc02480af1
2a1e884e 675;;; descr-text.el ends here