annotate lisp/help.el @ 32706:605eabd04a57

(resize-temp-buffer-window): Use `fit-window-to-buffer'.
author Miles Bader <miles@gnu.org>
date Sat, 21 Oct 2000 05:38:55 +0000
parents 54f6c0860704
children 826a062813f4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 444
diff changeset
1 ;;; help.el --- help commands for Emacs
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 444
diff changeset
2
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000 Free Software Foundation, Inc.
846
20674ae6bf52 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
4
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 755
diff changeset
5 ;; Maintainer: FSF
811
e694e0879463 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
6 ;; Keywords: help, internal
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 755
diff changeset
7
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 755
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; any later version.
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13358
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13358
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13358
diff changeset
23 ;; Boston, MA 02111-1307, USA.
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
2315
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2312
diff changeset
25 ;;; Commentary:
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2312
diff changeset
26
16391
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
27 ;; This code implements GNU Emacs' on-line help system, the one invoked by
25473
1ad8606c8cc7 (help-make-xrefs): Don't lose on non-empty blank line after key table.
Dave Love <fx@gnu.org>
parents: 25047
diff changeset
28 ;; `M-x help-for-help'.
2315
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2312
diff changeset
29
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 755
diff changeset
30 ;;; Code:
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 755
diff changeset
31
2312
ad7b89a430df Don't load help-screen at run time if compiled.
Richard M. Stallman <rms@gnu.org>
parents: 2237
diff changeset
32 ;; Get the macro make-help-screen when this is compiled,
ad7b89a430df Don't load help-screen at run time if compiled.
Richard M. Stallman <rms@gnu.org>
parents: 2237
diff changeset
33 ;; or run interpreted, but not when the compiled code is loaded.
2697
05ff97695d32 Require help-macro, not help-screen.
Richard M. Stallman <rms@gnu.org>
parents: 2638
diff changeset
34 (eval-when-compile (require 'help-macro))
25846
3c430bda7857 Require view when compiling.
Dave Love <fx@gnu.org>
parents: 25689
diff changeset
35 (eval-when-compile (require 'view))
2237
2670a8f6a42e Teach this to use help-screen.el.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2134
diff changeset
36
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 (defvar help-map (make-sparse-keymap)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 "Keymap for characters following the Help key.")
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
9833
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
40 (defvar help-mode-map (make-sparse-keymap)
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
41 "Keymap for help mode.")
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
42
919
567b06901789 entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 918
diff changeset
43 (define-key global-map (char-to-string help-char) 'help-command)
12424
aa25c9b2e043 Bind f1 and help like C-h.
Richard M. Stallman <rms@gnu.org>
parents: 11890
diff changeset
44 (define-key global-map [help] 'help-command)
aa25c9b2e043 Bind f1 and help like C-h.
Richard M. Stallman <rms@gnu.org>
parents: 11890
diff changeset
45 (define-key global-map [f1] 'help-command)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 (fset 'help-command help-map)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47
919
567b06901789 entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 918
diff changeset
48 (define-key help-map (char-to-string help-char) 'help-for-help)
12424
aa25c9b2e043 Bind f1 and help like C-h.
Richard M. Stallman <rms@gnu.org>
parents: 11890
diff changeset
49 (define-key help-map [help] 'help-for-help)
aa25c9b2e043 Bind f1 and help like C-h.
Richard M. Stallman <rms@gnu.org>
parents: 11890
diff changeset
50 (define-key help-map [f1] 'help-for-help)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 (define-key help-map "?" 'help-for-help)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 (define-key help-map "\C-c" 'describe-copying)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 (define-key help-map "\C-d" 'describe-distribution)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 (define-key help-map "\C-w" 'describe-no-warranty)
5025
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
56 (define-key help-map "\C-p" 'describe-project)
17200
9438563a5151 (help-map): Use apropos-command, not command-apropos.
Richard M. Stallman <rms@gnu.org>
parents: 17005
diff changeset
57 (define-key help-map "a" 'apropos-command)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 (define-key help-map "b" 'describe-bindings)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 (define-key help-map "c" 'describe-key-briefly)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 (define-key help-map "k" 'describe-key)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 (define-key help-map "d" 'describe-function)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 (define-key help-map "f" 'describe-function)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66
10923
fe008aef4cf1 (view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents: 10622
diff changeset
67 (define-key help-map "F" 'view-emacs-FAQ)
fe008aef4cf1 (view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents: 10622
diff changeset
68
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 (define-key help-map "i" 'info)
22470
eec1f722bded (help-map): C-h 4 i runs info-other-window.
Richard M. Stallman <rms@gnu.org>
parents: 22417
diff changeset
70 (define-key help-map "4i" 'info-other-window)
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 660
diff changeset
71 (define-key help-map "\C-f" 'Info-goto-emacs-command-node)
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 660
diff changeset
72 (define-key help-map "\C-k" 'Info-goto-emacs-key-command-node)
18293
ac6884f51b58 (help-map): Make C-i run info-lookup-symbol.
Richard M. Stallman <rms@gnu.org>
parents: 17917
diff changeset
73 (define-key help-map "\C-i" 'info-lookup-symbol)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 (define-key help-map "l" 'view-lossage)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 (define-key help-map "m" 'describe-mode)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 (define-key help-map "\C-n" 'view-emacs-news)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 (define-key help-map "n" 'view-emacs-news)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81
2134
b275e1b50542 Added autoload, binding and menu line for new finder feature (P).
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2079
diff changeset
82 (define-key help-map "p" 'finder-by-keyword)
7978
8356e992ddb6 (finder-by-keyword): Add doc string and t for interactive.
Richard M. Stallman <rms@gnu.org>
parents: 7298
diff changeset
83 (autoload 'finder-by-keyword "finder"
8356e992ddb6 (finder-by-keyword): Add doc string and t for interactive.
Richard M. Stallman <rms@gnu.org>
parents: 7298
diff changeset
84 "Find packages matching a given keyword." t)
2134
b275e1b50542 Added autoload, binding and menu line for new finder feature (P).
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2079
diff changeset
85
26757
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
86 (define-key help-map "P" 'view-emacs-problems)
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
87
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 (define-key help-map "s" 'describe-syntax)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90 (define-key help-map "t" 'help-with-tutorial)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 (define-key help-map "w" 'where-is)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 (define-key help-map "v" 'describe-variable)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95
6580
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
96 (define-key help-map "q" 'help-quit)
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
97
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
98 (define-key help-mode-map [mouse-2] 'help-follow-mouse)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
99 (define-key help-mode-map "\C-c\C-b" 'help-go-back)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
100 (define-key help-mode-map "\C-c\C-c" 'help-follow)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
101 (define-key help-mode-map "\t" 'help-next-ref)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
102 (define-key help-mode-map [backtab] 'help-previous-ref)
21708
280e4b4cbd2a (help-mode-map): Add S-tab, like backtab.
Dave Love <fx@gnu.org>
parents: 21698
diff changeset
103 (define-key help-mode-map [(shift tab)] 'help-previous-ref)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
104 ;; Documentation only, since we use minor-mode-overriding-map-alist.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
105 (define-key help-mode-map "\r" 'help-follow)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
106
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
107 (defvar help-xref-stack nil
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
108 "A stack of ways by which to return to help buffers after following xrefs.
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
109 Used by `help-follow' and `help-xref-go-back'.
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
110 An element looks like (POSITION FUNCTION ARGS...), where POSITION is
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
111 `(POINT . BUFFER-NAME)'.
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
112 To use the element, do (apply FUNCTION ARGS) then goto the point in
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
113 the named buffer.")
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
114 (put 'help-xref-stack 'permanent-local t)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
115
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
116 (defvar help-xref-stack-item nil
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
117 "An item for `help-follow' in this buffer to push onto `help-xref-stack'.
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
118 The format is (FUNCTION ARGS...).")
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
119 (put 'help-xref-stack-item 'permanent-local t)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
120
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
121 (setq-default help-xref-stack nil help-xref-stack-item nil)
12816
7a19739bd181 Added Font Lock mode support.
Simon Marshall <simon@gnu.org>
parents: 12499
diff changeset
122
26650
69a74a4cd1fa (help-mode-hook): Define.
Dave Love <fx@gnu.org>
parents: 26224
diff changeset
123 (defcustom help-mode-hook nil
69a74a4cd1fa (help-mode-hook): Define.
Dave Love <fx@gnu.org>
parents: 26224
diff changeset
124 "Hook run by `help-mode'."
69a74a4cd1fa (help-mode-hook): Define.
Dave Love <fx@gnu.org>
parents: 26224
diff changeset
125 :type 'hook
69a74a4cd1fa (help-mode-hook): Define.
Dave Love <fx@gnu.org>
parents: 26224
diff changeset
126 :group 'help)
69a74a4cd1fa (help-mode-hook): Define.
Dave Love <fx@gnu.org>
parents: 26224
diff changeset
127
9833
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
128 (defun help-mode ()
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
129 "Major mode for viewing help text and navigating references in it.
9833
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
130 Entry to this mode runs the normal hook `help-mode-hook'.
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
131 Commands:
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
132 \\{help-mode-map}"
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
133 (interactive)
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
134 (kill-all-local-variables)
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
135 (use-local-map help-mode-map)
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
136 (setq mode-name "Help")
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
137 (setq major-mode 'help-mode)
12816
7a19739bd181 Added Font Lock mode support.
Simon Marshall <simon@gnu.org>
parents: 12499
diff changeset
138 (make-local-variable 'font-lock-defaults)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
139 (setq font-lock-defaults nil) ; font-lock would defeat xref
13079
6a91723f2a8c (help-mode): Call view-mode.
Richard M. Stallman <rms@gnu.org>
parents: 12941
diff changeset
140 (view-mode)
19228
3e0e9b7e2307 (help-mode): Set view-no-disable-on-exit.
Richard M. Stallman <rms@gnu.org>
parents: 19124
diff changeset
141 (make-local-variable 'view-no-disable-on-exit)
3e0e9b7e2307 (help-mode): Set view-no-disable-on-exit.
Richard M. Stallman <rms@gnu.org>
parents: 19124
diff changeset
142 (setq view-no-disable-on-exit t)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
143 ;; `help-make-xrefs' would be run here if not invoked from
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
144 ;; `help-mode-maybe'.
9833
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
145 (run-hooks 'help-mode-hook))
5215339470b8 (help-mode): New function.
Karl Heuer <kwzh@gnu.org>
parents: 9639
diff changeset
146
24048
1876f867ff95 (help-mode-finish): Renamed from help-mode-maybe.
Richard M. Stallman <rms@gnu.org>
parents: 23962
diff changeset
147 (defun help-mode-setup ()
1876f867ff95 (help-mode-finish): Renamed from help-mode-maybe.
Richard M. Stallman <rms@gnu.org>
parents: 23962
diff changeset
148 (help-mode)
1876f867ff95 (help-mode-finish): Renamed from help-mode-maybe.
Richard M. Stallman <rms@gnu.org>
parents: 23962
diff changeset
149 (setq buffer-read-only nil))
1876f867ff95 (help-mode-finish): Renamed from help-mode-maybe.
Richard M. Stallman <rms@gnu.org>
parents: 23962
diff changeset
150
24081
5677e2f45278 (temp-buffer-setup-hook, temp-buffer-show-hook): Revert last change.
Dave Love <fx@gnu.org>
parents: 24079
diff changeset
151 (add-hook 'temp-buffer-setup-hook 'help-mode-setup)
24048
1876f867ff95 (help-mode-finish): Renamed from help-mode-maybe.
Richard M. Stallman <rms@gnu.org>
parents: 23962
diff changeset
152
1876f867ff95 (help-mode-finish): Renamed from help-mode-maybe.
Richard M. Stallman <rms@gnu.org>
parents: 23962
diff changeset
153 (defun help-mode-finish ()
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
154 (when (eq major-mode 'help-mode)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
155 ;; View mode's read-only status of existing *Help* buffer is lost
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
156 ;; by with-output-to-temp-buffer.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
157 (toggle-read-only 1)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
158 (help-make-xrefs (current-buffer)))
21188
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
159 (setq view-return-to-alist
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
160 (list (cons (selected-window) help-return-method))))
20060
36044c8b8aef (help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents: 19576
diff changeset
161
24081
5677e2f45278 (temp-buffer-setup-hook, temp-buffer-show-hook): Revert last change.
Dave Love <fx@gnu.org>
parents: 24079
diff changeset
162 (add-hook 'temp-buffer-show-hook 'help-mode-finish)
20060
36044c8b8aef (help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents: 19576
diff changeset
163
6580
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
164 (defun help-quit ()
23333
b8369b78f1ba (help-quit): Add doc.
Richard M. Stallman <rms@gnu.org>
parents: 23332
diff changeset
165 "Just exit from the Help command's command loop."
6580
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
166 (interactive)
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
167 nil)
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
168
17005
1fa50c7fdde3 (help-with-tutorial): Prefix argument to specify a
Karl Heuer <kwzh@gnu.org>
parents: 16771
diff changeset
169 (defun help-with-tutorial (&optional arg)
1fa50c7fdde3 (help-with-tutorial): Prefix argument to specify a
Karl Heuer <kwzh@gnu.org>
parents: 16771
diff changeset
170 "Select the Emacs learn-by-doing tutorial.
19423
f6f7ae045fe3 (help-with-tutorial): Use current-language-environment.
Richard M. Stallman <rms@gnu.org>
parents: 19243
diff changeset
171 If there is a tutorial version written in the language
19576
b0bd0bd48893 (help-with-tutorial): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19423
diff changeset
172 of the selected language environment, that version is used.
19423
f6f7ae045fe3 (help-with-tutorial): Use current-language-environment.
Richard M. Stallman <rms@gnu.org>
parents: 19243
diff changeset
173 If there's no tutorial in that language, `TUTORIAL' is selected.
20286
5cf064c70ee5 (help-with-tutorial-alist): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 20250
diff changeset
174 With arg, you are asked to choose which language."
17005
1fa50c7fdde3 (help-with-tutorial): Prefix argument to specify a
Karl Heuer <kwzh@gnu.org>
parents: 16771
diff changeset
175 (interactive "P")
21440
4718a738947a (help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents: 21385
diff changeset
176 (let ((lang (if arg
4718a738947a (help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents: 21385
diff changeset
177 (read-language-name 'tutorial "Language: " "English")
4718a738947a (help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents: 21385
diff changeset
178 (if (get-language-info current-language-environment 'tutorial)
4718a738947a (help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents: 21385
diff changeset
179 current-language-environment
21587
a89b6f48c73d (help-with-tutorial): Locally bind file and filename.
Richard M. Stallman <rms@gnu.org>
parents: 21491
diff changeset
180 "English")))
a89b6f48c73d (help-with-tutorial): Locally bind file and filename.
Richard M. Stallman <rms@gnu.org>
parents: 21491
diff changeset
181 file filename)
21440
4718a738947a (help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents: 21385
diff changeset
182 (setq filename (get-language-info lang 'tutorial))
17756
0000a992fd24 (help-with-tutorial): Fix a bug of handling non-English
Kenichi Handa <handa@m17n.org>
parents: 17200
diff changeset
183 (setq file (expand-file-name (concat "~/" filename)))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 (delete-other-windows)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185 (if (get-file-buffer file)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 (switch-to-buffer (get-file-buffer file))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187 (switch-to-buffer (create-file-buffer file))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 (setq buffer-file-name file)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189 (setq default-directory (expand-file-name "~/"))
755
e43123226372 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
190 (setq buffer-auto-save-file-name nil)
17005
1fa50c7fdde3 (help-with-tutorial): Prefix argument to specify a
Karl Heuer <kwzh@gnu.org>
parents: 16771
diff changeset
191 (insert-file-contents (expand-file-name filename data-directory))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 (goto-char (point-min))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 (search-forward "\n<<")
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194 (beginning-of-line)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 (delete-region (point) (progn (end-of-line) (point)))
6419
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
196 (let ((n (- (window-height (selected-window))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 (count-lines (point-min) (point))
6419
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
198 6)))
6433
e50519261181 (help-with-tutorial): Change previous change;
Richard M. Stallman <rms@gnu.org>
parents: 6419
diff changeset
199 (if (< n 12)
6419
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
200 (newline n)
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
201 ;; Some people get confused by the large gap.
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
202 (newline (/ n 2))
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
203 (insert "[Middle of page left blank for didactic purposes. "
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
204 "Text continues below]")
e5ce725b661d (help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents: 6079
diff changeset
205 (newline (- n (/ n 2)))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 (goto-char (point-min))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 (set-buffer-modified-p nil))))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208
25047
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
209 (defun mode-line-key-binding (key)
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
210 "Value is the binding of KEY in the mode line or nil if none."
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
211 (let (string-info defn)
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
212 (when (and (eq 'mode-line (aref key 0))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
213 (consp (setq string-info (nth 4 (event-start (aref key 1))))))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
214 (let* ((string (car string-info))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
215 (pos (cdr string-info))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
216 (local-map (and (> pos 0)
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
217 (< pos (length string))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
218 (get-text-property pos 'local-map string))))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
219 (setq defn (and local-map (lookup-key local-map key)))))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
220 defn))
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
221
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
222 (defun describe-key-briefly (key &optional insert)
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
223 "Print the name of the function KEY invokes. KEY is a string.
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
224 If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
225 (interactive "kDescribe key briefly: \nP")
13293
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
226 (save-excursion
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
227 (let ((modifiers (event-modifiers (aref key 0)))
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
228 (standard-output (if insert (current-buffer) t))
13293
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
229 window position)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
230 ;; For a mouse button event, go to the button it applies to
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
231 ;; to get the right key bindings. And go to the right place
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
232 ;; in case the keymap depends on where you clicked.
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
233 (if (or (memq 'click modifiers) (memq 'down modifiers)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
234 (memq 'drag modifiers))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
235 (setq window (posn-window (event-start (aref key 0)))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
236 position (posn-point (event-start (aref key 0)))))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
237 (if (windowp window)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
238 (progn
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
239 (set-buffer (window-buffer window))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
240 (goto-char position)))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
241 ;; Ok, now look up the key and name the command.
25047
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
242 (let ((defn (or (mode-line-key-binding key)
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
243 (key-binding key)))
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
244 (key-desc (key-description key)))
13293
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
245 (if (or (null defn) (integerp defn))
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
246 (princ (format "%s is undefined" key-desc))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
247 (princ (format (if insert
22060
530d5f35aa4e (describe-key-briefly): When INSERT, put cmd name in `...'.
Richard M. Stallman <rms@gnu.org>
parents: 21973
diff changeset
248 "`%s' (`%s')"
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
249 (if (windowp window)
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
250 "%s at that spot runs the command %s"
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
251 "%s runs the command %s"))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
252 key-desc
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
253 (if (symbolp defn) defn (prin1-to-string defn)))))))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254
21188
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
255 (defvar help-return-method nil
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
256 "What to do to \"exit\" the help buffer.
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
257 This is a list
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
258 (WINDOW . t) delete the selected window, go to WINDOW.
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
259 (WINDOW . quit-window) do quit-window, then select WINDOW.
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
260 (WINDOW BUF START POINT) display BUF at START, POINT, then select WINDOW.")
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
261
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 (defun print-help-return-message (&optional function)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 "Display or return message saying how to restore windows after help command.
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 Computes a message and applies the optional argument FUNCTION to it.
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 If FUNCTION is nil, applies `message' to it, thus printing it."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266 (and (not (get-buffer-window standard-output))
8259
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
267 (let ((first-message
16391
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
268 (cond ((special-display-p (buffer-name standard-output))
21188
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
269 (setq help-return-method (cons (selected-window) t))
8259
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
270 ;; If the help output buffer is a special display buffer,
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
271 ;; don't say anything about how to get rid of it.
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
272 ;; First of all, the user will do that with the window
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
273 ;; manager, not with Emacs.
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
274 ;; Secondly, the buffer has not been displayed yet,
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
275 ;; so we don't know whether its frame will be selected.
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
276 nil)
30667
2bd60ea8076f (print-help-return-message): When
Gerd Moellmann <gerd@gnu.org>
parents: 30621
diff changeset
277 (display-buffer-reuse-frames
2bd60ea8076f (print-help-return-message): When
Gerd Moellmann <gerd@gnu.org>
parents: 30621
diff changeset
278 (setq help-return-method (cons (selected-window)
2bd60ea8076f (print-help-return-message): When
Gerd Moellmann <gerd@gnu.org>
parents: 30621
diff changeset
279 'quit-window))
2bd60ea8076f (print-help-return-message): When
Gerd Moellmann <gerd@gnu.org>
parents: 30621
diff changeset
280 nil)
8259
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
281 ((not (one-window-p t))
21188
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
282 (setq help-return-method
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
283 (cons (selected-window) 'quit-window))
8259
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
284 "Type \\[switch-to-buffer-other-window] RET to restore the other window.")
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
285 (pop-up-windows
21188
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
286 (setq help-return-method (cons (selected-window) t))
8259
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
287 "Type \\[delete-other-windows] to remove help window.")
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
288 (t
21188
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
289 (setq help-return-method
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
290 (list (selected-window) (window-buffer)
607ce9d7cf53 (help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents: 20953
diff changeset
291 (window-start) (window-point)))
8259
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
292 "Type \\[switch-to-buffer] RET to remove help window."))))
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
293 (funcall (or function 'message)
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
294 (concat
604d89082229 (print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents: 7978
diff changeset
295 (if first-message
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
296 (substitute-command-keys first-message))
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
297 (if first-message " ")
11524
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
298 ;; If the help buffer will go in a separate frame,
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
299 ;; it's no use mentioning a command to scroll, so don't.
16391
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
300 (if (special-display-p (buffer-name standard-output))
11524
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
301 nil
16391
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
302 (if (same-window-p (buffer-name standard-output))
11524
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
303 ;; Say how to scroll this window.
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
304 (substitute-command-keys
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
305 "\\[scroll-up] to scroll the help.")
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
306 ;; Say how to scroll some other window.
11428
d39d8e8b6d20 (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 10923
diff changeset
307 (substitute-command-keys
11524
cafa503e806c (print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents: 11428
diff changeset
308 "\\[scroll-other-window] to scroll the help."))))))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 (defun describe-key (key)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 "Display documentation of the function invoked by KEY. KEY is a string."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312 (interactive "kDescribe key: ")
13293
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
313 (save-excursion
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
314 (let ((modifiers (event-modifiers (aref key 0)))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
315 window position)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
316 ;; For a mouse button event, go to the button it applies to
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
317 ;; to get the right key bindings. And go to the right place
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
318 ;; in case the keymap depends on where you clicked.
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
319 (if (or (memq 'click modifiers) (memq 'down modifiers)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
320 (memq 'drag modifiers))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
321 (setq window (posn-window (event-start (aref key 0)))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
322 position (posn-point (event-start (aref key 0)))))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
323 (if (windowp window)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
324 (progn
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
325 (set-buffer (window-buffer window))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
326 (goto-char position)))
25047
b69a152b82e3 (describe-key-briefly): Handle mode line strings
Gerd Moellmann <gerd@gnu.org>
parents: 24974
diff changeset
327 (let ((defn (or (mode-line-key-binding key) (key-binding key))))
13293
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
328 (if (or (null defn) (integerp defn))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
329 (message "%s is undefined" (key-description key))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
330 (with-output-to-temp-buffer "*Help*"
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
331 (princ (key-description key))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
332 (if (windowp window)
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
333 (princ " at that spot"))
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
334 (princ " runs the command ")
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
335 (prin1 defn)
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
336 (princ "\n which is ")
24759
a03aa24489bd (describe-function-1): Extra arg, interactive-p.
Richard M. Stallman <rms@gnu.org>
parents: 24714
diff changeset
337 (describe-function-1 defn nil (interactive-p))
13293
5270a0a465a7 (describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents: 13209
diff changeset
338 (print-help-return-message)))))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339
6902
962a6ffb7b97 (describe-mode): Always show minor modes, at front.
Richard M. Stallman <rms@gnu.org>
parents: 6580
diff changeset
340 (defun describe-mode ()
962a6ffb7b97 (describe-mode): Always show minor modes, at front.
Richard M. Stallman <rms@gnu.org>
parents: 6580
diff changeset
341 "Display documentation of current major mode and minor modes.
23778
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
342 The major mode description comes first, followed by the minor modes,
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
343 each on a separate page.
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
344
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 For this to work correctly for a minor mode, the mode's indicator variable
3980
bf2d4294a1dd (describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents: 3145
diff changeset
346 \(listed in `minor-mode-alist') must also be a function whose documentation
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 describes the minor mode."
6903
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
348 (interactive)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 (with-output-to-temp-buffer "*Help*"
23778
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
350 (when minor-mode-alist
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
351 (princ "The major mode is described first.
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
352 For minor modes, see following pages.\n\n"))
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
353 (princ mode-name)
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
354 (princ " mode:\n")
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
355 (princ (documentation major-mode))
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
356 (help-setup-xref (list #'help-xref-mode (current-buffer)) (interactive-p))
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
357 (let ((minor-modes minor-mode-alist))
6903
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
358 (while minor-modes
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
359 (let* ((minor-mode (car (car minor-modes)))
16694
c19089a334b2 (describe-mode): Include minor modes that aren't buffer local.
Richard M. Stallman <rms@gnu.org>
parents: 16557
diff changeset
360 (indicator (car (cdr (car minor-modes)))))
6903
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
361 ;; Document a minor mode if it is listed in minor-mode-alist,
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
362 ;; bound locally in this buffer, non-nil, and has a function
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
363 ;; definition.
30621
06d02e3657f0 (describe-mode): Test mini-mode symbol for being
Gerd Moellmann <gerd@gnu.org>
parents: 29958
diff changeset
364 (if (and (boundp minor-mode)
06d02e3657f0 (describe-mode): Test mini-mode symbol for being
Gerd Moellmann <gerd@gnu.org>
parents: 29958
diff changeset
365 (symbol-value minor-mode)
6903
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
366 (fboundp minor-mode))
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
367 (let ((pretty-minor-mode minor-mode))
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
368 (if (string-match "-mode$" (symbol-name minor-mode))
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
369 (setq pretty-minor-mode
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
370 (capitalize
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
371 (substring (symbol-name minor-mode)
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
372 0 (match-beginning 0)))))
23742
8c57752f8e9c (describe-mode): Don't avoid loop indirecting thru value of INDICATOR.
Richard M. Stallman <rms@gnu.org>
parents: 23741
diff changeset
373 (while (and indicator (symbolp indicator)
8c57752f8e9c (describe-mode): Don't avoid loop indirecting thru value of INDICATOR.
Richard M. Stallman <rms@gnu.org>
parents: 23741
diff changeset
374 (boundp indicator)
8c57752f8e9c (describe-mode): Don't avoid loop indirecting thru value of INDICATOR.
Richard M. Stallman <rms@gnu.org>
parents: 23741
diff changeset
375 (not (eq indicator (symbol-value indicator))))
6903
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
376 (setq indicator (symbol-value indicator)))
23778
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
377 (princ "\n\f\n")
14832
4d511dd9bfce (describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
378 (princ (format "%s minor mode (%s):\n"
4d511dd9bfce (describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
379 pretty-minor-mode
4d511dd9bfce (describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
380 (if indicator
4d511dd9bfce (describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
381 (format "indicator%s" indicator)
4d511dd9bfce (describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
382 "no indicator")))
23778
9cee50f0ec56 (describe-mode): Put major mode first.
Richard M. Stallman <rms@gnu.org>
parents: 23749
diff changeset
383 (princ (documentation minor-mode)))))
6903
61d9d9b5ccba (describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6902
diff changeset
384 (setq minor-modes (cdr minor-modes))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
385 (print-help-return-message)))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
386
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387 ;; So keyboard macro definitions are documented correctly
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
388 (fset 'defining-kbd-macro (symbol-function 'start-kbd-macro))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
389
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
390 (defun describe-distribution ()
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 "Display info on how to obtain the latest version of GNU Emacs."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
392 (interactive)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393 (find-file-read-only
444
4cec2e6d4f9e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 409
diff changeset
394 (expand-file-name "DISTRIB" data-directory)))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 (defun describe-copying ()
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 "Display info on how you may redistribute copies of GNU Emacs."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
398 (interactive)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399 (find-file-read-only
444
4cec2e6d4f9e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 409
diff changeset
400 (expand-file-name "COPYING" data-directory))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401 (goto-char (point-min)))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402
5025
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
403 (defun describe-project ()
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
404 "Display info on the GNU project."
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
405 (interactive)
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
406 (find-file-read-only
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
407 (expand-file-name "GNU" data-directory))
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
408 (goto-char (point-min)))
0556b068e9ee (describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents: 4467
diff changeset
409
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 (defun describe-no-warranty ()
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 "Display info on all the kinds of warranty Emacs does NOT have."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 (interactive)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413 (describe-copying)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
414 (let (case-fold-search)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
415 (search-forward "NO WARRANTY")
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
416 (recenter 0)))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417
3980
bf2d4294a1dd (describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents: 3145
diff changeset
418 (defun describe-prefix-bindings ()
3982
e50f7b531c7f (describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 3980
diff changeset
419 "Describe the bindings of the prefix used to reach this command.
e50f7b531c7f (describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 3980
diff changeset
420 The prefix described consists of all but the last event
e50f7b531c7f (describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 3980
diff changeset
421 of the key sequence that ran this command."
3980
bf2d4294a1dd (describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents: 3145
diff changeset
422 (interactive)
11890
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
423 (let* ((key (this-command-keys)))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
424 (describe-bindings
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
425 (if (stringp key)
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
426 (substring key 0 (1- (length key)))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
427 (let ((prefix (make-vector (1- (length key)) nil))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
428 (i 0))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
429 (while (< i (length prefix))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
430 (aset prefix i (aref key i))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
431 (setq i (1+ i)))
543a76aa50b9 (describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents: 11524
diff changeset
432 prefix)))))
3982
e50f7b531c7f (describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 3980
diff changeset
433 ;; Make C-h after a prefix, when not specifically bound,
e50f7b531c7f (describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 3980
diff changeset
434 ;; run describe-prefix-bindings.
3980
bf2d4294a1dd (describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents: 3145
diff changeset
435 (setq prefix-help-command 'describe-prefix-bindings)
bf2d4294a1dd (describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents: 3145
diff changeset
436
21210
2a51a4912199 (view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 21188
diff changeset
437 (defun view-emacs-news (&optional arg)
2a51a4912199 (view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 21188
diff changeset
438 "Display info on recent changes to Emacs.
30920
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
439 With numeric argument, display information on correspondingly older changes."
21210
2a51a4912199 (view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 21188
diff changeset
440 (interactive "P")
30920
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
441 (let* ((arg (if arg (prefix-numeric-value arg) 0))
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
442 (file (cond ((eq arg 0) "NEWS")
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
443 ((eq arg 1) "ONEWS")
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
444 (t
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
445 (nth (- arg 2)
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
446 (nreverse (directory-files data-directory
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
447 nil "^NEWS\\.[0-9]+$"
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
448 nil)))))))
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
449 (if file
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
450 (find-file-read-only (expand-file-name file data-directory))
67bba5cea7bf (view-emacs-news): Rewritten for new naming scheme
Gerd Moellmann <gerd@gnu.org>
parents: 30819
diff changeset
451 (error "No such old news"))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452
10923
fe008aef4cf1 (view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents: 10622
diff changeset
453 (defun view-emacs-FAQ ()
fe008aef4cf1 (view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents: 10622
diff changeset
454 "Display the Emacs Frequently Asked Questions (FAQ) file."
fe008aef4cf1 (view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents: 10622
diff changeset
455 (interactive)
25846
3c430bda7857 Require view when compiling.
Dave Love <fx@gnu.org>
parents: 25689
diff changeset
456 ;;; (find-file-read-only (expand-file-name "FAQ" data-directory))
28935
0a2323529cff (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
Gerd Moellmann <gerd@gnu.org>
parents: 28909
diff changeset
457 (info "(efaq)"))
10923
fe008aef4cf1 (view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents: 10622
diff changeset
458
26757
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
459 (defun view-emacs-problems ()
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
460 "Display info on known problems with Emacs and possible workarounds."
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
461 (interactive)
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
462 (view-file (expand-file-name "PROBLEMS" data-directory)))
6af9f1dc59c4 (view-emacs-problems): New command, bound to C-h P.
Dave Love <fx@gnu.org>
parents: 26650
diff changeset
463
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
464 (defun view-lossage ()
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 "Display last 100 input keystrokes."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 (interactive)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467 (with-output-to-temp-buffer "*Help*"
8504
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
468 (princ (mapconcat (function (lambda (key)
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
469 (if (or (integerp key)
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
470 (symbolp key)
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
471 (listp key))
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
472 (single-key-description key)
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
473 (prin1-to-string key nil))))
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
474 (recent-keys)
8c492f23ee28 (view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents: 8259
diff changeset
475 " "))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476 (save-excursion
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 (set-buffer standard-output)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478 (goto-char (point-min))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479 (while (progn (move-to-column 50) (not (eobp)))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 (search-forward " " nil t)
21973
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
481 (insert "\n"))
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
482 (setq help-xref-stack nil
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
483 help-xref-stack-item nil))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484 (print-help-return-message)))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485
6580
4c20c6b1d2c2 (help): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 6476
diff changeset
486 (defalias 'help 'help-for-help)
2237
2670a8f6a42e Teach this to use help-screen.el.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2134
diff changeset
487 (make-help-screen help-for-help
18632
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
488 "a b c C f F C-f i I k C-k l L m n p s t v w C-c C-d C-n C-p C-w; ? for help:"
23332
d0403c974cac (help-for-help): Use %THIS-KEY%.
Richard M. Stallman <rms@gnu.org>
parents: 23291
diff changeset
489 "You have typed %THIS-KEY%, the help character. Type a Help option:
10479
f2f290b13413 (help-for-help): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10196
diff changeset
490 \(Use SPC or DEL to scroll through this text. Type \\<help-map>\\[help-quit] to exit the Help command.)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491
4467
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
492 a command-apropos. Give a substring, and see a list of commands
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
493 (functions interactively callable) that contain
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
494 that substring. See also the apropos command.
2638
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
495 b describe-bindings. Display table of all key bindings.
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
496 c describe-key-briefly. Type a command key sequence;
4467
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
497 it prints the function name that sequence runs.
18632
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
498 C describe-coding-system. This describes either a specific coding system
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
499 (if you type its name) or the coding systems currently in use
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
500 (if you type just RET).
2638
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
501 f describe-function. Type a function name and get documentation of it.
4467
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
502 C-f Info-goto-emacs-command-node. Type a function name;
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
503 it takes you to the Info node for that command.
2638
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
504 i info. The info documentation reader.
18632
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
505 I describe-input-method. Describe a specific input method (if you type
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
506 its name) or the current input method (if you type just RET).
24830
459c58257c18 (help-for-help): Mention C-h C-i. Clear up C-h n.
Karl Heuer <kwzh@gnu.org>
parents: 24815
diff changeset
507 C-i info-lookup-symbol. Display the definition of a specific symbol
459c58257c18 (help-for-help): Mention C-h C-i. Clear up C-h n.
Karl Heuer <kwzh@gnu.org>
parents: 24815
diff changeset
508 as found in the manual for the language this buffer is written in.
2638
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
509 k describe-key. Type a command key sequence;
4467
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
510 it displays the full documentation.
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
511 C-k Info-goto-emacs-key-command-node. Type a command key sequence;
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
512 it takes you to the Info node for the command bound to that key.
24830
459c58257c18 (help-for-help): Mention C-h C-i. Clear up C-h n.
Karl Heuer <kwzh@gnu.org>
parents: 24815
diff changeset
513 l view-lossage. Show last 100 characters you typed.
18632
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
514 L describe-language-environment. This describes either the a
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
515 specific language environment (if you type its name)
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
516 or the current language environment (if you type just RET).
20250
e29142cee7c3 (help-for-help): Update text for `m'.
Karl Heuer <kwzh@gnu.org>
parents: 20243
diff changeset
517 m describe-mode. Print documentation of current minor modes,
e29142cee7c3 (help-for-help): Update text for `m'.
Karl Heuer <kwzh@gnu.org>
parents: 20243
diff changeset
518 and the current major mode, including their special commands.
24830
459c58257c18 (help-for-help): Mention C-h C-i. Clear up C-h n.
Karl Heuer <kwzh@gnu.org>
parents: 24815
diff changeset
519 n view-emacs-news. Display news of recent Emacs changes.
2638
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
520 p finder-by-keyword. Find packages matching a given topic keyword.
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
521 s describe-syntax. Display contents of syntax table, plus explanations
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
522 t help-with-tutorial. Select the Emacs learn-by-doing tutorial.
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
523 v describe-variable. Type name of a variable;
4467
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
524 it displays the variable's documentation and value.
2638
5ff504c4ae11 (help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents: 2440
diff changeset
525 w where-is. Type command name; it prints which keystrokes
4467
1e8785572dd4 (help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents: 3986
diff changeset
526 invoke that command.
18632
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
527
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
528 F Display the frequently asked questions file.
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
529 h Display the HELLO file which illustrates various scripts.
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
530 C-c Display Emacs copying permission (General Public License).
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
531 C-d Display Emacs ordering information.
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
532 C-n Display news of recent Emacs changes.
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
533 C-p Display information about the GNU project.
0e44be1e2051 (help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents: 18293
diff changeset
534 C-w Display information on absence of warranty for GNU Emacs."
2237
2670a8f6a42e Teach this to use help-screen.el.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2134
diff changeset
535 help-map)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537 (defun function-called-at-point ()
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
538 "Return a function around point or else called by the list containing point.
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
539 If that doesn't give a function, return nil."
30819
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
540 (with-syntax-table emacs-lisp-mode-syntax-table
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
541 (or (condition-case ()
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
542 (save-excursion
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
543 (or (not (zerop (skip-syntax-backward "_w")))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
544 (eq (char-syntax (following-char)) ?w)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
545 (eq (char-syntax (following-char)) ?_)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
546 (forward-sexp -1))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
547 (skip-chars-forward "'")
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
548 (let ((obj (read (current-buffer))))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
549 (and (symbolp obj) (fboundp obj) obj)))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
550 (error nil))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
551 (condition-case ()
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
552 (save-excursion
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
553 (save-restriction
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
554 (narrow-to-region (max (point-min)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
555 (- (point) 1000)) (point-max))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
556 ;; Move up to surrounding paren, then after the open.
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
557 (backward-up-list 1)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
558 (forward-char 1)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
559 ;; If there is space here, this is probably something
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
560 ;; other than a real Lisp function call, so ignore it.
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
561 (if (looking-at "[ \t]")
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
562 (error "Probably not a Lisp function call"))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
563 (let ((obj (read (current-buffer))))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
564 (and (symbolp obj) (fboundp obj) obj))))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
565 (error nil)))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566
23853
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
567 (defvar symbol-file-load-history-loaded nil
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
568 "Non-nil means we have loaded the file `fns-VERSION.el' in `exec-directory'.
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
569 That file records the part of `load-history' for preloaded files,
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
570 which is cleared out before dumping to make Emacs smaller.")
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
571
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
572 (defun symbol-file (function)
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
573 "Return the input source from which FUNCTION was loaded.
23853
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
574 The value is normally a string that was passed to `load':
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
575 either an absolute file name, or a library name
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
576 \(with no directory name and no `.el' or `.elc' at the end).
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
577 It can also be nil, if the definition is not associated with any file."
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
578 (unless symbol-file-load-history-loaded
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
579 (load (expand-file-name
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
580 ;; fns-XX.YY.ZZ.el does not work on DOS filesystem.
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
581 (if (eq system-type 'ms-dos)
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
582 "fns.el"
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
583 (format "fns-%s.el" emacs-version))
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
584 exec-directory)
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
585 ;; The file name fns-%s.el already has a .el extension.
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
586 nil nil t)
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
587 (setq symbol-file-load-history-loaded t))
9639
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
588 (let ((files load-history)
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
589 file functions)
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
590 (while files
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
591 (if (memq function (cdr (car files)))
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
592 (setq file (car (car files)) files nil))
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
593 (setq files (cdr files)))
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
594 file))
7cad0025f303 (describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9638
diff changeset
595
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
596 (defun describe-function (function)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597 "Display the full documentation of FUNCTION (a symbol)."
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
598 (interactive
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
599 (let ((fn (function-called-at-point))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
600 (enable-recursive-minibuffers t)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
601 val)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
602 (setq val (completing-read (if fn
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603 (format "Describe function (default %s): " fn)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
604 "Describe function: ")
20069
1f8e6121713d (describe-variable): Pass default value to completing-read.
Karl Heuer <kwzh@gnu.org>
parents: 20060
diff changeset
605 obarray 'fboundp t nil nil (symbol-name fn)))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 (list (if (equal val "")
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607 fn (intern val)))))
16439
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
608 (if function
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
609 (with-output-to-temp-buffer "*Help*"
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
610 (prin1 function)
19124
e5e8552b076a (describe-function): Use " is " instead of colon.
Richard M. Stallman <rms@gnu.org>
parents: 18632
diff changeset
611 ;; Use " is " instead of a colon so that
e5e8552b076a (describe-function): Use " is " instead of colon.
Richard M. Stallman <rms@gnu.org>
parents: 18632
diff changeset
612 ;; it is easier to get out the function name using forward-sexp.
e5e8552b076a (describe-function): Use " is " instead of colon.
Richard M. Stallman <rms@gnu.org>
parents: 18632
diff changeset
613 (princ " is ")
24759
a03aa24489bd (describe-function-1): Extra arg, interactive-p.
Richard M. Stallman <rms@gnu.org>
parents: 24714
diff changeset
614 (describe-function-1 function nil (interactive-p))
16439
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
615 (print-help-return-message)
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
616 (save-excursion
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
617 (set-buffer standard-output)
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
618 ;; Return the text we displayed.
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
619 (buffer-string)))
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
620 (message "You didn't specify a function")))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621
24759
a03aa24489bd (describe-function-1): Extra arg, interactive-p.
Richard M. Stallman <rms@gnu.org>
parents: 24714
diff changeset
622 (defun describe-function-1 (function parens interactive-p)
24331
84dcf9017a67 (describe-function-1): Accept non-symbols.
Richard M. Stallman <rms@gnu.org>
parents: 24177
diff changeset
623 (let* ((def (if (symbolp function)
84dcf9017a67 (describe-function-1): Accept non-symbols.
Richard M. Stallman <rms@gnu.org>
parents: 24177
diff changeset
624 (symbol-function function)
84dcf9017a67 (describe-function-1): Accept non-symbols.
Richard M. Stallman <rms@gnu.org>
parents: 24177
diff changeset
625 function))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
626 file-name string need-close
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
627 (beg (if (commandp def) "an interactive " "a ")))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
628 (setq string
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
629 (cond ((or (stringp def)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
630 (vectorp def))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
631 "a keyboard macro")
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
632 ((subrp def)
29370
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
633 (if (eq 'unevalled (cdr (subr-arity def)))
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
634 (concat beg "special form")
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
635 (concat beg "built-in function")))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
636 ((byte-code-function-p def)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
637 (concat beg "compiled Lisp function"))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
638 ((symbolp def)
22973
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
639 (while (symbolp (symbol-function def))
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
640 (setq def (symbol-function def)))
23818
19e467700712 (describe-function-1): Fix description for alias.
Dave Love <fx@gnu.org>
parents: 23797
diff changeset
641 (format "an alias for `%s'" def))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
642 ((eq (car-safe def) 'lambda)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
643 (concat beg "Lisp function"))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
644 ((eq (car-safe def) 'macro)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
645 "a Lisp macro")
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
646 ((eq (car-safe def) 'mocklisp)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
647 "a mocklisp function")
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
648 ((eq (car-safe def) 'autoload)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
649 (setq file-name (nth 1 def))
23922
81d1dacd379e (describe-function-1): Say "keymap", not "Lisp macro",
Andreas Schwab <schwab@suse.de>
parents: 23853
diff changeset
650 (format "%s autoloaded %s"
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
651 (if (commandp def) "an interactive" "an")
23922
81d1dacd379e (describe-function-1): Say "keymap", not "Lisp macro",
Andreas Schwab <schwab@suse.de>
parents: 23853
diff changeset
652 (if (eq (nth 4 def) 'keymap) "keymap"
81d1dacd379e (describe-function-1): Say "keymap", not "Lisp macro",
Andreas Schwab <schwab@suse.de>
parents: 23853
diff changeset
653 (if (nth 4 def) "Lisp macro" "Lisp function"))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
654 ))
25605
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
655 ;; perhaps use keymapp here instead
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
656 ((eq (car-safe def) 'keymap)
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
657 (let ((is-full nil)
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
658 (elts (cdr-safe def)))
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
659 (while elts
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
660 (if (char-table-p (car-safe elts))
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
661 (setq is-full t
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
662 elts nil))
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
663 (setq elts (cdr-safe elts)))
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
664 (if is-full
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
665 "a full keymap"
d1251e911451 (describe-function-1): Don't return empty string for keymaps.
Richard M. Stallman <rms@gnu.org>
parents: 25473
diff changeset
666 "a sparse keymap")))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
667 (t "")))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
668 (when (and parens (not (equal string "")))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
669 (setq need-close t)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
670 (princ "("))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
671 (princ string)
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
672 (with-current-buffer "*Help*"
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
673 (save-excursion
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
674 (save-match-data
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
675 (if (re-search-backward "alias for `\\([^`']+\\)'" nil t)
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
676 (help-xref-button 1 #'describe-function def
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
677 "mouse-2, RET: describe this function")))))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
678 (or file-name
23853
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
679 (setq file-name (symbol-file function)))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
680 (if file-name
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
681 (progn
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
682 (princ " in `")
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
683 ;; We used to add .el to the file name,
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
684 ;; but that's completely wrong when the user used load-file.
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
685 (princ file-name)
21695
2c9cfb84bf1b (describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents: 21587
diff changeset
686 (princ "'")
2c9cfb84bf1b (describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents: 21587
diff changeset
687 ;; Make a hyperlink to the library.
2c9cfb84bf1b (describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents: 21587
diff changeset
688 (with-current-buffer "*Help*"
2c9cfb84bf1b (describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents: 21587
diff changeset
689 (save-excursion
2c9cfb84bf1b (describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents: 21587
diff changeset
690 (re-search-backward "`\\([^`']+\\)'" nil t)
21972
9c71660c0a8d (describe-function-1): Use find-function-noselect instead of find-function.
Richard M. Stallman <rms@gnu.org>
parents: 21708
diff changeset
691 (help-xref-button 1 #'(lambda (arg)
9c71660c0a8d (describe-function-1): Use find-function-noselect instead of find-function.
Richard M. Stallman <rms@gnu.org>
parents: 21708
diff changeset
692 (let ((location
9c71660c0a8d (describe-function-1): Use find-function-noselect instead of find-function.
Richard M. Stallman <rms@gnu.org>
parents: 21708
diff changeset
693 (find-function-noselect arg)))
22850
e7684a1dd417 (describe-function-1): Fix the code that uses find-function-noselect.
Richard M. Stallman <rms@gnu.org>
parents: 22470
diff changeset
694 (pop-to-buffer (car location))
e7684a1dd417 (describe-function-1): Fix the code that uses find-function-noselect.
Richard M. Stallman <rms@gnu.org>
parents: 22470
diff changeset
695 (goto-char (cdr location))))
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
696 function
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
697 "mouse-2, RET: find function's definition")))))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
698 (if need-close (princ ")"))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
699 (princ ".")
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
700 (terpri)
22973
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
701 ;; Handle symbols aliased to other symbols.
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
702 (setq def (indirect-function def))
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
703 ;; If definition is a macro, find the function inside it.
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
704 (if (eq (car-safe def) 'macro)
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
705 (setq def (cdr def)))
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
706 (let ((arglist (cond ((byte-code-function-p def)
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
707 (car (append def nil)))
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
708 ((eq (car-safe def) 'lambda)
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
709 (nth 1 def))
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
710 ((and (eq (car-safe def) 'autoload)
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
711 (not (eq (nth 4 def) 'keymap)))
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
712 (concat "[Arg list not available until "
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
713 "function definition is loaded.]"))
22973
c3bbca1b6f3a (describe-function-1): Handle macros properly.
Richard M. Stallman <rms@gnu.org>
parents: 22850
diff changeset
714 (t t))))
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
715 (cond ((listp arglist)
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
716 (princ (cons (if (symbolp function) function "anonymous")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
717 (mapcar (lambda (arg)
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
718 (if (memq arg '(&optional &rest))
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
719 arg
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
720 (intern (upcase (symbol-name arg)))))
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
721 arglist)))
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
722 (terpri))
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
723 ((stringp arglist)
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
724 (princ arglist)
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
725 (terpri))))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
726 (let ((doc (documentation function)))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
727 (if doc
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
728 (progn (terpri)
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
729 (princ doc)
29370
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
730 (if (subrp (symbol-function function))
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
731 (with-current-buffer standard-output
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
732 (beginning-of-line)
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
733 ;; Builtins get the calling sequence at the end of
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
734 ;; the doc string. Move it to the same place as
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
735 ;; for other functions.
29629
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
736
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
737 ;; In cases where `function' has been fset to a
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
738 ;; subr we can't search for function's name in
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
739 ;; the doc string. Kluge round that using the
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
740 ;; printed representation. The arg list then
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
741 ;; shows the wrong function name, but that
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
742 ;; might be a useful hint.
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
743 (let* ((rep (prin1-to-string def))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
744 (name (progn
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
745 (string-match " \\([^ ]+\\)>$" rep)
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
746 (match-string 1 rep))))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
747 (if (looking-at (format "(%s[ )]" name))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
748 (let ((start (point-marker)))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
749 (goto-char (point-min))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
750 (forward-paragraph)
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
751 (insert-buffer-substring (current-buffer) start)
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
752 (insert ?\n)
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
753 (delete-region (1- start) (point-max)))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
754 (goto-char (point-min))
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
755 (forward-paragraph)
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
756 (insert
855fe2e4005d (describe-function-1): Kluge around cases of functions fset to subrs
Dave Love <fx@gnu.org>
parents: 29370
diff changeset
757 "[Missing arglist. Please make a bug report.]\n")))
29370
399be97ac189 (describe-function-1): Distinguish special form from
Dave Love <fx@gnu.org>
parents: 29071
diff changeset
758 (goto-char (point-max))))
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
759 (help-setup-xref (list #'describe-function function)
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
760 interactive-p))
21491
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
761 (princ "not documented")))))
7a8169a735f5 (describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents: 21440
diff changeset
762
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763 (defun variable-at-point ()
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
764 "Return the bound variable symbol found around point.
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
765 Return 0 if there is no such symbol."
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
766 (condition-case ()
30819
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
767 (with-syntax-table emacs-lisp-mode-syntax-table
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
768 (save-excursion
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
769 (or (not (zerop (skip-syntax-backward "_w")))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
770 (eq (char-syntax (following-char)) ?w)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
771 (eq (char-syntax (following-char)) ?_)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
772 (forward-sexp -1))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
773 (skip-chars-forward "'")
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
774 (let ((obj (read (current-buffer))))
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
775 (or (and (symbolp obj) (boundp obj) obj)
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
776 0))))
16439
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
777 (error 0)))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
778
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
779 (defun help-xref-on-pp (from to)
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
780 "Add xrefs for symbols in `pp's output between FROM and TO."
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
781 (let ((ost (syntax-table)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
782 (unwind-protect
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
783 (save-excursion
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
784 (save-restriction
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
785 (set-syntax-table emacs-lisp-mode-syntax-table)
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
786 (narrow-to-region from to)
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
787 (goto-char (point-min))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
788 (while (not (eobp))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
789 (cond
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
790 ((looking-at "\"") (forward-sexp 1))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
791 ((looking-at "#<") (search-forward ">" nil 'move))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
792 ((looking-at "\\(\\(\\sw\\|\\s_\\)+\\)")
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
793 (let* ((sym (intern-soft (match-string 1)))
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
794 (fn (cond ((fboundp sym) #'describe-function)
28771
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
795 ((or (memq sym '(t nil))
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
796 (keywordp sym))
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
797 nil)
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
798 ((and sym (boundp sym))
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
799 #'describe-variable))))
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
800 (when fn (help-xref-button 1 fn sym)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
801 (goto-char (match-end 1)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
802 (t (forward-char 1))))))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
803 (set-syntax-table ost))))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
804
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
805 (defun describe-variable (variable &optional buffer)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 "Display the full documentation of VARIABLE (a symbol).
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
807 Returns the documentation as a string, also.
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
808 If VARIABLE has a buffer-local value in BUFFER (default to the current buffer),
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
809 it is displayed along with the global value."
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
810 (interactive
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811 (let ((v (variable-at-point))
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
812 (enable-recursive-minibuffers t)
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813 val)
16439
0c61b1f40de2 (describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents: 16391
diff changeset
814 (setq val (completing-read (if (symbolp v)
28771
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
815 (format
383f9592d9dd (help-xref-on-pp): Check for constant symbols.
Dave Love <fx@gnu.org>
parents: 28735
diff changeset
816 "Describe variable (default %s): " v)
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817 "Describe variable: ")
20290
456ed25a8605 (describe-variable): Don't use symbol-name if v isn't symbol.
Karl Heuer <kwzh@gnu.org>
parents: 20286
diff changeset
818 obarray 'boundp t nil nil
456ed25a8605 (describe-variable): Don't use symbol-name if v isn't symbol.
Karl Heuer <kwzh@gnu.org>
parents: 20286
diff changeset
819 (if (symbolp v) (symbol-name v))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
820 (list (if (equal val "")
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821 v (intern val)))))
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
822 (unless (bufferp buffer) (setq buffer (current-buffer)))
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
823 (if (not (symbolp variable))
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
824 (message "You did not specify a variable")
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
825 (let (valvoid)
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
826 (with-current-buffer buffer
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
827 (with-output-to-temp-buffer "*Help*"
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
828 (prin1 variable)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
829 (if (not (boundp variable))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
830 (progn
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
831 (princ " is void")
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
832 (setq valvoid t))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
833 (let ((val (symbol-value variable)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
834 (with-current-buffer standard-output
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
835 (princ "'s value is ")
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
836 (terpri)
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
837 (let ((from (point)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
838 (pp val)
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
839 (help-xref-on-pp from (point))))))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
840 (terpri)
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
841 (if (local-variable-p variable)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
842 (progn
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
843 (princ (format "Local in buffer %s; " (buffer-name)))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
844 (if (not (default-boundp variable))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
845 (princ "globally void")
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
846 (let ((val (default-value variable)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
847 (with-current-buffer standard-output
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
848 (princ "global value is ")
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
849 (terpri)
30819
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
850 ;; Fixme: pp can take an age if you happen to
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
851 ;; ask for a very large expression. We should
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
852 ;; probably print it raw once and check it's a
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
853 ;; sensible size before prettyprinting. -- fx
28718
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
854 (let ((from (point)))
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
855 (pp val)
74b19c6efdd1 (help-xref-on-pp): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28654
diff changeset
856 (help-xref-on-pp from (point))))))
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
857 (terpri)))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
858 (terpri)
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
859 (with-current-buffer standard-output
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
860 (if (> (count-lines (point-min) (point-max)) 10)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
861 (progn
29958
7507f083dcc5 (describe-variable): Don't insert a second `'s' in front
Gerd Moellmann <gerd@gnu.org>
parents: 29629
diff changeset
862 ;; Note that setting the syntax table like below
7507f083dcc5 (describe-variable): Don't insert a second `'s' in front
Gerd Moellmann <gerd@gnu.org>
parents: 29629
diff changeset
863 ;; makes forward-sexp move over a `'s' at the end
7507f083dcc5 (describe-variable): Don't insert a second `'s' in front
Gerd Moellmann <gerd@gnu.org>
parents: 29629
diff changeset
864 ;; of a symbol.
27806
8b7366f90bd9 (describe-variable): Set syntax table to
Gerd Moellmann <gerd@gnu.org>
parents: 27550
diff changeset
865 (set-syntax-table emacs-lisp-mode-syntax-table)
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
866 (goto-char (point-min))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
867 (if valvoid
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
868 (forward-line 1)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
869 (forward-sexp 1)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
870 (delete-region (point) (progn (end-of-line) (point)))
29958
7507f083dcc5 (describe-variable): Don't insert a second `'s' in front
Gerd Moellmann <gerd@gnu.org>
parents: 29629
diff changeset
871 (insert " value is shown below.\n\n")
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
872 (save-excursion
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
873 (insert "\n\nValue:"))))))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
874 (princ "Documentation:")
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
875 (terpri)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
876 (let ((doc (documentation-property variable 'variable-documentation)))
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
877 (princ (or doc "not documented as a variable.")))
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
878 (help-setup-xref (list #'describe-variable variable (current-buffer))
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
879 (interactive-p))
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
880
22234
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
881 ;; Make a link to customize if this variable can be customized.
23741
0146ed131b2a (describe-variable): Allow any variable with a defcustom,
Richard M. Stallman <rms@gnu.org>
parents: 23640
diff changeset
882 ;; Note, it is not reliable to test only for a custom-type property
22407
e7ec3ed4c814 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 22325
diff changeset
883 ;; because those are only present after the var's definition
e7ec3ed4c814 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 22325
diff changeset
884 ;; has been loaded.
24974
2668e8c9f19e (describe-variable): Fix test for customizability.
Dave Love <fx@gnu.org>
parents: 24830
diff changeset
885 (if (or (get variable 'custom-type) ; after defcustom
2668e8c9f19e (describe-variable): Fix test for customizability.
Dave Love <fx@gnu.org>
parents: 24830
diff changeset
886 (get variable 'custom-loads) ; from loaddefs.el
2668e8c9f19e (describe-variable): Fix test for customizability.
Dave Love <fx@gnu.org>
parents: 24830
diff changeset
887 (get variable 'standard-value)) ; from cus-start.el
22234
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
888 (let ((customize-label "customize"))
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
889 (terpri)
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
890 (terpri)
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
891 (princ (concat "You can " customize-label " this variable."))
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
892 (with-current-buffer "*Help*"
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
893 (save-excursion
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
894 (re-search-backward
22234
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
895 (concat "\\(" customize-label "\\)") nil t)
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
896 (help-xref-button 1 (lambda (v)
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
897 (if help-xref-stack
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
898 (pop help-xref-stack))
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
899 (customize-variable v))
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
900 variable
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
901 "mouse-2, RET: customize variable")))))
23591
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
902 ;; Make a hyperlink to the library if appropriate. (Don't
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
903 ;; change the format of the buffer's initial line in case
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
904 ;; anything expects the current format.)
23853
e9fe8ed71303 (symbol-file-load-history-loaded): Variable renamed,
Karl Heuer <kwzh@gnu.org>
parents: 23818
diff changeset
905 (let ((file-name (symbol-file variable)))
23591
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
906 (when file-name
23787
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
907 (princ "\n\nDefined in `")
23591
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
908 (princ file-name)
23787
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
909 (princ "'.")
23591
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
910 (with-current-buffer "*Help*"
9487b796b92c (describe-variable): Hyperlink the definition.
Dave Love <fx@gnu.org>
parents: 23333
diff changeset
911 (save-excursion
23787
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
912 (re-search-backward "`\\([^`']+\\)'" nil t)
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
913 (help-xref-button
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
914 1 (lambda (arg)
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
915 (let ((location
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
916 (find-variable-noselect arg)))
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
917 (pop-to-buffer (car location))
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
918 (goto-char (cdr location))))
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
919 variable "mouse-2, RET: find variable's definition")))))
22234
40229c79e16b (describe-variable): Add a button to call
Richard M. Stallman <rms@gnu.org>
parents: 22060
diff changeset
920
16557
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
921 (print-help-return-message)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
922 (save-excursion
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
923 (set-buffer standard-output)
4ff6a0f0f5c7 (describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents: 16439
diff changeset
924 ;; Return the text we displayed.
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
925 (buffer-string)))))))
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
926
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
927 (defun describe-bindings (&optional prefix buffer)
20848
4c3e62fe8898 (describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents: 20290
diff changeset
928 "Show a list of all defined keys, and their definitions.
4c3e62fe8898 (describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents: 20290
diff changeset
929 We put that list in a buffer, and display the buffer.
4c3e62fe8898 (describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents: 20290
diff changeset
930
4c3e62fe8898 (describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents: 20290
diff changeset
931 The optional argument PREFIX, if non-nil, should be a key sequence;
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
932 then we display only bindings that start with that prefix.
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
933 The optional argument BUFFER specifies which buffer's bindings
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
934 to display (default, the current buffer)."
20882
6566e48896f4 (describe-bindings): Fix interactive spec.
Richard M. Stallman <rms@gnu.org>
parents: 20848
diff changeset
935 (interactive "P")
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
936 (or buffer (setq buffer (current-buffer)))
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
937 (with-current-buffer buffer
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
938 (describe-bindings-internal nil prefix))
21973
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
939 (with-current-buffer "*Help*"
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
940 (help-setup-xref (list #'describe-bindings prefix buffer)
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
941 (interactive-p))))
20848
4c3e62fe8898 (describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents: 20290
diff changeset
942
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
943 (defun where-is (definition &optional insert)
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
944 "Print message listing key sequences that invoke the command DEFINITION.
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
945 Argument is a command definition, usually a symbol with a function definition.
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
946 If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
6476
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
947 (interactive
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
948 (let ((fn (function-called-at-point))
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
949 (enable-recursive-minibuffers t)
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
950 val)
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
951 (setq val (completing-read (if fn
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
952 (format "Where is command (default %s): " fn)
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
953 "Where is command: ")
26805
45e359e91cbb 1999-12-11 Samir Barjoud <samir@mindspring.com>
Dave Love <fx@gnu.org>
parents: 26757
diff changeset
954 obarray 'commandp t))
6476
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
955 (list (if (equal val "")
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
956 fn (intern val))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
957 current-prefix-arg)))
6476
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
958 (let* ((keys (where-is-internal definition overriding-local-map nil nil))
17917
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
959 (keys1 (mapconcat 'key-description keys ", "))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
960 (standard-output (if insert (current-buffer) t)))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
961 (if insert
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
962 (if (> (length keys1) 0)
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
963 (princ (format "%s (%s)" keys1 definition))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
964 (princ (format "M-x %s RET" definition)))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
965 (if (> (length keys1) 0)
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
966 (princ (format "%s is on %s" definition keys1))
2a41f677885f (describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents: 17756
diff changeset
967 (princ (format "%s is not on any key" definition)))))
6476
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
968 nil)
2e28b96d5b64 (where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6433
diff changeset
969
16273
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
970 (defun locate-library (library &optional nosuffix path interactive-call)
16063
b4427bbd451e (locate-library): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15826
diff changeset
971 "Show the precise file name of Emacs library LIBRARY.
409
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
972 This command searches the directories in `load-path' like `M-x load-library'
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
973 to find the file that `M-x load-library RET LIBRARY RET' would load.
671fceb3316b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
974 Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el'
16064
a9d32637ee38 (locate-library): New arg PATH. Handle autocompression mode.
Richard M. Stallman <rms@gnu.org>
parents: 16063
diff changeset
975 to the specified name LIBRARY.
a9d32637ee38 (locate-library): New arg PATH. Handle autocompression mode.
Richard M. Stallman <rms@gnu.org>
parents: 16063
diff changeset
976
a9d32637ee38 (locate-library): New arg PATH. Handle autocompression mode.
Richard M. Stallman <rms@gnu.org>
parents: 16063
diff changeset
977 If the optional third arg PATH is specified, that list of directories
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
978 is used instead of `load-path'.
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
979
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
980 When called from a program, the file name is normaly returned as a
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
981 string. When run interactively, the argument INTERACTIVE-CALL is t,
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
982 and the file name is displayed in the echo area."
16273
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
983 (interactive (list (read-string "Locate library: ")
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
984 nil nil
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
985 t))
20176
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
986 (let (result)
16273
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
987 (catch 'answer
28735
2a88fcce2568 (locate-library): Use mapc.
Dave Love <fx@gnu.org>
parents: 28718
diff changeset
988 (mapc
16391
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
989 (lambda (dir)
28735
2a88fcce2568 (locate-library): Use mapc.
Dave Love <fx@gnu.org>
parents: 28718
diff changeset
990 (mapc
16391
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
991 (lambda (suf)
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
992 (let ((try (expand-file-name (concat library suf) dir)))
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
993 (and (file-readable-p try)
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
994 (null (file-directory-p try))
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
995 (progn
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
996 (setq result try)
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
997 (throw 'answer try)))))
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
998 (if nosuffix
5d64d742ccbb (print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents: 16273
diff changeset
999 '("")
20176
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1000 '(".elc" ".el" "")
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1001 ;;; load doesn't handle this yet.
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1002 ;;; (let ((basic '(".elc" ".el" ""))
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1003 ;;; (compressed '(".Z" ".gz" "")))
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1004 ;;; ;; If autocompression mode is on,
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1005 ;;; ;; consider all combinations of library suffixes
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1006 ;;; ;; and compression suffixes.
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1007 ;;; (if (rassq 'jka-compr-handler file-name-handler-alist)
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1008 ;;; (apply 'nconc
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1009 ;;; (mapcar (lambda (compelt)
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1010 ;;; (mapcar (lambda (baselt)
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1011 ;;; (concat baselt compelt))
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1012 ;;; basic))
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1013 ;;; compressed))
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1014 ;;; basic))
fb907b54fe26 (locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents: 20133
diff changeset
1015 )))
16273
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
1016 (or path load-path)))
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
1017 (and interactive-call
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
1018 (if result
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
1019 (message "Library is file %s" result)
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
1020 (message "No library %s in search path" library)))
14ff4afa06ec (locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents: 16064
diff changeset
1021 result))
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 444
diff changeset
1022
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1023
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1024 ;;; Grokking cross-reference information in doc strings and
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1025 ;;; hyperlinking it.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1026
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1027 ;; This may have some scope for extension and the same or something
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1028 ;; similar should be done for widget doc strings, which currently use
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1029 ;; another mechanism.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1030
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1031 (defcustom help-highlight-p t
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1032 "*If non-nil, `help-make-xrefs' highlight cross-references.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1033 Under a window system it highlights them with face defined by
25689
60a23f3bd0cc (help-highlight-p): Doc fix.
Dave Love <fx@gnu.org>
parents: 25605
diff changeset
1034 `help-highlight-face'."
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1035 :group 'help
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1036 :version "20.3"
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1037 :type 'boolean)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1038
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1039 (defcustom help-highlight-face 'underline
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1040 "Face used by `help-make-xrefs' to highlight cross-references.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1041 Must be previously-defined."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1042 :group 'help
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1043 :version "20.3"
21698
9ebbb53c1c20 (help-highlight-face): Use `face' as custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21695
diff changeset
1044 :type 'face)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1045
27492
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1046 (defvar help-back-label (purecopy "[back]")
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1047 "Label to use by `help-make-xrefs' for the go-back reference.")
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1048
27492
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1049 (defconst help-xref-symbol-regexp
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1050 (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|"
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1051 "\\(function\\|command\\)\\|"
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1052 "\\(face\\)\\|"
27492
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1053 "\\(symbol\\)\\)\\s-+\\)?"
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1054 ;; Note starting with word-syntax character:
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1055 "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'"))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1056 "Regexp matching doc string references to symbols.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1057
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1058 The words preceding the quoted symbol can be used in doc strings to
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1059 distinguish references to variables, functions and symbols.")
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1060
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1061 (defconst help-xref-mule-regexp nil
31275
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1062 "Regexp matching doc string references to MULE-related keywords.
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1063
31275
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1064 It is usually nil, and is temporarily bound to an appropriate regexp
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1065 when help commands related to multilingual environment (e.g.,
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1066 `describe-coding-system') are invoked.")
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1067
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1068
27492
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1069 (defconst help-xref-info-regexp
1cc1c05b9ab7 (help-xref-symbol-regexp, help-xref-info-regexp): Use defconst,
Dave Love <fx@gnu.org>
parents: 26805
diff changeset
1070 (purecopy "\\<[Ii]nfo[ \t\n]+node[ \t\n]+`\\([^']+\\)'")
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1071 "Regexp matching doc string references to an Info node.")
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1072
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1073 (defun help-setup-xref (item interactive-p)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1074 "Invoked from commands using the \"*Help*\" buffer to install some xref info.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1075
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
1076 ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1077 buffer after following a reference. INTERACTIVE-P is non-nil if the
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1078 calling command was invoked interactively. In this case the stack of
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1079 items for help buffer \"back\" buttons is cleared."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1080 (if interactive-p
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1081 (setq help-xref-stack nil))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1082 (setq help-xref-stack-item item))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1083
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1084 (defvar help-xref-following nil
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1085 "Non-nil when following a help cross-reference.")
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1086
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1087 (defun help-make-xrefs (&optional buffer)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1088 "Parse and hyperlink documentation cross-references in the given BUFFER.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1089
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1090 Find cross-reference information in a buffer and, if
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1091 `help-highlight-p' is non-nil, highlight it with face defined by
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1092 `help-highlight-face'; activate such cross references for selection
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1093 with `help-follow'. Cross-references have the canonical form `...'
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1094 and the type of reference may be disambiguated by the preceding
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1095 word(s) used in `help-xref-symbol-regexp'.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1096
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1097 If the variable `help-xref-mule-regexp' is non-nil, find also
31275
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1098 cross-reference information related to multilingual environment
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1099 \(e.g., coding-systems). This variable is also used to disambiguate
c3f064fd988f (help-make-xrefs, help-xref-mule-regexp): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 31243
diff changeset
1100 the type of reference as the same way as `help-xref-symbol-regexp'.
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1101
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1102 A special reference `back' is made to return back through a stack of
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1103 help buffers. Variable `help-back-label' specifies the text for
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1104 that."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1105 (interactive "b")
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1106 (save-excursion
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1107 (set-buffer (or buffer (current-buffer)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1108 (goto-char (point-min))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1109 ;; Skip the header-type info, though it might be useful to parse
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1110 ;; it at some stage (e.g. "function in `library'").
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1111 (forward-paragraph)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1112 (let ((old-modified (buffer-modified-p)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1113 (let ((stab (syntax-table))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1114 (case-fold-search t)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1115 (inhibit-read-only t))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1116 (set-syntax-table emacs-lisp-mode-syntax-table)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1117 ;; The following should probably be abstracted out.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1118 (unwind-protect
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1119 (progn
24403
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1120 ;; Info references
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1121 (save-excursion
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1122 (while (re-search-forward help-xref-info-regexp nil t)
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1123 (let ((data (match-string 1)))
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1124 (save-match-data
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1125 (unless (string-match "^([^)]+)" data)
00fd80d4b49f (help-xref-info-regexp): Allow linebreaks and capital.
Richard M. Stallman <rms@gnu.org>
parents: 24402
diff changeset
1126 (setq data (concat "(emacs)" data))))
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1127 (help-xref-button 1 #'info data
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1128 "mouse-2, RET: read this Info node"))))
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1129 ;; Mule related keywords. Do this before trying
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1130 ;; `help-xref-symbol-regexp' because some of Mule
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1131 ;; keywords have variable or function definitions.
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1132 (if help-xref-mule-regexp
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1133 (save-excursion
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1134 (while (re-search-forward help-xref-mule-regexp nil t)
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1135 (let* ((data (match-string 7))
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1136 (sym (intern-soft data)))
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1137 (cond
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1138 ((match-string 3) ; coding system
31306
15e7eab87754 (help-make-xrefs): Don't make hyperlinks for incorrect coding systems.
Kenichi Handa <handa@m17n.org>
parents: 31275
diff changeset
1139 (and sym (coding-system-p sym)
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1140 (help-xref-button
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1141 7 #'describe-coding-system sym
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1142 "mouse-2, RET: describe this coding system")))
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1143 ((match-string 4) ; input method
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1144 (and (assoc data input-method-alist)
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1145 (help-xref-button
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1146 7 #'describe-input-method data
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1147 "mouse-2, RET: describe this input method")))
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1148 ((or (match-string 5) (match-string 6)) ; charset
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1149 (and sym (charsetp sym)
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1150 (help-xref-button
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1151 7 #'describe-character-set sym
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1152 "mouse-2, RET: describe this character set")))
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1153 ((assoc data input-method-alist)
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1154 (help-xref-button
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1155 7 #'describe-input-method data
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1156 "mouse-2, RET: describe this input method"))
31306
15e7eab87754 (help-make-xrefs): Don't make hyperlinks for incorrect coding systems.
Kenichi Handa <handa@m17n.org>
parents: 31275
diff changeset
1157 ((and sym (coding-system-p sym))
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1158 (help-xref-button
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1159 7 #'describe-coding-system sym
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1160 "mouse-2, RET: describe this coding system"))
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1161 ((and sym (charsetp sym))
31243
30007aab98df (help-xref-mule-regexp): New variable
Kenichi Handa <handa@m17n.org>
parents: 30920
diff changeset
1162 (help-xref-button
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1163 7 #'describe-character-set sym
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1164 "mouse-2, RET: describe this character set")))))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1165 ;; Quoted symbols
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1166 (save-excursion
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1167 (while (re-search-forward help-xref-symbol-regexp nil t)
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1168 (let* ((data (match-string 7))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1169 (sym (intern-soft data)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1170 (if sym
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1171 (cond
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1172 ((match-string 3) ; `variable' &c
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1173 (and (boundp sym) ; `variable' doesn't ensure
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1174 ; it's actually bound
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1175 (help-xref-button
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1176 7 #'describe-variable sym
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1177 "mouse-2, RET: describe this variable")))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1178 ((match-string 4) ; `function' &c
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1179 (and (fboundp sym) ; similarly
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1180 (help-xref-button
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1181 7 #'describe-function sym
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1182 "mouse-2, RET: describe this function")))
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1183 ((match-string 5) ; `face'
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1184 (and (facep sym)
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1185 (help-xref-button 7 #'describe-face sym
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1186 "mouse-2, RET: describe this face")))
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1187 ((match-string 6)) ; nothing for symbol
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1188 ((and (boundp sym) (fboundp sym))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1189 ;; We can't intuit whether to use the
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1190 ;; variable or function doc -- supply both.
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1191 (help-xref-button
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1192 7 #'help-xref-interned sym
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1193 "mouse-2, RET: describe this symbol"))
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1194 ((boundp sym)
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1195 (help-xref-button
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1196 7 #'describe-variable sym
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1197 "mouse-2, RET: describe this variable"))
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1198 ((fboundp sym)
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1199 (help-xref-button
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1200 7 #'describe-function sym
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1201 "mouse-2, RET: describe this function"))
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1202 ((facep sym)
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1203 (help-xref-button
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1204 7 #'describe-face sym)))))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1205 ;; An obvious case of a key substitution:
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1206 (save-excursion
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1207 (while (re-search-forward
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1208 ;; Assume command name is only word characters
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1209 ;; and dashes to get things like `use M-x foo.'.
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1210 "\\<M-x\\s-+\\(\\sw\\(\\sw\\|-\\)+\\)" nil t)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1211 (let ((sym (intern-soft (match-string 1))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1212 (if (fboundp sym)
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1213 (help-xref-button
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1214 1 #'describe-function sym
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1215 "mouse-2, RET: describe this command")))))
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1216 ;; Look for commands in whole keymap substitutions:
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1217 (save-excursion
22417
e78006d10683 (help-make-xrefs): When scanning keymap binding listings,
Richard M. Stallman <rms@gnu.org>
parents: 22407
diff changeset
1218 ;; Make sure to find the first keymap.
e78006d10683 (help-make-xrefs): When scanning keymap binding listings,
Richard M. Stallman <rms@gnu.org>
parents: 22407
diff changeset
1219 (goto-char (point-min))
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1220 ;; Find a header and the column at which the command
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1221 ;; name will be found.
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1222 (while (re-search-forward "^key +binding\n\\(-+ +\\)-+\n\n"
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1223 nil t)
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1224 (let ((col (- (match-end 1) (match-beginning 1))))
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1225 (while
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1226 ;; Ignore single blank lines in table, but not
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1227 ;; double ones, which should terminate it.
25473
1ad8606c8cc7 (help-make-xrefs): Don't lose on non-empty blank line after key table.
Dave Love <fx@gnu.org>
parents: 25047
diff changeset
1228 (and (not (looking-at "\n\\s-*\n"))
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1229 (progn
24710
bcb0ee72502c (help-make-xrefs): Handle more cases when looking for
Andreas Schwab <schwab@suse.de>
parents: 24642
diff changeset
1230 (and (eolp) (forward-line))
bcb0ee72502c (help-make-xrefs): Handle more cases when looking for
Andreas Schwab <schwab@suse.de>
parents: 24642
diff changeset
1231 (end-of-line)
bcb0ee72502c (help-make-xrefs): Handle more cases when looking for
Andreas Schwab <schwab@suse.de>
parents: 24642
diff changeset
1232 (skip-chars-backward "^\t\n")
bcb0ee72502c (help-make-xrefs): Handle more cases when looking for
Andreas Schwab <schwab@suse.de>
parents: 24642
diff changeset
1233 (if (and (>= (current-column) col)
24714
19bd1617f9e3 (help-make-xrefs): Fix typpo.
Dave Love <fx@gnu.org>
parents: 24710
diff changeset
1234 (looking-at "\\(\\sw\\|-\\)+$"))
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1235 (let ((sym (intern-soft (match-string 0))))
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1236 (if (fboundp sym)
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1237 (help-xref-button
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1238 0 #'describe-function sym
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1239 "mouse-2, RET: describe this function"))))
24710
bcb0ee72502c (help-make-xrefs): Handle more cases when looking for
Andreas Schwab <schwab@suse.de>
parents: 24642
diff changeset
1240 (zerop (forward-line)))))))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1241 (set-syntax-table stab))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1242 ;; Make a back-reference in this buffer if appropriate.
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1243 (when (and help-xref-following help-xref-stack)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1244 (goto-char (point-max))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1245 (save-excursion
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1246 (insert "\n\n" help-back-label))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1247 ;; Just to provide the match data:
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1248 (looking-at (concat "\n\n\\(" (regexp-quote help-back-label) "\\)"))
21973
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
1249 (help-xref-button 1 #'help-xref-go-back (current-buffer))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1250 ;; View mode steals RET from us.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1251 (set (make-local-variable 'minor-mode-overriding-map-alist)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1252 (list (cons 'view-mode
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1253 (let ((map (make-sparse-keymap)))
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1254 (set-keymap-parent map view-mode-map)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1255 (define-key map "\r" 'help-follow)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1256 map))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1257 (set-buffer-modified-p old-modified))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1258
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1259 (defun help-xref-button (match-number function data &optional help-echo)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1260 "Make a hyperlink for cross-reference text previously matched.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1261
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1262 MATCH-NUMBER is the subexpression of interest in the last matched
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1263 regexp. FUNCTION is a function to invoke when the button is
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1264 activated, applied to DATA. DATA may be a single value or a list.
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1265 See `help-make-xrefs'.
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1266 If optional arg HELP-ECHO is supplied, it is used as a help string."
23787
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1267 ;; Don't mung properties we've added specially in some instances.
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1268 (unless (get-text-property (match-beginning match-number) 'help-xref)
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1269 (add-text-properties (match-beginning match-number)
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1270 (match-end match-number)
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1271 (list 'mouse-face 'highlight
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1272 'help-xref (cons function
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1273 (if (listp data)
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1274 data
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1275 (list data)))))
27930
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1276 (if help-echo
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1277 (put-text-property (match-beginning match-number)
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1278 (match-end match-number)
62d83c24995e (help-xref-button): Add help-echo arg.
Dave Love <fx@gnu.org>
parents: 27806
diff changeset
1279 'help-echo help-echo))
23787
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1280 (if help-highlight-p
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1281 (put-text-property (match-beginning match-number)
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1282 (match-end match-number)
2bb8777a3ba7 (help-xref-button): Do nothing if text already has the help-xref property.
Richard M. Stallman <rms@gnu.org>
parents: 23778
diff changeset
1283 'face help-highlight-face))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1284
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1285 (defun help-insert-xref-button (string function data &optional help-echo)
31491
080006769824 Fix typo in a doc string of help-insert-xref-button.
Eli Zaretskii <eliz@gnu.org>
parents: 31422
diff changeset
1286 "Insert STRING and make a hyperlink from cross-reference text on it.
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1287
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1288 FUNCTION is a function to invoke when the button is activated, applied
31491
080006769824 Fix typo in a doc string of help-insert-xref-button.
Eli Zaretskii <eliz@gnu.org>
parents: 31422
diff changeset
1289 to DATA. DATA may be a single value or a list. See `help-make-xrefs'.
31422
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1290 If optional arg HELP-ECHO is supplied, it is used as a help string."
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1291 (let ((pos (point)))
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1292 (insert string)
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1293 (goto-char pos)
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1294 (search-forward string)
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1295 (help-xref-button 0 function data help-echo)))
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1296
2a7aafb126fb (help-make-xrefs): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents: 31397
diff changeset
1297
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1298
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1299 ;; Additional functions for (re-)creating types of help buffers.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1300 (defun help-xref-interned (symbol)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1301 "Follow a hyperlink which appeared to be an arbitrary interned SYMBOL.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1302
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1303 Both variable and function documentation are extracted into a single
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1304 help buffer."
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1305 (let ((fdoc (when (fboundp symbol) (describe-function symbol)))
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1306 (facedoc (when (facep symbol) (describe-face symbol))))
26005
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1307 (when (or (boundp symbol) (not fdoc))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1308 (describe-variable symbol)
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1309 ;; We now have a help buffer on the variable. Insert the function
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1310 ;; text before it.
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1311 (when (or fdoc facedoc)
26005
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1312 (with-current-buffer "*Help*"
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1313 (goto-char (point-min))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1314 (let ((inhibit-read-only t))
28841
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1315 (when fdoc
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1316 (insert fdoc "\n\n"))
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1317 (when facedoc
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1318 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1319 " is also a " "face." "\n\n" facedoc "\n\n"))
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1320 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
354a826d7b20 (describe-variable): Have customize button pop the
Dave Love <fx@gnu.org>
parents: 28771
diff changeset
1321 " is also a " "variable." "\n\n"))
26005
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1322 (help-setup-xref (list #'help-xref-interned symbol) nil))))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1323
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1324 (defun help-xref-mode (buffer)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1325 "Do a `describe-mode' for the specified BUFFER."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1326 (save-excursion
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1327 (set-buffer buffer)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1328 (describe-mode)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1329
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1330 ;;; Navigation/hyperlinking with xrefs
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1331
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1332 (defun help-follow-mouse (click)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1333 "Follow the cross-reference that you click on."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1334 (interactive "e")
22417
e78006d10683 (help-make-xrefs): When scanning keymap binding listings,
Richard M. Stallman <rms@gnu.org>
parents: 22407
diff changeset
1335 (let* ((start (event-start click))
e78006d10683 (help-make-xrefs): When scanning keymap binding listings,
Richard M. Stallman <rms@gnu.org>
parents: 22407
diff changeset
1336 (window (car start))
e78006d10683 (help-make-xrefs): When scanning keymap binding listings,
Richard M. Stallman <rms@gnu.org>
parents: 22407
diff changeset
1337 (pos (car (cdr start))))
e78006d10683 (help-make-xrefs): When scanning keymap binding listings,
Richard M. Stallman <rms@gnu.org>
parents: 22407
diff changeset
1338 (with-current-buffer (window-buffer window)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1339 (help-follow pos))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1340
21973
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
1341 (defun help-xref-go-back (buffer)
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1342 "From BUFFER, go back to previous help buffer text using `help-xref-stack'."
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
1343 (let (item position method args)
21973
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
1344 (with-current-buffer buffer
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
1345 (when help-xref-stack
f3d29552e393 (view-lossage): Set help-xref-stack* in the help buffer.
Richard M. Stallman <rms@gnu.org>
parents: 21972
diff changeset
1346 (setq help-xref-stack (cdr help-xref-stack)) ; due to help-follow
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1347 (setq item (pop help-xref-stack)
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
1348 position (car item)
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
1349 method (cadr item)
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1350 args (cddr item))))
22325
baef082e5d6d (help-setup-xref): Change all callers to
Karl Heuer <kwzh@gnu.org>
parents: 22234
diff changeset
1351 (apply method args)
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1352 ;; We assume that the buffer we just recreated has the saved name,
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1353 ;; which might not always be true.
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1354 (when (get-buffer (cdr position))
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1355 (with-current-buffer (cdr position)
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1356 (goto-char (car position))))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1357
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1358 (defun help-go-back ()
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1359 "Invoke the [back] button (if any) in the Help mode buffer."
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1360 (interactive)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1361 (help-follow (1- (point-max))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1362
26224
53779a54d9cc (help-follow): Make arg optional again and really default to point.
Dave Love <fx@gnu.org>
parents: 26005
diff changeset
1363 (defun help-follow (&optional pos)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1364 "Follow cross-reference at POS, defaulting to point.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1365
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1366 For the cross-reference format, see `help-make-xrefs'."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1367 (interactive "d")
26224
53779a54d9cc (help-follow): Make arg optional again and really default to point.
Dave Love <fx@gnu.org>
parents: 26005
diff changeset
1368 (unless pos
53779a54d9cc (help-follow): Make arg optional again and really default to point.
Dave Love <fx@gnu.org>
parents: 26005
diff changeset
1369 (setq pos (point)))
26005
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1370 (let* ((help-data
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1371 (or (and (not (= pos (point-max)))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1372 (get-text-property pos 'help-xref))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1373 (and (not (= pos (point-min)))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1374 (get-text-property (1- pos) 'help-xref))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1375 ;; check if the symbol under point is a function or variable
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1376 (let ((sym
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1377 (intern
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1378 (save-excursion
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1379 (goto-char pos) (skip-syntax-backward "w_")
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1380 (buffer-substring (point)
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1381 (progn (skip-syntax-forward "w_")
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1382 (point)))))))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1383 (when (or (boundp sym) (fboundp sym))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1384 (list #'help-xref-interned sym)))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1385 (method (car help-data))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1386 (args (cdr help-data)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1387 (when help-data
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1388 (setq help-xref-stack (cons (cons (cons pos (buffer-name))
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1389 help-xref-stack-item)
26005
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1390 help-xref-stack))
6613b3835666 (help-xref-interned): make it also work on variable-only and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25846
diff changeset
1391 (setq help-xref-stack-item nil)
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1392 ;; There is a reference at point. Follow it.
28909
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1393 (let ((help-xref-following t))
43d9eb93e1fb (help-xref-stack): Doc fix.
Dave Love <fx@gnu.org>
parents: 28841
diff changeset
1394 (apply method args)))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1395
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1396 ;; For tabbing through buffer.
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1397 (defun help-next-ref ()
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1398 "Find the next help cross-reference in the buffer."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1399 (interactive)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1400 (let (pos)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1401 (while (not pos)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1402 (if (get-text-property (point) 'help-xref) ; move off reference
21385
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1403 (goto-char (or (next-single-property-change (point) 'help-xref)
a14e82c3a69e (help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents: 21371
diff changeset
1404 (point))))
21371
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1405 (cond ((setq pos (next-single-property-change (point) 'help-xref))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1406 (if pos (goto-char pos)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1407 ((bobp)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1408 (message "No cross references in the buffer.")
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1409 (setq pos t))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1410 (t ; be circular
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1411 (goto-char (point-min)))))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1412
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1413 (defun help-previous-ref ()
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1414 "Find the previous help cross-reference in the buffer."
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1415 (interactive)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1416 (let (pos)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1417 (while (not pos)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1418 (if (get-text-property (point) 'help-xref) ; move off reference
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1419 (goto-char (or (previous-single-property-change (point) 'help-xref)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1420 (point))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1421 (cond ((setq pos (previous-single-property-change (point) 'help-xref))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1422 (if pos (goto-char pos)))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1423 ((bobp)
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1424 (message "No cross references in the buffer.")
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1425 (setq pos t))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1426 (t ; be circular
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1427 (goto-char (point-max)))))))
22a3be0ae9dc (help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents: 21210
diff changeset
1428
23747
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1429
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1430 ;;; Automatic resizing of temporary buffers.
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1431
23749
ea095fa15fb9 Rename function and variables added in previous change:
Richard M. Stallman <rms@gnu.org>
parents: 23747
diff changeset
1432 (defcustom temp-buffer-max-height (lambda (buffer) (/ (- (frame-height) 2) 2))
23747
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1433 "*Maximum height of a window displaying a temporary buffer.
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1434 This is the maximum height (in text lines) which `resize-temp-buffer-window'
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1435 will give to a window displaying a temporary buffer.
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1436 It can also be a function which will be called with the object corresponding
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1437 to the buffer to be displayed as argument and should return an integer
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1438 positive number."
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1439 :type '(choice integer function)
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1440 :group 'help
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1441 :version "20.4")
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1442
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1443 (define-minor-mode temp-buffer-resize-mode
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1444 "Toggle the mode which makes windows smaller for temporary buffers.
23747
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1445 With prefix argument ARG, turn the resizing of windows displaying temporary
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1446 buffers on if ARG is positive or off otherwise.
32183
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1447 This makes the window the right height for its contents, but never
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1448 more than `temp-buffer-max-height' nor less than `window-min-height'.
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1449 This applies to `help', `apropos' and `completion' buffers, and some others."
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1450 nil nil nil :global t :group 'help
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1451 (if temp-buffer-resize-mode
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1452 ;; `help-mode-maybe' may add a `back' button and thus increase the
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1453 ;; text size, so `resize-temp-buffer-window' must be run *after* it.
3e4bdf7c90c4 (help-xref-on-pp): Use match-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31491
diff changeset
1454 (add-hook 'temp-buffer-show-hook 'resize-temp-buffer-window 'append)
32184
ab059a552fa2 Missing paren.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32183
diff changeset
1455 (remove-hook 'temp-buffer-show-hook 'resize-temp-buffer-window)))
23747
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1456
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1457 (defun resize-temp-buffer-window ()
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1458 "Resize the current window to fit its contents.
23749
ea095fa15fb9 Rename function and variables added in previous change:
Richard M. Stallman <rms@gnu.org>
parents: 23747
diff changeset
1459 Will not make it higher than `temp-buffer-max-height' nor smaller than
24079
11e777f59a1f (help-make-xrefs): Avoid infloop in keymap substitutions
Dave Love <fx@gnu.org>
parents: 24055
diff changeset
1460 `window-min-height'. Do nothing if it is the only window on its frame, if it
23747
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1461 is not as wide as the frame or if some of the window's contents are scrolled
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1462 out of view."
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1463 (unless (or (one-window-p 'nomini)
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1464 (not (pos-visible-in-window-p (point-min)))
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1465 (/= (frame-width) (window-width)))
32706
605eabd04a57 (resize-temp-buffer-window): Use `fit-window-to-buffer'.
Miles Bader <miles@gnu.org>
parents: 32690
diff changeset
1466 (fit-window-to-buffer
605eabd04a57 (resize-temp-buffer-window): Use `fit-window-to-buffer'.
Miles Bader <miles@gnu.org>
parents: 32690
diff changeset
1467 (selected-window)
605eabd04a57 (resize-temp-buffer-window): Use `fit-window-to-buffer'.
Miles Bader <miles@gnu.org>
parents: 32690
diff changeset
1468 (if (functionp temp-buffer-max-height)
605eabd04a57 (resize-temp-buffer-window): Use `fit-window-to-buffer'.
Miles Bader <miles@gnu.org>
parents: 32690
diff changeset
1469 (funcall temp-buffer-max-height (current-buffer))
605eabd04a57 (resize-temp-buffer-window): Use `fit-window-to-buffer'.
Miles Bader <miles@gnu.org>
parents: 32690
diff changeset
1470 temp-buffer-max-height))))
23747
fb3963445995 Add resizing of temporary buffers.
Richard M. Stallman <rms@gnu.org>
parents: 23742
diff changeset
1471
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1472 ;; `help-manyarg-func-alist' is defined primitively (in doc.c).
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1473 ;; New primitives with `MANY' or `UNEVALLED' arglists should be added
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1474 ;; to this alist.
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1475 ;; The parens and function name are redundant, but it's messy to add
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1476 ;; them in `documentation'.
31397
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1477
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1478 ;; This will find any missing items:
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1479 ;; (let (l)
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1480 ;; (mapatoms (lambda (x)
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1481 ;; (if (and (fboundp x)
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1482 ;; (subrp (symbol-function x))
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1483 ;; (not (numberp (cdr (subr-arity (symbol-function x)))))
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1484 ;; (not (assq x help-manyarg-func-alist)))
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1485 ;; (push x l))))
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1486 ;; l)
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1487 (defconst help-manyarg-func-alist
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1488 (purecopy
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1489 '((list . "(list &rest OBJECTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1490 (vector . "(vector &rest OBJECTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1491 (make-byte-code . "(make-byte-code &rest ELEMENTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1492 (call-process
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1493 . "(call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)")
28735
2a88fcce2568 (locate-library): Use mapc.
Dave Love <fx@gnu.org>
parents: 28718
diff changeset
1494 (call-process-region
2a88fcce2568 (locate-library): Use mapc.
Dave Love <fx@gnu.org>
parents: 28718
diff changeset
1495 . "(call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS)")
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1496 (string . "(string &rest CHARACTERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1497 (+ . "(+ &rest NUMBERS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1498 (- . "(- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1499 (* . "(* &rest NUMBERS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1500 (/ . "(/ DIVIDEND DIVISOR &rest DIVISORS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1501 (max . "(max NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1502 (min . "(min NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1503 (logand . "(logand &rest INTS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1504 (logior . "(logior &rest INTS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1505 (logxor . "(logxor &rest INTS-OR-MARKERS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1506 (encode-time
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1507 . "(encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1508 (insert . "(insert &rest ARGS)")
30819
b17078a7d55a (function-called-at-point, variable-at-point): Use
Dave Love <fx@gnu.org>
parents: 30667
diff changeset
1509 (insert-and-inherit . "(insert-and-inherit &rest ARGS)")
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1510 (insert-before-markers . "(insert-before-markers &rest ARGS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1511 (message . "(message STRING &rest ARGUMENTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1512 (message-box . "(message-box STRING &rest ARGUMENTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1513 (message-or-box . "(message-or-box STRING &rest ARGUMENTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1514 (propertize . "(propertize STRING &rest PROPERTIES)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1515 (format . "(format STRING &rest OBJECTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1516 (apply . "(apply FUNCTION &rest ARGUMENTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1517 (run-hooks . "(run-hooks &rest HOOKS)")
28451
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1518 (run-hook-with-args . "(run-hook-with-args HOOK &rest ARGS)")
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1519 (run-hook-with-args-until-failure
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1520 . "(run-hook-with-args-until-failure HOOK &rest ARGS)")
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1521 (run-hook-with-args-until-success
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1522 . "(run-hook-with-args-until-success HOOK &rest ARGS)")
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1523 (funcall . "(funcall FUNCTION &rest ARGUMENTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1524 (append . "(append &rest SEQUENCES)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1525 (concat . "(concat &rest SEQUENCES)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1526 (vconcat . "(vconcat vconcat)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1527 (nconc . "(nconc &rest LISTS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1528 (widget-apply . "(widget-apply WIDGET PROPERTY &rest ARGS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1529 (make-hash-table . "(make-hash-table &rest KEYWORD-ARGS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1530 (insert-string . "(insert-string &rest ARGS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1531 (start-process . "(start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1532 (setq-default . "(setq-default SYMBOL VALUE [SYMBOL VALUE...])")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1533 (save-excursion . "(save-excursion &rest BODY)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1534 (save-current-buffer . "(save-current-buffer &rest BODY)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1535 (save-restriction . "(save-restriction &rest BODY)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1536 (or . "(or CONDITIONS ...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1537 (and . "(and CONDITIONS ...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1538 (if . "(if COND THEN ELSE...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1539 (cond . "(cond CLAUSES...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1540 (progn . "(progn BODY ...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1541 (prog1 . "(prog1 FIRST BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1542 (prog2 . "(prog2 X Y BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1543 (setq . "(setq SYM VAL SYM VAL ...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1544 (quote . "(quote ARG)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1545 (function . "(function ARG)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1546 (defun . "(defun NAME ARGLIST [DOCSTRING] BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1547 (defmacro . "(defmacro NAME ARGLIST [DOCSTRING] BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1548 (defvar . "(defvar SYMBOL [INITVALUE DOCSTRING])")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1549 (defconst . "(defconst SYMBOL INITVALUE [DOCSTRING])")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1550 (let* . "(let* VARLIST BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1551 (let . "(let VARLIST BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1552 (while . "(while TEST BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1553 (catch . "(catch TAG BODY...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1554 (unwind-protect . "(unwind-protect BODYFORM UNWINDFORMS...)")
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1555 (condition-case . "(condition-case VAR BODYFORM HANDLERS...)")
29071
5a2cce141ebb (help-manyarg-func-alist): Typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 28935
diff changeset
1556 (track-mouse . "(track-mouse BODY ...)")
28451
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1557 (ml-if . "(ml-if COND THEN ELSE...)")
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1558 (ml-provide-prefix-argument . "(ml-provide-prefix-argument ARG1 ARG2)")
31397
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1559 (ml-prefix-argument-loop . "(ml-prefix-argument-loop ...)")
28451
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1560 (with-output-to-temp-buffer
a48f25d316ff (help-manyarg-func-alist): Correct several omissions.
Dave Love <fx@gnu.org>
parents: 27955
diff changeset
1561 . "(with-output-to-temp-buffer BUFFNAME BODY ...)")
31389
5114aeb0f8e6 (help-manyarg-func-alist): Add
Dave Love <fx@gnu.org>
parents: 31306
diff changeset
1562 (save-window-excursion . "(save-window-excursion BODY ...)")
5114aeb0f8e6 (help-manyarg-func-alist): Add
Dave Love <fx@gnu.org>
parents: 31306
diff changeset
1563 (find-operation-coding-system
31397
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1564 . "(find-operation-coding-system OPERATION ARGUMENTS ...)")
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1565 (insert-before-markers-and-inherit
90250e4999e6 (help-manyarg-func-alist): Add ml-prefix-argument-loop,
Dave Love <fx@gnu.org>
parents: 31389
diff changeset
1566 . "(insert-before-markers-and-inherit &rest ARGS)"))))
27550
85fc4786dfde (describe-function-1): Print note about arglist of autoloaded
Dave Love <fx@gnu.org>
parents: 27492
diff changeset
1567
32540
4150b1424eb9 Provide `help' for the sake of define-minor-mode
Gerd Moellmann <gerd@gnu.org>
parents: 32184
diff changeset
1568 ;; Provide this for the sake of define-minor-mode which generates
4150b1424eb9 Provide `help' for the sake of define-minor-mode
Gerd Moellmann <gerd@gnu.org>
parents: 32184
diff changeset
1569 ;; defcustoms which require 'help'.
4150b1424eb9 Provide `help' for the sake of define-minor-mode
Gerd Moellmann <gerd@gnu.org>
parents: 32184
diff changeset
1570
4150b1424eb9 Provide `help' for the sake of define-minor-mode
Gerd Moellmann <gerd@gnu.org>
parents: 32184
diff changeset
1571 (provide 'help)
4150b1424eb9 Provide `help' for the sake of define-minor-mode
Gerd Moellmann <gerd@gnu.org>
parents: 32184
diff changeset
1572
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 444
diff changeset
1573 ;;; help.el ends here