1 ;;; help.el --- help commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2004
4 ;; Free Software Foundation, Inc.
7 ;; Keywords: help, internal
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; This code implements GNU Emacs' on-line help system, the one invoked by
29 ;; `M-x help-for-help'.
33 ;; Get the macro make-help-screen when this is compiled,
34 ;; or run interpreted, but not when the compiled code is loaded.
35 (eval-when-compile (require 'help-macro
))
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
)
41 (defvar help-map
(make-sparse-keymap)
42 "Keymap for characters following the Help key.")
44 (define-key global-map
(char-to-string help-char
) 'help-command
)
45 (define-key global-map
[help] 'help-command)
46 (define-key global-map [f1] 'help-command)
47 (fset 'help-command help-map)
49 (define-key help-map (char-to-string help-char) 'help-for-help)
50 (define-key help-map [help] 'help-for-help
)
51 (define-key help-map
[f1] 'help-for-help)
52 (define-key help-map "." 'display-local-help)
53 (define-key help-map "?" 'help-for-help)
55 (define-key help-map "\C-c" 'describe-copying)
56 (define-key help-map "\C-d" 'describe-distribution)
57 (define-key help-map "\C-e" 'view-emacs-problems)
58 (define-key help-map "\C-f" 'view-emacs-FAQ)
59 (define-key help-map "\C-m" 'view-order-manuals)
60 (define-key help-map "\C-n" 'view-emacs-news)
61 (define-key help-map "\C-p" 'describe-project)
62 (define-key help-map "\C-t" 'view-todo)
63 (define-key help-map "\C-w" 'describe-no-warranty)
65 ;; This does not fit the pattern, but it is natural given the C-\ command.
66 (define-key help-map "\C-\\" 'describe-input-method)
68 (define-key help-map "C" 'describe-coding-system)
69 (define-key help-map "F" 'Info-goto-emacs-command-node)
70 (define-key help-map "I" 'describe-input-method)
71 (define-key help-map "K" 'Info-goto-emacs-key-command-node)
72 (define-key help-map "L" 'describe-language-environment)
73 (define-key help-map "S" 'info-lookup-symbol)
75 (define-key help-map "a" 'apropos-command)
77 (define-key help-map "b" 'describe-bindings)
79 (define-key help-map "c" 'describe-key-briefly)
81 (define-key help-map "e" 'view-echo-area-messages)
83 (define-key help-map "f" 'describe-function)
85 (define-key help-map "h" 'view-hello-file)
87 (define-key help-map "i" 'info)
88 (define-key help-map "4i" 'info-other-window)
90 (define-key help-map "k" 'describe-key)
92 (define-key help-map "l" 'view-lossage)
94 (define-key help-map "m" 'describe-mode)
96 (define-key help-map "n" 'view-emacs-news)
98 (define-key help-map "p" 'finder-by-keyword)
99 (autoload 'finder-by-keyword "finder"
100 "Find packages matching a given keyword." t)
102 (define-key help-map "r" 'info-emacs-manual)
104 (define-key help-map "s" 'describe-syntax)
106 (define-key help-map "t" 'help-with-tutorial)
108 (define-key help-map "w" 'where-is)
110 (define-key help-map "v" 'describe-variable)
112 (define-key help-map "q" 'help-quit)
114 ;; insert-button makes the action nil if it is not store somewhere
115 (defvar help-button-cache nil)
119 "Just exit from the Help command's command loop."
123 (defvar help-return-method nil
124 "What to do to \"exit\" the help buffer.
126 (WINDOW . t) delete the selected window, go to WINDOW.
127 (WINDOW . quit-window) do quit-window, then select WINDOW.
128 (WINDOW BUF START POINT) display BUF at START, POINT, then select WINDOW.")
130 (defun print-help-return-message (&optional function)
131 "Display or return message saying how to restore windows after help command.
132 This function assumes that `standard-output' is the help buffer.
133 It computes a message, and applies the optional argument FUNCTION to it.
134 If FUNCTION is nil, it applies `message', thus displaying the message."
135 (and (not (get-buffer-window standard-output))
137 (cond ((special-display-p (buffer-name standard-output))
138 (setq help-return-method (cons (selected-window) t))
139 ;; If the help output buffer is a special display buffer,
140 ;; don't say anything about how to get rid of it.
141 ;; First of all, the user will do that with the window
142 ;; manager, not with Emacs.
143 ;; Secondly, the buffer has not been displayed yet,
144 ;; so we don't know whether its frame will be selected.
146 (display-buffer-reuse-frames
147 (setq help-return-method (cons (selected-window)
150 ((not (one-window-p t))
151 (setq help-return-method
152 (cons (selected-window) 'quit-window))
153 "Type \\[switch-to-buffer-other-window] RET to restore the other window.")
155 (setq help-return-method (cons (selected-window) t))
156 "Type \\[delete-other-windows] to remove help window.")
158 (setq help-return-method
159 (list (selected-window) (window-buffer)
160 (window-start) (window-point)))
161 "Type \\[switch-to-buffer] RET to remove help window."))))
162 (funcall (or function 'message)
165 (substitute-command-keys first-message))
166 (if first-message " ")
167 ;; If the help buffer will go in a separate frame,
168 ;; it's no use mentioning a command to scroll, so don't.
169 (if (special-display-p (buffer-name standard-output))
171 (if (same-window-p (buffer-name standard-output))
172 ;; Say how to scroll this window.
173 (substitute-command-keys
174 "\\[scroll-up] to scroll the help.")
175 ;; Say how to scroll some other window.
176 (substitute-command-keys
177 "\\[scroll-other-window] to scroll the help."))))))))
179 ;; So keyboard macro definitions are documented correctly
180 (fset 'defining-kbd-macro (symbol-function 'start-kbd-macro))
182 (defalias 'help 'help-for-help)
183 (make-help-screen help-for-help
184 "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 ? :"
185 "You have typed %THIS-KEY%, the help character. Type a Help option:
186 \(Use SPC or DEL to scroll through this text. Type \\<help-map>\\[help-quit] to exit the Help command.)
188 a command-apropos. Give a substring, and see a list of commands
189 (functions interactively callable) that contain
190 that substring. See also the apropos command.
191 b describe-bindings. Display table of all key bindings.
192 c describe-key-briefly. Type a command key sequence;
193 it prints the function name that sequence runs.
194 C describe-coding-system. This describes either a specific coding system
195 (if you type its name) or the coding systems currently in use
196 (if you type just RET).
197 e view-echo-area-messages. Show the `*Messages*' buffer.
198 f describe-function. Type a function name and get documentation of it.
199 F Info-goto-emacs-command-node. Type a function name;
200 it takes you to the Info node for that command.
201 h Display the HELLO file which illustrates various scripts.
202 i info. The info documentation reader.
203 I describe-input-method. Describe a specific input method (if you type
204 its name) or the current input method (if you type just RET).
205 k describe-key. Type a command key sequence;
206 it displays the full documentation.
207 K Info-goto-emacs-key-command-node. Type a command key sequence;
208 it takes you to the Info node for the command bound to that key.
209 l view-lossage. Show last 100 characters you typed.
210 L describe-language-environment. This describes either a
211 specific language environment (if you type its name)
212 or the current language environment (if you type just RET).
213 m describe-mode. Print documentation of current minor modes,
214 and the current major mode, including their special commands.
215 p finder-by-keyword. Find packages matching a given topic keyword.
216 s describe-syntax. Display contents of syntax table, plus explanations.
217 S info-lookup-symbol. Display the definition of a specific symbol
218 as found in the manual for the language this buffer is written in.
219 t help-with-tutorial. Select the Emacs learn-by-doing tutorial.
220 v describe-variable. Type name of a variable;
221 it displays the variable's documentation and value.
222 w where-is. Type command name; it prints which keystrokes
224 . display-local-help. Display any available local help at point
227 C-c Display Emacs copying permission (GNU General Public License).
228 C-d Display Emacs ordering information.
229 C-e Display info about Emacs problems.
230 C-f Display the Emacs FAQ.
231 C-m Display how to order printed Emacs manuals.
232 C-n Display news of recent Emacs changes.
233 C-p Display information about the GNU project.
234 C-t Display the Emacs TODO list.
235 C-w Display information on absence of warranty for GNU Emacs."
240 (defun function-called-at-point ()
241 "Return a function around point or else called by the list containing point.
242 If that doesn't give a function, return nil."
243 (or (with-syntax-table emacs-lisp-mode-syntax-table
244 (or (condition-case ()
246 (or (not (zerop (skip-syntax-backward "_w")))
247 (eq (char-syntax (following-char)) ?w)
248 (eq (char-syntax (following-char)) ?_)
250 (skip-chars-forward "'")
251 (let ((obj (read (current-buffer))))
252 (and (symbolp obj) (fboundp obj) obj)))
257 (narrow-to-region (max (point-min)
258 (- (point) 1000)) (point-max))
259 ;; Move up to surrounding paren, then after the open.
262 ;; If there is space here, this is probably something
263 ;; other than a real Lisp function call, so ignore it.
264 (if (looking-at "[ \t]")
265 (error "Probably not a Lisp function call"))
266 (let ((obj (read (current-buffer))))
267 (and (symbolp obj) (fboundp obj) obj))))
269 (let* ((str (find-tag-default))
270 (sym (if str (intern-soft str))))
271 (if (and sym (fboundp sym))
274 (when (and str (string-match "\\`\\W*\\(.*?\\)\\W*\\'" str))
275 (setq sym (intern-soft (match-string 1 str)))
276 (and (fboundp sym) sym)))))))
279 ;;; `User' help functions
281 (defun describe-distribution ()
282 "Display info on how to obtain the latest version of GNU Emacs."
284 (view-file (expand-file-name "DISTRIB" data-directory)))
286 (defun describe-copying ()
287 "Display info on how you may redistribute copies of GNU Emacs."
289 (view-file (expand-file-name "COPYING" data-directory))
290 (goto-char (point-min)))
292 (defun describe-project ()
293 "Display info on the GNU project."
295 (view-file (expand-file-name "THE-GNU-PROJECT" data-directory))
296 (goto-char (point-min)))
298 (defun describe-no-warranty ()
299 "Display info on all the kinds of warranty Emacs does NOT have."
302 (let (case-fold-search)
303 (search-forward "NO WARRANTY")
306 (defun describe-prefix-bindings ()
307 "Describe the bindings of the prefix used to reach this command.
308 The prefix described consists of all but the last event
309 of the key sequence that ran this command."
311 (let* ((key (this-command-keys)))
314 (substring key 0 (1- (length key)))
315 (let ((prefix (make-vector (1- (length key)) nil))
317 (while (< i (length prefix))
318 (aset prefix i (aref key i))
321 ;; Make C-h after a prefix, when not specifically bound,
322 ;; run describe-prefix-bindings.
323 (setq prefix-help-command 'describe-prefix-bindings)
325 (defun view-emacs-news (&optional arg)
326 "Display info on recent changes to Emacs.
327 With argument, display info only for the selected version."
330 (view-file (expand-file-name "NEWS" data-directory))
338 (insert-file-contents
339 (expand-file-name file data-directory))
341 (while (re-search-forward
342 (if (string-match "^ONEWS\\.[0-9]+$" file)
343 "Changes in \\(?:Emacs\\|version\\)?[ \t]*\\([0-9]+\\(?:\\.[0-9]+\\)?\\)"
344 "^\* [^0-9\n]*\\([0-9]+\\.[0-9]+\\)") nil t)
345 (setq res (cons (list (match-string-no-properties 1)
348 (append '("NEWS" "ONEWS")
349 (directory-files data-directory nil
350 "^ONEWS\\.[0-9]+$" nil)))))
352 (string< (car b) (car a)))))
354 (version (completing-read
355 (format "Read NEWS for the version (default %s): " current)
356 (mapcar 'car map) nil nil nil nil current))
357 (file (cadr (assoc version map)))
360 (error "No news is good news")
361 (view-file (expand-file-name file data-directory))
363 (goto-char (point-min))
364 (when (re-search-forward
365 (concat (if (string-match "^ONEWS\\.[0-9]+$" file)
366 "Changes in \\(?:Emacs\\|version\\)?[ \t]*"
367 "^\* [^0-9\n]*") version)
373 (while (and (setq res
375 (if (string-match "^ONEWS\\.[0-9]+$" file)
376 "Changes in \\(?:Emacs\\|version\\)?[ \t]*\\([0-9]+\\(?:\\.[0-9]+\\)?\\)"
377 "^\* [^0-9\n]*\\([0-9]+\\.[0-9]+\\)") nil t))
378 (equal (match-string-no-properties 1) version)))
379 (or res (goto-char (point-max)))
383 (defun view-todo (&optional arg)
384 "Display the Emacs TODO list."
386 (view-file (expand-file-name "TODO" data-directory)))
388 (defun view-echo-area-messages ()
389 "View the log of recent echo-area messages: the `*Messages*' buffer.
390 The number of messages retained in that buffer
391 is specified by the variable `message-log-max'."
393 (switch-to-buffer (get-buffer-create "*Messages*")))
395 (defun view-order-manuals ()
396 "Display the Emacs ORDERS file."
398 (view-file (expand-file-name "ORDERS" data-directory))
401 (defun view-emacs-FAQ ()
402 "Display the Emacs Frequently Asked Questions (FAQ) file."
404 ;; (find-file-read-only (expand-file-name "FAQ" data-directory))
407 (defun view-emacs-problems ()
408 "Display info on known problems with Emacs and possible workarounds."
410 (view-file (expand-file-name "PROBLEMS" data-directory)))
412 (defun view-lossage ()
413 "Display last 100 input keystrokes.
415 To record all your input on a file, use `open-dribble-file'."
417 (help-setup-xref (list #'view-lossage) (interactive-p))
418 (with-output-to-temp-buffer (help-buffer)
419 (princ (mapconcat (lambda (key)
420 (if (or (integerp key) (symbolp key) (listp key))
421 (single-key-description key)
422 (prin1-to-string key nil)))
425 (with-current-buffer standard-output
426 (goto-char (point-min))
427 (while (progn (move-to-column 50) (not (eobp)))
428 (search-forward " " nil t)
430 (print-help-return-message)))
435 (defun describe-bindings (&optional prefix buffer)
436 "Show a list of all defined keys, and their definitions.
437 We put that list in a buffer, and display the buffer.
439 The optional argument PREFIX, if non-nil, should be a key sequence;
440 then we display only bindings that start with that prefix.
441 The optional argument BUFFER specifies which buffer's bindings
442 to display (default, the current buffer). BUFFER can be a buffer
445 (or buffer (setq buffer (current-buffer)))
446 (help-setup-xref (list #'describe-bindings prefix buffer) (interactive-p))
447 (with-current-buffer buffer
448 (describe-bindings-internal nil prefix)))
450 ;; This function used to be in keymap.c.
451 (defun describe-bindings-internal (&optional menus prefix)
452 "Show a list of all defined keys, and their definitions.
453 We put that list in a buffer, and display the buffer.
455 The optional argument MENUS, if non-nil, says to mention menu bindings.
456 \(Ordinarily these are omitted from the output.)
457 The optional argument PREFIX, if non-nil, should be a key sequence;
458 then we display only bindings that start with that prefix."
460 (let ((buf (current-buffer)))
461 (with-output-to-temp-buffer "*Help*"
462 (with-current-buffer standard-output
463 (describe-buffer-bindings buf prefix menus)))))
465 (defun where-is (definition &optional insert)
466 "Print message listing key sequences that invoke the command DEFINITION.
467 Argument is a command definition, usually a symbol with a function definition.
468 If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
470 (let ((fn (function-called-at-point))
471 (enable-recursive-minibuffers t)
473 (setq val (completing-read
475 (format "Where is command (default %s): " fn)
476 "Where is command: ")
477 obarray 'commandp t))
478 (list (if (equal val "") fn (intern val)) current-prefix-arg)))
479 (let ((func (indirect-function definition))
481 (standard-output (if insert (current-buffer) t)))
482 (mapatoms (lambda (symbol)
483 (and (fboundp symbol)
484 (not (eq symbol definition))
485 (eq func (condition-case ()
486 (indirect-function symbol)
488 (push symbol defs))))
491 (let* ((remapped (command-remapping symbol))
492 (keys (where-is-internal
493 symbol overriding-local-map nil nil remapped))
494 (keys (mapconcat 'key-description keys ", ")))
496 (if (> (length keys) 0)
498 (format "%s (%s) (remapped from %s)"
499 keys remapped symbol)
500 (format "%s (%s)" keys symbol))
501 (format "M-x %s RET" symbol))
502 (if (> (length keys) 0)
504 (format "%s is remapped to %s which is on %s"
505 definition symbol keys)
506 (format "%s is on %s" symbol keys))
507 (format "%s is not on any key" symbol)))))
508 (cons definition defs)
512 (defun string-key-binding (key)
513 "Value is the binding of KEY in a string.
514 If KEY is an event on a string, and that string has a `local-map'
515 or `keymap' property, return the binding of KEY in the string's keymap."
517 (start (when (vectorp key)
518 (if (memq (aref key 0)
519 '(mode-line header-line left-margin right-margin))
520 (event-start (aref key 1))
521 (and (consp (aref key 0))
522 (event-start (aref key 0))))))
523 (string-info (and (consp start) (nth 4 start))))
525 (let* ((string (car string-info))
526 (pos (cdr string-info))
527 (local-map (and (>= pos 0)
528 (< pos (length string))
529 (or (get-text-property pos 'local-map string)
530 (get-text-property pos 'keymap string)))))
531 (setq defn (and local-map (lookup-key local-map key)))))
534 (defun help-key-description (key untranslated)
535 (let ((string (key-description key)))
536 (if (or (not untranslated)
537 (and (eq (aref untranslated 0) ?\e) (not (eq (aref key 0) ?\e))))
539 (let ((otherstring (key-description untranslated)))
540 (if (equal string otherstring)
542 (format "%s (translated from %s)" string otherstring))))))
544 (defun describe-key-briefly (key &optional insert untranslated)
545 "Print the name of the function KEY invokes. KEY is a string.
546 If INSERT (the prefix arg) is non-nil, insert the message in the buffer.
547 If non-nil UNTRANSLATED is a vector of the untranslated events.
548 It can also be a number in which case the untranslated events from
549 the last key hit are used."
550 (interactive "kDescribe key briefly: \nP\np")
551 (if (numberp untranslated)
552 (setq untranslated (this-single-command-raw-keys)))
554 (let ((modifiers (event-modifiers (aref key 0)))
555 (standard-output (if insert (current-buffer) t))
557 ;; For a mouse button event, go to the button it applies to
558 ;; to get the right key bindings. And go to the right place
559 ;; in case the keymap depends on where you clicked.
560 (if (or (memq 'click modifiers) (memq 'down modifiers)
561 (memq 'drag modifiers))
562 (setq window (posn-window (event-start (aref key 0)))
563 position (posn-point (event-start (aref key 0)))))
566 (set-buffer (window-buffer window))
567 (goto-char position)))
568 ;; Ok, now look up the key and name the command.
569 (let ((defn (or (string-key-binding key)
571 (key-desc (help-key-description key untranslated)))
572 (if (or (null defn) (integerp defn) (equal defn 'undefined))
573 (princ (format "%s is undefined" key-desc))
574 (princ (format (if (windowp window)
575 "%s at that spot runs the command %s"
576 "%s runs the command %s")
578 (if (symbolp defn) defn (prin1-to-string defn)))))))))
581 (defun describe-key (key &optional untranslated up-event)
582 "Display documentation of the function invoked by KEY.
583 KEY should be a key sequence--when calling from a program,
584 pass a string or a vector.
585 If non-nil UNTRANSLATED is a vector of the untranslated events.
586 It can also be a number in which case the untranslated events from
587 the last key hit are used."
588 (interactive "kDescribe key: \np\nU")
589 (if (numberp untranslated)
590 (setq untranslated (this-single-command-raw-keys)))
592 (let ((modifiers (event-modifiers (aref key 0)))
594 ;; For a mouse button event, go to the button it applies to
595 ;; to get the right key bindings. And go to the right place
596 ;; in case the keymap depends on where you clicked.
597 (if (or (memq 'click modifiers) (memq 'down modifiers)
598 (memq 'drag modifiers))
599 (setq window (posn-window (event-start (aref key 0)))
600 position (posn-point (event-start (aref key 0)))))
601 (when (windowp window)
602 (set-buffer (window-buffer window))
603 (goto-char position))
604 (let ((defn (or (string-key-binding key) (key-binding key))))
605 (if (or (null defn) (integerp defn) (equal defn 'undefined))
606 (message "%s is undefined" (help-key-description key untranslated))
607 (help-setup-xref (list #'describe-function defn) (interactive-p))
608 (with-output-to-temp-buffer (help-buffer)
609 (princ (help-key-description key untranslated))
611 (princ " at that spot"))
612 (princ " runs the command ")
614 (princ "\n which is ")
615 (describe-function-1 defn)
617 (let ((ev (aref up-event 0))
618 (descr (key-description up-event))
619 (hdr "\n\n-------------- up event ---------------\n\n")
621 mouse-1-tricky mouse-1-remapped)
622 (when (and (consp ev)
623 (eq (car ev) 'mouse-1)
625 mouse-1-click-follows-link
626 (not (eq mouse-1-click-follows-link 'double))
627 (with-current-buffer (window-buffer window)
628 (mouse-on-link-p (posn-point (event-start ev)))))
629 (setq mouse-1-tricky (integerp mouse-1-click-follows-link)
630 mouse-1-remapped (or (not mouse-1-tricky)
631 (> mouse-1-click-follows-link 0)))
633 (setcar ev 'mouse-2)))
634 (setq defn (or (string-key-binding up-event) (key-binding up-event)))
635 (unless (or (null defn) (integerp defn) (equal defn 'undefined))
636 (princ (if mouse-1-tricky
637 "\n\n----------------- up-event (short click) ----------------\n\n"
642 (princ " at that spot"))
644 (princ " is remapped to <mouse-2>\n which" ))
645 (princ " runs the command ")
647 (princ "\n which is ")
648 (describe-function-1 defn))
651 (if (> mouse-1-click-follows-link 0) 'mouse-1 'mouse-2))
652 (setq defn (or (string-key-binding up-event) (key-binding up-event)))
653 (unless (or (null defn) (integerp defn) (equal defn 'undefined))
655 "\n\n----------------- up-event (long click) ----------------\n\n"))
659 (princ " at that spot"))
660 (princ (format " for longer than %d milli-seconds\n"
661 (abs mouse-1-click-follows-link)))
662 (if (not mouse-1-remapped)
663 (princ " remaps it to <mouse-2> which" ))
664 (princ " runs the command ")
666 (princ "\n which is ")
667 (describe-function-1 defn))))
668 (print-help-return-message))))))))
671 (defun describe-mode (&optional buffer)
672 "Display documentation of current major mode and minor modes.
673 A brief summary of the minor modes comes first, followed by the
674 major mode description. This is followed by detailed
675 descriptions of the minor modes, each on a separate page.
677 For this to work correctly for a minor mode, the mode's indicator
678 variable \(listed in `minor-mode-alist') must also be a function
679 whose documentation describes the minor mode."
681 (help-setup-xref (list #'describe-mode (or buffer (current-buffer)))
683 ;; For the sake of help-do-xref and help-xref-go-back,
684 ;; don't switch buffers before calling `help-buffer'.
685 (with-output-to-temp-buffer (help-buffer)
687 (when buffer (set-buffer buffer))
689 ;; Find enabled minor mode we will want to mention.
690 (dolist (mode minor-mode-list)
691 ;; Document a minor mode if it is listed in minor-mode-alist,
692 ;; non-nil, and has a function definition.
693 (and (boundp mode) (symbol-value mode)
695 (let ((pretty-minor-mode mode)
697 (if (string-match "\\(-minor\\)?-mode\\'"
699 (setq pretty-minor-mode
701 (substring (symbol-name mode)
702 0 (match-beginning 0)))))
703 (setq indicator (cadr (assq mode minor-mode-alist)))
704 (while (and indicator (symbolp indicator)
706 (not (eq indicator (symbol-value indicator))))
707 (setq indicator (symbol-value indicator)))
708 (push (list pretty-minor-mode mode indicator)
710 (if auto-fill-function
711 ;; copy pure string so we can add face property to it below.
712 (push (list (copy-sequence "Auto Fill") 'auto-fill-mode " Fill")
716 (lambda (a b) (string-lessp (car a) (car b)))))
718 (princ "Summary of minor modes:\n")
719 (make-local-variable 'help-button-cache)
720 (with-current-buffer standard-output
721 (dolist (mode minor-modes)
722 (let ((pretty-minor-mode (nth 0 mode))
723 (mode-function (nth 1 mode))
724 (indicator (nth 2 mode)))
725 (add-text-properties 0 (length pretty-minor-mode)
726 '(face bold) pretty-minor-mode)
728 (goto-char (point-max))
730 (push (point-marker) help-button-cache)
731 ;; Document the minor modes fully.
732 (insert pretty-minor-mode)
733 (princ (format " minor mode (%s):\n"
735 (format "indicator%s" indicator)
737 (princ (documentation mode-function)))
739 (insert-button pretty-minor-mode
740 'action (car help-button-cache)
742 'help-echo "mouse-2, RET: show full information")
743 (princ (format " minor mode (%s):\n"
745 (format "indicator%s" indicator)
747 (princ "\n(Full information about these minor modes
748 follows the description of the major mode.)\n\n"))
749 ;; Document the major mode.
750 (let ((mode mode-name))
751 (with-current-buffer standard-output
753 (add-text-properties (- (point) (length mode)) (point) '(face bold))))
755 (princ (documentation major-mode)))
756 (print-help-return-message))))
759 (defun describe-minor-mode (minor-mode)
760 "Display documentation of a minor mode given as MINOR-MODE.
761 MINOR-MODE can be a minor mode symbol or a minor mode indicator string
762 appeared on the mode-line."
763 (interactive (list (completing-read
766 (describe-minor-mode-completion-table-for-symbol)
767 (describe-minor-mode-completion-table-for-indicator)
769 (if (symbolp minor-mode)
770 (setq minor-mode (symbol-name minor-mode)))
771 (let ((symbols (describe-minor-mode-completion-table-for-symbol))
772 (indicators (describe-minor-mode-completion-table-for-indicator)))
774 ((member minor-mode symbols)
775 (describe-minor-mode-from-symbol (intern minor-mode)))
776 ((member minor-mode indicators)
777 (describe-minor-mode-from-indicator minor-mode))
779 (error "No such minor mode: %s" minor-mode)))))
782 (defun describe-minor-mode-completion-table-for-symbol ()
783 ;; In order to list up all minor modes, minor-mode-list
784 ;; is used here instead of minor-mode-alist.
785 (delq nil (mapcar 'symbol-name minor-mode-list)))
786 (defun describe-minor-mode-from-symbol (symbol)
787 "Display documentation of a minor mode given as a symbol, SYMBOL"
788 (interactive (list (intern (completing-read
789 "Minor mode symbol: "
790 (describe-minor-mode-completion-table-for-symbol)))))
792 (describe-function symbol)
793 (describe-variable symbol)))
796 (defun describe-minor-mode-completion-table-for-indicator ()
799 (let ((i (format-mode-line x)))
800 ;; remove first space if existed
809 (defun describe-minor-mode-from-indicator (indicator)
810 "Display documentation of a minor mode specified by INDICATOR.
811 If you call this function interactively, you can give indicator which
812 is currently activated with completion."
815 "Minor mode indicator: "
816 (describe-minor-mode-completion-table-for-indicator))))
817 (let ((minor-mode (lookup-minor-mode-from-indicator indicator)))
819 (describe-minor-mode-from-symbol minor-mode)
820 (error "Cannot find minor mode for `%s'" indicator))))
822 (defun lookup-minor-mode-from-indicator (indicator)
823 "Return a minor mode symbol from its indicator on the modeline."
824 ;; remove first space if existed
825 (if (and (< 0 (length indicator))
826 (eq (aref indicator 0) ?\ ))
827 (setq indicator (substring indicator 1)))
828 (let ((minor-modes minor-mode-alist)
831 (let* ((minor-mode (car (car minor-modes)))
832 (anindicator (format-mode-line
833 (car (cdr (car minor-modes))))))
834 ;; remove first space if existed
835 (if (and (stringp anindicator)
836 (> (length anindicator) 0)
837 (eq (aref anindicator 0) ?\ ))
838 (setq anindicator (substring anindicator 1)))
839 (if (equal indicator anindicator)
840 (setq result minor-mode
842 (setq minor-modes (cdr minor-modes)))))
846 ;;; Automatic resizing of temporary buffers.
848 (defcustom temp-buffer-max-height (lambda (buffer) (/ (- (frame-height) 2) 2))
849 "*Maximum height of a window displaying a temporary buffer.
850 This is the maximum height (in text lines) which `resize-temp-buffer-window'
851 will give to a window displaying a temporary buffer.
852 It can also be a function which will be called with the object corresponding
853 to the buffer to be displayed as argument and should return an integer
855 :type '(choice integer function)
859 (define-minor-mode temp-buffer-resize-mode
860 "Toggle the mode which makes windows smaller for temporary buffers.
861 With prefix argument ARG, turn the resizing of windows displaying temporary
862 buffers on if ARG is positive or off otherwise.
863 This makes the window the right height for its contents, but never
864 more than `temp-buffer-max-height' nor less than `window-min-height'.
865 This applies to `help', `apropos' and `completion' buffers, and some others."
866 :global t :group 'help
867 (if temp-buffer-resize-mode
868 ;; `help-make-xrefs' may add a `back' button and thus increase the
869 ;; text size, so `resize-temp-buffer-window' must be run *after* it.
870 (add-hook 'temp-buffer-show-hook 'resize-temp-buffer-window 'append)
871 (remove-hook 'temp-buffer-show-hook 'resize-temp-buffer-window)))
873 (defun resize-temp-buffer-window ()
874 "Resize the current window to fit its contents.
875 Will not make it higher than `temp-buffer-max-height' nor smaller than
876 `window-min-height'. Do nothing if it is the only window on its frame, if it
877 is not as wide as the frame or if some of the window's contents are scrolled
879 (unless (or (one-window-p 'nomini)
880 (not (pos-visible-in-window-p (point-min)))
881 (/= (frame-width) (window-width)))
882 (fit-window-to-buffer
884 (if (functionp temp-buffer-max-height)
885 (funcall temp-buffer-max-height (current-buffer))
886 temp-buffer-max-height))))
888 ;; Provide this for the sake of define-minor-mode which generates
889 ;; defcustoms which require 'help'.
892 ;;; arch-tag: cf427352-27e9-49b7-9a6f-741ebab02423
893 ;;; help.el ends here