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