1 ;;; help-fns.el --- Complex help functions
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001,
4 ;; 2002, 2003, 2004, 2005, 2006 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
))))
107 (defun describe-function (function)
108 "Display the full documentation of FUNCTION (a symbol)."
110 (let ((fn (function-called-at-point))
111 (enable-recursive-minibuffers t
)
113 (setq val
(completing-read (if fn
114 (format "Describe function (default %s): " fn
)
115 "Describe function: ")
116 obarray
'fboundp t nil nil
117 (and fn
(symbol-name fn
))))
118 (list (if (equal val
"")
121 (message "You didn't specify a function")
122 (help-setup-xref (list #'describe-function function
) (interactive-p))
124 (with-output-to-temp-buffer (help-buffer)
126 ;; Use " is " instead of a colon so that
127 ;; it is easier to get out the function name using forward-sexp.
129 (describe-function-1 function
)
130 (print-help-return-message)
131 (with-current-buffer standard-output
132 ;; Return the text we displayed.
135 (defun help-split-fundoc (docstring def
)
136 "Split a function DOCSTRING into the actual doc and the usage info.
137 Return (USAGE . DOC) or nil if there's no usage info.
138 DEF is the function whose usage we're looking for in DOCSTRING."
139 ;; Functions can get the calling sequence at the end of the doc string.
140 ;; In cases where `function' has been fset to a subr we can't search for
141 ;; function's name in the doc string so we use `fn' as the anonymous
142 ;; function name instead.
143 (when (and docstring
(string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring
))
144 (cons (format "(%s%s"
145 ;; Replace `fn' with the actual function name.
146 (if (consp def
) "anonymous" def
)
147 (match-string 1 docstring
))
148 (substring docstring
0 (match-beginning 0)))))
150 (defun help-add-fundoc-usage (docstring arglist
)
151 "Add the usage info to DOCSTRING.
152 If DOCSTRING already has a usage info, then just return it unchanged.
153 The usage info is built from ARGLIST. DOCSTRING can be nil.
154 ARGLIST can also be t or a string of the form \"(FUN ARG1 ARG2 ...)\"."
155 (unless (stringp docstring
) (setq docstring
"Not documented"))
156 (if (or (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring
) (eq arglist t
))
159 (if (string-match "\n?\n\\'" docstring
)
160 (if (< (- (match-end 0) (match-beginning 0)) 2) "\n" "")
162 (if (and (stringp arglist
)
163 (string-match "\\`([^ ]+\\(.*\\))\\'" arglist
))
164 (concat "(fn" (match-string 1 arglist
) ")")
165 (format "%S" (help-make-usage 'fn arglist
))))))
167 (defun help-function-arglist (def)
168 ;; Handle symbols aliased to other symbols.
169 (if (and (symbolp def
) (fboundp def
)) (setq def
(indirect-function def
)))
170 ;; If definition is a macro, find the function inside it.
171 (if (eq (car-safe def
) 'macro
) (setq def
(cdr def
)))
173 ((byte-code-function-p def
) (aref def
0))
174 ((eq (car-safe def
) 'lambda
) (nth 1 def
))
175 ((and (eq (car-safe def
) 'autoload
) (not (eq (nth 4 def
) 'keymap
)))
176 "[Arg list not available until function definition is loaded.]")
179 (defun help-make-usage (function arglist
)
180 (cons (if (symbolp function
) function
'anonymous
)
181 (mapcar (lambda (arg)
182 (if (not (symbolp arg
))
183 (if (and (consp arg
) (symbolp (car arg
)))
184 ;; CL style default values for optional args.
185 (cons (intern (upcase (symbol-name (car arg
))))
188 (let ((name (symbol-name arg
)))
189 (if (string-match "\\`&" name
) arg
190 (intern (upcase name
))))))
193 ;; Could be this, if we make symbol-file do the work below.
194 ;; (defun help-C-file-name (subr-or-var kind)
195 ;; "Return the name of the C file where SUBR-OR-VAR is defined.
196 ;; KIND should be `var' for a variable or `subr' for a subroutine."
197 ;; (symbol-file (if (symbolp subr-or-var) subr-or-var
198 ;; (subr-name subr-or-var))
199 ;; (if (eq kind 'var) 'defvar 'defun)))
201 (defun help-C-file-name (subr-or-var kind
)
202 "Return the name of the C file where SUBR-OR-VAR is defined.
203 KIND should be `var' for a variable or `subr' for a subroutine."
204 (let ((docbuf (get-buffer-create " *DOC*"))
205 (name (if (eq 'var kind
)
206 (concat "V" (symbol-name subr-or-var
))
207 (concat "F" (subr-name subr-or-var
)))))
208 (with-current-buffer docbuf
209 (goto-char (point-min))
211 (insert-file-contents-literally
212 (expand-file-name internal-doc-file-name doc-directory
)))
213 (let ((file (catch 'loop
215 (let ((pnt (search-forward (concat "\x1f" name
"\n"))))
216 (re-search-backward "\x1fS\\(.*\\)")
217 (let ((file (match-string 1)))
218 (if (member file build-files
)
220 (goto-char pnt
))))))))
221 (if (string-match "\\.\\(o\\|obj\\)\\'" file
)
222 (setq file
(replace-match ".c" t t file
)))
223 (if (string-match "\\.c\\'" file
)
227 (defface help-argument-name
'((((supports :slant italic
)) :inherit italic
))
228 "Face to highlight argument names in *Help* buffers."
231 (defun help-default-arg-highlight (arg)
232 "Default function to highlight arguments in *Help* buffers.
233 It returns ARG in face `help-argument-name'; ARG is also
234 downcased if it displays differently than the default
235 face (according to `face-differs-from-default-p')."
236 (propertize (if (face-differs-from-default-p 'help-argument-name
)
239 'face
'help-argument-name
))
241 (defun help-do-arg-highlight (doc args
)
242 (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table
)
243 (modify-syntax-entry ?\-
"w")
244 (dolist (arg args doc
)
245 (setq doc
(replace-regexp-in-string
246 ;; This is heuristic, but covers all common cases
248 (concat "\\<" ; beginning of word
249 "\\(?:[a-z-]*-\\)?" ; for xxx-ARG
253 "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs
254 "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n
256 (help-default-arg-highlight arg
)
259 (defun help-highlight-arguments (usage doc
&rest args
)
263 (goto-char (point-min))
264 (let ((case-fold-search nil
)
265 (next (not (or args
(looking-at "\\["))))
267 ;; Make a list of all arguments
268 (skip-chars-forward "^ ")
270 (or opt
(not (looking-at " &")) (setq opt t
))
271 (if (not (re-search-forward " \\([\\[(]*\\)\\([^] &)\.]+\\)" nil t
))
273 (setq args
(cons (match-string 2) args
))
274 (when (and opt
(string= (match-string 1) "("))
275 ;; A pesky CL-style optional argument with default value,
276 ;; so let's skip over it
277 (search-backward "(")
278 (goto-char (scan-sexps (point) 1)))))
279 ;; Highlight aguments in the USAGE string
280 (setq usage
(help-do-arg-highlight (buffer-string) args
))
281 ;; Highlight arguments in the DOC string
282 (setq doc
(and doc
(help-do-arg-highlight doc args
))))))
283 ;; Return value is like the one from help-split-fundoc, but highlighted
287 (defun describe-simplify-lib-file-name (file)
288 "Simplify a library name FILE to a relative name, and make it a source file."
290 ;; Try converting the absolute file name to a library name.
291 (let ((libname (file-name-nondirectory file
)))
292 ;; Now convert that back to a file name and see if we get
293 ;; the original one. If so, they are equivalent.
294 (if (equal file
(locate-file libname load-path
'("")))
295 (if (string-match "[.]elc\\'" libname
)
296 (substring libname
0 -
1)
301 (defun describe-function-1 (function)
302 (let* ((def (if (symbolp function
)
303 (symbol-function function
)
306 (beg (if (commandp def
) "an interactive " "a ")))
308 (cond ((or (stringp def
)
312 (if (eq 'unevalled
(cdr (subr-arity def
)))
313 (concat beg
"special form")
314 (concat beg
"built-in function")))
315 ((byte-code-function-p def
)
316 (concat beg
"compiled Lisp function"))
318 (while (symbolp (symbol-function def
))
319 (setq def
(symbol-function def
)))
320 (format "an alias for `%s'" def
))
321 ((eq (car-safe def
) 'lambda
)
322 (concat beg
"Lisp function"))
323 ((eq (car-safe def
) 'macro
)
325 ((eq (car-safe def
) 'autoload
)
326 (setq file-name
(nth 1 def
))
327 (format "%s autoloaded %s"
328 (if (commandp def
) "an interactive" "an")
329 (if (eq (nth 4 def
) 'keymap
) "keymap"
330 (if (nth 4 def
) "Lisp macro" "Lisp function"))
334 (elts (cdr-safe def
)))
336 (if (char-table-p (car-safe elts
))
339 (setq elts
(cdr-safe elts
)))
345 (with-current-buffer standard-output
348 (if (re-search-backward "alias for `\\([^`']+\\)'" nil t
)
349 (help-xref-button 1 'help-function def
)))))
351 (setq file-name
(symbol-file function
'defun
)))
352 (setq file-name
(describe-simplify-lib-file-name file-name
))
353 (when (equal file-name
"loaddefs.el")
354 ;; Find the real def site of the preloaded function.
355 ;; This is necessary only for defaliases.
358 (find-function-search-for-symbol function nil
"loaddefs.el")
361 (with-current-buffer (car location
)
362 (goto-char (cdr location
))
363 (when (re-search-backward
364 "^;;; Generated autoloads from \\(.*\\)" nil t
)
365 (setq file-name
(match-string 1)))))))
366 (when (and (null file-name
) (subrp def
))
367 ;; Find the C source file name.
368 (setq file-name
(if (get-buffer " *DOC*")
369 (help-C-file-name def
'subr
)
373 ;; We used to add .el to the file name,
374 ;; but that's completely wrong when the user used load-file.
375 (princ (if (eq file-name
'C-source
) "C source code" file-name
))
377 ;; Make a hyperlink to the library.
378 (with-current-buffer standard-output
380 (re-search-backward "`\\([^`']+\\)'" nil t
)
381 (help-xref-button 1 'help-function-def function file-name
))))
384 (when (commandp function
)
385 (let* ((remapped (command-remapping function
))
386 (keys (where-is-internal
387 (or remapped function
) overriding-local-map nil nil
))
389 ;; Which non-control non-meta keys run this command?
391 (if (member (event-modifiers (aref key
0)) '(nil (shift)))
392 (push key non-modified-keys
)))
394 (princ "It is remapped to `")
395 (princ (symbol-name remapped
))
399 (princ (if remapped
" which is bound to " "It is bound to "))
400 ;; FIXME: This list can be very long (f.ex. for self-insert-command).
401 ;; If there are many, remove them from KEYS.
402 (if (< (length non-modified-keys
) 10)
403 (princ (mapconcat 'key-description keys
", "))
404 (dolist (key non-modified-keys
)
405 (setq keys
(delq key keys
)))
408 (princ (mapconcat 'key-description keys
", "))
409 (princ ", and many ordinary text characters"))
410 (princ "many ordinary text characters"))))
411 (when (or remapped keys non-modified-keys
)
414 (let* ((arglist (help-function-arglist def
))
415 (doc (documentation function
))
416 (usage (help-split-fundoc doc function
)))
417 (with-current-buffer standard-output
418 ;; If definition is a keymap, skip arglist note.
419 (unless (keymapp def
)
421 (usage (setq doc
(cdr usage
)) (car usage
))
423 (format "%S" (help-make-usage function arglist
)))
424 ((stringp arglist
) arglist
)
425 ;; Maybe the arglist is in the docstring of the alias.
426 ((let ((fun function
))
427 (while (and (symbolp fun
)
428 (setq fun
(symbol-function fun
))
429 (not (setq usage
(help-split-fundoc
436 (format "\nMacro: %s" (format-kbd-macro def
)))
437 (t "[Missing arglist. Please make a bug report.]")))
438 (high (help-highlight-arguments use doc
)))
439 (let ((fill-begin (point)))
440 (insert (car high
) "\n")
441 (fill-region fill-begin
(point)))
442 (setq doc
(cdr high
))))
444 ;; function might be a lambda construct.
446 (get function
'byte-obsolete-info
))))
448 (princ "\nThis function is obsolete")
449 (when (nth 2 obsolete
)
450 (insert (format " since %s" (nth 2 obsolete
))))
452 (if (stringp (car obsolete
)) (car obsolete
)
453 (format "use `%s' instead." (car obsolete
)))
456 (or doc
"Not documented.")))))))
462 (defun variable-at-point (&optional any-symbol
)
463 "Return the bound variable symbol found around point.
464 Return 0 if there is no such symbol.
465 If ANY-SYMBOL is non-nil, don't insist the symbol be bound."
466 (or (condition-case ()
467 (with-syntax-table emacs-lisp-mode-syntax-table
469 (or (not (zerop (skip-syntax-backward "_w")))
470 (eq (char-syntax (following-char)) ?w
)
471 (eq (char-syntax (following-char)) ?_
)
473 (skip-chars-forward "'")
474 (let ((obj (read (current-buffer))))
475 (and (symbolp obj
) (boundp obj
) obj
))))
477 (let* ((str (find-tag-default))
478 (sym (if str
(intern-soft str
))))
479 (if (and sym
(or any-symbol
(boundp sym
)))
482 (when (and str
(string-match "\\`\\W*\\(.*?\\)\\W*\\'" str
))
483 (setq sym
(intern-soft (match-string 1 str
)))
484 (and (or any-symbol
(boundp sym
)) sym
)))))
488 (defun describe-variable (variable &optional buffer
)
489 "Display the full documentation of VARIABLE (a symbol).
490 Returns the documentation as a string, also.
491 If VARIABLE has a buffer-local value in BUFFER (default to the current buffer),
492 it is displayed along with the global value."
494 (let ((v (variable-at-point))
495 (enable-recursive-minibuffers t
)
497 (setq val
(completing-read (if (symbolp v
)
499 "Describe variable (default %s): " v
)
500 "Describe variable: ")
504 (get vv
'variable-documentation
)))
506 (if (symbolp v
) (symbol-name v
))))
507 (list (if (equal val
"")
509 (unless (buffer-live-p buffer
) (setq buffer
(current-buffer)))
510 (if (not (symbolp variable
))
511 (message "You did not specify a variable")
513 (let* ((valvoid (not (with-current-buffer buffer
(boundp variable
))))
514 ;; Extract the value before setting up the output buffer,
515 ;; in case `buffer' *is* the output buffer.
516 (val (unless valvoid
(buffer-local-value variable buffer
)))
518 (help-setup-xref (list #'describe-variable variable buffer
)
520 (with-output-to-temp-buffer (help-buffer)
521 (with-current-buffer buffer
523 ;; Make a hyperlink to the library if appropriate. (Don't
524 ;; change the format of the buffer's initial line in case
525 ;; anything expects the current format.)
526 (let ((file-name (symbol-file variable
'defvar
)))
527 (setq file-name
(describe-simplify-lib-file-name file-name
))
528 (when (equal file-name
"loaddefs.el")
529 ;; Find the real def site of the preloaded variable.
532 (find-variable-noselect variable file-name
)
535 (with-current-buffer (car location
)
536 (goto-char (cdr location
))
537 (when (re-search-backward
538 "^;;; Generated autoloads from \\(.*\\)" nil t
)
539 (setq file-name
(match-string 1)))))))
540 (when (and (null file-name
)
541 (integerp (get variable
'variable-documentation
)))
542 ;; It's a variable not defined in Elisp but in C.
544 (if (get-buffer " *DOC*")
545 (help-C-file-name variable
'var
)
549 (princ " is a variable defined in `")
550 (princ (if (eq file-name
'C-source
) "C source code" file-name
))
552 (with-current-buffer standard-output
554 (re-search-backward "`\\([^`']+\\)'" nil t
)
555 (help-xref-button 1 'help-variable-def
556 variable file-name
)))
558 (princ "It is void as a variable.")
561 (princ " is void as a variable.")
565 (with-current-buffer standard-output
566 (setq val-start-pos
(point))
569 (let ((from (point)))
571 ;; Hyperlinks in variable's value are quite frequently
572 ;; inappropriate e.g C-h v <RET> features <RET>
573 ;; (help-xref-on-pp from (point))
574 (if (< (point) (+ from
20))
575 (delete-region (1- from
) from
)))))
578 (when (local-variable-p variable
)
579 (princ (format "%socal in buffer %s; "
580 (if (get variable
'permanent-local
)
583 (if (not (default-boundp variable
))
584 (princ "globally void")
585 (let ((val (default-value variable
)))
586 (with-current-buffer standard-output
587 (princ "global value is ")
589 ;; Fixme: pp can take an age if you happen to
590 ;; ask for a very large expression. We should
591 ;; probably print it raw once and check it's a
592 ;; sensible size before prettyprinting. -- fx
593 (let ((from (point)))
595 ;; See previous comment for this function.
596 ;; (help-xref-on-pp from (point))
597 (if (< (point) (+ from
20))
598 (delete-region (1- from
) from
)))))))
599 ;; Add a note for variables that have been make-var-buffer-local.
600 (when (and (local-variable-if-set-p variable
)
601 (or (not (local-variable-p variable
))
603 (local-variable-if-set-p variable
))))
604 (princ "\nAutomatically becomes buffer-local when set in any fashion.\n"))
607 ;; If the value is large, move it to the end.
608 (with-current-buffer standard-output
609 (when (> (count-lines (point-min) (point-max)) 10)
610 ;; Note that setting the syntax table like below
611 ;; makes forward-sexp move over a `'s' at the end
613 (set-syntax-table emacs-lisp-mode-syntax-table
)
614 (goto-char val-start-pos
)
615 (delete-region (point) (progn (end-of-line) (point)))
617 (insert "\n\nValue:")
618 (set (make-local-variable 'help-button-cache
)
620 (insert "value is shown ")
621 (insert-button "below"
622 'action help-button-cache
624 'help-echo
"mouse-2, RET: show value")
627 ;; Mention if it's an alias
628 (let* ((alias (condition-case nil
629 (indirect-variable variable
)
631 (obsolete (get variable
'byte-obsolete-variable
))
632 (doc (or (documentation-property variable
'variable-documentation
)
633 (documentation-property alias
'variable-documentation
))))
634 (unless (eq alias variable
)
635 (princ (format "\nThis variable is an alias for `%s'.\n" alias
)))
637 (princ "\nThis variable is obsolete")
638 (if (cdr obsolete
) (princ (format " since %s" (cdr obsolete
))))
640 (princ (if (stringp (car obsolete
)) (car obsolete
)
641 (format "use `%s' instead." (car obsolete
))))
643 (princ "Documentation:\n")
644 (princ (or doc
"Not documented as a variable.")))
645 ;; Make a link to customize if this variable can be customized.
646 (if (custom-variable-p variable
)
647 (let ((customize-label "customize"))
650 (princ (concat "You can " customize-label
" this variable."))
651 (with-current-buffer standard-output
654 (concat "\\(" customize-label
"\\)") nil t
)
655 (help-xref-button 1 'help-customize-variable variable
)))))
656 (print-help-return-message)
658 (set-buffer standard-output
)
659 ;; Return the text we displayed.
660 (buffer-string))))))))
664 (defun describe-syntax (&optional buffer
)
665 "Describe the syntax specifications in the syntax table of BUFFER.
666 The descriptions are inserted in a help buffer, which is then displayed.
667 BUFFER defaults to the current buffer."
669 (setq buffer
(or buffer
(current-buffer)))
670 (help-setup-xref (list #'describe-syntax buffer
) (interactive-p))
671 (with-output-to-temp-buffer (help-buffer)
672 (let ((table (with-current-buffer buffer
(syntax-table))))
673 (with-current-buffer standard-output
674 (describe-vector table
'internal-describe-syntax-value
)
675 (while (setq table
(char-table-parent table
))
676 (insert "\nThe parent syntax table is:")
677 (describe-vector table
'internal-describe-syntax-value
))))))
679 (defun help-describe-category-set (value)
681 ((null value
) "default")
682 ((char-table-p value
) "deeper char-table ...")
683 (t (condition-case err
684 (category-set-mnemonics value
)
685 (error "invalid"))))))
688 (defun describe-categories (&optional buffer
)
689 "Describe the category specifications in the current category table.
690 The descriptions are inserted in a buffer, which is then displayed.
691 If BUFFER is non-nil, then describe BUFFER's category table instead.
692 BUFFER should be a buffer or a buffer name."
694 (setq buffer
(or buffer
(current-buffer)))
695 (help-setup-xref (list #'describe-categories buffer
) (interactive-p))
696 (with-output-to-temp-buffer (help-buffer)
697 (let ((table (with-current-buffer buffer
(category-table))))
698 (with-current-buffer standard-output
699 (describe-vector table
'help-describe-category-set
)
700 (let ((docs (char-table-extra-slot table
0)))
701 (if (or (not (vectorp docs
)) (/= (length docs
) 95))
702 (insert "Invalid first extra slot in this char table\n")
703 (insert "Meanings of mnemonic characters are:\n")
705 (let ((elt (aref docs i
)))
707 (insert (+ i ?\s
) ": " elt
"\n"))))
708 (while (setq table
(char-table-parent table
))
709 (insert "\nThe parent category table is:")
710 (describe-vector table
'help-describe-category-set
))))))))
714 ;; arch-tag: 9e10331c-ae81-4d13-965d-c4819aaab0b3
715 ;;; help-fns.el ends here