1 ;;; help-fns.el --- Complex help functions
3 ;; Copyright (C) 1985, 86, 93, 94, 98, 1999, 2000, 01, 02, 03, 2004
4 ;; 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., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, 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")
273 (let ((arg (prog1 (car args
) (setq args
(cdr args
)))))
274 (setq doc
(replace-regexp-in-string
275 ;; This is heuristic, but covers all common cases
277 (concat "\\<" ; beginning of word
278 "\\(?:[a-z-]+-\\)?" ; for xxx-ARG
282 "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs
283 "\\(?:-[a-z-]+\\)?" ; for ARG-xxx
285 (help-default-arg-highlight arg
)
289 (defun help-highlight-arguments (usage doc
&rest args
)
293 (goto-char (point-min))
294 (let ((case-fold-search nil
)
295 (next (not (or args
(looking-at "\\["))))
297 ;; Make a list of all arguments
298 (skip-chars-forward "^ ")
300 (or opt
(not (looking-at " &")) (setq opt t
))
301 (if (not (re-search-forward " \\([\\[(]*\\)\\([^] &)\.]+\\)" nil t
))
303 (setq args
(cons (match-string 2) args
))
304 (when (and opt
(string= (match-string 1) "("))
305 ;; A pesky CL-style optional argument with default value,
306 ;; so let's skip over it
307 (search-backward "(")
308 (goto-char (scan-sexps (point) 1)))))
309 ;; Highlight aguments in the USAGE string
310 (setq usage
(help-do-arg-highlight (buffer-string) args
))
311 ;; Highlight arguments in the DOC string
312 (setq doc
(and doc
(help-do-arg-highlight doc args
))))))
313 ;; Return value is like the one from help-split-fundoc, but highlighted
317 (defun describe-function-1 (function)
318 (let* ((def (if (symbolp function
)
319 (symbol-function function
)
322 (beg (if (commandp def
) "an interactive " "a ")))
324 (cond ((or (stringp def
)
328 (if (eq 'unevalled
(cdr (subr-arity def
)))
329 (concat beg
"special form")
330 (concat beg
"built-in function")))
331 ((byte-code-function-p def
)
332 (concat beg
"compiled Lisp function"))
334 (while (symbolp (symbol-function def
))
335 (setq def
(symbol-function def
)))
336 (format "an alias for `%s'" def
))
337 ((eq (car-safe def
) 'lambda
)
338 (concat beg
"Lisp function"))
339 ((eq (car-safe def
) 'macro
)
341 ((eq (car-safe def
) 'autoload
)
342 (setq file-name
(nth 1 def
))
343 (format "%s autoloaded %s"
344 (if (commandp def
) "an interactive" "an")
345 (if (eq (nth 4 def
) 'keymap
) "keymap"
346 (if (nth 4 def
) "Lisp macro" "Lisp function"))
350 (elts (cdr-safe def
)))
352 (if (char-table-p (car-safe elts
))
355 (setq elts
(cdr-safe elts
)))
361 (with-current-buffer standard-output
364 (if (re-search-backward "alias for `\\([^`']+\\)'" nil t
)
365 (help-xref-button 1 'help-function def
)))))
367 (setq file-name
(symbol-file function
'defun
)))
368 (when (equal file-name
"loaddefs.el")
369 ;; Find the real def site of the preloaded function.
370 ;; This is necessary only for defaliases.
373 (find-function-search-for-symbol function nil
"loaddefs.el")
376 (with-current-buffer (car location
)
377 (goto-char (cdr location
))
378 (when (re-search-backward
379 "^;;; Generated autoloads from \\(.*\\)" nil t
)
380 (setq file-name
(match-string 1)))))))
381 (when (and (null file-name
) (subrp def
))
382 ;; Find the C source file name.
383 (setq file-name
(if (get-buffer " *DOC*")
384 (help-C-file-name def
'subr
)
388 ;; We used to add .el to the file name,
389 ;; but that's completely wrong when the user used load-file.
390 (princ (if (eq file-name
'C-source
) "C source code" file-name
))
392 ;; Make a hyperlink to the library.
393 (with-current-buffer standard-output
395 (re-search-backward "`\\([^`']+\\)'" nil t
)
396 (help-xref-button 1 'help-function-def function file-name
))))
399 (when (commandp function
)
400 (let* ((remapped (command-remapping function
))
401 (keys (where-is-internal
402 (or remapped function
) overriding-local-map nil nil
))
404 ;; Which non-control non-meta keys run this command?
406 (if (member (event-modifiers (aref key
0)) '(nil (shift)))
407 (push key non-modified-keys
)))
409 (princ "It is remapped to `")
410 (princ (symbol-name remapped
))
414 (princ (if remapped
" which is bound to " "It is bound to "))
415 ;; FIXME: This list can be very long (f.ex. for self-insert-command).
416 ;; If there are many, remove them from KEYS.
417 (if (< (length non-modified-keys
) 10)
418 (princ (mapconcat 'key-description keys
", "))
419 (dolist (key non-modified-keys
)
420 (setq keys
(delq key keys
)))
423 (princ (mapconcat 'key-description keys
", "))
424 (princ ", and many ordinary text characters"))
425 (princ "many ordinary text characters"))))
426 (when (or remapped keys non-modified-keys
)
429 (let* ((arglist (help-function-arglist def
))
430 (doc (documentation function
))
431 (usage (help-split-fundoc doc function
)))
432 (with-current-buffer standard-output
433 ;; If definition is a keymap, skip arglist note.
434 (unless (keymapp def
)
436 (usage (setq doc
(cdr usage
)) (car usage
))
438 (format "%S" (help-make-usage function arglist
)))
439 ((stringp arglist
) arglist
)
440 ;; Maybe the arglist is in the docstring of the alias.
441 ((let ((fun function
))
442 (while (and (symbolp fun
)
443 (setq fun
(symbol-function fun
))
444 (not (setq usage
(help-split-fundoc
451 (format "\nMacro: %s" (format-kbd-macro def
)))
452 (t "[Missing arglist. Please make a bug report.]")))
453 (high (help-highlight-arguments use doc
)))
454 (insert (car high
) "\n")
455 (setq doc
(cdr high
))))
457 ;; function might be a lambda construct.
459 (get function
'byte-obsolete-info
))))
461 (princ "\nThis function is obsolete")
462 (when (nth 2 obsolete
)
463 (insert (format " since %s" (nth 2 obsolete
))))
465 (if (stringp (car obsolete
)) (car obsolete
)
466 (format "use `%s' instead." (car obsolete
)))
469 (or doc
"Not documented.")))))))
475 (defun variable-at-point (&optional any-symbol
)
476 "Return the bound variable symbol found around point.
477 Return 0 if there is no such symbol.
478 If ANY-SYMBOL is non-nil, don't insist the symbol be bound."
479 (or (condition-case ()
480 (with-syntax-table emacs-lisp-mode-syntax-table
482 (or (not (zerop (skip-syntax-backward "_w")))
483 (eq (char-syntax (following-char)) ?w
)
484 (eq (char-syntax (following-char)) ?_
)
486 (skip-chars-forward "'")
487 (let ((obj (read (current-buffer))))
488 (and (symbolp obj
) (boundp obj
) obj
))))
490 (let* ((str (find-tag-default))
491 (sym (if str
(intern-soft str
))))
492 (if (and sym
(or any-symbol
(boundp sym
)))
495 (when (and str
(string-match "\\`\\W*\\(.*?\\)\\W*\\'" str
))
496 (setq sym
(intern-soft (match-string 1 str
)))
497 (and (or any-symbol
(boundp sym
)) sym
)))))
501 (defun describe-variable (variable &optional buffer
)
502 "Display the full documentation of VARIABLE (a symbol).
503 Returns the documentation as a string, also.
504 If VARIABLE has a buffer-local value in BUFFER (default to the current buffer),
505 it is displayed along with the global value."
507 (let ((v (variable-at-point))
508 (enable-recursive-minibuffers t
)
510 (setq val
(completing-read (if (symbolp v
)
512 "Describe variable (default %s): " v
)
513 "Describe variable: ")
514 obarray
'boundp t nil nil
515 (if (symbolp v
) (symbol-name v
))))
516 (list (if (equal val
"")
518 (unless (buffer-live-p buffer
) (setq buffer
(current-buffer)))
519 (if (not (symbolp variable
))
520 (message "You did not specify a variable")
522 (let* ((valvoid (not (with-current-buffer buffer
(boundp variable
))))
523 ;; Extract the value before setting up the output buffer,
524 ;; in case `buffer' *is* the output buffer.
525 (val (unless valvoid
(buffer-local-value variable buffer
))))
526 (help-setup-xref (list #'describe-variable variable buffer
)
528 (with-output-to-temp-buffer (help-buffer)
529 (with-current-buffer buffer
533 (with-current-buffer standard-output
534 (princ "'s value is ")
536 (let ((from (point)))
538 (help-xref-on-pp from
(point))
539 (if (< (point) (+ from
20))
540 (delete-region (1- from
) from
)))))
542 (when (local-variable-p variable
)
543 (princ (format "%socal in buffer %s; "
544 (if (get variable
'permanent-local
)
547 (if (not (default-boundp variable
))
548 (princ "globally void")
549 (let ((val (default-value variable
)))
550 (with-current-buffer standard-output
551 (princ "global value is ")
553 ;; Fixme: pp can take an age if you happen to
554 ;; ask for a very large expression. We should
555 ;; probably print it raw once and check it's a
556 ;; sensible size before prettyprinting. -- fx
557 (let ((from (point)))
559 (help-xref-on-pp from
(point))
560 (if (< (point) (+ from
20))
561 (delete-region (1- from
) from
))))))
564 (with-current-buffer standard-output
565 (when (> (count-lines (point-min) (point-max)) 10)
566 ;; Note that setting the syntax table like below
567 ;; makes forward-sexp move over a `'s' at the end
569 (set-syntax-table emacs-lisp-mode-syntax-table
)
570 (goto-char (point-min))
574 (delete-region (point) (progn (end-of-line) (point)))
576 (insert "\n\nValue:")
577 (set (make-local-variable 'help-button-cache
)
579 (insert " value is shown ")
580 (insert-button "below"
581 'action help-button-cache
583 'help-echo
"mouse-2, RET: show value")
585 ;; Add a note for variables that have been make-var-buffer-local.
586 (when (and (local-variable-if-set-p variable
)
587 (or (not (local-variable-p variable
))
589 (local-variable-if-set-p variable
))))
592 (insert "Automatically becomes buffer-local when set in any fashion.\n"))))
593 ;; Mention if it's an alias
594 (let* ((alias (condition-case nil
595 (indirect-variable variable
)
597 (obsolete (get variable
'byte-obsolete-variable
))
598 (doc (or (documentation-property variable
'variable-documentation
)
599 (documentation-property alias
'variable-documentation
))))
600 (unless (eq alias variable
)
601 (princ (format "This variable is an alias for `%s'." alias
))
605 (princ "This variable is obsolete")
606 (if (cdr obsolete
) (princ (format " since %s" (cdr obsolete
))))
608 (princ (if (stringp (car obsolete
)) (car obsolete
)
609 (format "use `%s' instead." (car obsolete
))))
612 (princ (or doc
"Not documented as a variable.")))
613 ;; Make a link to customize if this variable can be customized.
614 (if (custom-variable-p variable
)
615 (let ((customize-label "customize"))
618 (princ (concat "You can " customize-label
" this variable."))
619 (with-current-buffer standard-output
622 (concat "\\(" customize-label
"\\)") nil t
)
623 (help-xref-button 1 'help-customize-variable variable
)))))
624 ;; Make a hyperlink to the library if appropriate. (Don't
625 ;; change the format of the buffer's initial line in case
626 ;; anything expects the current format.)
627 (let ((file-name (symbol-file variable
'defvar
)))
628 (when (equal file-name
"loaddefs.el")
629 ;; Find the real def site of the preloaded variable.
632 (find-variable-noselect variable file-name
)
635 (with-current-buffer (car location
)
636 (goto-char (cdr location
))
637 (when (re-search-backward
638 "^;;; Generated autoloads from \\(.*\\)" nil t
)
639 (setq file-name
(match-string 1)))))))
640 (when (and (null file-name
)
641 (integerp (get variable
'variable-documentation
)))
642 ;; It's a variable not defined in Elisp but in C.
644 (if (get-buffer " *DOC*")
645 (help-C-file-name variable
'var
)
648 (princ "\n\nDefined in `")
649 (princ (if (eq file-name
'C-source
) "C source code" file-name
))
651 (with-current-buffer standard-output
653 (re-search-backward "`\\([^`']+\\)'" nil t
)
654 (help-xref-button 1 'help-variable-def
655 variable file-name
)))))
657 (print-help-return-message)
659 (set-buffer standard-output
)
660 ;; Return the text we displayed.
661 (buffer-string))))))))
665 (defun describe-syntax (&optional buffer
)
666 "Describe the syntax specifications in the syntax table of BUFFER.
667 The descriptions are inserted in a help buffer, which is then displayed.
668 BUFFER defaults to the current buffer."
670 (setq buffer
(or buffer
(current-buffer)))
671 (help-setup-xref (list #'describe-syntax buffer
) (interactive-p))
672 (with-output-to-temp-buffer (help-buffer)
673 (let ((table (with-current-buffer buffer
(syntax-table))))
674 (with-current-buffer standard-output
675 (describe-vector table
'internal-describe-syntax-value
)
676 (while (setq table
(char-table-parent table
))
677 (insert "\nThe parent syntax table is:")
678 (describe-vector table
'internal-describe-syntax-value
))))))
680 (defun help-describe-category-set (value)
682 ((null value
) "default")
683 ((char-table-p value
) "deeper char-table ...")
684 (t (condition-case err
685 (category-set-mnemonics value
)
686 (error "invalid"))))))
689 (defun describe-categories (&optional buffer
)
690 "Describe the category specifications in the current category table.
691 The descriptions are inserted in a buffer, which is then displayed.
692 If BUFFER is non-nil, then describe BUFFER's category table instead.
693 BUFFER should be a buffer or a buffer name."
695 (setq buffer
(or buffer
(current-buffer)))
696 (help-setup-xref (list #'describe-categories buffer
) (interactive-p))
697 (with-output-to-temp-buffer (help-buffer)
698 (let ((table (with-current-buffer buffer
(category-table))))
699 (with-current-buffer standard-output
700 (describe-vector table
'help-describe-category-set
)
701 (let ((docs (char-table-extra-slot table
0)))
702 (if (or (not (vectorp docs
)) (/= (length docs
) 95))
703 (insert "Invalid first extra slot in this char table\n")
704 (insert "Meanings of mnemonic characters are:\n")
706 (let ((elt (aref docs i
)))
708 (insert (+ i ?\
) ": " elt
"\n"))))
709 (while (setq table
(char-table-parent table
))
710 (insert "\nThe parent category table is:")
711 (describe-vector table
'help-describe-category-set
))))))))
715 ;;; arch-tag: 9e10331c-ae81-4d13-965d-c4819aaab0b3
716 ;;; help-fns.el ends here