1 ;;; help-fns.el --- Complex help functions
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001
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 file contains those help commands which are complicated, and
29 ;; which may not be used in every session. For example
30 ;; `describe-function' will probably be heavily used when doing elisp
31 ;; programming, but not if just editing C files. Simpler help commands
40 (defun help-with-tutorial (&optional arg
)
41 "Select the Emacs learn-by-doing tutorial.
42 If there is a tutorial version written in the language
43 of the selected language environment, that version is used.
44 If there's no tutorial in that language, `TUTORIAL' is selected.
45 With arg, you are asked to choose which language."
48 (read-language-name 'tutorial
"Language: " "English")
49 (if (get-language-info current-language-environment
'tutorial
)
50 current-language-environment
53 (setq filename
(get-language-info lang
'tutorial
))
54 (setq file
(expand-file-name (concat "~/" filename
)))
55 (delete-other-windows)
56 (if (get-file-buffer file
)
57 (switch-to-buffer (get-file-buffer file
))
58 (switch-to-buffer (create-file-buffer file
))
59 (setq buffer-file-name file
)
60 (setq default-directory
(expand-file-name "~/"))
61 (setq buffer-auto-save-file-name nil
)
62 (insert-file-contents (expand-file-name filename data-directory
))
63 (goto-char (point-min))
64 (search-forward "\n<<")
66 ;; Convert the <<...>> line to the proper [...] line,
67 ;; or just delete the <<...>> line if a [...] line follows.
68 (cond ((save-excursion
71 (delete-region (point) (progn (forward-line 1) (point))))
72 ((looking-at "<<Blank lines inserted.*>>")
73 (replace-match "[Middle of page left blank for didactic purposes. Text continues below]"))
80 (let ((n (- (window-height (selected-window))
81 (count-lines (point-min) (point))
85 ;; For a short gap, we don't need the [...] line,
87 (delete-region (point) (progn (end-of-line) (point)))
89 ;; Some people get confused by the large gap.
92 ;; Skip the [...] line (don't delete it).
94 (newline (- n
(/ n
2)))))
95 (goto-char (point-min))
96 (set-buffer-modified-p nil
))))
99 (defun locate-library (library &optional nosuffix path interactive-call
)
100 "Show the precise file name of Emacs library LIBRARY.
101 This command searches the directories in `load-path' like `M-x load-library'
102 to find the file that `M-x load-library RET LIBRARY RET' would load.
103 Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
104 to the specified name LIBRARY.
106 If the optional third arg PATH is specified, that list of directories
107 is used instead of `load-path'.
109 When called from a program, the file name is normaly returned as a
110 string. When run interactively, the argument INTERACTIVE-CALL is t,
111 and the file name is displayed in the echo area."
112 (interactive (list (read-string "Locate library: ")
116 (dolist (dir (or path load-path
))
117 (dolist (suf (append (unless nosuffix load-suffixes
) '("")))
118 (let ((try (expand-file-name (concat library suf
) dir
)))
119 (and (file-readable-p try
)
120 (null (file-directory-p try
))
123 (message "Library is file %s" (abbreviate-file-name try
)))
124 (throw 'answer try
))))))
126 (message "No library %s in search path" library
))
133 (defun describe-function (function)
134 "Display the full documentation of FUNCTION (a symbol)."
136 (let ((fn (function-called-at-point))
137 (enable-recursive-minibuffers t
)
139 (setq val
(completing-read (if fn
140 (format "Describe function (default %s): " fn
)
141 "Describe function: ")
142 obarray
'fboundp t nil nil
(symbol-name fn
)))
143 (list (if (equal val
"")
146 (message "You didn't specify a function")
147 (help-setup-xref (list #'describe-function function
) (interactive-p))
149 (with-output-to-temp-buffer (help-buffer)
151 ;; Use " is " instead of a colon so that
152 ;; it is easier to get out the function name using forward-sexp.
154 (describe-function-1 function
)
155 (print-help-return-message)
156 (with-current-buffer standard-output
157 ;; Return the text we displayed.
161 (defun describe-function-1 (function)
162 (let* ((def (if (symbolp function
)
163 (symbol-function function
)
166 (beg (if (commandp def
) "an interactive " "a ")))
168 (cond ((or (stringp def
)
172 (if (eq 'unevalled
(cdr (subr-arity def
)))
173 (concat beg
"special form")
174 (concat beg
"built-in function")))
175 ((byte-code-function-p def
)
176 (concat beg
"compiled Lisp function"))
178 (while (symbolp (symbol-function def
))
179 (setq def
(symbol-function def
)))
180 (format "an alias for `%s'" def
))
181 ((eq (car-safe def
) 'lambda
)
182 (concat beg
"Lisp function"))
183 ((eq (car-safe def
) 'macro
)
185 ((eq (car-safe def
) 'autoload
)
186 (setq file-name
(nth 1 def
))
187 (format "%s autoloaded %s"
188 (if (commandp def
) "an interactive" "an")
189 (if (eq (nth 4 def
) 'keymap
) "keymap"
190 (if (nth 4 def
) "Lisp macro" "Lisp function"))
192 ;; perhaps use keymapp here instead
193 ((eq (car-safe def
) 'keymap
)
195 (elts (cdr-safe def
)))
197 (if (char-table-p (car-safe elts
))
200 (setq elts
(cdr-safe elts
)))
206 (with-current-buffer standard-output
209 (if (re-search-backward "alias for `\\([^`']+\\)'" nil t
)
210 (help-xref-button 1 'help-function def
)))))
212 (setq file-name
(symbol-file function
)))
213 (when (equal file-name
"loaddefs.el")
214 ;; Find the real def site of the preloaded function.
215 ;; This is necessary only for defaliases.
218 (find-function-search-for-symbol function nil
"loaddefs.el")
221 (with-current-buffer (car location
)
222 (goto-char (cdr location
))
223 (when (re-search-backward
224 "^;;; Generated autoloads from \\(.*\\)" nil t
)
225 (setq file-name
(match-string 1)))))))
229 ;; We used to add .el to the file name,
230 ;; but that's completely wrong when the user used load-file.
233 ;; Make a hyperlink to the library.
234 (with-current-buffer standard-output
236 (re-search-backward "`\\([^`']+\\)'" nil t
)
237 (help-xref-button 1 'help-function-def function file-name
)))))
240 (when (commandp function
)
241 (let* ((remapped (remap-command function
))
242 (keys (where-is-internal
243 (or remapped function
) overriding-local-map nil nil
)))
245 (princ "It is remapped to `")
246 (princ (symbol-name remapped
))
249 (princ (if remapped
" which is bound to " "It is bound to "))
250 ;; FIXME: This list can be very long (f.ex. for self-insert-command).
251 (princ (mapconcat 'key-description keys
", ")))
252 (when (or remapped keys
)
255 ;; Handle symbols aliased to other symbols.
256 (setq def
(indirect-function def
))
257 ;; If definition is a macro, find the function inside it.
258 (if (eq (car-safe def
) 'macro
)
259 (setq def
(cdr def
)))
260 (let ((arglist (cond ((byte-code-function-p def
)
261 (car (append def nil
)))
262 ((eq (car-safe def
) 'lambda
)
264 ((and (eq (car-safe def
) 'autoload
)
265 (not (eq (nth 4 def
) 'keymap
)))
266 (concat "[Arg list not available until "
267 "function definition is loaded.]"))
269 (cond ((listp arglist
)
270 (princ (cons (if (symbolp function
) function
"anonymous")
271 (mapcar (lambda (arg)
272 (if (memq arg
'(&optional
&rest
))
274 (intern (upcase (symbol-name arg
)))))
280 (let ((doc (documentation function
)))
285 (with-current-buffer standard-output
287 ;; Builtins get the calling sequence at the end of
288 ;; the doc string. Move it to the same place as
289 ;; for other functions.
291 ;; In cases where `function' has been fset to a
292 ;; subr we can't search for function's name in
293 ;; the doc string. Kluge round that using the
294 ;; printed representation. The arg list then
295 ;; shows the wrong function name, but that
296 ;; might be a useful hint.
297 (let* ((rep (prin1-to-string def
))
299 (string-match " \\([^ ]+\\)>$" rep
)
300 (match-string 1 rep
))))
301 (if (looking-at (format "(%s[ )]" (regexp-quote name
)))
302 (let ((start (point-marker)))
303 (goto-char (point-min))
305 (insert-buffer-substring (current-buffer) start
)
307 (delete-region (1- start
) (point-max)))
308 (goto-char (point-min))
311 "[Missing arglist. Please make a bug report.]\n")))
312 (goto-char (point-max)))))
313 (princ "not documented")))))
319 (defun variable-at-point ()
320 "Return the bound variable symbol found around point.
321 Return 0 if there is no such symbol."
323 (with-syntax-table emacs-lisp-mode-syntax-table
325 (or (not (zerop (skip-syntax-backward "_w")))
326 (eq (char-syntax (following-char)) ?w
)
327 (eq (char-syntax (following-char)) ?_
)
329 (skip-chars-forward "'")
330 (let ((obj (read (current-buffer))))
331 (or (and (symbolp obj
) (boundp obj
) obj
)
336 (defun describe-variable (variable &optional buffer
)
337 "Display the full documentation of VARIABLE (a symbol).
338 Returns the documentation as a string, also.
339 If VARIABLE has a buffer-local value in BUFFER (default to the current buffer),
340 it is displayed along with the global value."
342 (let ((v (variable-at-point))
343 (enable-recursive-minibuffers t
)
345 (setq val
(completing-read (if (symbolp v
)
347 "Describe variable (default %s): " v
)
348 "Describe variable: ")
349 obarray
'boundp t nil nil
350 (if (symbolp v
) (symbol-name v
))))
351 (list (if (equal val
"")
353 (unless (bufferp buffer
) (setq buffer
(current-buffer)))
354 (if (not (symbolp variable
))
355 (message "You did not specify a variable")
358 (help-setup-xref (list #'describe-variable variable buffer
)
360 (with-output-to-temp-buffer (help-buffer)
361 (with-current-buffer buffer
363 (if (not (boundp variable
))
367 (let ((val (symbol-value variable
)))
368 (with-current-buffer standard-output
369 (princ "'s value is ")
371 (let ((from (point)))
373 (help-xref-on-pp from
(point))
374 (if (< (point) (+ from
20))
377 (delete-char -
1)))))))
379 (when (local-variable-p variable
)
380 (princ (format "Local in buffer %s; " (buffer-name)))
381 (if (not (default-boundp variable
))
382 (princ "globally void")
383 (let ((val (default-value variable
)))
384 (with-current-buffer standard-output
385 (princ "global value is ")
387 ;; Fixme: pp can take an age if you happen to
388 ;; ask for a very large expression. We should
389 ;; probably print it raw once and check it's a
390 ;; sensible size before prettyprinting. -- fx
391 (let ((from (point)))
393 (help-xref-on-pp from
(point))
394 (if (< (point) (+ from
20))
397 (delete-char -
1)))))))
400 (with-current-buffer standard-output
401 (when (> (count-lines (point-min) (point-max)) 10)
402 ;; Note that setting the syntax table like below
403 ;; makes forward-sexp move over a `'s' at the end
405 (set-syntax-table emacs-lisp-mode-syntax-table
)
406 (goto-char (point-min))
410 (delete-region (point) (progn (end-of-line) (point)))
411 (insert " value is shown below.\n\n")
413 (insert "\n\nValue:"))))
414 ;; Add a note for variables that have been make-var-buffer-local.
415 (when (and (local-variable-if-set-p variable
)
416 (or (not (local-variable-p variable
))
418 (local-variable-if-set-p variable
))))
421 (insert "Automatically becomes buffer-local when set in any fashion.\n"))))
422 (princ "Documentation:")
424 (let ((doc (documentation-property variable
'variable-documentation
)))
425 (princ (or doc
"not documented as a variable.")))
427 ;; Make a link to customize if this variable can be customized.
428 ;; Note, it is not reliable to test only for a custom-type property
429 ;; because those are only present after the var's definition
431 (if (or (get variable
'custom-type
) ; after defcustom
432 (get variable
'custom-loads
) ; from loaddefs.el
433 (get variable
'standard-value
)) ; from cus-start.el
434 (let ((customize-label "customize"))
437 (princ (concat "You can " customize-label
" this variable."))
438 (with-current-buffer standard-output
441 (concat "\\(" customize-label
"\\)") nil t
)
442 (help-xref-button 1 'help-customize-variable variable
)))))
443 ;; Make a hyperlink to the library if appropriate. (Don't
444 ;; change the format of the buffer's initial line in case
445 ;; anything expects the current format.)
446 (let ((file-name (symbol-file variable
)))
447 (when (equal file-name
"loaddefs.el")
448 ;; Find the real def site of the preloaded variable.
451 (find-variable-noselect variable file-name
)
454 (with-current-buffer (car location
)
455 (goto-char (cdr location
))
456 (when (re-search-backward
457 "^;;; Generated autoloads from \\(.*\\)" nil t
)
458 (setq file-name
(match-string 1)))))))
460 (princ "\n\nDefined in `")
463 (with-current-buffer standard-output
465 (re-search-backward "`\\([^`']+\\)'" nil t
)
466 (help-xref-button 1 'help-variable-def
467 variable file-name
)))))
469 (print-help-return-message)
471 (set-buffer standard-output
)
472 ;; Return the text we displayed.
473 (buffer-string))))))))
477 (defun describe-syntax (&optional buffer
)
478 "Describe the syntax specifications in the syntax table of BUFFER.
479 The descriptions are inserted in a help buffer, which is then displayed.
480 BUFFER defaults to the current buffer."
482 (setq buffer
(or buffer
(current-buffer)))
483 (help-setup-xref (list #'describe-syntax buffer
) (interactive-p))
484 (with-output-to-temp-buffer (help-buffer)
485 (let ((table (with-current-buffer buffer
(syntax-table))))
486 (with-current-buffer standard-output
487 (describe-vector table
'internal-describe-syntax-value
)
488 (while (setq table
(char-table-parent table
))
489 (insert "\nThe parent syntax table is:")
490 (describe-vector table
'internal-describe-syntax-value
))))))
492 (defun help-describe-category-set (value)
494 ((null value
) "default")
495 ((char-table-p value
) "deeper char-table ...")
496 (t (condition-case err
497 (category-set-mnemonics value
)
498 (error "invalid"))))))
501 (defun describe-categories (&optional buffer
)
502 "Describe the category specifications in the current category table.
503 The descriptions are inserted in a buffer, which is then displayed."
505 (setq buffer
(or buffer
(current-buffer)))
506 (help-setup-xref (list #'describe-categories buffer
) (interactive-p))
507 (with-output-to-temp-buffer (help-buffer)
508 (let ((table (with-current-buffer buffer
(category-table))))
509 (with-current-buffer standard-output
510 (describe-vector table
'help-describe-category-set
)
511 (let ((docs (char-table-extra-slot table
0)))
512 (if (or (not (vectorp docs
)) (/= (length docs
) 95))
513 (insert "Invalid first extra slot in this char table\n")
514 (insert "Meanings of mnemonic characters are:\n")
516 (let ((elt (aref docs i
)))
518 (insert (+ i ?\
) ": " elt
"\n"))))
519 (while (setq table
(char-table-parent table
))
520 (insert "\nThe parent category table is:")
521 (describe-vector table
'help-describe-category-set
))))))))
525 ;;; help-fns.el ends here