]> code.delx.au - gnu-emacs/blob - lisp/descr-text.el
Merge from emacs--devo--0
[gnu-emacs] / lisp / descr-text.el
1 ;;; descr-text.el --- describe text mode
2
3 ;; Copyright (C) 1994, 1995, 1996, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Boris Goldowsky <boris@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: faces, i18n, Unicode, multilingual
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;;; Describe-Text Mode.
30
31 ;;; Code:
32
33 (eval-when-compile (require 'quail))
34 (require 'help-fns)
35
36 ;;; Describe-Text Utilities.
37
38 (defun describe-text-widget (widget)
39 "Insert text to describe WIDGET in the current buffer."
40 (insert-text-button
41 (symbol-name (if (symbolp widget) widget (car widget)))
42 'action `(lambda (&rest ignore)
43 (widget-browse ',widget))
44 'help-echo "mouse-2, RET: browse this widget")
45 (insert " ")
46 (insert-text-button
47 "(widget)Top" 'type 'help-info 'help-args '("(widget)Top")))
48
49 (defun describe-text-sexp (sexp)
50 "Insert a short description of SEXP in the current buffer."
51 (let ((pp (condition-case signal
52 (pp-to-string sexp)
53 (error (prin1-to-string signal)))))
54 (when (string-match "\n\\'" pp)
55 (setq pp (substring pp 0 (1- (length pp)))))
56 (if (cond ((string-match "\n" pp)
57 nil)
58 ((> (length pp) (- (window-width) (current-column)))
59 nil)
60 (t t))
61 (insert pp)
62 (insert-text-button
63 "[Show]" 'action `(lambda (&rest ignore)
64 (with-output-to-temp-buffer
65 "*Pp Eval Output*"
66 (princ ',pp)))
67 'help-echo "mouse-2, RET: pretty print value in another buffer"))))
68
69 (defun describe-property-list (properties)
70 "Insert a description of PROPERTIES in the current buffer.
71 PROPERTIES should be a list of overlay or text properties.
72 The `category', `face' and `font-lock-face' properties are made
73 into help buttons that call `describe-text-category' or
74 `describe-face' when pushed."
75 ;; Sort the properties by the size of their value.
76 (dolist (elt (sort (let (ret)
77 (while properties
78 (push (list (pop properties) (pop properties)) ret))
79 ret)
80 (lambda (a b) (string< (prin1-to-string (nth 0 a) t)
81 (prin1-to-string (nth 0 b) t)))))
82 (let ((key (nth 0 elt))
83 (value (nth 1 elt)))
84 (insert (propertize (format " %-20s " key)
85 'face 'help-argument-name))
86 (cond ((eq key 'category)
87 (insert-text-button
88 (symbol-name value)
89 'action `(lambda (&rest ignore)
90 (describe-text-category ',value))
91 'help-echo "mouse-2, RET: describe this category"))
92 ((memq key '(face font-lock-face mouse-face))
93 (insert-text-button
94 (format "%S" value)
95 'type 'help-face 'help-args (list value)))
96 ((widgetp value)
97 (describe-text-widget value))
98 (t
99 (describe-text-sexp value))))
100 (insert "\n")))
101 \f
102 ;;; Describe-Text Commands.
103
104 (defun describe-text-category (category)
105 "Describe a text property category."
106 (interactive "SCategory: ")
107 (help-setup-xref (list #'describe-text-category category) (interactive-p))
108 (save-excursion
109 (with-output-to-temp-buffer "*Help*"
110 (set-buffer standard-output)
111 (insert "Category " (format "%S" category) ":\n\n")
112 (describe-property-list (symbol-plist category))
113 (goto-char (point-min)))))
114
115 ;;;###autoload
116 (defun describe-text-properties (pos &optional output-buffer)
117 "Describe widgets, buttons, overlays and text properties at POS.
118 Interactively, describe them for the character after point.
119 If optional second argument OUTPUT-BUFFER is non-nil,
120 insert the output into that buffer, and don't initialize or clear it
121 otherwise."
122 (interactive "d")
123 (if (>= pos (point-max))
124 (error "No character follows specified position"))
125 (if output-buffer
126 (describe-text-properties-1 pos output-buffer)
127 (if (not (or (text-properties-at pos) (overlays-at pos)))
128 (message "This is plain text.")
129 (let ((buffer (current-buffer))
130 (target-buffer "*Help*"))
131 (when (eq buffer (get-buffer target-buffer))
132 (setq target-buffer "*Help*<2>"))
133 (save-excursion
134 (with-output-to-temp-buffer target-buffer
135 (set-buffer standard-output)
136 (setq output-buffer (current-buffer))
137 (insert "Text content at position " (format "%d" pos) ":\n\n")
138 (with-current-buffer buffer
139 (describe-text-properties-1 pos output-buffer))
140 (goto-char (point-min))))))))
141
142 (defun describe-text-properties-1 (pos output-buffer)
143 (let* ((properties (text-properties-at pos))
144 (overlays (overlays-at pos))
145 (wid-field (get-char-property pos 'field))
146 (wid-button (get-char-property pos 'button))
147 (wid-doc (get-char-property pos 'widget-doc))
148 ;; If button.el is not loaded, we have no buttons in the text.
149 (button (and (fboundp 'button-at) (button-at pos)))
150 (button-type (and button (button-type button)))
151 (button-label (and button (button-label button)))
152 (widget (or wid-field wid-button wid-doc)))
153 (with-current-buffer output-buffer
154 ;; Widgets
155 (when (widgetp widget)
156 (newline)
157 (insert (cond (wid-field "This is an editable text area")
158 (wid-button "This is an active area")
159 (wid-doc "This is documentation text")))
160 (insert " of a ")
161 (describe-text-widget widget)
162 (insert ".\n\n"))
163 ;; Buttons
164 (when (and button (not (widgetp wid-button)))
165 (newline)
166 (insert "Here is a `" (format "%S" button-type)
167 "' button labeled `" button-label "'.\n\n"))
168 ;; Overlays
169 (when overlays
170 (newline)
171 (if (eq (length overlays) 1)
172 (insert "There is an overlay here:\n")
173 (insert "There are " (format "%d" (length overlays))
174 " overlays here:\n"))
175 (dolist (overlay overlays)
176 (insert " From " (format "%d" (overlay-start overlay))
177 " to " (format "%d" (overlay-end overlay)) "\n")
178 (describe-property-list (overlay-properties overlay)))
179 (insert "\n"))
180 ;; Text properties
181 (when properties
182 (newline)
183 (insert "There are text properties here:\n")
184 (describe-property-list properties)))))
185 \f
186 (defcustom describe-char-unidata-list nil
187 "List of Unicode-based character property names shown by `describe-char'."
188 :group 'mule
189 :version "23.1"
190 :type '(set
191 (const :tag "Unicode Name" name)
192 (const :tag "Unicode general category " general-category)
193 (const :tag "Unicode canonical combining class"
194 canonical-combining-class)
195 (const :tag "Unicode bidi class" bidi-class)
196 (const :tag "Unicode decomposition mapping" decomposition)
197 (const :tag "Unicode decimal digit value" decimal-digit-value)
198 (const :tag "Unicode digit value" digit-value)
199 (const :tag "Unicode numeric value" numeric-value)
200 (const :tag "Unicode mirrored" mirrored)
201 (const :tag "Unicode old name" old-name)
202 (const :tag "Unicode ISO 10646 comment" iso-10646-comment)
203 (const :tag "Unicode simple uppercase mapping" uppercase)
204 (const :tag "Unicode simple lowercase mapping" lowercase)
205 (const :tag "Unicode simple titlecase mapping" titlecase)))
206
207 (defcustom describe-char-unicodedata-file nil
208 "Location of Unicode data file.
209 This is the UnicodeData.txt file from the Unicode Consortium, used for
210 diagnostics. If it is non-nil `describe-char' will print data
211 looked up from it. This facility is mostly of use to people doing
212 multilingual development.
213
214 This is a fairly large file, not typically present on GNU systems.
215 At the time of writing it is at the URL
216 `http://www.unicode.org/Public/UNIDATA/UnicodeData.txt'."
217 :group 'mule
218 :version "22.1"
219 :type '(choice (const :tag "None" nil)
220 file))
221
222 ;; We could convert the unidata file into a Lispy form once-for-all
223 ;; and distribute it for loading on demand. It might be made more
224 ;; space-efficient by splitting strings word-wise and replacing them
225 ;; with lists of symbols interned in a private obarray, e.g.
226 ;; "LATIN SMALL LETTER A" => '(LATIN SMALL LETTER A).
227
228 ;; Fixme: Check whether this needs updating for Unicode 4.
229 (defun describe-char-unicode-data (char)
230 "Return a list of Unicode data for unicode CHAR.
231 Each element is a list of a property description and the property value.
232 The list is null if CHAR isn't found in `describe-char-unicodedata-file'.
233 This function is semi-obsolete. Use `get-char-code-property'."
234 (when describe-char-unicodedata-file
235 (unless (file-exists-p describe-char-unicodedata-file)
236 (error "`unicodedata-file' %s not found" describe-char-unicodedata-file))
237 (with-current-buffer (get-buffer-create " *Unicode Data*")
238 (when (zerop (buffer-size))
239 ;; Don't use -literally in case of DOS line endings.
240 (insert-file-contents describe-char-unicodedata-file))
241 (goto-char (point-min))
242 (let ((hex (format "%04X" char))
243 found first last)
244 (if (re-search-forward (concat "^" hex) nil t)
245 (setq found t)
246 ;; It's not listed explicitly. Look for ranges, e.g. CJK
247 ;; ideographs, and check whether it's in one of them.
248 (while (and (re-search-forward "^\\([^;]+\\);[^;]+First>;" nil t)
249 (>= char (setq first
250 (string-to-number (match-string 1) 16)))
251 (progn
252 (forward-line 1)
253 (looking-at "^\\([^;]+\\);[^;]+Last>;")
254 (> char
255 (setq last
256 (string-to-number (match-string 1) 16))))))
257 (if (and (>= char first)
258 (<= char last))
259 (setq found t)))
260 (if found
261 (let ((fields (mapcar (lambda (elt)
262 (if (> (length elt) 0)
263 elt))
264 (cdr (split-string
265 (buffer-substring
266 (line-beginning-position)
267 (line-end-position))
268 ";")))))
269 ;; The length depends on whether the last field was empty.
270 (unless (or (= 13 (length fields))
271 (= 14 (length fields)))
272 (error "Invalid contents in %s" describe-char-unicodedata-file))
273 ;; The field names and values lists are slightly
274 ;; modified from Mule-UCS unidata.el.
275 (list
276 (list "Name" (let ((name (nth 0 fields)))
277 ;; Check for <..., First>, <..., Last>
278 (if (string-match "\\`\\(<[^,]+\\)," name)
279 (concat (match-string 1 name) ">")
280 name)))
281 (list "Category"
282 (let ((val (nth 1 fields)))
283 (or (char-code-property-description
284 'general-category (intern val))
285 val)))
286 (list "Combining class"
287 (let ((val (nth 1 fields)))
288 (or (char-code-property-description
289 'canonical-combining-class (intern val))
290 val)))
291 (list "Bidi category"
292 (let ((val (nth 1 fields)))
293 (or (char-code-property-description
294 'bidi-class (intern val))
295 val)))
296 (list
297 "Decomposition"
298 (if (nth 4 fields)
299 (let* ((parts (split-string (nth 4 fields)))
300 (info (car parts)))
301 (if (string-match "\\`<\\(.+\\)>\\'" info)
302 (setq info (match-string 1 info))
303 (setq info nil))
304 (if info (setq parts (cdr parts)))
305 (setq parts (mapconcat
306 (lambda (arg)
307 (string (string-to-number arg 16)))
308 parts " "))
309 (concat info parts))))
310 (list "Decimal digit value"
311 (nth 5 fields))
312 (list "Digit value"
313 (nth 6 fields))
314 (list "Numeric value"
315 (nth 7 fields))
316 (list "Mirrored"
317 (if (equal "Y" (nth 8 fields))
318 "yes"))
319 (list "Old name" (nth 9 fields))
320 (list "ISO 10646 comment" (nth 10 fields))
321 (list "Uppercase" (and (nth 11 fields)
322 (string (string-to-number
323 (nth 11 fields) 16))))
324 (list "Lowercase" (and (nth 12 fields)
325 (string (string-to-number
326 (nth 12 fields) 16))))
327 (list "Titlecase" (and (nth 13 fields)
328 (string (string-to-number
329 (nth 13 fields) 16)))))))))))
330
331 ;; Return information about how CHAR is displayed at the buffer
332 ;; position POS. If the selected frame is on a graphic display,
333 ;; return a cons (FONTNAME . GLYPH-CODE). Otherwise, return a string
334 ;; describing the terminal codes for the character.
335 (defun describe-char-display (pos char)
336 (if (display-graphic-p (selected-frame))
337 (internal-char-font pos char)
338 (let* ((coding (terminal-coding-system))
339 (encoded (encode-coding-char char coding)))
340 (if encoded
341 (encoded-string-description encoded coding)))))
342
343 \f
344 ;;;###autoload
345 (defun describe-char (pos)
346 "Describe the character after POS (interactively, the character after point).
347 The information includes character code, charset and code points in it,
348 syntax, category, how the character is encoded in a file,
349 character composition information (if relevant),
350 as well as widgets, buttons, overlays, and text properties."
351 (interactive "d")
352 (if (>= pos (point-max))
353 (error "No character follows specified position"))
354 (let* ((char (char-after pos))
355 (charset (char-charset char))
356 (composition (find-composition pos nil nil t))
357 (component-chars nil)
358 (display-table (or (window-display-table)
359 buffer-display-table
360 standard-display-table))
361 (disp-vector (and display-table (aref display-table char)))
362 (multibyte-p enable-multibyte-characters)
363 (overlays (mapcar #'(lambda (o) (overlay-properties o))
364 (overlays-at pos)))
365 (char-description (if (not multibyte-p)
366 (single-key-description char)
367 (if (< char 128)
368 (single-key-description char)
369 (string-to-multibyte
370 (char-to-string char)))))
371 (text-props-desc
372 (let ((tmp-buf (generate-new-buffer " *text-props*")))
373 (unwind-protect
374 (progn
375 (describe-text-properties pos tmp-buf)
376 (with-current-buffer tmp-buf (buffer-string)))
377 (kill-buffer tmp-buf))))
378 item-list max-width code)
379
380 (setq code (encode-char char charset))
381 (setq item-list
382 `(("character"
383 ,(format "%s (%d, #o%o, #x%x)"
384 (apply 'propertize char-description
385 (text-properties-at pos))
386 char char char))
387 ("preferred charset"
388 ,`(insert-text-button
389 ,(symbol-name charset)
390 'type 'help-character-set 'help-args '(,charset))
391 ,(format "(%s)" (charset-description charset)))
392 ("code point"
393 ,(let ((str (if (integerp code)
394 (format (if (< code 256) "0x%02X" "0x%04X") code)
395 (format "0x%04X%04X" (car code) (cdr code)))))
396 (if (<= (charset-dimension charset) 2)
397 `(insert-text-button
398 ,str
399 'action (lambda (&rest ignore)
400 (list-charset-chars ',charset)
401 (with-selected-window
402 (get-buffer-window "*Character List*" 0)
403 (goto-char (point-min))
404 (forward-line 2) ;Skip the header.
405 (let ((case-fold-search nil))
406 (if (search-forward ,(char-to-string char)
407 nil t)
408 (goto-char (match-beginning 0))))))
409 'help-echo
410 "mouse-2, RET: show this character in its character set")
411 str)))
412 ("syntax"
413 ,(let ((syntax (syntax-after pos)))
414 (with-temp-buffer
415 (internal-describe-syntax-value syntax)
416 (buffer-string))))
417 ("category"
418 ,@(let ((category-set (char-category-set char)))
419 (if (not category-set)
420 '("-- none --")
421 (mapcar #'(lambda (x) (format "%c:%s"
422 x (category-docstring x)))
423 (category-set-mnemonics category-set)))))
424 ("to input"
425 ,@(let ((key-list (and (eq input-method-function
426 'quail-input-method)
427 (quail-find-key char))))
428 (if (consp key-list)
429 (list "type"
430 (mapconcat #'(lambda (x) (concat "\"" x "\""))
431 key-list " or ")
432 "with"
433 `(insert-text-button
434 ,current-input-method
435 'type 'help-input-method
436 'help-args '(,current-input-method))))))
437 ("buffer code"
438 ,(encoded-string-description
439 (string-as-unibyte (char-to-string char)) nil))
440 ("file code"
441 ,@(let* ((coding buffer-file-coding-system)
442 (encoded (encode-coding-char char coding)))
443 (if encoded
444 (list (encoded-string-description encoded coding)
445 (format "(encoded by coding system %S)" coding))
446 (list "not encodable by coding system"
447 (symbol-name coding)))))
448 ("display"
449 ,(cond
450 (disp-vector
451 (setq disp-vector (copy-sequence disp-vector))
452 (dotimes (i (length disp-vector))
453 (setq char (aref disp-vector i))
454 (aset disp-vector i
455 (cons char (describe-char-display
456 pos (glyph-char char)))))
457 (format "by display table entry [%s] (see below)"
458 (mapconcat
459 #'(lambda (x)
460 (format "?%c" (glyph-char (car x))))
461 disp-vector " ")))
462 (composition
463 (let ((from (car composition))
464 (to (nth 1 composition))
465 (next (1+ pos))
466 (components (nth 2 composition))
467 ch)
468 (setcar composition
469 (and (< from pos) (buffer-substring from pos)))
470 (setcar (cdr composition)
471 (and (< next to) (buffer-substring next to)))
472 (dotimes (i (length components))
473 (if (integerp (setq ch (aref components i)))
474 (push (cons ch (describe-char-display pos ch))
475 component-chars)))
476 (setq component-chars (nreverse component-chars))
477 (format "composed to form \"%s\" (see below)"
478 (buffer-substring from to))))
479 (t
480 (let ((display (describe-char-display pos char)))
481 (if (display-graphic-p (selected-frame))
482 (if display
483 (concat
484 "by this font (glyph code)\n"
485 (format " %s (#x%02X)"
486 (car display) (cdr display)))
487 "no font available")
488 (if display
489 (format "terminal code %s" display)
490 "not encodable for terminal"))))))
491 ,@(let ((face
492 (if (not (or disp-vector composition))
493 (cond
494 ((and show-trailing-whitespace
495 (save-excursion (goto-char pos)
496 (looking-at "[ \t]+$")))
497 'trailing-whitespace)
498 ((and nobreak-char-display char (eq char '#xa0))
499 'nobreak-space)
500 ((and nobreak-char-display char (eq char '#xad))
501 'escape-glyph)
502 ((and (< char 32) (not (memq char '(9 10))))
503 'escape-glyph)))))
504 (if face (list (list "hardcoded face"
505 `(insert-text-button
506 ,(symbol-name face)
507 'type 'help-face 'help-args '(,face))))))
508 ,@(let ((unicodedata (describe-char-unicode-data char)))
509 (if unicodedata
510 (cons (list "Unicode data" " ") unicodedata)))))
511 (setq max-width (apply #'max (mapcar #'(lambda (x)
512 (if (cadr x) (length (car x)) 0))
513 item-list)))
514 (help-setup-xref nil (interactive-p))
515 (with-help-window (help-buffer)
516 (with-current-buffer standard-output
517 (set-buffer-multibyte multibyte-p)
518 (let ((formatter (format "%%%ds:" max-width)))
519 (dolist (elt item-list)
520 (when (cadr elt)
521 (insert (format formatter (car elt)))
522 (dolist (clm (cdr elt))
523 (if (eq (car-safe clm) 'insert-text-button)
524 (progn (insert " ") (eval clm))
525 (when (>= (+ (current-column)
526 (or (string-match "\n" clm)
527 (string-width clm))
528 1)
529 (window-width))
530 (insert "\n")
531 (indent-to (1+ max-width)))
532 (insert " " clm)))
533 (insert "\n"))))
534
535 (when overlays
536 (save-excursion
537 (goto-char (point-min))
538 (re-search-forward "character:[ \t\n]+")
539 (let* ((end (+ (point) (length char-description))))
540 (mapc #'(lambda (props)
541 (let ((o (make-overlay (point) end)))
542 (while props
543 (overlay-put o (car props) (nth 1 props))
544 (setq props (cddr props)))))
545 overlays))))
546
547 (when disp-vector
548 (insert
549 "\nThe display table entry is displayed by ")
550 (if (display-graphic-p (selected-frame))
551 (progn
552 (insert "these fonts (glyph codes):\n")
553 (dotimes (i (length disp-vector))
554 (insert (glyph-char (car (aref disp-vector i))) ?:
555 (propertize " " 'display '(space :align-to 5))
556 (if (cdr (aref disp-vector i))
557 (format "%s (#x%02X)" (cadr (aref disp-vector i))
558 (cddr (aref disp-vector i)))
559 "-- no font --")
560 "\n")
561 (let ((face (glyph-face (car (aref disp-vector i)))))
562 (when face
563 (insert (propertize " " 'display '(space :align-to 5))
564 "face: ")
565 (insert (concat "`" (symbol-name face) "'"))
566 (insert "\n")))))
567 (insert "these terminal codes:\n")
568 (dotimes (i (length disp-vector))
569 (insert (car (aref disp-vector i))
570 (propertize " " 'display '(space :align-to 5))
571 (or (cdr (aref disp-vector i)) "-- not encodable --")
572 "\n"))))
573
574 (when composition
575 (insert "\nComposed")
576 (if (car composition)
577 (if (cadr composition)
578 (insert " with the surrounding characters \""
579 (car composition) "\" and \""
580 (cadr composition) "\"")
581 (insert " with the preceding character(s) \""
582 (car composition) "\""))
583 (if (cadr composition)
584 (insert " with the following character(s) \""
585 (cadr composition) "\"")))
586 (insert " by the rule:\n\t("
587 (mapconcat (lambda (x)
588 (if (consp x) (format "%S" x)
589 (if (= x ?\t)
590 (single-key-description x)
591 (string ?? x))))
592 (nth 2 composition)
593 " ")
594 ")")
595 (insert "\nThe component character(s) are displayed by ")
596 (if (display-graphic-p (selected-frame))
597 (progn
598 (insert "these fonts (glyph codes):")
599 (dolist (elt component-chars)
600 (if (/= (car elt) ?\t)
601 (insert "\n " (car elt) ?:
602 (propertize " " 'display '(space :align-to 5))
603 (if (cdr elt)
604 (format "%s (#x%02X)" (cadr elt) (cddr elt))
605 "-- no font --")))))
606 (insert "these terminal codes:")
607 (dolist (elt component-chars)
608 (insert "\n " (car elt) ":"
609 (propertize " " 'display '(space :align-to 4))
610 (or (cdr elt) "-- not encodable --"))))
611 (insert "\nSee the variable `reference-point-alist' for "
612 "the meaning of the rule.\n"))
613
614 (if (not describe-char-unidata-list)
615 (insert "\nCharacter code properties are not shown: ")
616 (insert "\nCharacter code properties: "))
617 (insert-text-button
618 "customize what to show"
619 'action (lambda (&rest ignore)
620 (customize-variable
621 'describe-char-unidata-list)))
622 (insert "\n")
623 (dolist (elt describe-char-unidata-list)
624 (let ((val (get-char-code-property char elt))
625 description)
626 (when val
627 (setq description (char-code-property-description elt val))
628 (if description
629 (insert (format " %s: %s (%s)\n" elt val description))
630 (insert (format " %s: %s\n" elt val))))))
631
632 (if text-props-desc (insert text-props-desc))
633 (setq help-xref-stack-item (list 'help-insert-string (buffer-string)))
634 (toggle-read-only 1)))))
635
636 (defalias 'describe-char-after 'describe-char)
637 (make-obsolete 'describe-char-after 'describe-char "22.1")
638
639 (provide 'descr-text)
640
641 ;; arch-tag: fc55a498-f3e9-4312-b5bd-98cc02480af1
642 ;;; descr-text.el ends here