Mercurial > emacs
annotate lisp/help.el @ 21806:d17bf0e8a170
(Info-mode): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 28 Apr 1998 18:13:00 +0000 |
parents | 280e4b4cbd2a |
children | 9c71660c0a8d |
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 |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998 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 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
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 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
409 | 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 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2312
diff
changeset
|
28 ;;`M-x help-for-help'. |
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)) |
2237
2670a8f6a42e
Teach this to use help-screen.el.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2134
diff
changeset
|
35 |
409 | 36 (defvar help-map (make-sparse-keymap) |
37 "Keymap for characters following the Help key.") | |
38 | |
9833 | 39 (defvar help-mode-map (make-sparse-keymap) |
40 "Keymap for help mode.") | |
41 | |
919 | 42 (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
|
43 (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
|
44 (define-key global-map [f1] 'help-command) |
409 | 45 (fset 'help-command help-map) |
46 | |
919 | 47 (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
|
48 (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
|
49 (define-key help-map [f1] 'help-for-help) |
409 | 50 (define-key help-map "?" 'help-for-help) |
51 | |
52 (define-key help-map "\C-c" 'describe-copying) | |
53 (define-key help-map "\C-d" 'describe-distribution) | |
54 (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
|
55 (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
|
56 (define-key help-map "a" 'apropos-command) |
409 | 57 |
58 (define-key help-map "b" 'describe-bindings) | |
59 | |
60 (define-key help-map "c" 'describe-key-briefly) | |
61 (define-key help-map "k" 'describe-key) | |
62 | |
63 (define-key help-map "d" 'describe-function) | |
64 (define-key help-map "f" 'describe-function) | |
65 | |
10923
fe008aef4cf1
(view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents:
10622
diff
changeset
|
66 (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
|
67 |
409 | 68 (define-key help-map "i" 'info) |
732 | 69 (define-key help-map "\C-f" 'Info-goto-emacs-command-node) |
70 (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
|
71 (define-key help-map "\C-i" 'info-lookup-symbol) |
409 | 72 |
73 (define-key help-map "l" 'view-lossage) | |
74 | |
75 (define-key help-map "m" 'describe-mode) | |
76 | |
77 (define-key help-map "\C-n" 'view-emacs-news) | |
78 (define-key help-map "n" 'view-emacs-news) | |
79 | |
2134
b275e1b50542
Added autoload, binding and menu line for new finder feature (P).
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2079
diff
changeset
|
80 (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
|
81 (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
|
82 "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
|
83 |
409 | 84 (define-key help-map "s" 'describe-syntax) |
85 | |
86 (define-key help-map "t" 'help-with-tutorial) | |
87 | |
88 (define-key help-map "w" 'where-is) | |
89 | |
90 (define-key help-map "v" 'describe-variable) | |
91 | |
6580 | 92 (define-key help-map "q" 'help-quit) |
93 | |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
94 (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
|
95 (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
|
96 (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
|
97 (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
|
98 (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
|
99 (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
|
100 ;; 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
|
101 (define-key help-mode-map "\r" 'help-follow) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
102 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
103 ;; Font-locking is incompatible with the new xref stuff. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
104 ;(defvar help-font-lock-keywords |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
105 ; (eval-when-compile |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
106 ; (let ((name-char "[-+a-zA-Z0-9_*]") (sym-char "[-+a-zA-Z0-9_:*]")) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
107 ; (list |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
108 ; ;; |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
109 ; ;; The symbol itself. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
110 ; (list (concat "\\`\\(" name-char "+\\)\\(\\(:\\)\\|\\('\\)\\)") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
111 ; '(1 (if (match-beginning 3) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
112 ; font-lock-function-name-face |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
113 ; font-lock-variable-name-face))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
114 ; ;; |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
115 ; ;; Words inside `' which tend to be symbol names. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
116 ; (list (concat "`\\(" sym-char sym-char "+\\)'") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
117 ; 1 'font-lock-constant-face t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
118 ; ;; |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
119 ; ;; CLisp `:' keywords as references. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
120 ; (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-builtin-face t)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
121 ; "Default expressions to highlight in Help mode.") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
122 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
123 (defvar help-xref-stack nil |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
124 "A stack of ways by which to return to help buffers after following xrefs. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
125 Used by `help-follow' and `help-xref-go-back'.") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
126 (put 'help-xref-stack 'permanent-local t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
127 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
128 (defvar help-xref-stack-item nil |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
129 "An item for `help-follow' in this buffer to push onto `help-xref-stack'.") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
130 (put 'help-xref-stack-item 'permanent-local t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
131 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
132 (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
|
133 |
9833 | 134 (defun help-mode () |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
135 "Major mode for viewing help text and navigating references in it. |
9833 | 136 Entry to this mode runs the normal hook `help-mode-hook'. |
137 Commands: | |
138 \\{help-mode-map}" | |
139 (interactive) | |
140 (kill-all-local-variables) | |
141 (use-local-map help-mode-map) | |
142 (setq mode-name "Help") | |
143 (setq major-mode 'help-mode) | |
12816
7a19739bd181
Added Font Lock mode support.
Simon Marshall <simon@gnu.org>
parents:
12499
diff
changeset
|
144 (make-local-variable 'font-lock-defaults) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
145 (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
|
146 (view-mode) |
19228
3e0e9b7e2307
(help-mode): Set view-no-disable-on-exit.
Richard M. Stallman <rms@gnu.org>
parents:
19124
diff
changeset
|
147 (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
|
148 (setq view-no-disable-on-exit t) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
149 ;; `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
|
150 ;; `help-mode-maybe'. |
9833 | 151 (run-hooks 'help-mode-hook)) |
152 | |
20060
36044c8b8aef
(help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents:
19576
diff
changeset
|
153 (defun help-mode-maybe () |
36044c8b8aef
(help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents:
19576
diff
changeset
|
154 (if (eq major-mode 'fundamental-mode) |
21188
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
155 (help-mode)) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
156 (when (eq major-mode 'help-mode) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
157 ;; 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
|
158 ;; by with-output-to-temp-buffer. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
159 (toggle-read-only 1) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
160 (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
|
161 (setq view-return-to-alist |
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
162 (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
|
163 |
36044c8b8aef
(help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents:
19576
diff
changeset
|
164 (add-hook 'temp-buffer-show-hook 'help-mode-maybe) |
36044c8b8aef
(help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents:
19576
diff
changeset
|
165 |
6580 | 166 (defun help-quit () |
167 (interactive) | |
168 nil) | |
169 | |
17005
1fa50c7fdde3
(help-with-tutorial): Prefix argument to specify a
Karl Heuer <kwzh@gnu.org>
parents:
16771
diff
changeset
|
170 (defun help-with-tutorial (&optional arg) |
1fa50c7fdde3
(help-with-tutorial): Prefix argument to specify a
Karl Heuer <kwzh@gnu.org>
parents:
16771
diff
changeset
|
171 "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
|
172 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
|
173 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
|
174 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
|
175 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
|
176 (interactive "P") |
21440
4718a738947a
(help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
21385
diff
changeset
|
177 (let ((lang (if arg |
4718a738947a
(help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
21385
diff
changeset
|
178 (read-language-name 'tutorial "Language: " "English") |
4718a738947a
(help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
21385
diff
changeset
|
179 (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
|
180 current-language-environment |
21587
a89b6f48c73d
(help-with-tutorial): Locally bind file and filename.
Richard M. Stallman <rms@gnu.org>
parents:
21491
diff
changeset
|
181 "English"))) |
a89b6f48c73d
(help-with-tutorial): Locally bind file and filename.
Richard M. Stallman <rms@gnu.org>
parents:
21491
diff
changeset
|
182 file filename) |
21440
4718a738947a
(help-with-tutorial-alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
21385
diff
changeset
|
183 (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
|
184 (setq file (expand-file-name (concat "~/" filename))) |
409 | 185 (delete-other-windows) |
186 (if (get-file-buffer file) | |
187 (switch-to-buffer (get-file-buffer file)) | |
188 (switch-to-buffer (create-file-buffer file)) | |
189 (setq buffer-file-name file) | |
190 (setq default-directory (expand-file-name "~/")) | |
755 | 191 (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
|
192 (insert-file-contents (expand-file-name filename data-directory)) |
409 | 193 (goto-char (point-min)) |
194 (search-forward "\n<<") | |
195 (beginning-of-line) | |
196 (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
|
197 (let ((n (- (window-height (selected-window)) |
409 | 198 (count-lines (point-min) (point)) |
6419
e5ce725b661d
(help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents:
6079
diff
changeset
|
199 6))) |
6433
e50519261181
(help-with-tutorial): Change previous change;
Richard M. Stallman <rms@gnu.org>
parents:
6419
diff
changeset
|
200 (if (< n 12) |
6419
e5ce725b661d
(help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents:
6079
diff
changeset
|
201 (newline n) |
e5ce725b661d
(help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents:
6079
diff
changeset
|
202 ;; 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
|
203 (newline (/ n 2)) |
e5ce725b661d
(help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents:
6079
diff
changeset
|
204 (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
|
205 "Text continues below]") |
e5ce725b661d
(help-with-tutorial): Avoid unexplained large blank area.
Karl Heuer <kwzh@gnu.org>
parents:
6079
diff
changeset
|
206 (newline (- n (/ n 2))))) |
409 | 207 (goto-char (point-min)) |
208 (set-buffer-modified-p nil)))) | |
209 | |
17917
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
210 (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
|
211 "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
|
212 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
|
213 (interactive "kDescribe key briefly: \nP") |
2955
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
214 ;; If this key seq ends with a down event, discard the |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
215 ;; following click or drag event. Otherwise that would |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
216 ;; erase the message. |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
217 (let ((type (aref key (1- (length key))))) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
218 (if (listp type) (setq type (car type))) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
219 (and (symbolp type) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
220 (memq 'down (event-modifiers type)) |
3986
0e5fa7a1ac36
(describe-key-briefly): Don't set `foo'.
Richard M. Stallman <rms@gnu.org>
parents:
3982
diff
changeset
|
221 (read-event))) |
13293
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
222 (save-excursion |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
223 (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
|
224 (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
|
225 window position) |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
226 ;; 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
|
227 ;; 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
|
228 ;; 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
|
229 (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
|
230 (memq 'drag modifiers)) |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
231 (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
|
232 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
|
233 (if (windowp window) |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
234 (progn |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
235 (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
|
236 (goto-char position))) |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
237 ;; Ok, now look up the key and name the command. |
17917
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
238 (let ((defn (key-binding key)) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
239 (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
|
240 (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
|
241 (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
|
242 (princ (format (if insert |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
243 "%s (%s)" |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
244 (if (windowp window) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
245 "%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
|
246 "%s runs the command %s")) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
247 key-desc |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
248 (if (symbolp defn) defn (prin1-to-string defn))))))))) |
409 | 249 |
21188
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
250 (defvar help-return-method nil |
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
251 "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
|
252 This is a list |
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
253 (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
|
254 (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
|
255 (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
|
256 |
409 | 257 (defun print-help-return-message (&optional function) |
258 "Display or return message saying how to restore windows after help command. | |
259 Computes a message and applies the optional argument FUNCTION to it. | |
260 If FUNCTION is nil, applies `message' to it, thus printing it." | |
261 (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
|
262 (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
|
263 (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
|
264 (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
|
265 ;; 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
|
266 ;; 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
|
267 ;; 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
|
268 ;; manager, not with Emacs. |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
269 ;; 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
|
270 ;; 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
|
271 nil) |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
272 ((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
|
273 (setq help-return-method |
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
274 (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
|
275 "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
|
276 (pop-up-windows |
21188
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
277 (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
|
278 "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
|
279 (t |
21188
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
280 (setq help-return-method |
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
281 (list (selected-window) (window-buffer) |
607ce9d7cf53
(help-mode-maybe): Set view-return-to-alist.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
282 (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
|
283 "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
|
284 (funcall (or function 'message) |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
285 (concat |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
286 (if first-message |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
287 (substitute-command-keys first-message) |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
288 "") |
604d89082229
(print-help-return-message): If help buffer is a
Richard M. Stallman <rms@gnu.org>
parents:
7978
diff
changeset
|
289 (if first-message " " "") |
11524
cafa503e806c
(print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents:
11428
diff
changeset
|
290 ;; 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
|
291 ;; 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
|
292 (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
|
293 nil |
16391
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
294 (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
|
295 ;; 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
|
296 (substitute-command-keys |
cafa503e806c
(print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents:
11428
diff
changeset
|
297 "\\[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
|
298 ;; 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
|
299 (substitute-command-keys |
11524
cafa503e806c
(print-help-return-message): Check same-window-buffer-names
Richard M. Stallman <rms@gnu.org>
parents:
11428
diff
changeset
|
300 "\\[scroll-other-window] to scroll the help.")))))))) |
409 | 301 |
302 (defun describe-key (key) | |
303 "Display documentation of the function invoked by KEY. KEY is a string." | |
304 (interactive "kDescribe key: ") | |
2955
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
305 ;; If this key seq ends with a down event, discard the |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
306 ;; following click or drag event. Otherwise that would |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
307 ;; erase the message. |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
308 (let ((type (aref key (1- (length key))))) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
309 (if (listp type) (setq type (car type))) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
310 (and (symbolp type) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
311 (memq 'down (event-modifiers type)) |
f34f9e634b81
(describe-key, describe-key-briefly):
Richard M. Stallman <rms@gnu.org>
parents:
2697
diff
changeset
|
312 (read-event))) |
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))) |
5270a0a465a7
(describe-key, describe-key-briefly): For a mouse click,
Richard M. Stallman <rms@gnu.org>
parents:
13209
diff
changeset
|
327 (let ((defn (key-binding key))) |
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 ") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
337 (describe-function-1 defn nil) |
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 | 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. |
409 | 342 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
|
343 \(listed in `minor-mode-alist') must also be a function whose documentation |
409 | 344 describes the minor mode." |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
345 (interactive) |
409 | 346 (with-output-to-temp-buffer "*Help*" |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
347 (let ((minor-modes minor-mode-alist) |
16694
c19089a334b2
(describe-mode): Include minor modes that aren't buffer local.
Richard M. Stallman <rms@gnu.org>
parents:
16557
diff
changeset
|
348 (first t)) |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
349 (while minor-modes |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
350 (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
|
351 (indicator (car (cdr (car minor-modes))))) |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
352 ;; 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
|
353 ;; 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
|
354 ;; definition. |
16694
c19089a334b2
(describe-mode): Include minor modes that aren't buffer local.
Richard M. Stallman <rms@gnu.org>
parents:
16557
diff
changeset
|
355 (if (and (symbol-value minor-mode) |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
356 (fboundp minor-mode)) |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
357 (let ((pretty-minor-mode minor-mode)) |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
358 (if (string-match "-mode$" (symbol-name minor-mode)) |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
359 (setq pretty-minor-mode |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
360 (capitalize |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
361 (substring (symbol-name minor-mode) |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
362 0 (match-beginning 0))))) |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
363 (while (and indicator (symbolp indicator)) |
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
364 (setq indicator (symbol-value indicator))) |
15783
e0524a01fc91
(describe-mode): Put a formfeed between each two modes.
Richard M. Stallman <rms@gnu.org>
parents:
14832
diff
changeset
|
365 (if first |
e0524a01fc91
(describe-mode): Put a formfeed between each two modes.
Richard M. Stallman <rms@gnu.org>
parents:
14832
diff
changeset
|
366 (princ "The minor modes are described first, |
e0524a01fc91
(describe-mode): Put a formfeed between each two modes.
Richard M. Stallman <rms@gnu.org>
parents:
14832
diff
changeset
|
367 followed by the major mode, which is described on the last page.\n\f\n")) |
e0524a01fc91
(describe-mode): Put a formfeed between each two modes.
Richard M. Stallman <rms@gnu.org>
parents:
14832
diff
changeset
|
368 (setq first nil) |
14832
4d511dd9bfce
(describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
369 (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
|
370 pretty-minor-mode |
4d511dd9bfce
(describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
371 (if indicator |
4d511dd9bfce
(describe-mode): Handle minor mode w/o mode line indicator.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
372 (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
|
373 "no indicator"))) |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
374 (princ (documentation minor-mode)) |
15783
e0524a01fc91
(describe-mode): Put a formfeed between each two modes.
Richard M. Stallman <rms@gnu.org>
parents:
14832
diff
changeset
|
375 (princ "\n\f\n")))) |
6903
61d9d9b5ccba
(describe-mode): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6902
diff
changeset
|
376 (setq minor-modes (cdr minor-modes)))) |
409 | 377 (princ mode-name) |
6902
962a6ffb7b97
(describe-mode): Always show minor modes, at front.
Richard M. Stallman <rms@gnu.org>
parents:
6580
diff
changeset
|
378 (princ " mode:\n") |
409 | 379 (princ (documentation major-mode)) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
380 (help-setup-xref (cons #'help-xref-mode (current-buffer)) (interactive-p)) |
409 | 381 (print-help-return-message))) |
382 | |
383 ;; So keyboard macro definitions are documented correctly | |
384 (fset 'defining-kbd-macro (symbol-function 'start-kbd-macro)) | |
385 | |
386 (defun describe-distribution () | |
387 "Display info on how to obtain the latest version of GNU Emacs." | |
388 (interactive) | |
389 (find-file-read-only | |
444 | 390 (expand-file-name "DISTRIB" data-directory))) |
409 | 391 |
392 (defun describe-copying () | |
393 "Display info on how you may redistribute copies of GNU Emacs." | |
394 (interactive) | |
395 (find-file-read-only | |
444 | 396 (expand-file-name "COPYING" data-directory)) |
409 | 397 (goto-char (point-min))) |
398 | |
5025
0556b068e9ee
(describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents:
4467
diff
changeset
|
399 (defun describe-project () |
0556b068e9ee
(describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents:
4467
diff
changeset
|
400 "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
|
401 (interactive) |
0556b068e9ee
(describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents:
4467
diff
changeset
|
402 (find-file-read-only |
0556b068e9ee
(describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents:
4467
diff
changeset
|
403 (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
|
404 (goto-char (point-min))) |
0556b068e9ee
(describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents:
4467
diff
changeset
|
405 |
409 | 406 (defun describe-no-warranty () |
407 "Display info on all the kinds of warranty Emacs does NOT have." | |
408 (interactive) | |
409 (describe-copying) | |
410 (let (case-fold-search) | |
411 (search-forward "NO WARRANTY") | |
412 (recenter 0))) | |
413 | |
3980
bf2d4294a1dd
(describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents:
3145
diff
changeset
|
414 (defun describe-prefix-bindings () |
3982
e50f7b531c7f
(describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3980
diff
changeset
|
415 "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
|
416 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
|
417 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
|
418 (interactive) |
11890
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
419 (let* ((key (this-command-keys))) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
420 (describe-bindings |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
421 (if (stringp key) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
422 (substring key 0 (1- (length key))) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
423 (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
|
424 (i 0)) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
425 (while (< i (length prefix)) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
426 (aset prefix i (aref key i)) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
427 (setq i (1+ i))) |
543a76aa50b9
(describe-prefix-bindings): If key is a string,
Karl Heuer <kwzh@gnu.org>
parents:
11524
diff
changeset
|
428 prefix))))) |
3982
e50f7b531c7f
(describe-prefix-bindings): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3980
diff
changeset
|
429 ;; 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
|
430 ;; run describe-prefix-bindings. |
3980
bf2d4294a1dd
(describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents:
3145
diff
changeset
|
431 (setq prefix-help-command 'describe-prefix-bindings) |
bf2d4294a1dd
(describe-prefix-bindings): New command.
Richard M. Stallman <rms@gnu.org>
parents:
3145
diff
changeset
|
432 |
21210
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
433 (defun view-emacs-news (&optional arg) |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
434 "Display info on recent changes to Emacs. |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
435 With numeric argument display information on correspondingly older changes." |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
436 (interactive "P") |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
437 (let* ((arg (if arg (prefix-numeric-value arg) 0))) |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
438 (find-file-read-only |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
439 (expand-file-name (concat (make-string arg ?O) "NEWS") |
2a51a4912199
(view-emacs-news): Handle prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
21188
diff
changeset
|
440 data-directory)))) |
409 | 441 |
10923
fe008aef4cf1
(view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents:
10622
diff
changeset
|
442 (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
|
443 "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
|
444 (interactive) |
fe008aef4cf1
(view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents:
10622
diff
changeset
|
445 (find-file-read-only (expand-file-name "FAQ" data-directory))) |
fe008aef4cf1
(view-emacs-FAQ): New function. Bind to C-h F.
Richard M. Stallman <rms@gnu.org>
parents:
10622
diff
changeset
|
446 |
409 | 447 (defun view-lossage () |
448 "Display last 100 input keystrokes." | |
449 (interactive) | |
450 (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
|
451 (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
|
452 (if (or (integerp key) |
8c492f23ee28
(view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents:
8259
diff
changeset
|
453 (symbolp key) |
8c492f23ee28
(view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents:
8259
diff
changeset
|
454 (listp key)) |
8c492f23ee28
(view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents:
8259
diff
changeset
|
455 (single-key-description key) |
8c492f23ee28
(view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents:
8259
diff
changeset
|
456 (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
|
457 (recent-keys) |
8c492f23ee28
(view-lossage): Handle buffers and frames in recent-keys.
Richard M. Stallman <rms@gnu.org>
parents:
8259
diff
changeset
|
458 " ")) |
409 | 459 (save-excursion |
460 (set-buffer standard-output) | |
461 (goto-char (point-min)) | |
462 (while (progn (move-to-column 50) (not (eobp))) | |
463 (search-forward " " nil t) | |
20060
36044c8b8aef
(help-mode-maybe): New function, on temp-buffer-show-hook.
Karl Heuer <kwzh@gnu.org>
parents:
19576
diff
changeset
|
464 (insert "\n"))) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
465 (setq help-xref-stack nil |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
466 help-xref-stack-item nil) |
409 | 467 (print-help-return-message))) |
468 | |
6580 | 469 (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
|
470 (make-help-screen help-for-help |
18632
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
471 "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:" |
5025
0556b068e9ee
(describe-project): New function, on C-h C-p.
Richard M. Stallman <rms@gnu.org>
parents:
4467
diff
changeset
|
472 "You have typed \\[help-command], the help character. Type a Help option: |
10479
f2f290b13413
(help-for-help): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10196
diff
changeset
|
473 \(Use SPC or DEL to scroll through this text. Type \\<help-map>\\[help-quit] to exit the Help command.) |
409 | 474 |
4467
1e8785572dd4
(help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents:
3986
diff
changeset
|
475 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
|
476 (functions interactively callable) that contain |
1e8785572dd4
(help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents:
3986
diff
changeset
|
477 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
|
478 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
|
479 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
|
480 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
|
481 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
|
482 (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
|
483 (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
|
484 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
|
485 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
|
486 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
|
487 i info. The info documentation reader. |
18632
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
488 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
|
489 its name) or the current input method (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
|
490 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
|
491 it displays the full documentation. |
1e8785572dd4
(help-for-help): Mention C-k and C-f.
Roland McGrath <roland@gnu.org>
parents:
3986
diff
changeset
|
492 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
|
493 it takes you to the Info node for the command bound to that key. |
2638
5ff504c4ae11
(help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents:
2440
diff
changeset
|
494 l view-lossage. Shows last 100 characters you typed. |
18632
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
495 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
|
496 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
|
497 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
|
498 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
|
499 and the current major mode, including their special commands. |
2638
5ff504c4ae11
(help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents:
2440
diff
changeset
|
500 n view-emacs-news. Shows emacs news file. |
5ff504c4ae11
(help-for-help): Use lower case letters for help options.
Richard M. Stallman <rms@gnu.org>
parents:
2440
diff
changeset
|
501 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
|
502 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
|
503 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
|
504 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
|
505 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
|
506 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
|
507 invoke that command. |
18632
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
508 |
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
509 F Display the frequently asked questions file. |
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
510 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
|
511 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
|
512 C-d Display Emacs ordering information. |
0e44be1e2051
(help-for-help): Update help text.
Richard M. Stallman <rms@gnu.org>
parents:
18293
diff
changeset
|
513 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
|
514 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
|
515 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
|
516 help-map) |
409 | 517 |
518 ;; Return a function which is called by the list containing point. | |
519 ;; If that gives no function, return a function whose name is around point. | |
520 ;; If that doesn't give a function, return nil. | |
521 (defun function-called-at-point () | |
20077
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
522 (let ((stab (syntax-table))) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
523 (set-syntax-table emacs-lisp-mode-syntax-table) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
524 (unwind-protect |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
525 (or (condition-case () |
13209
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
526 (save-excursion |
20077
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
527 (save-restriction |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
528 (narrow-to-region (max (point-min) (- (point) 1000)) (point-max)) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
529 ;; Move up to surrounding paren, then after the open. |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
530 (backward-up-list 1) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
531 (forward-char 1) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
532 ;; If there is space here, this is probably something |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
533 ;; other than a real Lisp function call, so ignore it. |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
534 (if (looking-at "[ \t]") |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
535 (error "Probably not a Lisp function call")) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
536 (let (obj) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
537 (setq obj (read (current-buffer))) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
538 (and (symbolp obj) (fboundp obj) obj)))) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
539 (error nil)) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
540 (condition-case () |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
541 (save-excursion |
13209
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
542 (or (not (zerop (skip-syntax-backward "_w"))) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
543 (eq (char-syntax (following-char)) ?w) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
544 (eq (char-syntax (following-char)) ?_) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
545 (forward-sexp -1)) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
546 (skip-chars-forward "'") |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
547 (let ((obj (read (current-buffer)))) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
548 (and (symbolp obj) (fboundp obj) obj))) |
20077
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
549 (error nil))) |
437758b7ca50
(function-called-at-point): Always use Emacs Lisp syntax tab.
Karl Heuer <kwzh@gnu.org>
parents:
20069
diff
changeset
|
550 (set-syntax-table stab)))) |
409 | 551 |
9639
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
552 (defun describe-function-find-file (function) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
553 (let ((files load-history) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
554 file functions) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
555 (while files |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
556 (if (memq function (cdr (car files))) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
557 (setq file (car (car files)) files nil)) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
558 (setq files (cdr files))) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
559 file)) |
7cad0025f303
(describe-function-find-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9638
diff
changeset
|
560 |
409 | 561 (defun describe-function (function) |
562 "Display the full documentation of FUNCTION (a symbol)." | |
563 (interactive | |
564 (let ((fn (function-called-at-point)) | |
565 (enable-recursive-minibuffers t) | |
566 val) | |
567 (setq val (completing-read (if fn | |
568 (format "Describe function (default %s): " fn) | |
569 "Describe function: ") | |
20069
1f8e6121713d
(describe-variable): Pass default value to completing-read.
Karl Heuer <kwzh@gnu.org>
parents:
20060
diff
changeset
|
570 obarray 'fboundp t nil nil (symbol-name fn))) |
409 | 571 (list (if (equal val "") |
572 fn (intern val))))) | |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
573 (if function |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
574 (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
|
575 (prin1 function) |
19124
e5e8552b076a
(describe-function): Use " is " instead of colon.
Richard M. Stallman <rms@gnu.org>
parents:
18632
diff
changeset
|
576 ;; 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
|
577 ;; 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
|
578 (princ " is ") |
21491
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
579 (describe-function-1 function nil) |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
580 (print-help-return-message) |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
581 (save-excursion |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
582 (set-buffer standard-output) |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
583 ;; Return the text we displayed. |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
584 (buffer-string))) |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
585 (message "You didn't specify a function"))) |
409 | 586 |
21491
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
587 (defun describe-function-1 (function parens) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
588 (let* ((def (symbol-function function)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
589 file-name string need-close |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
590 (beg (if (commandp def) "an interactive " "a "))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
591 (setq string |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
592 (cond ((or (stringp def) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
593 (vectorp def)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
594 "a keyboard macro") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
595 ((subrp def) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
596 (concat beg "built-in function")) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
597 ((byte-code-function-p def) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
598 (concat beg "compiled Lisp function")) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
599 ((symbolp def) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
600 (format "alias for `%s'" def)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
601 ((eq (car-safe def) 'lambda) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
602 (concat beg "Lisp function")) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
603 ((eq (car-safe def) 'macro) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
604 "a Lisp macro") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
605 ((eq (car-safe def) 'mocklisp) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
606 "a mocklisp function") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
607 ((eq (car-safe def) 'autoload) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
608 (setq file-name (nth 1 def)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
609 (format "%s autoloaded Lisp %s" |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
610 (if (commandp def) "an interactive" "an") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
611 (if (nth 4 def) "macro" "function") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
612 )) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
613 (t ""))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
614 (when (and parens (not (equal string ""))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
615 (setq need-close t) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
616 (princ "(")) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
617 (princ string) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
618 (or file-name |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
619 (setq file-name (describe-function-find-file function))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
620 (if file-name |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
621 (progn |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
622 (princ " in `") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
623 ;; We used to add .el to the file name, |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
624 ;; 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
|
625 (princ file-name) |
21695
2c9cfb84bf1b
(describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents:
21587
diff
changeset
|
626 (princ "'") |
2c9cfb84bf1b
(describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents:
21587
diff
changeset
|
627 ;; Make a hyperlink to the library. |
2c9cfb84bf1b
(describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents:
21587
diff
changeset
|
628 (with-current-buffer "*Help*" |
2c9cfb84bf1b
(describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents:
21587
diff
changeset
|
629 (save-excursion |
2c9cfb84bf1b
(describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents:
21587
diff
changeset
|
630 (re-search-backward "`\\([^`']+\\)'" nil t) |
2c9cfb84bf1b
(describe-function): Make hyperlink to library file
Dave Love <fx@gnu.org>
parents:
21587
diff
changeset
|
631 (help-xref-button 1 #'find-function function))))) |
21491
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
632 (if need-close (princ ")")) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
633 (princ ".") |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
634 (terpri) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
635 (let* ((inner-function (if (and (listp def) 'macro) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
636 (cdr def) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
637 def)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
638 (arglist (cond ((byte-code-function-p inner-function) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
639 (car (append inner-function nil))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
640 ((eq (car-safe inner-function) 'lambda) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
641 (nth 1 inner-function)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
642 (t t)))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
643 (if (listp arglist) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
644 (progn |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
645 (princ (cons function |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
646 (mapcar (lambda (arg) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
647 (if (memq arg '(&optional &rest)) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
648 arg |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
649 (intern (upcase (symbol-name arg))))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
650 arglist))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
651 (terpri)))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
652 (let ((doc (documentation function))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
653 (if doc |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
654 (progn (terpri) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
655 (princ doc) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
656 (help-setup-xref (cons #'describe-function function) (interactive-p))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
657 (princ "not documented"))))) |
7a8169a735f5
(describe-function-1): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21440
diff
changeset
|
658 |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
659 ;; We return 0 if we can't find a variable to return. |
409 | 660 (defun variable-at-point () |
661 (condition-case () | |
13209
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
662 (let ((stab (syntax-table))) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
663 (unwind-protect |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
664 (save-excursion |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
665 (set-syntax-table emacs-lisp-mode-syntax-table) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
666 (or (not (zerop (skip-syntax-backward "_w"))) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
667 (eq (char-syntax (following-char)) ?w) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
668 (eq (char-syntax (following-char)) ?_) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
669 (forward-sexp -1)) |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
670 (skip-chars-forward "'") |
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
671 (let ((obj (read (current-buffer)))) |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
672 (or (and (symbolp obj) (boundp obj) obj) |
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
673 0))) |
13209
c2f172263810
(variable-at-point, function-called-at-point):
Richard M. Stallman <rms@gnu.org>
parents:
13197
diff
changeset
|
674 (set-syntax-table stab))) |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
675 (error 0))) |
409 | 676 |
677 (defun describe-variable (variable) | |
678 "Display the full documentation of VARIABLE (a symbol). | |
679 Returns the documentation as a string, also." | |
680 (interactive | |
681 (let ((v (variable-at-point)) | |
682 (enable-recursive-minibuffers t) | |
683 val) | |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
684 (setq val (completing-read (if (symbolp v) |
409 | 685 (format "Describe variable (default %s): " v) |
686 "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
|
687 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
|
688 (if (symbolp v) (symbol-name v)))) |
409 | 689 (list (if (equal val "") |
690 v (intern val))))) | |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
691 (if (symbolp variable) |
16557
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
692 (let (valvoid) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
693 (with-output-to-temp-buffer "*Help*" |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
694 (prin1 variable) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
695 (if (not (boundp variable)) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
696 (progn |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
697 (princ " is void") |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
698 (terpri) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
699 (setq valvoid t)) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
700 (princ "'s value is ") |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
701 (terpri) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
702 (pp (symbol-value variable)) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
703 (terpri)) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
704 (if (local-variable-p variable) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
705 (progn |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
706 (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
|
707 (if (not (default-boundp variable)) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
708 (princ "globally void") |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
709 (princ "global value is ") |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
710 (terpri) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
711 (pp (default-value variable))) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
712 (terpri))) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
713 (terpri) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
714 (save-current-buffer |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
715 (set-buffer standard-output) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
716 (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
|
717 (progn |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
718 (goto-char (point-min)) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
719 (if valvoid |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
720 (forward-line 1) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
721 (forward-sexp 1) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
722 (delete-region (point) (progn (end-of-line) (point))) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
723 (insert "'s value is shown below.\n\n") |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
724 (save-excursion |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
725 (insert "\n\nValue:")))))) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
726 (princ "Documentation:") |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
727 (terpri) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
728 (let ((doc (documentation-property variable 'variable-documentation))) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
729 (princ (or doc "not documented as a variable."))) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
730 (help-setup-xref (cons #'describe-variable variable) (interactive-p)) |
16557
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
731 (print-help-return-message) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
732 (save-excursion |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
733 (set-buffer standard-output) |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
734 ;; Return the text we displayed. |
4ff6a0f0f5c7
(describe-variable): Pretty-print the values.
Richard M. Stallman <rms@gnu.org>
parents:
16439
diff
changeset
|
735 (buffer-string)))) |
16439
0c61b1f40de2
(describe-function): If no fn specified, say so.
Richard M. Stallman <rms@gnu.org>
parents:
16391
diff
changeset
|
736 (message "You did not specify a variable"))) |
409 | 737 |
20848
4c3e62fe8898
(describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents:
20290
diff
changeset
|
738 (defun describe-bindings (&optional prefix) |
4c3e62fe8898
(describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents:
20290
diff
changeset
|
739 "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
|
740 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
|
741 |
4c3e62fe8898
(describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents:
20290
diff
changeset
|
742 The optional argument PREFIX, if non-nil, should be a key sequence; |
4c3e62fe8898
(describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents:
20290
diff
changeset
|
743 then we display only bindings that start with that prefix." |
20882
6566e48896f4
(describe-bindings): Fix interactive spec.
Richard M. Stallman <rms@gnu.org>
parents:
20848
diff
changeset
|
744 (interactive "P") |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
745 (setq help-xref-stack nil |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
746 help-xref-stack-item nil) |
20848
4c3e62fe8898
(describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents:
20290
diff
changeset
|
747 (describe-bindings-internal nil prefix)) |
4c3e62fe8898
(describe-bindings): New command (formerly in keymap.c).
Richard M. Stallman <rms@gnu.org>
parents:
20290
diff
changeset
|
748 |
17917
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
749 (defun where-is (definition &optional insert) |
6476
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
750 "Print message listing key sequences that invoke specified command. |
17917
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
751 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
|
752 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
|
753 (interactive |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
754 (let ((fn (function-called-at-point)) |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
755 (enable-recursive-minibuffers t) |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
756 val) |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
757 (setq val (completing-read (if fn |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
758 (format "Where is command (default %s): " fn) |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
759 "Where is command: ") |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
760 obarray 'fboundp t)) |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
761 (list (if (equal val "") |
17917
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
762 fn (intern val)) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
763 current-prefix-arg))) |
6476
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
764 (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
|
765 (keys1 (mapconcat 'key-description keys ", ")) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
766 (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
|
767 (if insert |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
768 (if (> (length keys1) 0) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
769 (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
|
770 (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
|
771 (if (> (length keys1) 0) |
2a41f677885f
(describe-key-briefly, where-is): Prefix arg means
Richard M. Stallman <rms@gnu.org>
parents:
17756
diff
changeset
|
772 (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
|
773 (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
|
774 nil) |
2e28b96d5b64
(where-is): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6433
diff
changeset
|
775 |
16273
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
776 (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
|
777 "Show the precise file name of Emacs library LIBRARY. |
409 | 778 This command searches the directories in `load-path' like `M-x load-library' |
779 to find the file that `M-x load-library RET LIBRARY RET' would load. | |
780 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
|
781 to the specified name LIBRARY. |
a9d32637ee38
(locate-library): New arg PATH. Handle autocompression mode.
Richard M. Stallman <rms@gnu.org>
parents:
16063
diff
changeset
|
782 |
a9d32637ee38
(locate-library): New arg PATH. Handle autocompression mode.
Richard M. Stallman <rms@gnu.org>
parents:
16063
diff
changeset
|
783 If the optional third arg PATH is specified, that list of directories |
a9d32637ee38
(locate-library): New arg PATH. Handle autocompression mode.
Richard M. Stallman <rms@gnu.org>
parents:
16063
diff
changeset
|
784 is used instead of `load-path'." |
16273
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
785 (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
|
786 nil nil |
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
787 t)) |
20176
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
788 (let (result) |
16273
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
789 (catch 'answer |
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
790 (mapcar |
16391
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
791 (lambda (dir) |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
792 (mapcar |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
793 (lambda (suf) |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
794 (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
|
795 (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
|
796 (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
|
797 (progn |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
798 (setq result try) |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
799 (throw 'answer try))))) |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
800 (if nosuffix |
5d64d742ccbb
(print-help-return-message): Use new functions `special-display-p' and
Erik Naggum <erik@naggum.no>
parents:
16273
diff
changeset
|
801 '("") |
20176
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
802 '(".elc" ".el" "") |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
803 ;;; load doesn't handle this yet. |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
804 ;;; (let ((basic '(".elc" ".el" "")) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
805 ;;; (compressed '(".Z" ".gz" ""))) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
806 ;;; ;; If autocompression mode is on, |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
807 ;;; ;; consider all combinations of library suffixes |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
808 ;;; ;; and compression suffixes. |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
809 ;;; (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
|
810 ;;; (apply 'nconc |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
811 ;;; (mapcar (lambda (compelt) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
812 ;;; (mapcar (lambda (baselt) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
813 ;;; (concat baselt compelt)) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
814 ;;; basic)) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
815 ;;; compressed)) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
816 ;;; basic)) |
fb907b54fe26
(locate-library): Comment out the code that searches
Karl Heuer <kwzh@gnu.org>
parents:
20133
diff
changeset
|
817 ))) |
16273
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
818 (or path load-path))) |
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
819 (and interactive-call |
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
820 (if result |
14ff4afa06ec
(locate-library): Print no messages if called from Lisp.
Richard M. Stallman <rms@gnu.org>
parents:
16064
diff
changeset
|
821 (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
|
822 (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
|
823 result)) |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
824 |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
825 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
826 ;;; Grokking cross-reference information in doc strings and |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
827 ;;; hyperlinking it. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
828 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
829 ;; 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
|
830 ;; 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
|
831 ;; another mechanism. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
832 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
833 (defcustom help-highlight-p t |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
834 "*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
|
835 Under a window system it highlights them with face defined by |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
836 `help-highlight-face'. On a character terminal highlighted |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
837 references look like cross-references in info mode." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
838 :group 'help |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
839 :version "20.3" |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
840 :type 'boolean) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
841 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
842 (defcustom help-highlight-face 'underline |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
843 "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
|
844 Must be previously-defined." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
845 :group 'help |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
846 :version "20.3" |
21698
9ebbb53c1c20
(help-highlight-face): Use `face' as custom type.
Richard M. Stallman <rms@gnu.org>
parents:
21695
diff
changeset
|
847 :type 'face) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
848 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
849 (defvar help-back-label "[back]" |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
850 "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
|
851 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
852 (defvar help-xref-symbol-regexp |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
853 (concat "\\(\\<\\(\\(variable\\|option\\)\\|" |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
854 "\\(function\\|command\\)\\|" |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
855 "\\(symbol\\)\\)\\s-+\\)?" |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
856 ;; Note starting with word-syntax character: |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
857 "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
858 "Regexp matching doc string references to symbols. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
859 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
860 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
|
861 distinguish references to variables, functions and symbols.") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
862 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
863 (defvar help-xref-info-regexp |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
864 "\\<info\\s-+node\\s-`\\([^']+\\)'" |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
865 "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
|
866 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
867 (defun help-setup-xref (item interactive-p) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
868 "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
|
869 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
870 ITEM is a (function . args) pair appropriate for recreating the help |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
871 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
|
872 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
|
873 items for help buffer \"back\" buttons is cleared." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
874 (if interactive-p |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
875 (setq help-xref-stack nil)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
876 (setq help-xref-stack-item item)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
877 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
878 (defun help-make-xrefs (&optional buffer) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
879 "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
|
880 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
881 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
|
882 `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
|
883 `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
|
884 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
|
885 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
|
886 word(s) used in `help-xref-symbol-regexp'. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
887 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
888 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
|
889 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
|
890 that." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
891 (interactive "b") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
892 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
893 (set-buffer (or buffer (current-buffer))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
894 (goto-char (point-min)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
895 ;; 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
|
896 ;; 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
|
897 (forward-paragraph) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
898 (let ((old-modified (buffer-modified-p))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
899 (let ((stab (syntax-table)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
900 (case-fold-search t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
901 (inhibit-read-only t)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
902 (set-syntax-table emacs-lisp-mode-syntax-table) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
903 ;; The following should probably be abstracted out. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
904 (unwind-protect |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
905 (progn |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
906 ;; Quoted symbols |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
907 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
908 (while (re-search-forward help-xref-symbol-regexp nil t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
909 (let* ((data (match-string 6)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
910 (sym (intern-soft data))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
911 (if sym |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
912 (cond |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
913 ((match-string 3) ; `variable' &c |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
914 (and (boundp sym) ; `variable' doesn't ensure |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
915 ; it's actually bound |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
916 (help-xref-button 6 #'describe-variable sym))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
917 ((match-string 4) ; `function' &c |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
918 (and (fboundp sym) ; similarly |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
919 (help-xref-button 6 #'describe-function sym))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
920 ((match-string 5)) ; nothing for symbol |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
921 ((and (boundp sym) (fboundp sym)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
922 ;; We can't intuit whether to use the |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
923 ;; variable or function doc -- supply both. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
924 (help-xref-button 6 #'help-xref-interned sym)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
925 ((boundp sym) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
926 (help-xref-button 6 #'describe-variable sym)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
927 ((fboundp sym) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
928 (help-xref-button 6 #'describe-function sym))))))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
929 ;; Info references |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
930 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
931 (while (re-search-forward help-xref-info-regexp nil t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
932 (help-xref-button 1 #'Info-goto-node (list (match-data 1))))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
933 ;; An obvious case of a key substitution: |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
934 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
935 (while (re-search-forward |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
936 "\\<M-x\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)" nil t) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
937 (let ((sym (intern-soft (match-string 1)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
938 (if (fboundp sym) |
21385
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
939 (help-xref-button 1 #'describe-function sym))))) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
940 ;; 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
|
941 (save-excursion |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
942 ;; 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
|
943 ;; name will be found. |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
944 (while (re-search-forward "^key +binding\n\\(-+ +\\)-+\n\n" |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
945 nil t) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
946 (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
|
947 (while |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
948 ;; 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
|
949 ;; double ones, which should terminate it. |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
950 (and (looking-at "^\n?[^\n]") |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
951 (progn |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
952 (if (and (> (move-to-column col) 0) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
953 (looking-at "\\(\\sw\\|\\s_\\)+$")) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
954 ;; |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
955 (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
|
956 (if (fboundp sym) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
957 (help-xref-button |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
958 0 #'describe-function sym)))) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
959 t) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
960 (zerop (forward-line)) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
961 (move-to-column 0))))))) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
962 (set-syntax-table stab)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
963 ;; Make a back-reference in this buffer if appropriate. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
964 (when help-xref-stack |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
965 (goto-char (point-max)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
966 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
967 (insert "\n\n" help-back-label)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
968 ;; Just to provide the match data: |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
969 (looking-at (concat "\n\n\\(" (regexp-quote help-back-label) "\\)")) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
970 (help-xref-button 1 #'help-xref-go-back nil))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
971 ;; View mode steals RET from us. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
972 (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
|
973 (list (cons 'view-mode |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
974 (let ((map (make-sparse-keymap))) |
21385
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
975 (set-keymap-parent map view-mode-map) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
976 (define-key map "\r" 'help-follow) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
977 map)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
978 (set-buffer-modified-p old-modified)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
979 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
980 (defun help-xref-button (match-number function data) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
981 "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
|
982 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
983 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
|
984 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
|
985 activated, applied to DATA. DATA may be a single value or a list. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
986 See `help-make-xrefs'." |
21385
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
987 (add-text-properties (match-beginning match-number) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
988 (match-end match-number) |
21385
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
989 (list 'mouse-face 'highlight |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
990 'help-xref (cons function |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
991 (if (listp data) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
992 data |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
993 (list data))))) |
21385
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
994 (if help-highlight-p |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
995 (put-text-property (match-beginning match-number) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
996 (match-end match-number) |
a14e82c3a69e
(help-make-xrefs): Grok commands in keymap table
Dave Love <fx@gnu.org>
parents:
21371
diff
changeset
|
997 'face help-highlight-face))) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
998 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
999 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1000 ;; 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
|
1001 (defun help-xref-interned (symbol) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1002 "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
|
1003 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1004 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
|
1005 help buffer." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1006 (let ((fdoc (describe-function symbol))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1007 (describe-variable symbol) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1008 ;; We now have a help buffer on the variable. Insert the function |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1009 ;; text after it. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1010 (goto-char (point-max)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1011 (insert "\n\n" fdoc)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1012 (goto-char (point-min)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1013 (help-setup-xref (cons #'help-xref-interned symbol) nil)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1014 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1015 (defun help-xref-mode (buffer) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1016 "Do a `describe-mode' for the specified BUFFER." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1017 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1018 (set-buffer buffer) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1019 (describe-mode))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1020 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1021 ;;; Navigation/hyperlinking with xrefs |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1022 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1023 (defun help-follow-mouse (click) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1024 "Follow the cross-reference that you click on." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1025 (interactive "e") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1026 (save-excursion |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1027 (let* ((start (event-start click)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1028 (window (car start)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1029 (pos (car (cdr start)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1030 (set-buffer (window-buffer window)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1031 (help-follow pos)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1032 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1033 (defun help-xref-go-back () |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1034 "Go back to the previous help buffer using info on `help-xref-stack'." |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1035 (interactive) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1036 (when help-xref-stack |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1037 (setq help-xref-stack (cdr help-xref-stack)) ; due to help-follow |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1038 (let* ((item (car help-xref-stack)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1039 (method (car item)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1040 (args (cdr item))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1041 (setq help-xref-stack (cdr help-xref-stack)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1042 (if (listp args) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1043 (apply method args) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1044 (funcall method args))))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1045 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1046 (defun help-go-back () |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1047 (interactive) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1048 (help-follow (1- (point-max)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1049 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1050 (defun help-follow (&optional pos) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1051 "Follow cross-reference at POS, defaulting to point. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1052 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1053 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
|
1054 (interactive "d") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1055 (let* ((help-data (get-text-property pos 'help-xref)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1056 (method (car help-data)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1057 (args (cdr help-data))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1058 (setq help-xref-stack (cons help-xref-stack-item help-xref-stack)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1059 (setq help-xref-stack-item nil) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1060 (when help-data |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1061 ;; There is a reference at point. Follow it. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1062 (apply method args)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1063 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1064 ;; For tabbing through buffer. |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1065 (defun help-next-ref () |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1066 "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
|
1067 (interactive) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1068 (let (pos) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1069 (while (not pos) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1070 (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
|
1071 (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
|
1072 (point)))) |
21371
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1073 (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
|
1074 (if pos (goto-char pos))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1075 ((bobp) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1076 (message "No cross references in the buffer.") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1077 (setq pos t)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1078 (t ; be circular |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1079 (goto-char (point-min))))))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1080 |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1081 (defun help-previous-ref () |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1082 "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
|
1083 (interactive) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1084 (let (pos) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1085 (while (not pos) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1086 (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
|
1087 (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
|
1088 (point)))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1089 (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
|
1090 (if pos (goto-char pos))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1091 ((bobp) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1092 (message "No cross references in the buffer.") |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1093 (setq pos t)) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1094 (t ; be circular |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1095 (goto-char (point-max))))))) |
22a3be0ae9dc
(help-highlight-face): Use underline.
Richard M. Stallman <rms@gnu.org>
parents:
21210
diff
changeset
|
1096 |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
1097 ;;; help.el ends here |