Add "Package:" file headers to denote built-in packages.
[emacs.git] / lisp / help-mode.el
blob9d10d5170ba72e4a61ddd264bdcf291824e7e9f8
1 ;;; help-mode.el --- `help-mode' used by *Help* buffers
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002,
4 ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: help, internal
8 ;; Package: emacs
10 ;; This file is part of GNU Emacs.
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 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Defines `help-mode', which is the mode used by *Help* buffers, and
28 ;; associated support machinery, such as adding hyperlinks, etc.,
30 ;;; Code:
32 (require 'button)
33 (require 'view)
34 (eval-when-compile (require 'easymenu))
36 (defvar help-mode-map (make-sparse-keymap)
37 "Keymap for help mode.")
39 (set-keymap-parent help-mode-map button-buffer-map)
41 (define-key help-mode-map [mouse-2] 'help-follow-mouse)
42 (define-key help-mode-map "\C-c\C-b" 'help-go-back)
43 (define-key help-mode-map "\C-c\C-f" 'help-go-forward)
44 (define-key help-mode-map "\C-c\C-c" 'help-follow-symbol)
45 ;; Documentation only, since we use minor-mode-overriding-map-alist.
46 (define-key help-mode-map "\r" 'help-follow)
48 (easy-menu-define help-mode-menu help-mode-map
49 "Menu for Help Mode."
50 '("Help-Mode"
51 ["Show Help for Symbol" help-follow-symbol
52 :help "Show the docs for the symbol at point"]
53 ["Previous Topic" help-go-back
54 :help "Go back to previous topic in this help buffer"]
55 ["Next Topic" help-go-forward
56 :help "Go back to next topic in this help buffer"]
57 ["Move to Previous Button" backward-button
58 :help "Move to the Next Button in the help buffer"]
59 ["Move to Next Button" forward-button
60 :help "Move to the Next Button in the help buffer"]))
62 (defvar help-xref-stack nil
63 "A stack of ways by which to return to help buffers after following xrefs.
64 Used by `help-follow' and `help-xref-go-back'.
65 An element looks like (POSITION FUNCTION ARGS...).
66 To use the element, do (apply FUNCTION ARGS) then goto the point.")
67 (put 'help-xref-stack 'permanent-local t)
68 (make-variable-buffer-local 'help-xref-stack)
70 (defvar help-xref-forward-stack nil
71 "A stack used to navigate help forwards after using the back button.
72 Used by `help-follow' and `help-xref-go-forward'.
73 An element looks like (POSITION FUNCTION ARGS...).
74 To use the element, do (apply FUNCTION ARGS) then goto the point.")
75 (put 'help-xref-forward-stack 'permanent-local t)
76 (make-variable-buffer-local 'help-xref-forward-stack)
78 (defvar help-xref-stack-item nil
79 "An item for `help-follow' in this buffer to push onto `help-xref-stack'.
80 The format is (FUNCTION ARGS...).")
81 (put 'help-xref-stack-item 'permanent-local t)
82 (make-variable-buffer-local 'help-xref-stack-item)
84 (defvar help-xref-stack-forward-item nil
85 "An item for `help-go-back' to push onto `help-xref-forward-stack'.
86 The format is (FUNCTION ARGS...).")
87 (put 'help-xref-stack-forward-item 'permanent-local t)
88 (make-variable-buffer-local 'help-xref-stack-forward-item)
90 (setq-default help-xref-stack nil help-xref-stack-item nil)
91 (setq-default help-xref-forward-stack nil help-xref-forward-stack-item nil)
93 (defcustom help-mode-hook nil
94 "Hook run by `help-mode'."
95 :type 'hook
96 :group 'help)
98 ;; Button types used by help
100 (define-button-type 'help-xref
101 'follow-link t
102 'action #'help-button-action)
104 (defun help-button-action (button)
105 "Call BUTTON's help function."
106 (help-do-xref (button-start button)
107 (button-get button 'help-function)
108 (button-get button 'help-args)))
110 ;; These 6 calls to define-button-type were generated in a dolist
111 ;; loop, but that is bad because it means these button types don't
112 ;; have an easily found definition.
114 (define-button-type 'help-function
115 :supertype 'help-xref
116 'help-function 'describe-function
117 'help-echo (purecopy "mouse-2, RET: describe this function"))
119 (define-button-type 'help-variable
120 :supertype 'help-xref
121 'help-function 'describe-variable
122 'help-echo (purecopy "mouse-2, RET: describe this variable"))
124 (define-button-type 'help-face
125 :supertype 'help-xref
126 'help-function 'describe-face
127 'help-echo (purecopy "mouse-2, RET: describe this face"))
129 (define-button-type 'help-coding-system
130 :supertype 'help-xref
131 'help-function 'describe-coding-system
132 'help-echo (purecopy "mouse-2, RET: describe this coding system"))
134 (define-button-type 'help-input-method
135 :supertype 'help-xref
136 'help-function 'describe-input-method
137 'help-echo (purecopy "mouse-2, RET: describe this input method"))
139 (define-button-type 'help-character-set
140 :supertype 'help-xref
141 'help-function 'describe-character-set
142 'help-echo (purecopy "mouse-2, RET: describe this character set"))
144 ;; make some more ideosyncratic button types
146 (define-button-type 'help-symbol
147 :supertype 'help-xref
148 'help-function #'help-xref-interned
149 'help-echo (purecopy "mouse-2, RET: describe this symbol"))
151 (define-button-type 'help-back
152 :supertype 'help-xref
153 'help-function #'help-xref-go-back
154 'help-echo (purecopy "mouse-2, RET: go back to previous help buffer"))
156 (define-button-type 'help-forward
157 :supertype 'help-xref
158 'help-function #'help-xref-go-forward
159 'help-echo (purecopy "mouse-2, RET: move forward to next help buffer"))
161 (define-button-type 'help-info-variable
162 :supertype 'help-xref
163 ;; the name of the variable is put before the argument to Info
164 'help-function (lambda (a v) (info v))
165 'help-echo (purecopy "mouse-2, RET: read this Info node"))
167 (define-button-type 'help-info
168 :supertype 'help-xref
169 'help-function #'info
170 'help-echo (purecopy "mouse-2, RET: read this Info node"))
172 (define-button-type 'help-url
173 :supertype 'help-xref
174 'help-function #'browse-url
175 'help-echo (purecopy "mouse-2, RET: view this URL in a browser"))
177 (define-button-type 'help-customize-variable
178 :supertype 'help-xref
179 'help-function (lambda (v)
180 (customize-variable v))
181 'help-echo (purecopy "mouse-2, RET: customize variable"))
183 (define-button-type 'help-customize-face
184 :supertype 'help-xref
185 'help-function (lambda (v)
186 (customize-face v))
187 'help-echo (purecopy "mouse-2, RET: customize face"))
189 (define-button-type 'help-function-def
190 :supertype 'help-xref
191 'help-function (lambda (fun file)
192 (require 'find-func)
193 (when (eq file 'C-source)
194 (setq file
195 (help-C-file-name (indirect-function fun) 'fun)))
196 ;; Don't use find-function-noselect because it follows
197 ;; aliases (which fails for built-in functions).
198 (let ((location
199 (find-function-search-for-symbol fun nil file)))
200 (pop-to-buffer (car location))
201 (if (cdr location)
202 (goto-char (cdr location))
203 (message "Unable to find location in file"))))
204 'help-echo (purecopy "mouse-2, RET: find function's definition"))
206 (define-button-type 'help-function-cmacro
207 :supertype 'help-xref
208 'help-function (lambda (fun file)
209 (setq file (locate-library file t))
210 (if (and file (file-readable-p file))
211 (progn
212 (pop-to-buffer (find-file-noselect file))
213 (goto-char (point-min))
214 (if (re-search-forward
215 (format "^[ \t]*(define-compiler-macro[ \t]+%s"
216 (regexp-quote (symbol-name fun))) nil t)
217 (forward-line 0)
218 (message "Unable to find location in file")))
219 (message "Unable to find file")))
220 'help-echo (purecopy "mouse-2, RET: find function's compiler macro"))
222 (define-button-type 'help-variable-def
223 :supertype 'help-xref
224 'help-function (lambda (var &optional file)
225 (when (eq file 'C-source)
226 (setq file (help-C-file-name var 'var)))
227 (let ((location (find-variable-noselect var file)))
228 (pop-to-buffer (car location))
229 (if (cdr location)
230 (goto-char (cdr location))
231 (message "Unable to find location in file"))))
232 'help-echo (purecopy "mouse-2, RET: find variable's definition"))
234 (define-button-type 'help-face-def
235 :supertype 'help-xref
236 'help-function (lambda (fun file)
237 (require 'find-func)
238 ;; Don't use find-function-noselect because it follows
239 ;; aliases (which fails for built-in functions).
240 (let ((location
241 (find-function-search-for-symbol fun 'defface file)))
242 (pop-to-buffer (car location))
243 (if (cdr location)
244 (goto-char (cdr location))
245 (message "Unable to find location in file"))))
246 'help-echo (purecopy "mouse-2, RET: find face's definition"))
248 (define-button-type 'help-package
249 :supertype 'help-xref
250 'help-function 'describe-package
251 'help-echo (purecopy "mouse-2, RET: Describe package"))
253 (define-button-type 'help-package-def
254 :supertype 'help-xref
255 'help-function (lambda (file) (dired file))
256 'help-echo (purecopy "mouse-2, RET: visit package directory"))
259 ;;;###autoload
260 (defun help-mode ()
261 "Major mode for viewing help text and navigating references in it.
262 Entry to this mode runs the normal hook `help-mode-hook'.
263 Commands:
264 \\{help-mode-map}"
265 (interactive)
266 (kill-all-local-variables)
267 (use-local-map help-mode-map)
268 (setq mode-name "Help")
269 (setq major-mode 'help-mode)
271 (view-mode)
272 (set (make-local-variable 'view-no-disable-on-exit) t)
273 ;; With Emacs 22 `view-exit-action' could delete the selected window
274 ;; disregarding whether the help buffer was shown in that window at
275 ;; all. Since `view-exit-action' is called with the help buffer as
276 ;; argument it seems more appropriate to have it work on the buffer
277 ;; only and leave it to `view-mode-exit' to delete any associated
278 ;; window(s).
279 (setq view-exit-action
280 (lambda (buffer)
281 ;; Use `with-current-buffer' to make sure that `bury-buffer'
282 ;; also removes BUFFER from the selected window.
283 (with-current-buffer buffer
284 (bury-buffer))))
286 (set (make-local-variable 'revert-buffer-function)
287 'help-mode-revert-buffer)
289 (run-mode-hooks 'help-mode-hook))
291 ;;;###autoload
292 (defun help-mode-setup ()
293 (help-mode)
294 (setq buffer-read-only nil))
296 ;;;###autoload
297 (defun help-mode-finish ()
298 (if (eq help-window t)
299 ;; If `help-window' is t, `view-return-to-alist' is handled by
300 ;; `with-help-window'. In this case set `help-window' to the
301 ;; selected window since now is the only moment where we can
302 ;; unambiguously identify it.
303 (setq help-window (selected-window))
304 (let ((entry (assq (selected-window) view-return-to-alist)))
305 (if entry
306 ;; When entering Help mode from the Help window,
307 ;; such as by following a link, preserve the same
308 ;; meaning for the q command.
309 ;; (setcdr entry (cons (selected-window) help-return-method))
311 (setq view-return-to-alist
312 (cons (cons (selected-window) help-return-method)
313 view-return-to-alist)))))
315 (when (eq major-mode 'help-mode)
316 ;; View mode's read-only status of existing *Help* buffer is lost
317 ;; by with-output-to-temp-buffer.
318 (toggle-read-only 1)
319 (help-make-xrefs (current-buffer))))
321 ;; Grokking cross-reference information in doc strings and
322 ;; hyperlinking it.
324 ;; This may have some scope for extension and the same or something
325 ;; similar should be done for widget doc strings, which currently use
326 ;; another mechanism.
328 (defvar help-back-label (purecopy "[back]")
329 "Label to use by `help-make-xrefs' for the go-back reference.")
331 (defvar help-forward-label (purecopy "[forward]")
332 "Label to use by `help-make-xrefs' for the go-forward reference.")
334 (defconst help-xref-symbol-regexp
335 (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|" ; Link to var
336 "\\(function\\|command\\)\\|" ; Link to function
337 "\\(face\\)\\|" ; Link to face
338 "\\(symbol\\|program\\|property\\)\\|" ; Don't link
339 "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)"
340 "[ \t\n]+\\)?"
341 ;; Note starting with word-syntax character:
342 "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'"))
343 "Regexp matching doc string references to symbols.
345 The words preceding the quoted symbol can be used in doc strings to
346 distinguish references to variables, functions and symbols.")
348 (defvar help-xref-mule-regexp nil
349 "Regexp matching doc string references to MULE-related keywords.
351 It is usually nil, and is temporarily bound to an appropriate regexp
352 when help commands related to multilingual environment (e.g.,
353 `describe-coding-system') are invoked.")
356 (defconst help-xref-info-regexp
357 (purecopy "\\<[Ii]nfo[ \t\n]+\\(node\\|anchor\\)[ \t\n]+`\\([^']+\\)'")
358 "Regexp matching doc string references to an Info node.")
360 (defconst help-xref-url-regexp
361 (purecopy "\\<[Uu][Rr][Ll][ \t\n]+`\\([^']+\\)'")
362 "Regexp matching doc string references to a URL.")
364 ;;;###autoload
365 (defun help-setup-xref (item interactive-p)
366 "Invoked from commands using the \"*Help*\" buffer to install some xref info.
368 ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help
369 buffer after following a reference. INTERACTIVE-P is non-nil if the
370 calling command was invoked interactively. In this case the stack of
371 items for help buffer \"back\" buttons is cleared.
373 This should be called very early, before the output buffer is cleared,
374 because we want to record the \"previous\" position of point so we can
375 restore it properly when going back."
376 (with-current-buffer (help-buffer)
377 (when help-xref-stack-item
378 (push (cons (point) help-xref-stack-item) help-xref-stack)
379 (setq help-xref-forward-stack nil))
380 (when interactive-p
381 (let ((tail (nthcdr 10 help-xref-stack)))
382 ;; Truncate the stack.
383 (if tail (setcdr tail nil))))
384 (setq help-xref-stack-item item)))
386 (defvar help-xref-following nil
387 "Non-nil when following a help cross-reference.")
389 ;;;###autoload
390 (defun help-buffer ()
391 "Return the name of a buffer for inserting help.
392 If `help-xref-following' is non-nil, this is the name of the
393 current buffer.
394 Otherwise, it is *Help*; if no buffer with that name currently
395 exists, it is created."
396 (buffer-name ;for with-output-to-temp-buffer
397 (if help-xref-following
398 (current-buffer)
399 (get-buffer-create "*Help*"))))
401 (defvar help-xref-override-view-map
402 (let ((map (make-sparse-keymap)))
403 (set-keymap-parent map view-mode-map)
404 (define-key map "\r" nil)
405 map)
406 "Replacement keymap for `view-mode' in help buffers.")
408 ;;;###autoload
409 (defun help-make-xrefs (&optional buffer)
410 "Parse and hyperlink documentation cross-references in the given BUFFER.
412 Find cross-reference information in a buffer and activate such cross
413 references for selection with `help-follow'. Cross-references have
414 the canonical form `...' and the type of reference may be
415 disambiguated by the preceding word(s) used in
416 `help-xref-symbol-regexp'. Faces only get cross-referenced if
417 preceded or followed by the word `face'. Variables without
418 variable documentation do not get cross-referenced, unless
419 preceded by the word `variable' or `option'.
421 If the variable `help-xref-mule-regexp' is non-nil, find also
422 cross-reference information related to multilingual environment
423 \(e.g., coding-systems). This variable is also used to disambiguate
424 the type of reference as the same way as `help-xref-symbol-regexp'.
426 A special reference `back' is made to return back through a stack of
427 help buffers. Variable `help-back-label' specifies the text for
428 that."
429 (interactive "b")
430 (with-current-buffer (or buffer (current-buffer))
431 (save-excursion
432 (goto-char (point-min))
433 ;; Skip the header-type info, though it might be useful to parse
434 ;; it at some stage (e.g. "function in `library'").
435 (forward-paragraph)
436 (let ((old-modified (buffer-modified-p)))
437 (let ((stab (syntax-table))
438 (case-fold-search t)
439 (inhibit-read-only t))
440 (set-syntax-table emacs-lisp-mode-syntax-table)
441 ;; The following should probably be abstracted out.
442 (unwind-protect
443 (progn
444 ;; Info references
445 (save-excursion
446 (while (re-search-forward help-xref-info-regexp nil t)
447 (let ((data (match-string 2)))
448 (save-match-data
449 (unless (string-match "^([^)]+)" data)
450 (setq data (concat "(emacs)" data)))
451 (setq data ;; possible newlines if para filled
452 (replace-regexp-in-string "[ \t\n]+" " " data t t)))
453 (help-xref-button 2 'help-info data))))
454 ;; URLs
455 (save-excursion
456 (while (re-search-forward help-xref-url-regexp nil t)
457 (let ((data (match-string 1)))
458 (help-xref-button 1 'help-url data))))
459 ;; Mule related keywords. Do this before trying
460 ;; `help-xref-symbol-regexp' because some of Mule
461 ;; keywords have variable or function definitions.
462 (if help-xref-mule-regexp
463 (save-excursion
464 (while (re-search-forward help-xref-mule-regexp nil t)
465 (let* ((data (match-string 7))
466 (sym (intern-soft data)))
467 (cond
468 ((match-string 3) ; coding system
469 (and sym (coding-system-p sym)
470 (help-xref-button 6 'help-coding-system sym)))
471 ((match-string 4) ; input method
472 (and (assoc data input-method-alist)
473 (help-xref-button 7 'help-input-method data)))
474 ((or (match-string 5) (match-string 6)) ; charset
475 (and sym (charsetp sym)
476 (help-xref-button 7 'help-character-set sym)))
477 ((assoc data input-method-alist)
478 (help-xref-button 7 'help-character-set data))
479 ((and sym (coding-system-p sym))
480 (help-xref-button 7 'help-coding-system sym))
481 ((and sym (charsetp sym))
482 (help-xref-button 7 'help-character-set sym)))))))
483 ;; Quoted symbols
484 (save-excursion
485 (while (re-search-forward help-xref-symbol-regexp nil t)
486 (let* ((data (match-string 8))
487 (sym (intern-soft data)))
488 (if sym
489 (cond
490 ((match-string 3) ; `variable' &c
491 (and (or (boundp sym) ; `variable' doesn't ensure
492 ; it's actually bound
493 (get sym 'variable-documentation))
494 (help-xref-button 8 'help-variable sym)))
495 ((match-string 4) ; `function' &c
496 (and (fboundp sym) ; similarly
497 (help-xref-button 8 'help-function sym)))
498 ((match-string 5) ; `face'
499 (and (facep sym)
500 (help-xref-button 8 'help-face sym)))
501 ((match-string 6)) ; nothing for `symbol'
502 ((match-string 7)
503 ;; this used:
504 ;; #'(lambda (arg)
505 ;; (let ((location
506 ;; (find-function-noselect arg)))
507 ;; (pop-to-buffer (car location))
508 ;; (goto-char (cdr location))))
509 (help-xref-button 8 'help-function-def sym))
510 ((and
511 (facep sym)
512 (save-match-data (looking-at "[ \t\n]+face\\W")))
513 (help-xref-button 8 'help-face sym))
514 ((and (or (boundp sym)
515 (get sym 'variable-documentation))
516 (fboundp sym))
517 ;; We can't intuit whether to use the
518 ;; variable or function doc -- supply both.
519 (help-xref-button 8 'help-symbol sym))
520 ((and
521 (or (boundp sym)
522 (get sym 'variable-documentation))
524 (documentation-property
525 sym 'variable-documentation)
526 (condition-case nil
527 (documentation-property
528 (indirect-variable sym)
529 'variable-documentation)
530 (cyclic-variable-indirection nil))))
531 (help-xref-button 8 'help-variable sym))
532 ((fboundp sym)
533 (help-xref-button 8 'help-function sym)))))))
534 ;; An obvious case of a key substitution:
535 (save-excursion
536 (while (re-search-forward
537 ;; Assume command name is only word and symbol
538 ;; characters to get things like `use M-x foo->bar'.
539 ;; Command required to end with word constituent
540 ;; to avoid `.' at end of a sentence.
541 "\\<M-x\\s-+\\(\\sw\\(\\sw\\|\\s_\\)*\\sw\\)" nil t)
542 (let ((sym (intern-soft (match-string 1))))
543 (if (fboundp sym)
544 (help-xref-button 1 'help-function sym)))))
545 ;; Look for commands in whole keymap substitutions:
546 (save-excursion
547 ;; Make sure to find the first keymap.
548 (goto-char (point-min))
549 ;; Find a header and the column at which the command
550 ;; name will be found.
552 ;; If the keymap substitution isn't the last thing in
553 ;; the doc string, and if there is anything on the same
554 ;; line after it, this code won't recognize the end of it.
555 (while (re-search-forward "^key +binding\n\\(-+ +\\)-+\n\n"
556 nil t)
557 (let ((col (- (match-end 1) (match-beginning 1))))
558 (while
559 (and (not (eobp))
560 ;; Stop at a pair of blank lines.
561 (not (looking-at "\n\\s-*\n")))
562 ;; Skip a single blank line.
563 (and (eolp) (forward-line))
564 (end-of-line)
565 (skip-chars-backward "^ \t\n")
566 (if (and (>= (current-column) col)
567 (looking-at "\\(\\sw\\|\\s_\\)+$"))
568 (let ((sym (intern-soft (match-string 0))))
569 (if (fboundp sym)
570 (help-xref-button 0 'help-function sym))))
571 (forward-line))))))
572 (set-syntax-table stab))
573 ;; Delete extraneous newlines at the end of the docstring
574 (goto-char (point-max))
575 (while (and (not (bobp)) (bolp))
576 (delete-char -1))
577 (insert "\n")
578 (when (or help-xref-stack help-xref-forward-stack)
579 (insert "\n"))
580 ;; Make a back-reference in this buffer if appropriate.
581 (when help-xref-stack
582 (help-insert-xref-button help-back-label 'help-back
583 (current-buffer)))
584 ;; Make a forward-reference in this buffer if appropriate.
585 (when help-xref-forward-stack
586 (when help-xref-stack
587 (insert "\t"))
588 (help-insert-xref-button help-forward-label 'help-forward
589 (current-buffer)))
590 (when (or help-xref-stack help-xref-forward-stack)
591 (insert "\n")))
592 ;; View mode steals RET from us.
593 (set (make-local-variable 'minor-mode-overriding-map-alist)
594 (list (cons 'view-mode help-xref-override-view-map)))
595 (set-buffer-modified-p old-modified)))))
597 ;;;###autoload
598 (defun help-xref-button (match-number type &rest args)
599 "Make a hyperlink for cross-reference text previously matched.
600 MATCH-NUMBER is the subexpression of interest in the last matched
601 regexp. TYPE is the type of button to use. Any remaining arguments are
602 passed to the button's help-function when it is invoked.
603 See `help-make-xrefs'."
604 ;; Don't mung properties we've added specially in some instances.
605 (unless (button-at (match-beginning match-number))
606 (make-text-button (match-beginning match-number)
607 (match-end match-number)
608 'type type 'help-args args)))
610 ;;;###autoload
611 (defun help-insert-xref-button (string type &rest args)
612 "Insert STRING and make a hyperlink from cross-reference text on it.
613 TYPE is the type of button to use. Any remaining arguments are passed
614 to the button's help-function when it is invoked.
615 See `help-make-xrefs'."
616 (unless (button-at (point))
617 (insert-text-button string 'type type 'help-args args)))
619 ;;;###autoload
620 (defun help-xref-on-pp (from to)
621 "Add xrefs for symbols in `pp's output between FROM and TO."
622 (if (> (- to from) 5000) nil
623 (with-syntax-table emacs-lisp-mode-syntax-table
624 (save-excursion
625 (save-restriction
626 (narrow-to-region from to)
627 (goto-char (point-min))
628 (condition-case nil
629 (while (not (eobp))
630 (cond
631 ((looking-at "\"") (forward-sexp 1))
632 ((looking-at "#<") (search-forward ">" nil 'move))
633 ((looking-at "\\(\\(\\sw\\|\\s_\\)+\\)")
634 (let* ((sym (intern-soft (match-string 1)))
635 (type (cond ((fboundp sym) 'help-function)
636 ((or (memq sym '(t nil))
637 (keywordp sym))
638 nil)
639 ((and sym
640 (or (boundp sym)
641 (get sym
642 'variable-documentation)))
643 'help-variable))))
644 (when type (help-xref-button 1 type sym)))
645 (goto-char (match-end 1)))
646 (t (forward-char 1))))
647 (error nil)))))))
650 ;; Additional functions for (re-)creating types of help buffers.
651 (defun help-xref-interned (symbol)
652 "Follow a hyperlink which appeared to be an arbitrary interned SYMBOL.
653 Both variable, function and face documentation are extracted into a single
654 help buffer."
655 (with-current-buffer (help-buffer)
656 ;; Push the previous item on the stack before clobbering the output buffer.
657 (help-setup-xref nil nil)
658 (let ((facedoc (when (facep symbol)
659 ;; Don't record the current entry in the stack.
660 (setq help-xref-stack-item nil)
661 (describe-face symbol)))
662 (fdoc (when (fboundp symbol)
663 ;; Don't record the current entry in the stack.
664 (setq help-xref-stack-item nil)
665 (describe-function symbol)))
666 (sdoc (when (or (boundp symbol)
667 (get symbol 'variable-documentation))
668 ;; Don't record the current entry in the stack.
669 (setq help-xref-stack-item nil)
670 (describe-variable symbol))))
671 (cond
672 (sdoc
673 ;; We now have a help buffer on the variable.
674 ;; Insert the function and face text before it.
675 (when (or fdoc facedoc)
676 (goto-char (point-min))
677 (let ((inhibit-read-only t))
678 (when fdoc
679 (insert fdoc "\n\n")
680 (when facedoc
681 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
682 " is also a " "face." "\n\n")))
683 (when facedoc
684 (insert facedoc "\n\n"))
685 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
686 " is also a " "variable." "\n\n"))
687 ;; Don't record the `describe-variable' item in the stack.
688 (setq help-xref-stack-item nil)
689 (help-setup-xref (list #'help-xref-interned symbol) nil)))
690 (fdoc
691 ;; We now have a help buffer on the function.
692 ;; Insert face text before it.
693 (when facedoc
694 (goto-char (point-max))
695 (let ((inhibit-read-only t))
696 (insert "\n\n" (make-string 30 ?-) "\n\n" (symbol-name symbol)
697 " is also a " "face." "\n\n" facedoc))
698 ;; Don't record the `describe-function' item in the stack.
699 (setq help-xref-stack-item nil)
700 (help-setup-xref (list #'help-xref-interned symbol) nil)))))))
703 ;; Navigation/hyperlinking with xrefs
705 (defun help-xref-go-back (buffer)
706 "From BUFFER, go back to previous help buffer text using `help-xref-stack'."
707 (let (item position method args)
708 (with-current-buffer buffer
709 (push (cons (point) help-xref-stack-item) help-xref-forward-stack)
710 (when help-xref-stack
711 (setq item (pop help-xref-stack)
712 ;; Clear the current item so that it won't get pushed
713 ;; by the function we're about to call. TODO: We could also
714 ;; push it onto a "forward" stack and add a `forw' button.
715 help-xref-stack-item nil
716 position (car item)
717 method (cadr item)
718 args (cddr item))))
719 (apply method args)
720 (with-current-buffer buffer
721 (if (get-buffer-window buffer)
722 (set-window-point (get-buffer-window buffer) position)
723 (goto-char position)))))
725 (defun help-xref-go-forward (buffer)
726 "From BUFFER, go forward to next help buffer."
727 (let (item position method args)
728 (with-current-buffer buffer
729 (push (cons (point) help-xref-stack-item) help-xref-stack)
730 (when help-xref-forward-stack
731 (setq item (pop help-xref-forward-stack)
732 ;; Clear the current item so that it won't get pushed
733 ;; by the function we're about to call. TODO: We could also
734 ;; push it onto a "forward" stack and add a `forw' button.
735 help-xref-stack-item nil
736 position (car item)
737 method (cadr item)
738 args (cddr item))))
739 (apply method args)
740 (with-current-buffer buffer
741 (if (get-buffer-window buffer)
742 (set-window-point (get-buffer-window buffer) position)
743 (goto-char position)))))
745 (defun help-go-back ()
746 "Go back to previous topic in this help buffer."
747 (interactive)
748 (if help-xref-stack
749 (help-xref-go-back (current-buffer))
750 (error "No previous help buffer")))
752 (defun help-go-forward ()
753 "Go back to next topic in this help buffer."
754 (interactive)
755 (if help-xref-forward-stack
756 (help-xref-go-forward (current-buffer))
757 (error "No next help buffer")))
759 (defun help-do-xref (pos function args)
760 "Call the help cross-reference function FUNCTION with args ARGS.
761 Things are set up properly so that the resulting help-buffer has
762 a proper [back] button."
763 ;; There is a reference at point. Follow it.
764 (let ((help-xref-following t))
765 (apply function args)))
767 ;; The doc string is meant to explain what buttons do.
768 (defun help-follow-mouse ()
769 "Follow the cross-reference that you click on."
770 (interactive)
771 (error "No cross-reference here"))
773 ;; The doc string is meant to explain what buttons do.
774 (defun help-follow ()
775 "Follow cross-reference at point.
777 For the cross-reference format, see `help-make-xrefs'."
778 (interactive)
779 (error "No cross-reference here"))
781 (defun help-follow-symbol (&optional pos)
782 "In help buffer, show docs for symbol at POS, defaulting to point.
783 Show all docs for that symbol as either a variable, function or face."
784 (interactive "d")
785 (unless pos
786 (setq pos (point)))
787 ;; check if the symbol under point is a function, variable or face
788 (let ((sym
789 (intern
790 (save-excursion
791 (goto-char pos) (skip-syntax-backward "w_")
792 (buffer-substring (point)
793 (progn (skip-syntax-forward "w_")
794 (point)))))))
795 (when (or (boundp sym)
796 (get sym 'variable-documentation)
797 (fboundp sym) (facep sym))
798 (help-do-xref pos #'help-xref-interned (list sym)))))
800 (defun help-mode-revert-buffer (ignore-auto noconfirm)
801 (when (or noconfirm (yes-or-no-p "Revert help buffer? "))
802 (let ((pos (point))
803 (item help-xref-stack-item)
804 ;; Pretend there is no current item to add to the history.
805 (help-xref-stack-item nil)
806 ;; Use the current buffer.
807 (help-xref-following t))
808 (apply (car item) (cdr item))
809 (goto-char pos))))
811 (defun help-insert-string (string)
812 "Insert STRING to the help buffer and install xref info for it.
813 This function can be used to restore the old contents of the help buffer
814 when going back to the previous topic in the xref stack. It is needed
815 in case when it is impossible to recompute the old contents of the
816 help buffer by other means."
817 (setq help-xref-stack-item (list #'help-insert-string string))
818 (with-output-to-temp-buffer (help-buffer)
819 (insert string)))
821 (provide 'help-mode)
823 ;; arch-tag: 850954ae-3725-4cb4-8e91-0bf6d52d6b0b
824 ;;; help-mode.el ends here