1 ;;; help-fns.el --- Complex help functions
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001,
4 ;; 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
7 ;; Keywords: help, internal
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)
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., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; This file contains those help commands which are complicated, and
29 ;; which may not be used in every session. For example
30 ;; `describe-function' will probably be heavily used when doing elisp
31 ;; programming, but not if just editing C files. Simpler help commands
40 (defun help-with-tutorial (&optional arg
)
41 "Select the Emacs learn-by-doing tutorial.
42 If there is a tutorial version written in the language
43 of the selected language environment, that version is used.
44 If there's no tutorial in that language, `TUTORIAL' is selected.
45 With ARG, you are asked to choose which language."
48 (let ((minibuffer-setup-hook minibuffer-setup-hook
))
49 (add-hook 'minibuffer-setup-hook
50 'minibuffer-completion-help
)
51 (read-language-name 'tutorial
"Language: " "English"))
52 (if (get-language-info current-language-environment
'tutorial
)
53 current-language-environment
56 (setq filename
(get-language-info lang
'tutorial
))
57 (setq file
(expand-file-name (concat "~/" filename
)))
58 (delete-other-windows)
59 (if (get-file-buffer file
)
60 (switch-to-buffer (get-file-buffer file
))
61 (switch-to-buffer (create-file-buffer file
))
62 (setq buffer-file-name file
)
63 (setq default-directory
(expand-file-name "~/"))
64 (setq buffer-auto-save-file-name nil
)
65 (insert-file-contents (expand-file-name filename data-directory
))
66 (hack-local-variables)
67 (goto-char (point-min))
68 (search-forward "\n<<")
70 ;; Convert the <<...>> line to the proper [...] line,
71 ;; or just delete the <<...>> line if a [...] line follows.
72 (cond ((save-excursion
75 (delete-region (point) (progn (forward-line 1) (point))))
76 ((looking-at "<<Blank lines inserted.*>>")
77 (replace-match "[Middle of page left blank for didactic purposes. Text continues below]"))
84 (let ((n (- (window-height (selected-window))
85 (count-lines (point-min) (point))
89 ;; For a short gap, we don't need the [...] line,
91 (delete-region (point) (progn (end-of-line) (point)))
93 ;; Some people get confused by the large gap.
96 ;; Skip the [...] line (don't delete it).
98 (newline (- n
(/ n
2)))))
99 (goto-char (point-min))
100 (setq buffer-undo-list nil
)
101 (set-buffer-modified-p nil
))))
104 (defun locate-library (library &optional nosuffix path interactive-call
)
105 "Show the precise file name of Emacs library LIBRARY.
106 This command searches the directories in `load-path' like `\\[load-library]'
107 to find the file that `\\[load-library] RET LIBRARY RET' would load.
108 Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
109 to the specified name LIBRARY.
111 If the optional third arg PATH is specified, that list of directories
112 is used instead of `load-path'.
114 When called from a program, the file name is normaly returned as a
115 string. When run interactively, the argument INTERACTIVE-CALL is t,
116 and the file name is displayed in the echo area."
117 (interactive (list (completing-read "Locate library: "
118 'locate-file-completion
119 (cons load-path load-suffixes
))
122 (let ((file (locate-file library
124 (append (unless nosuffix load-suffixes
) '("")))))
127 (message "Library is file %s" (abbreviate-file-name file
))
128 (message "No library %s in search path" library
)))
135 (defun describe-function (function)
136 "Display the full documentation of FUNCTION (a symbol)."
138 (let ((fn (function-called-at-point))
139 (enable-recursive-minibuffers t
)
141 (setq val
(completing-read (if fn
142 (format "Describe function (default %s): " fn
)
143 "Describe function: ")
144 obarray
'fboundp t nil nil
(symbol-name fn
)))
145 (list (if (equal val
"")
148 (message "You didn't specify a function")
149 (help-setup-xref (list #'describe-function function
) (interactive-p))
151 (with-output-to-temp-buffer (help-buffer)
153 ;; Use " is " instead of a colon so that
154 ;; it is easier to get out the function name using forward-sexp.
156 (describe-function-1 function
)
157 (print-help-return-message)
158 (with-current-buffer standard-output
159 ;; Return the text we displayed.
162 (defun help-split-fundoc (docstring def
)
163 "Split a function DOCSTRING into the actual doc and the usage info.
164 Return (USAGE . DOC) or nil if there's no usage info.
165 DEF is the function whose usage we're looking for in DOCSTRING."
166 ;; Functions can get the calling sequence at the end of the doc string.
167 ;; In cases where `function' has been fset to a subr we can't search for
168 ;; function's name in the doc string so we use `fn' as the anonymous
169 ;; function name instead.
170 (when (and docstring
(string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring
))
171 (cons (format "(%s%s"
172 ;; Replace `fn' with the actual function name.
173 (if (consp def
) "anonymous" def
)
174 (match-string 1 docstring
))
175 (substring docstring
0 (match-beginning 0)))))
177 (defun help-add-fundoc-usage (docstring arglist
)
178 "Add the usage info to DOCSTRING.
179 If DOCSTRING already has a usage info, then just return it unchanged.
180 The usage info is built from ARGLIST. DOCSTRING can be nil.
181 ARGLIST can also be t or a string of the form \"(FUN ARG1 ARG2 ...)\"."
182 (unless (stringp docstring
) (setq docstring
"Not documented"))
183 (if (or (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring
) (eq arglist t
))
186 (if (string-match "\n?\n\\'" docstring
)
187 (if (< (- (match-end 0) (match-beginning 0)) 2) "\n" "")
189 (if (and (stringp arglist
)
190 (string-match "\\`([^ ]+\\(.*\\))\\'" arglist
))
191 (concat "(fn" (match-string 1 arglist
) ")")
192 (format "%S" (help-make-usage 'fn arglist
))))))
194 (defun help-function-arglist (def)
195 ;; Handle symbols aliased to other symbols.
196 (if (and (symbolp def
) (fboundp def
)) (setq def
(indirect-function def
)))
197 ;; If definition is a macro, find the function inside it.
198 (if (eq (car-safe def
) 'macro
) (setq def
(cdr def
)))
200 ((byte-code-function-p def
) (aref def
0))
201 ((eq (car-safe def
) 'lambda
) (nth 1 def
))
202 ((and (eq (car-safe def
) 'autoload
) (not (eq (nth 4 def
) 'keymap
)))
203 "[Arg list not available until function definition is loaded.]")
206 (defun help-make-usage (function arglist
)
207 (cons (if (symbolp function
) function
'anonymous
)
208 (mapcar (lambda (arg)
209 (if (not (symbolp arg
))
210 (if (and (consp arg
) (symbolp (car arg
)))
211 ;; CL style default values for optional args.
212 (cons (intern (upcase (symbol-name (car arg
))))
215 (let ((name (symbol-name arg
)))
216 (if (string-match "\\`&" name
) arg
217 (intern (upcase name
))))))
220 ;; Could be this, if we make symbol-file do the work below.
221 ;; (defun help-C-file-name (subr-or-var kind)
222 ;; "Return the name of the C file where SUBR-OR-VAR is defined.
223 ;; KIND should be `var' for a variable or `subr' for a subroutine."
224 ;; (symbol-file (if (symbolp subr-or-var) subr-or-var
225 ;; (subr-name subr-or-var))
226 ;; (if (eq kind 'var) 'defvar 'defun)))
228 (defun help-C-file-name (subr-or-var kind
)
229 "Return the name of the C file where SUBR-OR-VAR is defined.
230 KIND should be `var' for a variable or `subr' for a subroutine."
231 (let ((docbuf (get-buffer-create " *DOC*"))
232 (name (if (eq 'var kind
)
233 (concat "V" (symbol-name subr-or-var
))
234 (concat "F" (subr-name subr-or-var
)))))
235 (with-current-buffer docbuf
236 (goto-char (point-min))
238 (insert-file-contents-literally
239 (expand-file-name internal-doc-file-name doc-directory
)))
240 (let ((file (catch 'loop
242 (let ((pnt (search-forward (concat "\x1f" name
"\n"))))
243 (re-search-backward "\x1fS\\(.*\\)")
244 (let ((file (match-string 1)))
245 (if (member file build-files
)
247 (goto-char pnt
))))))))
248 (if (string-match "\\.\\(o\\|obj\\)\\'" file
)
249 (setq file
(replace-match ".c" t t file
)))
250 (if (string-match "\\.c\\'" file
)
255 (defface help-argument-name
'((((supports :slant italic
)) :inherit italic
))
256 "Face to highlight argument names in *Help* buffers."
259 (defun help-default-arg-highlight (arg)
260 "Default function to highlight arguments in *Help* buffers.
261 It returns ARG in face `help-argument-name'; ARG is also
262 downcased if it displays differently than the default
263 face (according to `face-differs-from-default-p')."
264 (propertize (if (face-differs-from-default-p 'help-argument-name
)
267 'face
'help-argument-name
))
269 (defun help-do-arg-highlight (doc args
)
270 (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table
)
271 (modify-syntax-entry ?\-
"w")
272 (dolist (arg args doc
)
273 (setq doc
(replace-regexp-in-string
274 ;; This is heuristic, but covers all common cases
276 (concat "\\<" ; beginning of word
277 "\\(?:[a-z-]*-\\)?" ; for xxx-ARG
281 "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs
282 "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n
284 (help-default-arg-highlight arg
)
287 (defun help-highlight-arguments (usage doc
&rest args
)
291 (goto-char (point-min))
292 (let ((case-fold-search nil
)
293 (next (not (or args
(looking-at "\\["))))
295 ;; Make a list of all arguments
296 (skip-chars-forward "^ ")
298 (or opt
(not (looking-at " &")) (setq opt t
))
299 (if (not (re-search-forward " \\([\\[(]*\\)\\([^] &)\.]+\\)" nil t
))
301 (setq args
(cons (match-string 2) args
))
302 (when (and opt
(string= (match-string 1) "("))
303 ;; A pesky CL-style optional argument with default value,
304 ;; so let's skip over it
305 (search-backward "(")
306 (goto-char (scan-sexps (point) 1)))))
307 ;; Highlight aguments in the USAGE string
308 (setq usage
(help-do-arg-highlight (buffer-string) args
))
309 ;; Highlight arguments in the DOC string
310 (setq doc
(and doc
(help-do-arg-highlight doc args
))))))
311 ;; Return value is like the one from help-split-fundoc, but highlighted
315 (defun describe-function-1 (function)
316 (let* ((def (if (symbolp function
)
317 (symbol-function function
)
320 (beg (if (commandp def
) "an interactive " "a ")))
322 (cond ((or (stringp def
)
326 (if (eq 'unevalled
(cdr (subr-arity def
)))
327 (concat beg
"special form")
328 (concat beg
"built-in function")))
329 ((byte-code-function-p def
)
330 (concat beg
"compiled Lisp function"))
332 (while (symbolp (symbol-function def
))
333 (setq def
(symbol-function def
)))
334 (format "an alias for `%s'" def
))
335 ((eq (car-safe def
) 'lambda
)
336 (concat beg
"Lisp function"))
337 ((eq (car-safe def
) 'macro
)
339 ((eq (car-safe def
) 'autoload
)
340 (setq file-name
(nth 1 def
))
341 (format "%s autoloaded %s"
342 (if (commandp def
) "an interactive" "an")
343 (if (eq (nth 4 def
) 'keymap
) "keymap"
344 (if (nth 4 def
) "Lisp macro" "Lisp function"))
348 (elts (cdr-safe def
)))
350 (if (char-table-p (car-safe elts
))
353 (setq elts
(cdr-safe elts
)))
359 (with-current-buffer standard-output
362 (if (re-search-backward "alias for `\\([^`']+\\)'" nil t
)
363 (help-xref-button 1 'help-function def
)))))
365 (setq file-name
(symbol-file function
'defun
)))
366 (when (equal file-name
"loaddefs.el")
367 ;; Find the real def site of the preloaded function.
368 ;; This is necessary only for defaliases.
371 (find-function-search-for-symbol function nil
"loaddefs.el")
374 (with-current-buffer (car location
)
375 (goto-char (cdr location
))
376 (when (re-search-backward
377 "^;;; Generated autoloads from \\(.*\\)" nil t
)
378 (setq file-name
(match-string 1)))))))
379 (when (and (null file-name
) (subrp def
))
380 ;; Find the C source file name.
381 (setq file-name
(if (get-buffer " *DOC*")
382 (help-C-file-name def
'subr
)
386 ;; We used to add .el to the file name,
387 ;; but that's completely wrong when the user used load-file.
388 (princ (if (eq file-name
'C-source
) "C source code" file-name
))
390 ;; Make a hyperlink to the library.
391 (with-current-buffer standard-output
393 (re-search-backward "`\\([^`']+\\)'" nil t
)
394 (help-xref-button 1 'help-function-def function file-name
))))
397 (when (commandp function
)
398 (let* ((remapped (command-remapping function
))
399 (keys (where-is-internal
400 (or remapped function
) overriding-local-map nil nil
))
402 ;; Which non-control non-meta keys run this command?
404 (if (member (event-modifiers (aref key
0)) '(nil (shift)))
405 (push key non-modified-keys
)))
407 (princ "It is remapped to `")
408 (princ (symbol-name remapped
))
412 (princ (if remapped
" which is bound to " "It is bound to "))
413 ;; FIXME: This list can be very long (f.ex. for self-insert-command).
414 ;; If there are many, remove them from KEYS.
415 (if (< (length non-modified-keys
) 10)
416 (princ (mapconcat 'key-description keys
", "))
417 (dolist (key non-modified-keys
)
418 (setq keys
(delq key keys
)))
421 (princ (mapconcat 'key-description keys
", "))
422 (princ ", and many ordinary text characters"))
423 (princ "many ordinary text characters"))))
424 (when (or remapped keys non-modified-keys
)
427 (let* ((arglist (help-function-arglist def
))
428 (doc (documentation function
))
429 (usage (help-split-fundoc doc function
)))
430 (with-current-buffer standard-output
431 ;; If definition is a keymap, skip arglist note.
432 (unless (keymapp def
)
434 (usage (setq doc
(cdr usage
)) (car usage
))
436 (format "%S" (help-make-usage function arglist
)))
437 ((stringp arglist
) arglist
)
438 ;; Maybe the arglist is in the docstring of the alias.
439 ((let ((fun function
))
440 (while (and (symbolp fun
)
441 (setq fun
(symbol-function fun
))
442 (not (setq usage
(help-split-fundoc
449 (format "\nMacro: %s" (format-kbd-macro def
)))
450 (t "[Missing arglist. Please make a bug report.]")))
451 (high (help-highlight-arguments use doc
)))
452 (insert (car high
) "\n")
453 (setq doc
(cdr high
))))
455 ;; function might be a lambda construct.
457 (get function
'byte-obsolete-info
))))
459 (princ "\nThis function is obsolete")
460 (when (nth 2 obsolete
)
461 (insert (format " since %s" (nth 2 obsolete
))))
463 (if (stringp (car obsolete
)) (car obsolete
)
464 (format "use `%s' instead." (car obsolete
)))
467 (or doc
"Not documented.")))))))
473 (defun variable-at-point (&optional any-symbol
)
474 "Return the bound variable symbol found around point.
475 Return 0 if there is no such symbol.
476 If ANY-SYMBOL is non-nil, don't insist the symbol be bound."
477 (or (condition-case ()
478 (with-syntax-table emacs-lisp-mode-syntax-table
480 (or (not (zerop (skip-syntax-backward "_w")))
481 (eq (char-syntax (following-char)) ?w
)
482 (eq (char-syntax (following-char)) ?_
)
484 (skip-chars-forward "'")
485 (let ((obj (read (current-buffer))))
486 (and (symbolp obj
) (boundp obj
) obj
))))
488 (let* ((str (find-tag-default))
489 (sym (if str
(intern-soft str
))))
490 (if (and sym
(or any-symbol
(boundp sym
)))
493 (when (and str
(string-match "\\`\\W*\\(.*?\\)\\W*\\'" str
))
494 (setq sym
(intern-soft (match-string 1 str
)))
495 (and (or any-symbol
(boundp sym
)) sym
)))))
499 (defun describe-variable (variable &optional buffer
)
500 "Display the full documentation of VARIABLE (a symbol).
501 Returns the documentation as a string, also.
502 If VARIABLE has a buffer-local value in BUFFER (default to the current buffer),
503 it is displayed along with the global value."
505 (let ((v (variable-at-point))
506 (enable-recursive-minibuffers t
)
508 (setq val
(completing-read (if (symbolp v
)
510 "Describe variable (default %s): " v
)
511 "Describe variable: ")
512 obarray
'boundp t nil nil
513 (if (symbolp v
) (symbol-name v
))))
514 (list (if (equal val
"")
516 (unless (buffer-live-p buffer
) (setq buffer
(current-buffer)))
517 (if (not (symbolp variable
))
518 (message "You did not specify a variable")
520 (let* ((valvoid (not (with-current-buffer buffer
(boundp variable
))))
521 ;; Extract the value before setting up the output buffer,
522 ;; in case `buffer' *is* the output buffer.
523 (val (unless valvoid
(buffer-local-value variable buffer
)))
525 (help-setup-xref (list #'describe-variable variable buffer
)
527 (with-output-to-temp-buffer (help-buffer)
528 (with-current-buffer buffer
530 ;; Make a hyperlink to the library if appropriate. (Don't
531 ;; change the format of the buffer's initial line in case
532 ;; anything expects the current format.)
533 (let ((file-name (symbol-file variable
'defvar
)))
534 (when (equal file-name
"loaddefs.el")
535 ;; Find the real def site of the preloaded variable.
538 (find-variable-noselect variable file-name
)
541 (with-current-buffer (car location
)
542 (goto-char (cdr location
))
543 (when (re-search-backward
544 "^;;; Generated autoloads from \\(.*\\)" nil t
)
545 (setq file-name
(match-string 1)))))))
546 (when (and (null file-name
)
547 (integerp (get variable
'variable-documentation
)))
548 ;; It's a variable not defined in Elisp but in C.
550 (if (get-buffer " *DOC*")
551 (help-C-file-name variable
'var
)
555 (princ " is a variable defined in `")
556 (princ (if (eq file-name
'C-source
) "C source code" file-name
))
558 (with-current-buffer standard-output
560 (re-search-backward "`\\([^`']+\\)'" nil t
)
561 (help-xref-button 1 'help-variable-def
562 variable file-name
)))
564 (princ "It is void as a variable.\n")
567 (princ " is void as a variable.\n")
571 (with-current-buffer standard-output
572 (setq val-start-pos
(point))
575 (let ((from (point)))
577 ;; Hyperlinks in variable's value are quite frequently
578 ;; inappropriate e.g C-h v <RET> features <RET>
579 ;; (help-xref-on-pp from (point))
580 (if (< (point) (+ from
20))
581 (delete-region (1- from
) from
)))))
584 (when (local-variable-p variable
)
585 (princ (format "%socal in buffer %s; "
586 (if (get variable
'permanent-local
)
589 (if (not (default-boundp variable
))
590 (princ "globally void")
591 (let ((val (default-value variable
)))
592 (with-current-buffer standard-output
593 (princ "global value is ")
595 ;; Fixme: pp can take an age if you happen to
596 ;; ask for a very large expression. We should
597 ;; probably print it raw once and check it's a
598 ;; sensible size before prettyprinting. -- fx
599 (let ((from (point)))
601 ;; See previous comment for this function.
602 ;; (help-xref-on-pp from (point))
603 (if (< (point) (+ from
20))
604 (delete-region (1- from
) from
)))))))
605 ;; Add a note for variables that have been make-var-buffer-local.
606 (when (and (local-variable-if-set-p variable
)
607 (or (not (local-variable-p variable
))
609 (local-variable-if-set-p variable
))))
610 (princ "\nAutomatically becomes buffer-local when set in any fashion.\n"))
613 ;; If the value is large, move it to the end.
614 (with-current-buffer standard-output
615 (when (> (count-lines (point-min) (point-max)) 10)
616 ;; Note that setting the syntax table like below
617 ;; makes forward-sexp move over a `'s' at the end
619 (set-syntax-table emacs-lisp-mode-syntax-table
)
620 (goto-char val-start-pos
)
621 (delete-region (point) (progn (end-of-line) (point)))
623 (insert "\n\nValue:")
624 (set (make-local-variable 'help-button-cache
)
626 (insert "value is shown ")
627 (insert-button "below"
628 'action help-button-cache
630 'help-echo
"mouse-2, RET: show value")
633 ;; Mention if it's an alias
634 (let* ((alias (condition-case nil
635 (indirect-variable variable
)
637 (obsolete (get variable
'byte-obsolete-variable
))
638 (doc (or (documentation-property variable
'variable-documentation
)
639 (documentation-property alias
'variable-documentation
))))
640 (unless (eq alias variable
)
641 (princ (format "\nThis variable is an alias for `%s'.\n" alias
)))
643 (princ "\nThis variable is obsolete")
644 (if (cdr obsolete
) (princ (format " since %s" (cdr obsolete
))))
646 (princ (if (stringp (car obsolete
)) (car obsolete
)
647 (format "use `%s' instead." (car obsolete
))))
649 (princ "Documentation:\n")
650 (princ (or doc
"Not documented as a variable.")))
651 ;; Make a link to customize if this variable can be customized.
652 (if (custom-variable-p variable
)
653 (let ((customize-label "customize"))
656 (princ (concat "You can " customize-label
" this variable."))
657 (with-current-buffer standard-output
660 (concat "\\(" customize-label
"\\)") nil t
)
661 (help-xref-button 1 'help-customize-variable variable
)))))
662 (print-help-return-message)
664 (set-buffer standard-output
)
665 ;; Return the text we displayed.
666 (buffer-string))))))))
670 (defun describe-syntax (&optional buffer
)
671 "Describe the syntax specifications in the syntax table of BUFFER.
672 The descriptions are inserted in a help buffer, which is then displayed.
673 BUFFER defaults to the current buffer."
675 (setq buffer
(or buffer
(current-buffer)))
676 (help-setup-xref (list #'describe-syntax buffer
) (interactive-p))
677 (with-output-to-temp-buffer (help-buffer)
678 (let ((table (with-current-buffer buffer
(syntax-table))))
679 (with-current-buffer standard-output
680 (describe-vector table
'internal-describe-syntax-value
)
681 (while (setq table
(char-table-parent table
))
682 (insert "\nThe parent syntax table is:")
683 (describe-vector table
'internal-describe-syntax-value
))))))
685 (defun help-describe-category-set (value)
687 ((null value
) "default")
688 ((char-table-p value
) "deeper char-table ...")
689 (t (condition-case err
690 (category-set-mnemonics value
)
691 (error "invalid"))))))
694 (defun describe-categories (&optional buffer
)
695 "Describe the category specifications in the current category table.
696 The descriptions are inserted in a buffer, which is then displayed.
697 If BUFFER is non-nil, then describe BUFFER's category table instead.
698 BUFFER should be a buffer or a buffer name."
700 (setq buffer
(or buffer
(current-buffer)))
701 (help-setup-xref (list #'describe-categories buffer
) (interactive-p))
702 (with-output-to-temp-buffer (help-buffer)
703 (let ((table (with-current-buffer buffer
(category-table))))
704 (with-current-buffer standard-output
705 (describe-vector table
'help-describe-category-set
)
706 (let ((docs (char-table-extra-slot table
0)))
707 (if (or (not (vectorp docs
)) (/= (length docs
) 95))
708 (insert "Invalid first extra slot in this char table\n")
709 (insert "Meanings of mnemonic characters are:\n")
711 (let ((elt (aref docs i
)))
713 (insert (+ i ?\s
) ": " elt
"\n"))))
714 (while (setq table
(char-table-parent table
))
715 (insert "\nThe parent category table is:")
716 (describe-vector table
'help-describe-category-set
))))))))
720 ;; arch-tag: 9e10331c-ae81-4d13-965d-c4819aaab0b3
721 ;;; help-fns.el ends here