(tcl-mode): Don't set paragraph-start,
[bpt/emacs.git] / lisp / help.el
CommitLineData
1a06eabd
ER
1;;; help.el --- help commands for Emacs
2
f03b7c7d 3;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002
754084bb 4;; Free Software Foundation, Inc.
3a801d0c 5
e5167999 6;; Maintainer: FSF
fd7fa35a 7;; Keywords: help, internal
e5167999 8
433ae6f6
RS
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
433ae6f6
RS
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
433ae6f6 25
d9ecc911
ER
26;;; Commentary:
27
a1c9f209 28;; This code implements GNU Emacs' on-line help system, the one invoked by
95ac0a6f 29;; `M-x help-for-help'.
d9ecc911 30
e5167999
ER
31;;; Code:
32
8aa3a187
RS
33;; Get the macro make-help-screen when this is compiled,
34;; or run interpreted, but not when the compiled code is loaded.
b1fe9304 35(eval-when-compile (require 'help-macro))
788d62cf
MB
36
37;; This makes `with-output-to-temp-buffer' buffers use `help-mode'.
38(add-hook 'temp-buffer-setup-hook 'help-mode-setup)
39(add-hook 'temp-buffer-show-hook 'help-mode-finish)
41b8542b 40
433ae6f6
RS
41(defvar help-map (make-sparse-keymap)
42 "Keymap for characters following the Help key.")
43
e17d2fd1 44(define-key global-map (char-to-string help-char) 'help-command)
0af3df1c
RS
45(define-key global-map [help] 'help-command)
46(define-key global-map [f1] 'help-command)
433ae6f6
RS
47(fset 'help-command help-map)
48
e17d2fd1 49(define-key help-map (char-to-string help-char) 'help-for-help)
0af3df1c
RS
50(define-key help-map [help] 'help-for-help)
51(define-key help-map [f1] 'help-for-help)
433ae6f6
RS
52(define-key help-map "?" 'help-for-help)
53
54(define-key help-map "\C-c" 'describe-copying)
55(define-key help-map "\C-d" 'describe-distribution)
4f16ea85
RS
56(define-key help-map "\C-e" 'view-emacs-problems)
57(define-key help-map "\C-f" 'view-emacs-FAQ)
4f16ea85
RS
58(define-key help-map "\C-m" 'view-order-manuals)
59(define-key help-map "\C-n" 'view-emacs-news)
76766f2d 60(define-key help-map "\C-p" 'describe-project)
1ebc1f01 61(define-key help-map "\C-t" 'view-todo)
4f16ea85
RS
62(define-key help-map "\C-w" 'describe-no-warranty)
63
64;; This does not fit the pattern, but it is natural given the C-\ command.
65(define-key help-map "\C-\\" 'describe-input-method)
66
67(define-key help-map "C" 'describe-coding-system)
68(define-key help-map "F" 'Info-goto-emacs-command-node)
69(define-key help-map "I" 'describe-input-method)
70(define-key help-map "K" 'Info-goto-emacs-key-command-node)
71(define-key help-map "L" 'describe-language-environment)
72(define-key help-map "S" 'info-lookup-symbol)
73
122955bf 74(define-key help-map "a" 'apropos-command)
433ae6f6
RS
75
76(define-key help-map "b" 'describe-bindings)
77
78(define-key help-map "c" 'describe-key-briefly)
433ae6f6 79
4f16ea85
RS
80(define-key help-map "e" 'view-echo-area-messages)
81
433ae6f6
RS
82(define-key help-map "f" 'describe-function)
83
4f16ea85 84(define-key help-map "h" 'view-hello-file)
7ee71cf1 85
433ae6f6 86(define-key help-map "i" 'info)
4b08b7ed 87(define-key help-map "4i" 'info-other-window)
4f16ea85
RS
88
89(define-key help-map "k" 'describe-key)
433ae6f6
RS
90
91(define-key help-map "l" 'view-lossage)
92
93(define-key help-map "m" 'describe-mode)
94
433ae6f6
RS
95(define-key help-map "n" 'view-emacs-news)
96
06b98c51 97(define-key help-map "p" 'finder-by-keyword)
3e9c095d
RS
98(autoload 'finder-by-keyword "finder"
99 "Find packages matching a given keyword." t)
06b98c51 100
d009b6e9
RS
101(define-key help-map "r" 'info-emacs-manual)
102
433ae6f6
RS
103(define-key help-map "s" 'describe-syntax)
104
105(define-key help-map "t" 'help-with-tutorial)
106
107(define-key help-map "w" 'where-is)
108
109(define-key help-map "v" 'describe-variable)
110
2fc9d9f4
RS
111(define-key help-map "q" 'help-quit)
112
0cf0d828 113\f
2fc9d9f4 114(defun help-quit ()
3120a677 115 "Just exit from the Help command's command loop."
2fc9d9f4
RS
116 (interactive)
117 nil)
118
01364a75
RS
119(defvar help-return-method nil
120 "What to do to \"exit\" the help buffer.
121This is a list
122 (WINDOW . t) delete the selected window, go to WINDOW.
123 (WINDOW . quit-window) do quit-window, then select WINDOW.
124 (WINDOW BUF START POINT) display BUF at START, POINT, then select WINDOW.")
125
433ae6f6
RS
126(defun print-help-return-message (&optional function)
127 "Display or return message saying how to restore windows after help command.
d009b6e9
RS
128This function assumes that `standard-output' is the help buffer.
129It computes a message, and applies the optional argument FUNCTION to it.
130If FUNCTION is nil, it applies `message', thus displaying the message."
433ae6f6 131 (and (not (get-buffer-window standard-output))
d536293f 132 (let ((first-message
a1c9f209 133 (cond ((special-display-p (buffer-name standard-output))
01364a75 134 (setq help-return-method (cons (selected-window) t))
d536293f
RS
135 ;; If the help output buffer is a special display buffer,
136 ;; don't say anything about how to get rid of it.
137 ;; First of all, the user will do that with the window
138 ;; manager, not with Emacs.
139 ;; Secondly, the buffer has not been displayed yet,
140 ;; so we don't know whether its frame will be selected.
d536293f 141 nil)
f3ad2fc8
GM
142 (display-buffer-reuse-frames
143 (setq help-return-method (cons (selected-window)
144 'quit-window))
145 nil)
d536293f 146 ((not (one-window-p t))
01364a75
RS
147 (setq help-return-method
148 (cons (selected-window) 'quit-window))
d536293f
RS
149 "Type \\[switch-to-buffer-other-window] RET to restore the other window.")
150 (pop-up-windows
01364a75 151 (setq help-return-method (cons (selected-window) t))
d536293f
RS
152 "Type \\[delete-other-windows] to remove help window.")
153 (t
01364a75
RS
154 (setq help-return-method
155 (list (selected-window) (window-buffer)
156 (window-start) (window-point)))
d536293f
RS
157 "Type \\[switch-to-buffer] RET to remove help window."))))
158 (funcall (or function 'message)
159 (concat
160 (if first-message
376b2a24
DL
161 (substitute-command-keys first-message))
162 (if first-message " ")
125a8d70
RS
163 ;; If the help buffer will go in a separate frame,
164 ;; it's no use mentioning a command to scroll, so don't.
a1c9f209 165 (if (special-display-p (buffer-name standard-output))
125a8d70 166 nil
a1c9f209 167 (if (same-window-p (buffer-name standard-output))
125a8d70
RS
168 ;; Say how to scroll this window.
169 (substitute-command-keys
170 "\\[scroll-up] to scroll the help.")
171 ;; Say how to scroll some other window.
6e7f5182 172 (substitute-command-keys
125a8d70 173 "\\[scroll-other-window] to scroll the help."))))))))
433ae6f6 174
433ae6f6
RS
175;; So keyboard macro definitions are documented correctly
176(fset 'defining-kbd-macro (symbol-function 'start-kbd-macro))
177
788d62cf
MB
178(defalias 'help 'help-for-help)
179(make-help-screen help-for-help
1ebc1f01 180 "a b c C e f F i I k C-k l L m p s t v w C-c C-d C-f C-n C-p C-t C-w or ? :"
788d62cf
MB
181 "You have typed %THIS-KEY%, the help character. Type a Help option:
182\(Use SPC or DEL to scroll through this text. Type \\<help-map>\\[help-quit] to exit the Help command.)
183
184a command-apropos. Give a substring, and see a list of commands
185 (functions interactively callable) that contain
186 that substring. See also the apropos command.
187b describe-bindings. Display table of all key bindings.
188c describe-key-briefly. Type a command key sequence;
189 it prints the function name that sequence runs.
190C describe-coding-system. This describes either a specific coding system
191 (if you type its name) or the coding systems currently in use
192 (if you type just RET).
4f16ea85 193e view-echo-area-messages. Show the `*Messages*' buffer.
788d62cf 194f describe-function. Type a function name and get documentation of it.
4f16ea85 195F Info-goto-emacs-command-node. Type a function name;
788d62cf 196 it takes you to the Info node for that command.
54391990 197h Display the HELLO file which illustrates various scripts.
788d62cf
MB
198i info. The info documentation reader.
199I describe-input-method. Describe a specific input method (if you type
200 its name) or the current input method (if you type just RET).
788d62cf
MB
201k describe-key. Type a command key sequence;
202 it displays the full documentation.
4f16ea85 203K Info-goto-emacs-key-command-node. Type a command key sequence;
788d62cf
MB
204 it takes you to the Info node for the command bound to that key.
205l view-lossage. Show last 100 characters you typed.
206L describe-language-environment. This describes either a
207 specific language environment (if you type its name)
208 or the current language environment (if you type just RET).
209m describe-mode. Print documentation of current minor modes,
210 and the current major mode, including their special commands.
788d62cf
MB
211p finder-by-keyword. Find packages matching a given topic keyword.
212s describe-syntax. Display contents of syntax table, plus explanations.
4f16ea85
RS
213S info-lookup-symbol. Display the definition of a specific symbol
214 as found in the manual for the language this buffer is written in.
788d62cf
MB
215t help-with-tutorial. Select the Emacs learn-by-doing tutorial.
216v describe-variable. Type name of a variable;
217 it displays the variable's documentation and value.
218w where-is. Type command name; it prints which keystrokes
219 invoke that command.
220
4f16ea85 221C-c Display Emacs copying permission (GNU General Public License).
788d62cf 222C-d Display Emacs ordering information.
4f16ea85
RS
223C-e Display info about Emacs problems.
224C-f Display the Emacs FAQ.
4f16ea85 225C-m Display how to order printed Emacs manuals.
788d62cf
MB
226C-n Display news of recent Emacs changes.
227C-p Display information about the GNU project.
1ebc1f01 228C-t Display the Emacs TODO list.
788d62cf
MB
229C-w Display information on absence of warranty for GNU Emacs."
230 help-map)
231
232\f
233
234(defun function-called-at-point ()
235 "Return a function around point or else called by the list containing point.
236If that doesn't give a function, return nil."
237 (with-syntax-table emacs-lisp-mode-syntax-table
238 (or (condition-case ()
239 (save-excursion
240 (or (not (zerop (skip-syntax-backward "_w")))
241 (eq (char-syntax (following-char)) ?w)
242 (eq (char-syntax (following-char)) ?_)
243 (forward-sexp -1))
244 (skip-chars-forward "'")
245 (let ((obj (read (current-buffer))))
246 (and (symbolp obj) (fboundp obj) obj)))
247 (error nil))
248 (condition-case ()
249 (save-excursion
250 (save-restriction
251 (narrow-to-region (max (point-min)
252 (- (point) 1000)) (point-max))
253 ;; Move up to surrounding paren, then after the open.
254 (backward-up-list 1)
255 (forward-char 1)
256 ;; If there is space here, this is probably something
257 ;; other than a real Lisp function call, so ignore it.
258 (if (looking-at "[ \t]")
259 (error "Probably not a Lisp function call"))
260 (let ((obj (read (current-buffer))))
261 (and (symbolp obj) (fboundp obj) obj))))
262 (error nil)))))
263
264\f
265;;; `User' help functions
266
433ae6f6
RS
267(defun describe-distribution ()
268 "Display info on how to obtain the latest version of GNU Emacs."
269 (interactive)
9e0e631c 270 (view-file (expand-file-name "DISTRIB" data-directory)))
433ae6f6
RS
271
272(defun describe-copying ()
273 "Display info on how you may redistribute copies of GNU Emacs."
274 (interactive)
64f3b7d3 275 (view-file (expand-file-name "COPYING" data-directory))
433ae6f6
RS
276 (goto-char (point-min)))
277
76766f2d
RS
278(defun describe-project ()
279 "Display info on the GNU project."
280 (interactive)
64f3b7d3 281 (view-file (expand-file-name "THE-GNU-PROJECT" data-directory))
76766f2d
RS
282 (goto-char (point-min)))
283
433ae6f6
RS
284(defun describe-no-warranty ()
285 "Display info on all the kinds of warranty Emacs does NOT have."
286 (interactive)
287 (describe-copying)
288 (let (case-fold-search)
289 (search-forward "NO WARRANTY")
290 (recenter 0)))
291
61c6b658 292(defun describe-prefix-bindings ()
c7cba9cb
RS
293 "Describe the bindings of the prefix used to reach this command.
294The prefix described consists of all but the last event
295of the key sequence that ran this command."
61c6b658 296 (interactive)
ccc06dcc
KH
297 (let* ((key (this-command-keys)))
298 (describe-bindings
299 (if (stringp key)
300 (substring key 0 (1- (length key)))
301 (let ((prefix (make-vector (1- (length key)) nil))
302 (i 0))
303 (while (< i (length prefix))
304 (aset prefix i (aref key i))
305 (setq i (1+ i)))
306 prefix)))))
788d62cf 307;; Make C-h after a prefix, when not specifically bound,
c7cba9cb 308;; run describe-prefix-bindings.
61c6b658
RS
309(setq prefix-help-command 'describe-prefix-bindings)
310
382d018a
RS
311(defun view-emacs-news (&optional arg)
312 "Display info on recent changes to Emacs.
f0753a5f 313With numeric argument, display information on correspondingly older changes."
382d018a 314 (interactive "P")
f0753a5f
GM
315 (let* ((arg (if arg (prefix-numeric-value arg) 0))
316 (file (cond ((eq arg 0) "NEWS")
317 ((eq arg 1) "ONEWS")
318 (t
319 (nth (- arg 2)
320 (nreverse (directory-files data-directory
975f82c9 321 nil "^ONEWS\\.[0-9]+$"
f0753a5f
GM
322 nil)))))))
323 (if file
64f3b7d3 324 (view-file (expand-file-name file data-directory))
f0753a5f 325 (error "No such old news"))))
433ae6f6 326
1ebc1f01
RS
327(defun view-todo (&optional arg)
328 "Display the Emacs TODO list."
329 (interactive "P")
330 (view-file (expand-file-name "TODO" data-directory)))
331
4f16ea85
RS
332(defun view-echo-area-messages ()
333 "View the log of recent echo-area messages: the `*Messages*' buffer.
334The number of messages retained in that buffer
335is specified by the variable `message-log-max'."
336 (interactive)
337 (switch-to-buffer (get-buffer-create "*Messages*")))
338
754084bb
GM
339(defun view-order-manuals ()
340 "Display the Emacs ORDERS file."
341 (interactive)
64f3b7d3 342 (view-file (expand-file-name "ORDERS" data-directory))
38790755 343 (goto-address))
754084bb 344
7ee71cf1
RS
345(defun view-emacs-FAQ ()
346 "Display the Emacs Frequently Asked Questions (FAQ) file."
347 (interactive)
94ea540b 348 ;; (find-file-read-only (expand-file-name "FAQ" data-directory))
279b772d 349 (info "(efaq)"))
7ee71cf1 350
4cbff657
DL
351(defun view-emacs-problems ()
352 "Display info on known problems with Emacs and possible workarounds."
353 (interactive)
354 (view-file (expand-file-name "PROBLEMS" data-directory)))
355
433ae6f6 356(defun view-lossage ()
50b57199
EZ
357 "Display last 100 input keystrokes.
358
359To record all your input on a file, use `open-dribble-file'."
433ae6f6 360 (interactive)
3e5929af
SM
361 (help-setup-xref (list #'view-lossage) (interactive-p))
362 (with-output-to-temp-buffer (help-buffer)
02dfca16
SM
363 (princ (mapconcat (lambda (key)
364 (if (or (integerp key) (symbolp key) (listp key))
365 (single-key-description key)
366 (prin1-to-string key nil)))
298a7c8c
RS
367 (recent-keys)
368 " "))
b0fbf754 369 (with-current-buffer standard-output
433ae6f6
RS
370 (goto-char (point-min))
371 (while (progn (move-to-column 50) (not (eobp)))
372 (search-forward " " nil t)
3e5929af 373 (insert "\n")))
433ae6f6
RS
374 (print-help-return-message)))
375
788d62cf
MB
376\f
377;; Key bindings
433ae6f6 378
4c45295b 379(defun describe-bindings (&optional prefix buffer)
a8ad43aa
RS
380 "Show a list of all defined keys, and their definitions.
381We put that list in a buffer, and display the buffer.
382
383The optional argument PREFIX, if non-nil, should be a key sequence;
4c45295b
KH
384then we display only bindings that start with that prefix.
385The optional argument BUFFER specifies which buffer's bindings
386to display (default, the current buffer)."
3e5929af 387 (interactive)
4c45295b 388 (or buffer (setq buffer (current-buffer)))
3e5929af 389 (help-setup-xref (list #'describe-bindings prefix buffer) (interactive-p))
4c45295b 390 (with-current-buffer buffer
3e5929af 391 (describe-bindings-internal nil prefix)))
a8ad43aa 392
94ea540b
SM
393;; This function used to be in keymap.c.
394(defun describe-bindings-internal (&optional menus prefix)
395 "Show a list of all defined keys, and their definitions.
396We put that list in a buffer, and display the buffer.
397
398The optional argument MENUS, if non-nil, says to mention menu bindings.
399\(Ordinarily these are omitted from the output.)
400The optional argument PREFIX, if non-nil, should be a key sequence;
401then we display only bindings that start with that prefix."
402 (interactive)
403 (let ((buf (current-buffer)))
404 (with-output-to-temp-buffer "*Help*"
405 (with-current-buffer standard-output
406 (describe-buffer-bindings buf prefix menus)))))
407
e88a2c59 408(defun where-is (definition &optional insert)
b2c85790 409 "Print message listing key sequences that invoke the command DEFINITION.
e88a2c59
RS
410Argument is a command definition, usually a symbol with a function definition.
411If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
54c0b967
RS
412 (interactive
413 (let ((fn (function-called-at-point))
788d62cf 414 (enable-recursive-minibuffers t)
54c0b967
RS
415 val)
416 (setq val (completing-read (if fn
417 (format "Where is command (default %s): " fn)
418 "Where is command: ")
d5f65532 419 obarray 'commandp t))
54c0b967 420 (list (if (equal val "")
e88a2c59
RS
421 fn (intern val))
422 current-prefix-arg)))
962ffad8
KS
423 (let* ((remapped (remap-command definition))
424 (keys (where-is-internal definition overriding-local-map nil nil remapped))
e88a2c59
RS
425 (keys1 (mapconcat 'key-description keys ", "))
426 (standard-output (if insert (current-buffer) t)))
427 (if insert
428 (if (> (length keys1) 0)
962ffad8
KS
429 (if remapped
430 (princ (format "%s (%s) (remapped from %s)" keys1 remapped definition))
290bfb66 431 (princ (format "%s (%s)" keys1 definition)))
e88a2c59
RS
432 (princ (format "M-x %s RET" definition)))
433 (if (> (length keys1) 0)
962ffad8
KS
434 (if remapped
435 (princ (format "%s is remapped to %s which is on %s" definition remapped keys1))
290bfb66 436 (princ (format "%s is on %s" definition keys1)))
e88a2c59 437 (princ (format "%s is not on any key" definition)))))
54c0b967
RS
438 nil)
439
788d62cf
MB
440(defun string-key-binding (key)
441 "Value is the binding of KEY in a string.
442If KEY is an event on a string, and that string has a `local-map'
443or `keymap' property, return the binding of KEY in the string's keymap."
444 (let* ((defn nil)
445 (start (when (vectorp key)
f03b7c7d
GM
446 (if (memq (aref key 0)
447 '(mode-line header-line left-margin right-margin))
788d62cf
MB
448 (event-start (aref key 1))
449 (and (consp (aref key 0))
450 (event-start (aref key 0))))))
451 (string-info (and (consp start) (nth 4 start))))
452 (when string-info
453 (let* ((string (car string-info))
454 (pos (cdr string-info))
f03b7c7d 455 (local-map (and (>= pos 0)
788d62cf
MB
456 (< pos (length string))
457 (or (get-text-property pos 'local-map string)
458 (get-text-property pos 'keymap string)))))
459 (setq defn (and local-map (lookup-key local-map key)))))
460 defn))
1a06eabd 461
02dfca16
SM
462(defun help-key-description (key untranslated)
463 (let ((string (key-description key)))
ae1bb8ac
SM
464 (if (or (not untranslated)
465 (and (eq (aref untranslated 0) ?\e) (not (eq (aref key 0) ?\e))))
02dfca16
SM
466 string
467 (let ((otherstring (key-description untranslated)))
468 (if (equal string otherstring)
469 string
470 (format "%s (translated from %s)" string otherstring))))))
471
472(defun describe-key-briefly (key &optional insert untranslated)
788d62cf 473 "Print the name of the function KEY invokes. KEY is a string.
02dfca16
SM
474If INSERT (the prefix arg) is non-nil, insert the message in the buffer.
475If non-nil UNTRANSLATED is a vector of the untranslated events.
476It can also be a number in which case the untranslated events from
477the last key hit are used."
478 (interactive "kDescribe key briefly: \nP\np")
479 (if (numberp untranslated)
480 (setq untranslated (this-single-command-raw-keys)))
400a1b1f 481 (save-excursion
788d62cf
MB
482 (let ((modifiers (event-modifiers (aref key 0)))
483 (standard-output (if insert (current-buffer) t))
484 window position)
485 ;; For a mouse button event, go to the button it applies to
486 ;; to get the right key bindings. And go to the right place
487 ;; in case the keymap depends on where you clicked.
488 (if (or (memq 'click modifiers) (memq 'down modifiers)
489 (memq 'drag modifiers))
490 (setq window (posn-window (event-start (aref key 0)))
491 position (posn-point (event-start (aref key 0)))))
492 (if (windowp window)
493 (progn
494 (set-buffer (window-buffer window))
495 (goto-char position)))
496 ;; Ok, now look up the key and name the command.
497 (let ((defn (or (string-key-binding key)
498 (key-binding key)))
02dfca16 499 (key-desc (help-key-description key untranslated)))
d61ac4a6 500 (if (or (null defn) (integerp defn) (equal defn 'undefined))
788d62cf 501 (princ (format "%s is undefined" key-desc))
80d553d4
RS
502 (princ (format (if (windowp window)
503 "%s at that spot runs the command %s"
504 "%s runs the command %s")
788d62cf
MB
505 key-desc
506 (if (symbolp defn) defn (prin1-to-string defn)))))))))
96ede6b2 507
788d62cf 508
02dfca16 509(defun describe-key (key &optional untranslated)
a0d32c10
RS
510 "Display documentation of the function invoked by KEY.
511KEY should be a key sequence--when calling from a program,
02dfca16
SM
512pass a string or a vector.
513If non-nil UNTRANSLATED is a vector of the untranslated events.
514It can also be a number in which case the untranslated events from
515the last key hit are used."
516 (interactive "kDescribe key: \np")
517 (if (numberp untranslated)
518 (setq untranslated (this-single-command-raw-keys)))
788d62cf
MB
519 (save-excursion
520 (let ((modifiers (event-modifiers (aref key 0)))
521 window position)
522 ;; For a mouse button event, go to the button it applies to
523 ;; to get the right key bindings. And go to the right place
524 ;; in case the keymap depends on where you clicked.
525 (if (or (memq 'click modifiers) (memq 'down modifiers)
526 (memq 'drag modifiers))
527 (setq window (posn-window (event-start (aref key 0)))
528 position (posn-point (event-start (aref key 0)))))
94ea540b 529 (when (windowp window)
788d62cf 530 (set-buffer (window-buffer window))
94ea540b 531 (goto-char position))
788d62cf 532 (let ((defn (or (string-key-binding key) (key-binding key))))
d61ac4a6 533 (if (or (null defn) (integerp defn) (equal defn 'undefined))
02dfca16 534 (message "%s is undefined" (help-key-description key untranslated))
3e5929af
SM
535 (help-setup-xref (list #'describe-function defn) (interactive-p))
536 (with-output-to-temp-buffer (help-buffer)
02dfca16 537 (princ (help-key-description key untranslated))
788d62cf
MB
538 (if (windowp window)
539 (princ " at that spot"))
540 (princ " runs the command ")
541 (prin1 defn)
542 (princ "\n which is ")
3e5929af 543 (describe-function-1 defn)
788d62cf 544 (print-help-return-message)))))))
400a1b1f 545
400a1b1f 546\f
788d62cf
MB
547(defun describe-mode (&optional buffer)
548 "Display documentation of current major mode and minor modes.
549The major mode description comes first, followed by the minor modes,
550each on a separate page.
551For this to work correctly for a minor mode, the mode's indicator variable
552\(listed in `minor-mode-alist') must also be a function whose documentation
553describes the minor mode."
400a1b1f 554 (interactive)
9639be74
RS
555 (help-setup-xref (list #'describe-mode (or buffer (current-buffer)))
556 (interactive-p))
557 ;; For the sake of help-do-xref and help-xref-go-back,
558 ;; don't switch buffers before calling `help-buffer'.
3e5929af 559 (with-output-to-temp-buffer (help-buffer)
9639be74
RS
560 (save-excursion
561 (when buffer (set-buffer buffer))
562 (when minor-mode-alist
563 (princ "The major mode is described first.
788d62cf 564For minor modes, see following pages.\n\n"))
9639be74
RS
565 (princ mode-name)
566 (princ " mode:\n")
567 (princ (documentation major-mode))
568 (let ((minor-modes minor-mode-alist))
569 (while minor-modes
570 (let* ((minor-mode (car (car minor-modes)))
571 (indicator (car (cdr (car minor-modes)))))
572 ;; Document a minor mode if it is listed in minor-mode-alist,
573 ;; bound locally in this buffer, non-nil, and has a function
574 ;; definition.
575 (if (and (boundp minor-mode)
576 (symbol-value minor-mode)
577 (fboundp minor-mode))
578 (let ((pretty-minor-mode minor-mode))
579 (if (string-match "\\(-minor\\)?-mode\\'"
580 (symbol-name minor-mode))
581 (setq pretty-minor-mode
582 (capitalize
583 (substring (symbol-name minor-mode)
584 0 (match-beginning 0)))))
585 (while (and indicator (symbolp indicator)
586 (boundp indicator)
587 (not (eq indicator (symbol-value indicator))))
588 (setq indicator (symbol-value indicator)))
589 (princ "\n\f\n")
590 (princ (format "%s minor mode (%s):\n"
591 pretty-minor-mode
592 (if indicator
593 (format "indicator%s" indicator)
594 "no indicator")))
595 (princ (documentation minor-mode)))))
596 (setq minor-modes (cdr minor-modes))))
597 (print-help-return-message))))
400a1b1f 598
48ce3c22
RS
599\f
600;;; Automatic resizing of temporary buffers.
601
4483ddc5 602(defcustom temp-buffer-max-height (lambda (buffer) (/ (- (frame-height) 2) 2))
48ce3c22
RS
603 "*Maximum height of a window displaying a temporary buffer.
604This is the maximum height (in text lines) which `resize-temp-buffer-window'
605will give to a window displaying a temporary buffer.
606It can also be a function which will be called with the object corresponding
607to the buffer to be displayed as argument and should return an integer
608positive number."
609 :type '(choice integer function)
610 :group 'help
611 :version "20.4")
612
4e1ede6c
SM
613(define-minor-mode temp-buffer-resize-mode
614 "Toggle the mode which makes windows smaller for temporary buffers.
48ce3c22
RS
615With prefix argument ARG, turn the resizing of windows displaying temporary
616buffers on if ARG is positive or off otherwise.
4e1ede6c
SM
617This makes the window the right height for its contents, but never
618more than `temp-buffer-max-height' nor less than `window-min-height'.
619This applies to `help', `apropos' and `completion' buffers, and some others."
b0fbf754 620 :global t :group 'help
4e1ede6c 621 (if temp-buffer-resize-mode
57f43907 622 ;; `help-make-xrefs' may add a `back' button and thus increase the
4e1ede6c
SM
623 ;; text size, so `resize-temp-buffer-window' must be run *after* it.
624 (add-hook 'temp-buffer-show-hook 'resize-temp-buffer-window 'append)
8304a3bb 625 (remove-hook 'temp-buffer-show-hook 'resize-temp-buffer-window)))
48ce3c22
RS
626
627(defun resize-temp-buffer-window ()
628 "Resize the current window to fit its contents.
4483ddc5 629Will not make it higher than `temp-buffer-max-height' nor smaller than
b2c85790 630`window-min-height'. Do nothing if it is the only window on its frame, if it
48ce3c22
RS
631is not as wide as the frame or if some of the window's contents are scrolled
632out of view."
633 (unless (or (one-window-p 'nomini)
634 (not (pos-visible-in-window-p (point-min)))
635 (/= (frame-width) (window-width)))
d9c30bdf
MB
636 (fit-window-to-buffer
637 (selected-window)
638 (if (functionp temp-buffer-max-height)
639 (funcall temp-buffer-max-height (current-buffer))
640 temp-buffer-max-height))))
48ce3c22 641
5fbeea74
GM
642;; Provide this for the sake of define-minor-mode which generates
643;; defcustoms which require 'help'.
5fbeea74
GM
644(provide 'help)
645
1a06eabd 646;;; help.el ends here