* dispnew.c (init_display): Get display name from environment
[bpt/emacs.git] / lisp / help.el
CommitLineData
1a06eabd
ER
1;;; help.el --- help commands for Emacs
2
3a801d0c
ER
3;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
4
e5167999 5;; Maintainer: FSF
fd7fa35a 6;; Keywords: help, internal
e5167999 7
433ae6f6
RS
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
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
433ae6f6
RS
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
21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
d9ecc911
ER
24;;; Commentary:
25
26;; This code implements GNU Emac's on-line help system, the one invoked by
27;;`M-x help-for-help'.
28
e5167999
ER
29;;; Code:
30
8aa3a187
RS
31;; Get the macro make-help-screen when this is compiled,
32;; or run interpreted, but not when the compiled code is loaded.
33(eval-when-compile (require 'help-screen))
41b8542b 34
433ae6f6
RS
35(defvar help-map (make-sparse-keymap)
36 "Keymap for characters following the Help key.")
37
e17d2fd1 38(define-key global-map (char-to-string help-char) 'help-command)
433ae6f6
RS
39(fset 'help-command help-map)
40
e17d2fd1 41(define-key help-map (char-to-string help-char) 'help-for-help)
433ae6f6
RS
42(define-key help-map "?" 'help-for-help)
43
44(define-key help-map "\C-c" 'describe-copying)
45(define-key help-map "\C-d" 'describe-distribution)
46(define-key help-map "\C-w" 'describe-no-warranty)
47(define-key help-map "a" 'command-apropos)
48
49(define-key help-map "b" 'describe-bindings)
50
51(define-key help-map "c" 'describe-key-briefly)
52(define-key help-map "k" 'describe-key)
53
54(define-key help-map "d" 'describe-function)
55(define-key help-map "f" 'describe-function)
56
57(define-key help-map "i" 'info)
e5d77022
JB
58(define-key help-map "\C-f" 'Info-goto-emacs-command-node)
59(define-key help-map "\C-k" 'Info-goto-emacs-key-command-node)
433ae6f6
RS
60
61(define-key help-map "l" 'view-lossage)
62
63(define-key help-map "m" 'describe-mode)
64
65(define-key help-map "\C-n" 'view-emacs-news)
66(define-key help-map "n" 'view-emacs-news)
67
06b98c51
ER
68(define-key help-map "p" 'finder-by-keyword)
69(autoload 'finder-by-keyword "finder.el")
70
433ae6f6
RS
71(define-key help-map "s" 'describe-syntax)
72
73(define-key help-map "t" 'help-with-tutorial)
74
75(define-key help-map "w" 'where-is)
76
77(define-key help-map "v" 'describe-variable)
78
79(defun help-with-tutorial ()
80 "Select the Emacs learn-by-doing tutorial."
81 (interactive)
82 (let ((file (expand-file-name "~/TUTORIAL")))
83 (delete-other-windows)
84 (if (get-file-buffer file)
85 (switch-to-buffer (get-file-buffer file))
86 (switch-to-buffer (create-file-buffer file))
87 (setq buffer-file-name file)
88 (setq default-directory (expand-file-name "~/"))
79058860 89 (setq buffer-auto-save-file-name nil)
1e6dacf6 90 (insert-file-contents (expand-file-name "TUTORIAL" data-directory))
433ae6f6
RS
91 (goto-char (point-min))
92 (search-forward "\n<<")
93 (beginning-of-line)
94 (delete-region (point) (progn (end-of-line) (point)))
95 (newline (- (window-height (selected-window))
96 (count-lines (point-min) (point))
97 6))
98 (goto-char (point-min))
99 (set-buffer-modified-p nil))))
100
101(defun describe-key-briefly (key)
102 "Print the name of the function KEY invokes. KEY is a string."
103 (interactive "kDescribe key briefly: ")
104 (let ((defn (key-binding key)))
105 (if (or (null defn) (integerp defn))
106 (message "%s is undefined" (key-description key))
107 (message "%s runs the command %s"
108 (key-description key)
109 (if (symbolp defn) defn (prin1-to-string defn))))))
110
111(defun print-help-return-message (&optional function)
112 "Display or return message saying how to restore windows after help command.
113Computes a message and applies the optional argument FUNCTION to it.
114If FUNCTION is nil, applies `message' to it, thus printing it."
115 (and (not (get-buffer-window standard-output))
116 (funcall (or function 'message)
117 (concat
118 (substitute-command-keys
119 (if (one-window-p t)
120 (if pop-up-windows
121 "Type \\[delete-other-windows] to remove help window."
122 "Type \\[switch-to-buffer] RET to remove help window.")
123 "Type \\[switch-to-buffer-other-window] RET to restore the other window."))
124 (substitute-command-keys
125 " \\[scroll-other-window] to scroll the help.")))))
126
127(defun describe-key (key)
128 "Display documentation of the function invoked by KEY. KEY is a string."
129 (interactive "kDescribe key: ")
130 (let ((defn (key-binding key)))
131 (if (or (null defn) (integerp defn))
132 (message "%s is undefined" (key-description key))
133 (with-output-to-temp-buffer "*Help*"
134 (prin1 defn)
135 (princ ":\n")
136 (if (documentation defn)
137 (princ (documentation defn))
138 (princ "not documented"))
139 (print-help-return-message)))))
140
141(defun describe-mode (&optional minor)
142 "Display documentation of current major mode.
143If optional MINOR is non-nil (or prefix argument is given if interactive),
144display documentation of active minor modes as well.
145For this to work correctly for a minor mode, the mode's indicator variable
146(listed in `minor-mode-alist') must also be a function whose documentation
147describes the minor mode."
148 (interactive)
149 (with-output-to-temp-buffer "*Help*"
150 (princ mode-name)
151 (princ " Mode:\n")
152 (princ (documentation major-mode))
153 (let ((minor-modes minor-mode-alist)
154 (locals (buffer-local-variables)))
155 (while minor-modes
156 (let* ((minor-mode (car (car minor-modes)))
157 (indicator (car (cdr (car minor-modes))))
158 (local-binding (assq minor-mode locals)))
159 ;; Document a minor mode if it is listed in minor-mode-alist,
160 ;; bound locally in this buffer, non-nil, and has a function
161 ;; definition.
162 (if (and local-binding
163 (cdr local-binding)
164 (fboundp minor-mode))
165 (progn
166 (princ (format "\n\n\n%s minor mode (indicator%s):\n"
167 minor-mode indicator))
168 (princ (documentation minor-mode)))))
169 (setq minor-modes (cdr minor-modes))))
170 (print-help-return-message)))
171
172;; So keyboard macro definitions are documented correctly
173(fset 'defining-kbd-macro (symbol-function 'start-kbd-macro))
174
175(defun describe-distribution ()
176 "Display info on how to obtain the latest version of GNU Emacs."
177 (interactive)
178 (find-file-read-only
1e6dacf6 179 (expand-file-name "DISTRIB" data-directory)))
433ae6f6
RS
180
181(defun describe-copying ()
182 "Display info on how you may redistribute copies of GNU Emacs."
183 (interactive)
184 (find-file-read-only
1e6dacf6 185 (expand-file-name "COPYING" data-directory))
433ae6f6
RS
186 (goto-char (point-min)))
187
188(defun describe-no-warranty ()
189 "Display info on all the kinds of warranty Emacs does NOT have."
190 (interactive)
191 (describe-copying)
192 (let (case-fold-search)
193 (search-forward "NO WARRANTY")
194 (recenter 0)))
195
196(defun view-emacs-news ()
197 "Display info on recent changes to Emacs."
198 (interactive)
1e6dacf6 199 (find-file-read-only (expand-file-name "NEWS" data-directory)))
433ae6f6
RS
200
201(defun view-lossage ()
202 "Display last 100 input keystrokes."
203 (interactive)
204 (with-output-to-temp-buffer "*Help*"
205 (princ (key-description (recent-keys)))
206 (save-excursion
207 (set-buffer standard-output)
208 (goto-char (point-min))
209 (while (progn (move-to-column 50) (not (eobp)))
210 (search-forward " " nil t)
211 (insert "\n")))
212 (print-help-return-message)))
213
41b8542b
ER
214(make-help-screen help-for-help
215 "A B C F I K L M N P S T V W C-c C-d C-n C-w. Type \\[help-for-help] again for more help: "
c3aef019 216 "You have typed \\[help-for-help], the help character. Type a Help option:
433ae6f6
RS
217
218A command-apropos. Give a substring, and see a list of commands
219 (functions interactively callable) that contain
220 that substring. See also the apropos command.
221B describe-bindings. Display table of all key bindings.
222C describe-key-briefly. Type a command key sequence;
223 it prints the function name that sequence runs.
224F describe-function. Type a function name and get documentation of it.
225I info. The info documentation reader.
226K describe-key. Type a command key sequence;
227 it displays the full documentation.
228L view-lossage. Shows last 100 characters you typed.
229M describe-mode. Print documentation of current major mode,
230 which describes the commands peculiar to it.
231N view-emacs-news. Shows emacs news file.
06b98c51 232P finder-by-keyword. Find packages matching a given topic keyword.
433ae6f6
RS
233S describe-syntax. Display contents of syntax table, plus explanations
234T help-with-tutorial. Select the Emacs learn-by-doing tutorial.
235V describe-variable. Type name of a variable;
236 it displays the variable's documentation and value.
237W where-is. Type command name; it prints which keystrokes
238 invoke that command.
239C-c print Emacs copying permission (General Public License).
240C-d print Emacs ordering information.
241C-n print news of recent Emacs changes.
242C-w print information on absence of warranty for GNU Emacs."
41b8542b 243 help-map)
433ae6f6
RS
244
245;; Return a function which is called by the list containing point.
246;; If that gives no function, return a function whose name is around point.
247;; If that doesn't give a function, return nil.
248(defun function-called-at-point ()
249 (or (condition-case ()
250 (save-excursion
251 (save-restriction
252 (narrow-to-region (max (point-min) (- (point) 1000)) (point-max))
253 (backward-up-list 1)
254 (forward-char 1)
255 (let (obj)
256 (setq obj (read (current-buffer)))
257 (and (symbolp obj) (fboundp obj) obj))))
258 (error nil))
259 (condition-case ()
260 (save-excursion
261 (forward-sexp -1)
262 (skip-chars-forward "'")
263 (let ((obj (read (current-buffer))))
264 (and (symbolp obj) (fboundp obj) obj)))
265 (error nil))))
266
267(defun describe-function (function)
268 "Display the full documentation of FUNCTION (a symbol)."
269 (interactive
270 (let ((fn (function-called-at-point))
271 (enable-recursive-minibuffers t)
272 val)
273 (setq val (completing-read (if fn
274 (format "Describe function (default %s): " fn)
275 "Describe function: ")
276 obarray 'fboundp t))
277 (list (if (equal val "")
278 fn (intern val)))))
279 (with-output-to-temp-buffer "*Help*"
280 (prin1 function)
281 (princ ": ")
282 (let* ((def (symbol-function function))
283 (beg (if (commandp def) "an interactive " "a ")))
284 (princ (cond ((stringp def) "a keyboard macro.")
285 ((subrp def)
286 (concat beg "built-in function."))
dbc4e1c1 287 ((byte-code-function-p def)
433ae6f6
RS
288 (concat beg "compiled Lisp function."))
289 ((symbolp def)
290 (format "alias for `%s'." def))
291 ((eq (car-safe def) 'lambda)
292 (concat beg "Lisp function."))
293 ((eq (car-safe def) 'macro)
294 "a Lisp macro.")
295 ((eq (car-safe def) 'mocklisp)
296 "a mocklisp function.")
297 ((eq (car-safe def) 'autoload)
762435dd
RS
298 (format "%s autoloaded Lisp %s."
299 (if (commandp def) "an interactive" "an")
433ae6f6 300 (if (nth 4 def) "macro" "function")
ab67260b
RS
301;;; Including the file name made this line too long.
302;;; (nth 1 def)
303 ))
433ae6f6 304 (t "")))
4591cb90
RS
305 (terpri)
306 (if (documentation function)
307 (princ (documentation function))
308 (princ "not documented"))
309 (cond ((byte-code-function-p def)
310 (save-excursion
311 (set-buffer standard-output)
312 (or (eq (char-after (1- (point-max))) ?\n)
313 (terpri)))
314 (terpri)
315 (princ (car (append def nil))))
316 ((eq (car-safe def) 'lambda)
317 (save-excursion
318 (set-buffer standard-output)
319 (or (eq (char-after (1- (point-max))) ?\n)
320 (terpri)))
321 (terpri)
322 (princ (nth 1 def)))))
433ae6f6
RS
323 (print-help-return-message)
324 ;; Return the text we displayed.
325 (save-excursion (set-buffer standard-output) (buffer-string))))
326
327(defun variable-at-point ()
328 (condition-case ()
329 (save-excursion
330 (forward-sexp -1)
331 (skip-chars-forward "'")
332 (let ((obj (read (current-buffer))))
333 (and (symbolp obj) (boundp obj) obj)))
334 (error nil)))
335
336(defun describe-variable (variable)
337 "Display the full documentation of VARIABLE (a symbol).
338Returns the documentation as a string, also."
339 (interactive
340 (let ((v (variable-at-point))
341 (enable-recursive-minibuffers t)
342 val)
343 (setq val (completing-read (if v
344 (format "Describe variable (default %s): " v)
345 "Describe variable: ")
346 obarray 'boundp t))
347 (list (if (equal val "")
348 v (intern val)))))
349 (with-output-to-temp-buffer "*Help*"
350 (prin1 variable)
351 (princ "'s value is ")
352 (if (not (boundp variable))
353 (princ "void.")
354 (prin1 (symbol-value variable)))
355 (terpri) (terpri)
356 (princ "Documentation:")
357 (terpri)
358 (let ((doc (documentation-property variable 'variable-documentation)))
359 (if doc
360 (princ (substitute-command-keys doc))
361 (princ "not documented as a variable.")))
362 (print-help-return-message)
363 ;; Return the text we displayed.
364 (save-excursion (set-buffer standard-output) (buffer-string))))
365
366(defun command-apropos (string)
367 "Like apropos but lists only symbols that are names of commands
368\(interactively callable functions). Argument REGEXP is a regular expression
369that is matched against command symbol names. Returns list of symbols and
370documentation found."
371 (interactive "sCommand apropos (regexp): ")
372 (let ((message
373 (let ((standard-output (get-buffer-create "*Help*")))
374 (print-help-return-message 'identity))))
78e3ef3c
RS
375 (if (apropos string t 'commandp)
376 (and message (message message)))))
433ae6f6
RS
377
378(defun locate-library (library &optional nosuffix)
379 "Show the full path name of Emacs library LIBRARY.
380This command searches the directories in `load-path' like `M-x load-library'
381to find the file that `M-x load-library RET LIBRARY RET' would load.
382Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el'
383to the specified name LIBRARY (a la calling `load' instead of `load-library')."
384 (interactive "sLocate library: ")
385 (catch 'answer
386 (mapcar
387 '(lambda (dir)
388 (mapcar
389 '(lambda (suf)
390 (let ((try (expand-file-name (concat library suf) dir)))
391 (and (file-readable-p try)
392 (null (file-directory-p try))
393 (progn
394 (message "Library is file %s" try)
395 (throw 'answer try)))))
396 (if nosuffix '("") '(".elc" ".el" ""))))
397 load-path)
398 (message "No library %s in search path" library)
399 nil))
1a06eabd
ER
400
401;;; help.el ends here