(diary-header-line-flag, diary-header-line-format): New variables.
[bpt/emacs.git] / lisp / help-mode.el
CommitLineData
f4ed5b19
MB
1;;; help-mode.el --- `help-mode' used by *Help* buffers
2
5186b4bd 3;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002
f4ed5b19
MB
4;; Free Software Foundation, Inc.
5
6;; Maintainer: FSF
7;; Keywords: help, internal
8
9;; This file is part of GNU Emacs.
10
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)
14;; any later version.
15
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.
20
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.
25
26;;; Commentary:
27
28;; Defines `help-mode', which is the mode used by *Help* buffers, and
29;; associated support machinery, such as adding hyperlinks, etc.,
30
31;;; Code:
32
33(require 'button)
410e58b5 34(require 'view)
f4ed5b19
MB
35
36(defvar help-mode-map (make-sparse-keymap)
37 "Keymap for help mode.")
38
39(set-keymap-parent help-mode-map button-buffer-map)
40
89f5b33f 41(define-key help-mode-map [mouse-2] 'help-follow-mouse)
f4ed5b19
MB
42(define-key help-mode-map "\C-c\C-b" 'help-go-back)
43(define-key help-mode-map "\C-c\C-c" 'help-follow)
44;; Documentation only, since we use minor-mode-overriding-map-alist.
45(define-key help-mode-map "\r" 'help-follow)
46
47(defvar help-xref-stack nil
48 "A stack of ways by which to return to help buffers after following xrefs.
49Used by `help-follow' and `help-xref-go-back'.
89f5b33f
SM
50An element looks like (POSITION FUNCTION ARGS...).
51To use the element, do (apply FUNCTION ARGS) then goto the point.")
f4ed5b19 52(put 'help-xref-stack 'permanent-local t)
89f5b33f 53(make-variable-buffer-local 'help-xref-stack)
f4ed5b19
MB
54
55(defvar help-xref-stack-item nil
56 "An item for `help-follow' in this buffer to push onto `help-xref-stack'.
57The format is (FUNCTION ARGS...).")
58(put 'help-xref-stack-item 'permanent-local t)
89f5b33f 59(make-variable-buffer-local 'help-xref-stack-item)
f4ed5b19
MB
60
61(setq-default help-xref-stack nil help-xref-stack-item nil)
62
1700f41d
RS
63(defcustom help-mode-hook nil
64 "Hook run by `help-mode'."
65 :type 'hook
66 :group 'help)
f4ed5b19
MB
67\f
68;; Button types used by help
69
6e881567
MB
70(define-button-type 'help-xref
71 'action #'help-button-action)
72
73(defun help-button-action (button)
74 "Call BUTTON's help function."
75 (help-do-xref (button-start button)
76 (button-get button 'help-function)
77 (button-get button 'help-args)))
78
7e2a83df
RS
79;; These 6 calls to define-button-type were generated in a dolist
80;; loop, but that is bad because it means these button types don't
81;; have an easily found definition.
82
83(define-button-type 'help-function
84 :supertype 'help-xref
85 'help-function 'describe-function
86 'help-echo (purecopy "mouse-2, RET: describe this function"))
87
88(define-button-type 'help-variable
89 :supertype 'help-xref
90 'help-function 'describe-variable
91 'help-echo (purecopy "mouse-2, RET: describe this variable"))
92
93(define-button-type 'help-face
94 :supertype 'help-xref
95 'help-function 'describe-face
96 'help-echo (purecopy "mouse-2, RET: describe this face"))
97
98(define-button-type 'help-coding-system
99 :supertype 'help-xref
100 'help-function 'describe-coding-system
101 'help-echo (purecopy "mouse-2, RET: describe this coding system"))
102
103(define-button-type 'help-input-method
104 :supertype 'help-xref
105 'help-function 'describe-input-method
106 'help-echo (purecopy "mouse-2, RET: describe this input method"))
107
108(define-button-type 'help-character-set
109 :supertype 'help-xref
110 'help-function 'describe-character-set
111 'help-echo (purecopy "mouse-2, RET: describe this character set"))
f4ed5b19
MB
112
113;; make some more ideosyncratic button types
114
115(define-button-type 'help-symbol
6e881567 116 :supertype 'help-xref
f4ed5b19 117 'help-function #'help-xref-interned
6e881567 118 'help-echo (purecopy "mouse-2, RET: describe this symbol"))
f4ed5b19
MB
119
120(define-button-type 'help-back
6e881567 121 :supertype 'help-xref
f4ed5b19 122 'help-function #'help-xref-go-back
6e881567 123 'help-echo (purecopy "mouse-2, RET: go back to previous help buffer"))
f4ed5b19
MB
124
125(define-button-type 'help-info
6e881567 126 :supertype 'help-xref
f4ed5b19 127 'help-function #'info
6e881567 128 'help-echo (purecopy"mouse-2, RET: read this Info node"))
f4ed5b19
MB
129
130(define-button-type 'help-customize-variable
6e881567 131 :supertype 'help-xref
f4ed5b19
MB
132 'help-function (lambda (v)
133 (if help-xref-stack
134 (pop help-xref-stack))
135 (customize-variable v))
6e881567 136 'help-echo (purecopy "mouse-2, RET: customize variable"))
f4ed5b19 137
07f904a3 138(define-button-type 'help-customize-face
6e881567 139 :supertype 'help-xref
07f904a3
MB
140 'help-function (lambda (v)
141 (if help-xref-stack
142 (pop help-xref-stack))
143 (customize-face v))
6e881567 144 'help-echo (purecopy "mouse-2, RET: customize face"))
07f904a3 145
f4ed5b19 146(define-button-type 'help-function-def
6e881567 147 :supertype 'help-xref
f4ed5b19
MB
148 'help-function (lambda (fun file)
149 (require 'find-func)
410e58b5 150 ;; Don't use find-function-noselect because it follows
f4ed5b19 151 ;; aliases (which fails for built-in functions).
410e58b5
SM
152 (let ((location
153 (if (bufferp file) (cons file fun)
154 (find-function-search-for-symbol fun nil file))))
f4ed5b19
MB
155 (pop-to-buffer (car location))
156 (goto-char (cdr location))))
6e881567 157 'help-echo (purecopy "mouse-2, RET: find function's definition"))
f4ed5b19
MB
158
159(define-button-type 'help-variable-def
6e881567 160 :supertype 'help-xref
f4ed5b19
MB
161 'help-function (lambda (var &optional file)
162 (let ((location
163 (find-variable-noselect var file)))
164 (pop-to-buffer (car location))
165 (goto-char (cdr location))))
6e881567 166 'help-echo (purecopy"mouse-2, RET: find variable's definition"))
f4ed5b19
MB
167
168\f
169;;;###autoload
1700f41d 170(defun help-mode ()
f4ed5b19
MB
171 "Major mode for viewing help text and navigating references in it.
172Entry to this mode runs the normal hook `help-mode-hook'.
173Commands:
174\\{help-mode-map}"
1700f41d
RS
175 (interactive)
176 (kill-all-local-variables)
177 (use-local-map help-mode-map)
178 (setq mode-name "Help")
179 (setq major-mode 'help-mode)
f4ed5b19
MB
180 (view-mode)
181 (make-local-variable 'view-no-disable-on-exit)
1700f41d
RS
182 (setq view-no-disable-on-exit t)
183 (run-hooks 'help-mode-hook))
f4ed5b19
MB
184
185;;;###autoload
186(defun help-mode-setup ()
187 (help-mode)
188 (setq buffer-read-only nil))
189
190;;;###autoload
191(defun help-mode-finish ()
192 (when (eq major-mode 'help-mode)
193 ;; View mode's read-only status of existing *Help* buffer is lost
194 ;; by with-output-to-temp-buffer.
195 (toggle-read-only 1)
196 (help-make-xrefs (current-buffer)))
197 (setq view-return-to-alist
198 (list (cons (selected-window) help-return-method))))
199
200\f
410e58b5
SM
201;; Grokking cross-reference information in doc strings and
202;; hyperlinking it.
f4ed5b19
MB
203
204;; This may have some scope for extension and the same or something
205;; similar should be done for widget doc strings, which currently use
206;; another mechanism.
207
f4ed5b19
MB
208(defvar help-back-label (purecopy "[back]")
209 "Label to use by `help-make-xrefs' for the go-back reference.")
210
211(defconst help-xref-symbol-regexp
212 (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|"
213 "\\(function\\|command\\)\\|"
214 "\\(face\\)\\|"
215 "\\(symbol\\)\\|"
216 "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)\\s-+\\)?"
217 ;; Note starting with word-syntax character:
218 "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'"))
219 "Regexp matching doc string references to symbols.
220
221The words preceding the quoted symbol can be used in doc strings to
222distinguish references to variables, functions and symbols.")
223
410e58b5 224(defvar help-xref-mule-regexp nil
f4ed5b19
MB
225 "Regexp matching doc string references to MULE-related keywords.
226
227It is usually nil, and is temporarily bound to an appropriate regexp
228when help commands related to multilingual environment (e.g.,
229`describe-coding-system') are invoked.")
230
231
232(defconst help-xref-info-regexp
233 (purecopy "\\<[Ii]nfo[ \t\n]+node[ \t\n]+`\\([^']+\\)'")
234 "Regexp matching doc string references to an Info node.")
235
236;;;###autoload
237(defun help-setup-xref (item interactive-p)
238 "Invoked from commands using the \"*Help*\" buffer to install some xref info.
239
240ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help
241buffer after following a reference. INTERACTIVE-P is non-nil if the
242calling command was invoked interactively. In this case the stack of
89f5b33f
SM
243items for help buffer \"back\" buttons is cleared.
244
245This should be called very early, before the output buffer is cleared,
246because we want to record the \"previous\" position of point so we can
247restore it properly when going back."
248 (with-current-buffer (help-buffer)
410e58b5
SM
249 (when help-xref-stack-item
250 (push (cons (point) help-xref-stack-item) help-xref-stack))
251 (when interactive-p
252 (let ((tail (nthcdr 10 help-xref-stack)))
253 ;; Truncate the stack.
254 (if tail (setcdr tail nil))))
89f5b33f 255 (setq help-xref-stack-item item)))
f4ed5b19
MB
256
257(defvar help-xref-following nil
258 "Non-nil when following a help cross-reference.")
259
89f5b33f 260(defun help-buffer ()
89f5b33f
SM
261 (buffer-name ;for with-output-to-temp-buffer
262 (if help-xref-following
263 (current-buffer)
264 (get-buffer-create "*Help*"))))
265
410e58b5
SM
266(defvar help-xref-override-view-map
267 (let ((map (make-sparse-keymap)))
268 (set-keymap-parent map view-mode-map)
269 (define-key map "\r" nil)
270 map)
271 "Replacement keymap for `view-mode' in help buffers.")
272
f4ed5b19
MB
273;;;###autoload
274(defun help-make-xrefs (&optional buffer)
275 "Parse and hyperlink documentation cross-references in the given BUFFER.
276
d1282401
CW
277Find cross-reference information in a buffer and activate such cross
278references for selection with `help-follow'. Cross-references have
279the canonical form `...' and the type of reference may be
280disambiguated by the preceding word(s) used in
281`help-xref-symbol-regexp'.
f4ed5b19
MB
282
283If the variable `help-xref-mule-regexp' is non-nil, find also
284cross-reference information related to multilingual environment
285\(e.g., coding-systems). This variable is also used to disambiguate
286the type of reference as the same way as `help-xref-symbol-regexp'.
287
288A special reference `back' is made to return back through a stack of
289help buffers. Variable `help-back-label' specifies the text for
290that."
291 (interactive "b")
292 (save-excursion
293 (set-buffer (or buffer (current-buffer)))
294 (goto-char (point-min))
295 ;; Skip the header-type info, though it might be useful to parse
296 ;; it at some stage (e.g. "function in `library'").
297 (forward-paragraph)
298 (let ((old-modified (buffer-modified-p)))
299 (let ((stab (syntax-table))
300 (case-fold-search t)
301 (inhibit-read-only t))
302 (set-syntax-table emacs-lisp-mode-syntax-table)
303 ;; The following should probably be abstracted out.
304 (unwind-protect
305 (progn
306 ;; Info references
307 (save-excursion
308 (while (re-search-forward help-xref-info-regexp nil t)
309 (let ((data (match-string 1)))
310 (save-match-data
311 (unless (string-match "^([^)]+)" data)
312 (setq data (concat "(emacs)" data))))
313 (help-xref-button 1 'help-info data))))
314 ;; Mule related keywords. Do this before trying
315 ;; `help-xref-symbol-regexp' because some of Mule
316 ;; keywords have variable or function definitions.
317 (if help-xref-mule-regexp
318 (save-excursion
319 (while (re-search-forward help-xref-mule-regexp nil t)
320 (let* ((data (match-string 7))
321 (sym (intern-soft data)))
322 (cond
323 ((match-string 3) ; coding system
324 (and sym (coding-system-p sym)
325 (help-xref-button 6 'help-coding-system sym)))
326 ((match-string 4) ; input method
327 (and (assoc data input-method-alist)
328 (help-xref-button 7 'help-input-method data)))
329 ((or (match-string 5) (match-string 6)) ; charset
330 (and sym (charsetp sym)
331 (help-xref-button 7 'help-character-set sym)))
332 ((assoc data input-method-alist)
333 (help-xref-button 7 'help-character-set data))
334 ((and sym (coding-system-p sym))
335 (help-xref-button 7 'help-coding-system sym))
336 ((and sym (charsetp sym))
337 (help-xref-button 7 'help-character-set sym)))))))
338 ;; Quoted symbols
339 (save-excursion
340 (while (re-search-forward help-xref-symbol-regexp nil t)
341 (let* ((data (match-string 8))
342 (sym (intern-soft data)))
343 (if sym
344 (cond
345 ((match-string 3) ; `variable' &c
346 (and (boundp sym) ; `variable' doesn't ensure
347 ; it's actually bound
348 (help-xref-button 8 'help-variable sym)))
349 ((match-string 4) ; `function' &c
350 (and (fboundp sym) ; similarly
351 (help-xref-button 8 'help-function sym)))
352 ((match-string 5) ; `face'
353 (and (facep sym)
354 (help-xref-button 8 'help-face sym)))
355 ((match-string 6)) ; nothing for `symbol'
356 ((match-string 7)
357;; this used:
358;; #'(lambda (arg)
359;; (let ((location
360;; (find-function-noselect arg)))
361;; (pop-to-buffer (car location))
362;; (goto-char (cdr location))))
363 (help-xref-button 8 'help-function-def sym))
364 ((and (boundp sym) (fboundp sym))
365 ;; We can't intuit whether to use the
366 ;; variable or function doc -- supply both.
367 (help-xref-button 8 'help-symbol sym))
368 ((boundp sym)
369 (help-xref-button 8 'help-variable sym))
370 ((fboundp sym)
371 (help-xref-button 8 'help-function sym))
372 ((facep sym)
373 (help-xref-button 8 'help-face sym)))))))
374 ;; An obvious case of a key substitution:
375 (save-excursion
376 (while (re-search-forward
377 ;; Assume command name is only word characters
378 ;; and dashes to get things like `use M-x foo.'.
379 "\\<M-x\\s-+\\(\\sw\\(\\sw\\|-\\)+\\)" nil t)
380 (let ((sym (intern-soft (match-string 1))))
381 (if (fboundp sym)
382 (help-xref-button 1 'help-function sym)))))
383 ;; Look for commands in whole keymap substitutions:
384 (save-excursion
385 ;; Make sure to find the first keymap.
386 (goto-char (point-min))
387 ;; Find a header and the column at which the command
388 ;; name will be found.
ad4888e4
RS
389
390 ;; If the keymap substitution isn't the last thing in
391 ;; the doc string, and if there is anything on the
392 ;; same line after it, this code won't recognize the end of it.
f4ed5b19
MB
393 (while (re-search-forward "^key +binding\n\\(-+ +\\)-+\n\n"
394 nil t)
395 (let ((col (- (match-end 1) (match-beginning 1))))
396 (while
ad4888e4
RS
397 (and (not (eobp))
398 ;; Stop at a pair of blank lines.
399 (not (looking-at "\n\\s-*\n")))
400 ;; Skip a single blank line.
401 (and (eolp) (forward-line))
402 (end-of-line)
403 (skip-chars-backward "^\t\n")
404 (if (and (>= (current-column) col)
405 (looking-at "\\(\\sw\\|-\\)+$"))
406 (let ((sym (intern-soft (match-string 0))))
407 (if (fboundp sym)
408 (help-xref-button 0 'help-function sym))))
043dcdee
JPW
409 (forward-line))))))
410 (set-syntax-table stab))
f4ed5b19
MB
411 ;; Delete extraneous newlines at the end of the docstring
412 (goto-char (point-max))
413 (while (and (not (bobp)) (bolp))
414 (delete-char -1))
415 ;; Make a back-reference in this buffer if appropriate.
89f5b33f 416 (when help-xref-stack
f4ed5b19
MB
417 (insert "\n\n")
418 (help-insert-xref-button help-back-label 'help-back
419 (current-buffer))))
420 ;; View mode steals RET from us.
421 (set (make-local-variable 'minor-mode-overriding-map-alist)
410e58b5 422 (list (cons 'view-mode help-xref-override-view-map)))
f4ed5b19
MB
423 (set-buffer-modified-p old-modified))))
424
425;;;###autoload
426(defun help-xref-button (match-number type &rest args)
427 "Make a hyperlink for cross-reference text previously matched.
428MATCH-NUMBER is the subexpression of interest in the last matched
429regexp. TYPE is the type of button to use. Any remaining arguments are
430passed to the button's help-function when it is invoked.
431See `help-make-xrefs'."
432 ;; Don't mung properties we've added specially in some instances.
433 (unless (button-at (match-beginning match-number))
434 (make-text-button (match-beginning match-number)
435 (match-end match-number)
436 'type type 'help-args args)))
437
438;;;###autoload
439(defun help-insert-xref-button (string type &rest args)
440 "Insert STRING and make a hyperlink from cross-reference text on it.
441TYPE is the type of button to use. Any remaining arguments are passed
442to the button's help-function when it is invoked.
443See `help-make-xrefs'."
444 (unless (button-at (point))
445 (insert-text-button string 'type type 'help-args args)))
446
447;;;###autoload
448(defun help-xref-on-pp (from to)
449 "Add xrefs for symbols in `pp's output between FROM and TO."
22f5d492
SM
450 (if (> (- to from) 5000) nil
451 (with-syntax-table emacs-lisp-mode-syntax-table
452 (save-excursion
453 (save-restriction
454 (narrow-to-region from to)
455 (goto-char (point-min))
456 (condition-case nil
457 (while (not (eobp))
458 (cond
459 ((looking-at "\"") (forward-sexp 1))
460 ((looking-at "#<") (search-forward ">" nil 'move))
461 ((looking-at "\\(\\(\\sw\\|\\s_\\)+\\)")
462 (let* ((sym (intern-soft (match-string 1)))
463 (type (cond ((fboundp sym) 'help-function)
464 ((or (memq sym '(t nil))
465 (keywordp sym))
466 nil)
467 ((and sym (boundp sym))
468 'help-variable))))
469 (when type (help-xref-button 1 type sym)))
470 (goto-char (match-end 1)))
471 (t (forward-char 1))))
472 (error nil)))))))
f4ed5b19
MB
473
474\f
475;; Additional functions for (re-)creating types of help buffers.
476(defun help-xref-interned (symbol)
477 "Follow a hyperlink which appeared to be an arbitrary interned SYMBOL.
89f5b33f 478Both variable, function and face documentation are extracted into a single
f4ed5b19 479help buffer."
89f5b33f
SM
480 (with-current-buffer (help-buffer)
481 ;; Push the previous item on the stack before clobbering the output buffer.
482 (help-setup-xref nil nil)
483 (let ((facedoc (when (facep symbol)
484 ;; Don't record the current entry in the stack.
485 (setq help-xref-stack-item nil)
486 (describe-face symbol)))
487 (fdoc (when (fboundp symbol)
488 ;; Don't record the current entry in the stack.
489 (setq help-xref-stack-item nil)
490 (describe-function symbol)))
491 (sdoc (when (boundp symbol)
492 ;; Don't record the current entry in the stack.
493 (setq help-xref-stack-item nil)
494 (describe-variable symbol))))
495 (cond
496 (sdoc
497 ;; We now have a help buffer on the variable.
498 ;; Insert the function and face text before it.
ea127bf4 499 (when (or fdoc facedoc)
f4ed5b19
MB
500 (goto-char (point-min))
501 (let ((inhibit-read-only t))
502 (when fdoc
89f5b33f 503 (insert fdoc "\n\n")
ea127bf4
RS
504 (when facedoc
505 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
89f5b33f
SM
506 " is also a " "face." "\n\n")))
507 (when facedoc
508 (insert facedoc "\n\n"))
f4ed5b19
MB
509 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
510 " is also a " "variable." "\n\n"))
89f5b33f
SM
511 ;; Don't record the `describe-variable' item in the stack.
512 (setq help-xref-stack-item nil)
513 (help-setup-xref (list #'help-xref-interned symbol) nil)))
514 (fdoc
515 ;; We now have a help buffer on the function.
516 ;; Insert face text before it.
517 (when facedoc
518 (goto-char (point-max))
519 (let ((inhibit-read-only t))
520 (insert "\n\n" (make-string 30 ?-) "\n\n" (symbol-name symbol)
521 " is also a " "face." "\n\n" facedoc))
522 ;; Don't record the `describe-function' item in the stack.
523 (setq help-xref-stack-item nil)
524 (help-setup-xref (list #'help-xref-interned symbol) nil)))))))
f4ed5b19
MB
525
526\f
410e58b5 527;; Navigation/hyperlinking with xrefs
f4ed5b19 528
89f5b33f
SM
529(defun help-follow-mouse (click)
530 "Follow the cross-reference that you CLICK on."
531 (interactive "e")
532 (let* ((start (event-start click))
533 (window (car start))
534 (pos (car (cdr start))))
535 (with-current-buffer (window-buffer window)
536 (help-follow pos))))
537
f4ed5b19
MB
538(defun help-xref-go-back (buffer)
539 "From BUFFER, go back to previous help buffer text using `help-xref-stack'."
540 (let (item position method args)
541 (with-current-buffer buffer
542 (when help-xref-stack
f4ed5b19 543 (setq item (pop help-xref-stack)
89f5b33f
SM
544 ;; Clear the current item so that it won't get pushed
545 ;; by the function we're about to call. TODO: We could also
546 ;; push it onto a "forward" stack and add a `forw' button.
547 help-xref-stack-item nil
f4ed5b19
MB
548 position (car item)
549 method (cadr item)
550 args (cddr item))))
551 (apply method args)
77144ebc
RS
552 (with-current-buffer buffer
553 (if (get-buffer-window buffer)
554 (set-window-point (get-buffer-window buffer) position)
555 (goto-char position)))))
f4ed5b19
MB
556
557(defun help-go-back ()
558 "Invoke the [back] button (if any) in the Help mode buffer."
559 (interactive)
560 (let ((back-button (button-at (1- (point-max)))))
561 (if back-button
562 (button-activate back-button)
563 (error "No [back] button"))))
564
565(defun help-do-xref (pos function args)
566 "Call the help cross-reference function FUNCTION with args ARGS.
567Things are set up properly so that the resulting help-buffer has
568a proper [back] button."
f4ed5b19
MB
569 ;; There is a reference at point. Follow it.
570 (let ((help-xref-following t))
571 (apply function args)))
572
573(defun help-follow (&optional pos)
574 "Follow cross-reference at POS, defaulting to point.
575
576For the cross-reference format, see `help-make-xrefs'."
577 (interactive "d")
578 (unless pos
579 (setq pos (point)))
580 (unless (push-button pos)
581 ;; check if the symbol under point is a function or variable
582 (let ((sym
583 (intern
584 (save-excursion
585 (goto-char pos) (skip-syntax-backward "w_")
586 (buffer-substring (point)
587 (progn (skip-syntax-forward "w_")
588 (point)))))))
89f5b33f 589 (when (or (boundp sym) (fboundp sym) (facep sym))
f4ed5b19
MB
590 (help-do-xref pos #'help-xref-interned (list sym))))))
591
592
593(provide 'help-mode)
594
ab5796a9 595;;; arch-tag: 850954ae-3725-4cb4-8e91-0bf6d52d6b0b
f4ed5b19 596;;; help-mode.el ends here