* lisp/emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
[bpt/emacs.git] / lisp / help-fns.el
CommitLineData
1113ff44
MR
1;;; help-fns.el --- Complex help functions
2
73b0cd50 3;; Copyright (C) 1985-1986, 1993-1994, 1998-2011
589a99f2 4;; Free Software Foundation, Inc.
1113ff44
MR
5
6;; Maintainer: FSF
7;; Keywords: help, internal
bd78fa1d 8;; Package: emacs
1113ff44
MR
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25;;; Commentary:
26
27;; This file contains those help commands which are complicated, and
28;; which may not be used in every session. For example
29;; `describe-function' will probably be heavily used when doing elisp
30;; programming, but not if just editing C files. Simpler help commands
31;; are in help.el
32
33;;; Code:
34
1113ff44
MR
35;; Functions
36
37;;;###autoload
38(defun describe-function (function)
39 "Display the full documentation of FUNCTION (a symbol)."
40 (interactive
41 (let ((fn (function-called-at-point))
42 (enable-recursive-minibuffers t)
43 val)
44 (setq val (completing-read (if fn
45 (format "Describe function (default %s): " fn)
46 "Describe function: ")
47 obarray 'fboundp t nil nil
48 (and fn (symbol-name fn))))
49 (list (if (equal val "")
50 fn (intern val)))))
51 (if (null function)
52 (message "You didn't specify a function")
32226619
JB
53 (help-setup-xref (list #'describe-function function)
54 (called-interactively-p 'interactive))
1113ff44
MR
55 (save-excursion
56 (with-help-window (help-buffer)
57 (prin1 function)
58 ;; Use " is " instead of a colon so that
59 ;; it is easier to get out the function name using forward-sexp.
60 (princ " is ")
61 (describe-function-1 function)
62 (with-current-buffer standard-output
63 ;; Return the text we displayed.
64 (buffer-string))))))
65
66(defun help-split-fundoc (docstring def)
67 "Split a function DOCSTRING into the actual doc and the usage info.
68Return (USAGE . DOC) or nil if there's no usage info.
69DEF is the function whose usage we're looking for in DOCSTRING."
70 ;; Functions can get the calling sequence at the end of the doc string.
71 ;; In cases where `function' has been fset to a subr we can't search for
72 ;; function's name in the doc string so we use `fn' as the anonymous
73 ;; function name instead.
74 (when (and docstring (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring))
75 (cons (format "(%s%s"
76 ;; Replace `fn' with the actual function name.
77 (if (consp def) "anonymous" def)
78 (match-string 1 docstring))
79 (substring docstring 0 (match-beginning 0)))))
80
81(defun help-add-fundoc-usage (docstring arglist)
82 "Add the usage info to DOCSTRING.
83If DOCSTRING already has a usage info, then just return it unchanged.
84The usage info is built from ARGLIST. DOCSTRING can be nil.
85ARGLIST can also be t or a string of the form \"(FUN ARG1 ARG2 ...)\"."
86 (unless (stringp docstring) (setq docstring "Not documented"))
87 (if (or (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring) (eq arglist t))
88 docstring
89 (concat docstring
90 (if (string-match "\n?\n\\'" docstring)
91 (if (< (- (match-end 0) (match-beginning 0)) 2) "\n" "")
92 "\n\n")
93 (if (and (stringp arglist)
94 (string-match "\\`([^ ]+\\(.*\\))\\'" arglist))
95 (concat "(fn" (match-string 1 arglist) ")")
96 (format "%S" (help-make-usage 'fn arglist))))))
97
98(defun help-function-arglist (def)
99 ;; Handle symbols aliased to other symbols.
100 (if (and (symbolp def) (fboundp def)) (setq def (indirect-function def)))
101 ;; If definition is a macro, find the function inside it.
8d6c1239
SM
102 (if (eq (car-safe def) 'macro) (setq def (cdr def)))
103 (cond
104 ((byte-code-function-p def) (aref def 0))
105 ((eq (car-safe def) 'lambda) (nth 1 def))
106 ((and (eq (car-safe def) 'autoload) (not (eq (nth 4 def) 'keymap)))
107 "[Arg list not available until function definition is loaded.]")
108 (t t)))
1113ff44
MR
109
110(defun help-make-usage (function arglist)
111 (cons (if (symbolp function) function 'anonymous)
112 (mapcar (lambda (arg)
113 (if (not (symbolp arg))
114 (if (and (consp arg) (symbolp (car arg)))
115 ;; CL style default values for optional args.
116 (cons (intern (upcase (symbol-name (car arg))))
117 (cdr arg))
118 arg)
119 (let ((name (symbol-name arg)))
120 (if (string-match "\\`&" name) arg
121 (intern (upcase name))))))
122 arglist)))
123
124;; Could be this, if we make symbol-file do the work below.
125;; (defun help-C-file-name (subr-or-var kind)
126;; "Return the name of the C file where SUBR-OR-VAR is defined.
127;; KIND should be `var' for a variable or `subr' for a subroutine."
128;; (symbol-file (if (symbolp subr-or-var) subr-or-var
129;; (subr-name subr-or-var))
130;; (if (eq kind 'var) 'defvar 'defun)))
131;;;###autoload
132(defun help-C-file-name (subr-or-var kind)
133 "Return the name of the C file where SUBR-OR-VAR is defined.
134KIND should be `var' for a variable or `subr' for a subroutine."
135 (let ((docbuf (get-buffer-create " *DOC*"))
136 (name (if (eq 'var kind)
137 (concat "V" (symbol-name subr-or-var))
138 (concat "F" (subr-name subr-or-var)))))
139 (with-current-buffer docbuf
140 (goto-char (point-min))
141 (if (eobp)
142 (insert-file-contents-literally
143 (expand-file-name internal-doc-file-name doc-directory)))
144 (let ((file (catch 'loop
145 (while t
146 (let ((pnt (search-forward (concat "\1f" name "\n"))))
147 (re-search-backward "\1fS\\(.*\\)")
148 (let ((file (match-string 1)))
149 (if (member file build-files)
150 (throw 'loop file)
151 (goto-char pnt))))))))
152 (if (string-match "^ns.*\\(\\.o\\|obj\\)\\'" file)
153 (setq file (replace-match ".m" t t file 1))
154 (if (string-match "\\.\\(o\\|obj\\)\\'" file)
155 (setq file (replace-match ".c" t t file))))
156 (if (string-match "\\.\\(c\\|m\\)\\'" file)
157 (concat "src/" file)
158 file)))))
159
1659ada0
JB
160(defcustom help-downcase-arguments nil
161 "If non-nil, argument names in *Help* buffers are downcased."
162 :type 'boolean
163 :group 'help
164 :version "23.2")
165
166(defun help-highlight-arg (arg)
167 "Highlight ARG as an argument name for a *Help* buffer.
168Return ARG in face `help-argument-name'; ARG is also downcased
169if the variable `help-downcase-arguments' is non-nil."
170 (propertize (if help-downcase-arguments (downcase arg) arg)
171 'face 'help-argument-name))
1113ff44
MR
172
173(defun help-do-arg-highlight (doc args)
174 (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table)
175 (modify-syntax-entry ?\- "w")
176 (dolist (arg args doc)
177 (setq doc (replace-regexp-in-string
178 ;; This is heuristic, but covers all common cases
179 ;; except ARG1-ARG2
180 (concat "\\<" ; beginning of word
181 "\\(?:[a-z-]*-\\)?" ; for xxx-ARG
182 "\\("
183 (regexp-quote arg)
184 "\\)"
185 "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs
186 "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n
187 "\\(?:-[{([<`\"].*?\\)?"; for ARG-{x}, (x), <x>, [x], `x'
188 "\\>") ; end of word
1659ada0 189 (help-highlight-arg arg)
1113ff44
MR
190 doc t t 1)))))
191
192(defun help-highlight-arguments (usage doc &rest args)
193 (when usage
194 (with-temp-buffer
195 (insert usage)
196 (goto-char (point-min))
197 (let ((case-fold-search nil)
198 (next (not (or args (looking-at "\\["))))
199 (opt nil))
200 ;; Make a list of all arguments
201 (skip-chars-forward "^ ")
202 (while next
203 (or opt (not (looking-at " &")) (setq opt t))
204 (if (not (re-search-forward " \\([\\[(]*\\)\\([^] &)\.]+\\)" nil t))
205 (setq next nil)
206 (setq args (cons (match-string 2) args))
207 (when (and opt (string= (match-string 1) "("))
208 ;; A pesky CL-style optional argument with default value,
209 ;; so let's skip over it
210 (search-backward "(")
211 (goto-char (scan-sexps (point) 1)))))
212 ;; Highlight aguments in the USAGE string
213 (setq usage (help-do-arg-highlight (buffer-string) args))
214 ;; Highlight arguments in the DOC string
215 (setq doc (and doc (help-do-arg-highlight doc args))))))
216 ;; Return value is like the one from help-split-fundoc, but highlighted
217 (cons usage doc))
218
219;; The following function was compiled from the former functions
220;; `describe-simplify-lib-file-name' and `find-source-lisp-file' with
221;; some excerpts from `describe-function-1' and `describe-variable'.
222;; The only additional twists provided are (1) locate the defining file
223;; for autoloaded functions, and (2) give preference to files in the
224;; "install directory" (directories found via `load-path') rather than
225;; to files in the "compile directory" (directories found by searching
226;; the loaddefs.el file). We autoload it because it's also used by
227;; `describe-face' (instead of `describe-simplify-lib-file-name').
228
229;;;###autoload
230(defun find-lisp-object-file-name (object type)
231 "Guess the file that defined the Lisp object OBJECT, of type TYPE.
232OBJECT should be a symbol associated with a function, variable, or face;
233 alternatively, it can be a function definition.
fe4be04c
JB
234If TYPE is `defvar', search for a variable definition.
235If TYPE is `defface', search for a face definition.
1113ff44
MR
236If TYPE is the value returned by `symbol-function' for a function symbol,
237 search for a function definition.
238
239The return value is the absolute name of a readable file where OBJECT is
240defined. If several such files exist, preference is given to a file
241found via `load-path'. The return value can also be `C-source', which
242means that OBJECT is a function or variable defined in C. If no
243suitable file is found, return nil."
244 (let* ((autoloaded (eq (car-safe type) 'autoload))
245 (file-name (or (and autoloaded (nth 1 type))
246 (symbol-file
247 object (if (memq type (list 'defvar 'defface))
248 type
249 'defun)))))
250 (cond
251 (autoloaded
252 ;; An autoloaded function: Locate the file since `symbol-function'
253 ;; has only returned a bare string here.
254 (setq file-name
255 (locate-file file-name load-path '(".el" ".elc") 'readable)))
256 ((and (stringp file-name)
257 (string-match "[.]*loaddefs.el\\'" file-name))
258 ;; An autoloaded variable or face. Visit loaddefs.el in a buffer
259 ;; and try to extract the defining file. The following form is
260 ;; from `describe-function-1' and `describe-variable'.
261 (let ((location
262 (condition-case nil
263 (find-function-search-for-symbol object nil file-name)
264 (error nil))))
6565b5ab 265 (when (cdr location)
1113ff44
MR
266 (with-current-buffer (car location)
267 (goto-char (cdr location))
268 (when (re-search-backward
269 "^;;; Generated autoloads from \\(.*\\)" nil t)
270 (setq file-name
271 (locate-file
273cefaa
GM
272 (file-name-sans-extension
273 (match-string-no-properties 1))
274 load-path '(".el" ".elc") 'readable))))))))
1113ff44
MR
275
276 (cond
277 ((and (not file-name) (subrp type))
278 ;; A built-in function. The form is from `describe-function-1'.
279 (if (get-buffer " *DOC*")
280 (help-C-file-name type 'subr)
281 'C-source))
282 ((and (not file-name) (symbolp object)
283 (integerp (get object 'variable-documentation)))
284 ;; A variable defined in C. The form is from `describe-variable'.
285 (if (get-buffer " *DOC*")
286 (help-C-file-name object 'var)
287 'C-source))
288 ((not (stringp file-name))
289 ;; If we don't have a file-name string by now, we lost.
290 nil)
d78cdcf7
CY
291 ;; Now, `file-name' should have become an absolute file name.
292 ;; For files loaded from ~/.emacs.elc, try ~/.emacs.
293 ((let (fn)
294 (and (string-equal file-name
295 (expand-file-name ".emacs.elc" "~"))
296 (file-readable-p (setq fn (expand-file-name ".emacs" "~")))
297 fn)))
298 ;; When the Elisp source file can be found in the install
299 ;; directory, return the name of that file.
1113ff44
MR
300 ((let ((lib-name
301 (if (string-match "[.]elc\\'" file-name)
302 (substring-no-properties file-name 0 -1)
303 file-name)))
1113ff44
MR
304 (or (and (file-readable-p lib-name) lib-name)
305 ;; The library might be compressed.
306 (and (file-readable-p (concat lib-name ".gz")) lib-name))))
307 ((let* ((lib-name (file-name-nondirectory file-name))
308 ;; The next form is from `describe-simplify-lib-file-name'.
309 (file-name
310 ;; Try converting the absolute file name to a library
311 ;; name, convert that back to a file name and see if we
312 ;; get the original one. If so, they are equivalent.
313 (if (equal file-name (locate-file lib-name load-path '("")))
314 (if (string-match "[.]elc\\'" lib-name)
315 (substring-no-properties lib-name 0 -1)
316 lib-name)
317 file-name))
318 ;; The next three forms are from `find-source-lisp-file'.
319 (elc-file (locate-file
320 (concat file-name
321 (if (string-match "\\.el\\'" file-name)
322 "c"
323 ".elc"))
324 load-path nil 'readable))
325 (str (when elc-file
326 (with-temp-buffer
327 (insert-file-contents-literally elc-file nil 0 256)
328 (buffer-string))))
329 (src-file (and str
330 (string-match ";;; from file \\(.*\\.el\\)" str)
331 (match-string 1 str))))
332 (and src-file (file-readable-p src-file) src-file))))))
333
334(declare-function ad-get-advice-info "advice" (function))
335
336;;;###autoload
337(defun describe-function-1 (function)
338 (let* ((advised (and (symbolp function) (featurep 'advice)
339 (ad-get-advice-info function)))
340 ;; If the function is advised, use the symbol that has the
341 ;; real definition, if that symbol is already set up.
342 (real-function
343 (or (and advised
344 (let ((origname (cdr (assq 'origname advised))))
345 (and (fboundp origname) origname)))
346 function))
347 ;; Get the real definition.
348 (def (if (symbolp real-function)
349 (symbol-function real-function)
350 function))
351 file-name string
352 (beg (if (commandp def) "an interactive " "a "))
353 (pt1 (with-current-buffer (help-buffer) (point)))
354 errtype)
355 (setq string
356 (cond ((or (stringp def)
357 (vectorp def))
358 "a keyboard macro")
359 ((subrp def)
360 (if (eq 'unevalled (cdr (subr-arity def)))
361 (concat beg "special form")
362 (concat beg "built-in function")))
363 ((byte-code-function-p def)
364 (concat beg "compiled Lisp function"))
365 ((symbolp def)
366 (while (and (fboundp def)
367 (symbolp (symbol-function def)))
368 (setq def (symbol-function def)))
369 ;; Handle (defalias 'foo 'bar), where bar is undefined.
370 (or (fboundp def) (setq errtype 'alias))
371 (format "an alias for `%s'" def))
372 ((eq (car-safe def) 'lambda)
373 (concat beg "Lisp function"))
374 ((eq (car-safe def) 'macro)
375 "a Lisp macro")
376 ((eq (car-safe def) 'autoload)
377 (format "%s autoloaded %s"
378 (if (commandp def) "an interactive" "an")
379 (if (eq (nth 4 def) 'keymap) "keymap"
380 (if (nth 4 def) "Lisp macro" "Lisp function"))))
381 ((keymapp def)
382 (let ((is-full nil)
383 (elts (cdr-safe def)))
384 (while elts
385 (if (char-table-p (car-safe elts))
386 (setq is-full t
387 elts nil))
388 (setq elts (cdr-safe elts)))
389 (if is-full
390 "a full keymap"
391 "a sparse keymap")))
392 (t "")))
393 (princ string)
394 (if (eq errtype 'alias)
395 (princ ",\nwhich is not defined. Please make a bug report.")
396 (with-current-buffer standard-output
397 (save-excursion
398 (save-match-data
399 (when (re-search-backward "alias for `\\([^`']+\\)'" nil t)
400 (help-xref-button 1 'help-function def)))))
401
402 (setq file-name (find-lisp-object-file-name function def))
403 (when file-name
404 (princ " in `")
405 ;; We used to add .el to the file name,
406 ;; but that's completely wrong when the user used load-file.
e8e8dbf9
MR
407 (princ (if (eq file-name 'C-source)
408 "C source code"
409 (file-name-nondirectory file-name)))
1113ff44
MR
410 (princ "'")
411 ;; Make a hyperlink to the library.
412 (with-current-buffer standard-output
413 (save-excursion
414 (re-search-backward "`\\([^`']+\\)'" nil t)
cebabb67 415 (help-xref-button 1 'help-function-def function file-name))))
1113ff44
MR
416 (princ ".")
417 (with-current-buffer (help-buffer)
418 (fill-region-as-paragraph (save-excursion (goto-char pt1) (forward-line 0) (point))
419 (point)))
420 (terpri)(terpri)
421 (when (commandp function)
63326785
CY
422 (let ((pt2 (with-current-buffer (help-buffer) (point)))
423 (remapped (command-remapping function)))
424 (unless (memq remapped '(ignore undefined))
425 (let ((keys (where-is-internal
426 (or remapped function) overriding-local-map nil nil))
427 non-modified-keys)
428 (if (and (eq function 'self-insert-command)
429 (vectorp (car-safe keys))
430 (consp (aref (car keys) 0)))
431 (princ "It is bound to many ordinary text characters.\n")
432 ;; Which non-control non-meta keys run this command?
433 (dolist (key keys)
434 (if (member (event-modifiers (aref key 0)) '(nil (shift)))
435 (push key non-modified-keys)))
436 (when remapped
437 (princ "It is remapped to `")
438 (princ (symbol-name remapped))
439 (princ "'"))
440
441 (when keys
442 (princ (if remapped ", which is bound to " "It is bound to "))
443 ;; If lots of ordinary text characters run this command,
444 ;; don't mention them one by one.
445 (if (< (length non-modified-keys) 10)
446 (princ (mapconcat 'key-description keys ", "))
447 (dolist (key non-modified-keys)
448 (setq keys (delq key keys)))
449 (if keys
450 (progn
451 (princ (mapconcat 'key-description keys ", "))
452 (princ ", and many ordinary text characters"))
453 (princ "many ordinary text characters"))))
454 (when (or remapped keys non-modified-keys)
455 (princ ".")
456 (terpri)))))
1113ff44 457
1113ff44
MR
458 (with-current-buffer (help-buffer)
459 (fill-region-as-paragraph pt2 (point))
460 (unless (looking-back "\n\n")
461 (terpri)))))
a87b98ce
GM
462 ;; Note that list* etc do not get this property until
463 ;; cl-hack-byte-compiler runs, after bytecomp is loaded.
82882188
SM
464 (when (and (symbolp function)
465 (eq (get function 'byte-compile)
466 'cl-byte-compile-compiler-macro))
a87b98ce
GM
467 (princ "This function has a compiler macro")
468 (let ((lib (get function 'compiler-macro-file)))
469 (when (stringp lib)
470 (princ (format " in `%s'" lib))
471 (with-current-buffer standard-output
472 (save-excursion
473 (re-search-backward "`\\([^`']+\\)'" nil t)
474 (help-xref-button 1 'help-function-cmacro function lib)))))
475 (princ ".\n\n"))
8d6c1239
SM
476 (let* ((advertised (gethash def advertised-signature-table t))
477 (arglist (if (listp advertised)
478 advertised (help-function-arglist def)))
5f9d345c
SM
479 (doc (condition-case err (documentation function)
480 (error (format "No Doc! %S" err))))
1113ff44
MR
481 (usage (help-split-fundoc doc function)))
482 (with-current-buffer standard-output
483 ;; If definition is a keymap, skip arglist note.
484 (unless (keymapp function)
8d6c1239 485 (if usage (setq doc (cdr usage)))
1113ff44 486 (let* ((use (cond
8d6c1239 487 ((and usage (not (listp advertised))) (car usage))
1113ff44
MR
488 ((listp arglist)
489 (format "%S" (help-make-usage function arglist)))
490 ((stringp arglist) arglist)
491 ;; Maybe the arglist is in the docstring of a symbol
492 ;; this one is aliased to.
493 ((let ((fun real-function))
494 (while (and (symbolp fun)
495 (setq fun (symbol-function fun))
496 (not (setq usage (help-split-fundoc
497 (documentation fun)
498 function)))))
499 usage)
500 (car usage))
501 ((or (stringp def)
502 (vectorp def))
503 (format "\nMacro: %s" (format-kbd-macro def)))
504 (t "[Missing arglist. Please make a bug report.]")))
505 (high (help-highlight-arguments use doc)))
506 (let ((fill-begin (point)))
507 (insert (car high) "\n")
508 (fill-region fill-begin (point)))
509 (setq doc (cdr high))))
510 (let* ((obsolete (and
511 ;; function might be a lambda construct.
512 (symbolp function)
513 (get function 'byte-obsolete-info)))
514 (use (car obsolete)))
515 (when obsolete
516 (princ "\nThis function is obsolete")
517 (when (nth 2 obsolete)
518 (insert (format " since %s" (nth 2 obsolete))))
519 (insert (cond ((stringp use) (concat ";\n" use))
520 (use (format ";\nuse `%s' instead." use))
521 (t "."))
522 "\n"))
523 (insert "\n"
524 (or doc "Not documented."))))))))
525
526\f
527;; Variables
528
529;;;###autoload
530(defun variable-at-point (&optional any-symbol)
531 "Return the bound variable symbol found at or before point.
532Return 0 if there is no such symbol.
533If ANY-SYMBOL is non-nil, don't insist the symbol be bound."
534 (with-syntax-table emacs-lisp-mode-syntax-table
535 (or (condition-case ()
536 (save-excursion
537 (or (not (zerop (skip-syntax-backward "_w")))
538 (eq (char-syntax (following-char)) ?w)
539 (eq (char-syntax (following-char)) ?_)
540 (forward-sexp -1))
541 (skip-chars-forward "'")
542 (let ((obj (read (current-buffer))))
543 (and (symbolp obj) (boundp obj) obj)))
544 (error nil))
545 (let* ((str (find-tag-default))
546 (sym (if str (intern-soft str))))
547 (if (and sym (or any-symbol (boundp sym)))
548 sym
549 (save-match-data
550 (when (and str (string-match "\\`\\W*\\(.*?\\)\\W*\\'" str))
551 (setq sym (intern-soft (match-string 1 str)))
552 (and (or any-symbol (boundp sym)) sym)))))
553 0)))
554
555(defun describe-variable-custom-version-info (variable)
556 (let ((custom-version (get variable 'custom-version))
557 (cpv (get variable 'custom-package-version))
558 (output nil))
559 (if custom-version
560 (setq output
561 (format "This variable was introduced, or its default value was changed, in\nversion %s of Emacs.\n"
562 custom-version))
563 (when cpv
564 (let* ((package (car-safe cpv))
565 (version (if (listp (cdr-safe cpv))
566 (car (cdr-safe cpv))
567 (cdr-safe cpv)))
568 (pkg-versions (assq package customize-package-emacs-version-alist))
569 (emacsv (cdr (assoc version pkg-versions))))
570 (if (and package version)
571 (setq output
572 (format (concat "This variable was introduced, or its default value was changed, in\nversion %s of the %s package"
573 (if emacsv
574 (format " that is part of Emacs %s" emacsv))
575 ".\n")
576 version package))))))
577 output))
578
579;;;###autoload
580(defun describe-variable (variable &optional buffer frame)
581 "Display the full documentation of VARIABLE (a symbol).
582Returns the documentation as a string, also.
583If VARIABLE has a buffer-local value in BUFFER or FRAME
584\(default to the current buffer and current frame),
585it is displayed along with the global value."
586 (interactive
587 (let ((v (variable-at-point))
588 (enable-recursive-minibuffers t)
589 val)
590 (setq val (completing-read (if (symbolp v)
591 (format
592 "Describe variable (default %s): " v)
593 "Describe variable: ")
594 obarray
135e287c
JB
595 (lambda (vv)
596 (and (not (keywordp vv))
597 (or (boundp vv)
598 (get vv 'variable-documentation))))
1113ff44
MR
599 t nil nil
600 (if (symbolp v) (symbol-name v))))
601 (list (if (equal val "")
602 v (intern val)))))
603 (let (file-name)
604 (unless (buffer-live-p buffer) (setq buffer (current-buffer)))
605 (unless (frame-live-p frame) (setq frame (selected-frame)))
606 (if (not (symbolp variable))
607 (message "You did not specify a variable")
608 (save-excursion
609 (let ((valvoid (not (with-current-buffer buffer (boundp variable))))
610 val val-start-pos locus)
611 ;; Extract the value before setting up the output buffer,
612 ;; in case `buffer' *is* the output buffer.
613 (unless valvoid
614 (with-selected-frame frame
615 (with-current-buffer buffer
616 (setq val (symbol-value variable)
617 locus (variable-binding-locus variable)))))
618 (help-setup-xref (list #'describe-variable variable buffer)
32226619 619 (called-interactively-p 'interactive))
1113ff44
MR
620 (with-help-window (help-buffer)
621 (with-current-buffer buffer
622 (prin1 variable)
623 (setq file-name (find-lisp-object-file-name variable 'defvar))
624
625 (if file-name
626 (progn
627 (princ " is a variable defined in `")
e8e8dbf9
MR
628 (princ (if (eq file-name 'C-source)
629 "C source code"
630 (file-name-nondirectory file-name)))
1113ff44
MR
631 (princ "'.\n")
632 (with-current-buffer standard-output
633 (save-excursion
634 (re-search-backward "`\\([^`']+\\)'" nil t)
635 (help-xref-button 1 'help-variable-def
636 variable file-name)))
637 (if valvoid
638 (princ "It is void as a variable.")
639 (princ "Its ")))
640 (if valvoid
641 (princ " is void as a variable.")
642 (princ "'s "))))
3c505d31 643 (unless valvoid
1113ff44
MR
644 (with-current-buffer standard-output
645 (setq val-start-pos (point))
646 (princ "value is ")
1113ff44 647 (let ((from (point)))
3c505d31 648 (terpri)
1113ff44 649 (pp val)
e1a23575 650 (if (< (point) (+ 68 (line-beginning-position 0)))
3c505d31 651 (delete-region from (1+ from))
7c420169 652 (delete-region (1- from) from))
0097720d
SM
653 (let* ((sv (get variable 'standard-value))
654 (origval (and (consp sv)
655 (condition-case nil
656 (eval (car sv))
657 (error :help-eval-error)))))
658 (when (and (consp sv)
659 (not (equal origval val))
660 (not (equal origval :help-eval-error)))
661 (princ "\nOriginal value was \n")
662 (setq from (point))
663 (pp origval)
664 (if (< (point) (+ from 20))
665 (delete-region (1- from) from)))))))
1113ff44 666 (terpri)
1113ff44
MR
667 (when locus
668 (if (bufferp locus)
669 (princ (format "%socal in buffer %s; "
670 (if (get variable 'permanent-local)
671 "Permanently l" "L")
672 (buffer-name)))
673 (princ (format "It is a frame-local variable; ")))
674 (if (not (default-boundp variable))
675 (princ "globally void")
676 (let ((val (default-value variable)))
677 (with-current-buffer standard-output
678 (princ "global value is ")
679 (terpri)
680 ;; Fixme: pp can take an age if you happen to
681 ;; ask for a very large expression. We should
682 ;; probably print it raw once and check it's a
683 ;; sensible size before prettyprinting. -- fx
684 (let ((from (point)))
685 (pp val)
686 ;; See previous comment for this function.
687 ;; (help-xref-on-pp from (point))
688 (if (< (point) (+ from 20))
689 (delete-region (1- from) from))))))
690 (terpri))
691
692 ;; If the value is large, move it to the end.
693 (with-current-buffer standard-output
694 (when (> (count-lines (point-min) (point-max)) 10)
695 ;; Note that setting the syntax table like below
696 ;; makes forward-sexp move over a `'s' at the end
697 ;; of a symbol.
698 (set-syntax-table emacs-lisp-mode-syntax-table)
699 (goto-char val-start-pos)
700 ;; The line below previously read as
701 ;; (delete-region (point) (progn (end-of-line) (point)))
702 ;; which suppressed display of the buffer local value for
703 ;; large values.
704 (when (looking-at "value is") (replace-match ""))
705 (save-excursion
706 (insert "\n\nValue:")
707 (set (make-local-variable 'help-button-cache)
708 (point-marker)))
709 (insert "value is shown ")
710 (insert-button "below"
711 'action help-button-cache
712 'follow-link t
713 'help-echo "mouse-2, RET: show value")
714 (insert ".\n")))
715 (terpri)
716
717 (let* ((alias (condition-case nil
718 (indirect-variable variable)
719 (error variable)))
720 (obsolete (get variable 'byte-obsolete-variable))
721 (use (car obsolete))
722 (safe-var (get variable 'safe-local-variable))
723 (doc (or (documentation-property variable 'variable-documentation)
724 (documentation-property alias 'variable-documentation)))
725 (extra-line nil))
726 ;; Add a note for variables that have been make-var-buffer-local.
727 (when (and (local-variable-if-set-p variable)
728 (or (not (local-variable-p variable))
729 (with-temp-buffer
730 (local-variable-if-set-p variable))))
731 (setq extra-line t)
732 (princ " Automatically becomes buffer-local when set in any fashion.\n"))
733
734 ;; Mention if it's an alias
735 (unless (eq alias variable)
736 (setq extra-line t)
737 (princ (format " This variable is an alias for `%s'.\n" alias)))
738
739 (when obsolete
740 (setq extra-line t)
741 (princ " This variable is obsolete")
742 (if (cdr obsolete) (princ (format " since %s" (cdr obsolete))))
743 (princ (cond ((stringp use) (concat ";\n " use))
744 (use (format ";\n use `%s' instead." (car obsolete)))
745 (t ".")))
746 (terpri))
2ee20f24
JL
747
748 (when (member (cons variable val) file-local-variables-alist)
749 (setq extra-line t)
750 (if (member (cons variable val) dir-local-variables-alist)
751 (let ((file (and (buffer-file-name)
303f9ae0
GM
752 (not (file-remote-p (buffer-file-name)))
753 (dir-locals-find-file
754 (buffer-file-name))))
755 (type "file"))
2ee20f24 756 (princ " This variable is a directory local variable")
b6ce92f1 757 (when file
303f9ae0
GM
758 (if (consp file) ; result from cache
759 ;; If the cache element has an mtime, we
760 ;; assume it came from a file.
761 (if (nth 2 file)
762 (setq file (expand-file-name
763 dir-locals-file (car file)))
764 ;; Otherwise, assume it was set directly.
765 (setq type "directory")))
766 (princ (format "\n from the %s \"%s\"" type file)))
2ee20f24
JL
767 (princ ".\n"))
768 (princ " This variable is a file local variable.\n")))
769
589a99f2
GM
770 (when (memq variable ignored-local-variables)
771 (setq extra-line t)
772 (princ " This variable is ignored when used as a file local \
773variable.\n"))
774
775 ;; Can be both risky and safe, eg auto-fill-function.
776 (when (risky-local-variable-p variable)
777 (setq extra-line t)
778 (princ " This variable is potentially risky when used as a \
779file local variable.\n")
780 (when (assq variable safe-local-variable-values)
781 (princ " However, you have added it to \
782`safe-local-variable-values'.\n")))
783
1113ff44
MR
784 (when safe-var
785 (setq extra-line t)
786 (princ " This variable is safe as a file local variable ")
787 (princ "if its value\n satisfies the predicate ")
788 (princ (if (byte-code-function-p safe-var)
789 "which is byte-compiled expression.\n"
790 (format "`%s'.\n" safe-var))))
791
792 (if extra-line (terpri))
793 (princ "Documentation:\n")
794 (with-current-buffer standard-output
795 (insert (or doc "Not documented as a variable."))))
796
797 ;; Make a link to customize if this variable can be customized.
798 (when (custom-variable-p variable)
799 (let ((customize-label "customize"))
800 (terpri)
801 (terpri)
802 (princ (concat "You can " customize-label " this variable."))
803 (with-current-buffer standard-output
804 (save-excursion
805 (re-search-backward
806 (concat "\\(" customize-label "\\)") nil t)
807 (help-xref-button 1 'help-customize-variable variable))))
808 ;; Note variable's version or package version
809 (let ((output (describe-variable-custom-version-info variable)))
810 (when output
811 (terpri)
812 (terpri)
813 (princ output))))
814
7fdbcd83 815 (with-current-buffer standard-output
1113ff44
MR
816 ;; Return the text we displayed.
817 (buffer-string))))))))
818
819
820;;;###autoload
821(defun describe-syntax (&optional buffer)
822 "Describe the syntax specifications in the syntax table of BUFFER.
823The descriptions are inserted in a help buffer, which is then displayed.
824BUFFER defaults to the current buffer."
825 (interactive)
826 (setq buffer (or buffer (current-buffer)))
32226619
JB
827 (help-setup-xref (list #'describe-syntax buffer)
828 (called-interactively-p 'interactive))
1113ff44
MR
829 (with-help-window (help-buffer)
830 (let ((table (with-current-buffer buffer (syntax-table))))
831 (with-current-buffer standard-output
832 (describe-vector table 'internal-describe-syntax-value)
833 (while (setq table (char-table-parent table))
834 (insert "\nThe parent syntax table is:")
835 (describe-vector table 'internal-describe-syntax-value))))))
836
837(defun help-describe-category-set (value)
838 (insert (cond
839 ((null value) "default")
840 ((char-table-p value) "deeper char-table ...")
841 (t (condition-case err
842 (category-set-mnemonics value)
843 (error "invalid"))))))
844
845;;;###autoload
846(defun describe-categories (&optional buffer)
847 "Describe the category specifications in the current category table.
848The descriptions are inserted in a buffer, which is then displayed.
849If BUFFER is non-nil, then describe BUFFER's category table instead.
850BUFFER should be a buffer or a buffer name."
851 (interactive)
852 (setq buffer (or buffer (current-buffer)))
32226619
JB
853 (help-setup-xref (list #'describe-categories buffer)
854 (called-interactively-p 'interactive))
1113ff44 855 (with-help-window (help-buffer)
c6ec96f8
KH
856 (let* ((table (with-current-buffer buffer (category-table)))
857 (docs (char-table-extra-slot table 0)))
858 (if (or (not (vectorp docs)) (/= (length docs) 95))
859 (error "Invalid first extra slot in this category table\n"))
1113ff44 860 (with-current-buffer standard-output
c6ec96f8
KH
861 (insert "Legend of category mnemonics (see the tail for the longer description)\n")
862 (let ((pos (point)) (items 0) lines n)
863 (dotimes (i 95)
864 (if (aref docs i) (setq items (1+ items))))
865 (setq lines (1+ (/ (1- items) 4)))
866 (setq n 0)
867 (dotimes (i 95)
868 (let ((elt (aref docs i)))
869 (when elt
870 (string-match ".*" elt)
871 (setq elt (match-string 0 elt))
872 (if (>= (length elt) 17)
873 (setq elt (concat (substring elt 0 14) "...")))
874 (if (< (point) (point-max))
875 (move-to-column (* 20 (/ n lines)) t))
876 (insert (+ i ?\s) ?: elt)
877 (if (< (point) (point-max))
878 (forward-line 1)
879 (insert "\n"))
880 (setq n (1+ n))
881 (if (= (% n lines) 0)
882 (goto-char pos))))))
883 (goto-char (point-max))
884 (insert "\n"
885 "character(s)\tcategory mnemonics\n"
886 "------------\t------------------")
1113ff44 887 (describe-vector table 'help-describe-category-set)
c6ec96f8
KH
888 (insert "Legend of category mnemonics:\n")
889 (dotimes (i 95)
890 (let ((elt (aref docs i)))
891 (when elt
892 (if (string-match "\n" elt)
893 (setq elt (substring elt (match-end 0))))
894 (insert (+ i ?\s) ": " elt "\n"))))
895 (while (setq table (char-table-parent table))
896 (insert "\nThe parent category table is:")
897 (describe-vector table 'help-describe-category-set))))))
1113ff44 898
17284e30
GM
899\f
900;;; Replacements for old lib-src/ programs. Don't seem especially useful.
901
902;; Replaces lib-src/digest-doc.c.
903;;;###autoload
904(defun doc-file-to-man (file)
905 "Produce an nroff buffer containing the doc-strings from the DOC file."
906 (interactive (list (read-file-name "Name of DOC file: " doc-directory
907 internal-doc-file-name t)))
908 (or (file-readable-p file)
909 (error "Cannot read file `%s'" file))
910 (pop-to-buffer (generate-new-buffer "*man-doc*"))
911 (setq buffer-undo-list t)
912 (insert ".TH \"Command Summary for GNU Emacs\"\n"
913 ".AU Richard M. Stallman\n")
914 (insert-file-contents file)
915 (let (notfirst)
916 (while (search-forward "\1f" nil 'move)
917 (if (looking-at "S")
918 (delete-region (1- (point)) (line-end-position))
919 (delete-char -1)
920 (if notfirst
921 (insert "\n.DE\n")
922 (setq notfirst t))
923 (insert "\n.SH ")
924 (insert (if (looking-at "F") "Function " "Variable "))
925 (delete-char 1)
926 (forward-line 1)
927 (insert ".DS L\n"))))
928 (insert "\n.DE\n")
929 (setq buffer-undo-list nil)
930 (nroff-mode))
931
932;; Replaces lib-src/sorted-doc.c.
933;;;###autoload
934(defun doc-file-to-info (file)
935 "Produce a texinfo buffer with sorted doc-strings from the DOC file."
936 (interactive (list (read-file-name "Name of DOC file: " doc-directory
937 internal-doc-file-name t)))
938 (or (file-readable-p file)
939 (error "Cannot read file `%s'" file))
940 (let ((i 0) type name doc alist)
941 (with-temp-buffer
942 (insert-file-contents file)
943 ;; The characters "@{}" need special treatment.
944 (while (re-search-forward "[@{}]" nil t)
945 (backward-char)
946 (insert "@")
947 (forward-char 1))
948 (goto-char (point-min))
949 (while (search-forward "\1f" nil t)
950 (unless (looking-at "S")
951 (setq type (char-after)
952 name (buffer-substring (1+ (point)) (line-end-position))
953 doc (buffer-substring (line-beginning-position 2)
954 (if (search-forward "\1f" nil 'move)
955 (1- (point))
956 (point)))
957 alist (cons (list name type doc) alist))
958 (backward-char 1))))
959 (pop-to-buffer (generate-new-buffer "*info-doc*"))
960 (setq buffer-undo-list t)
961 ;; Write the output header.
962 (insert "\\input texinfo @c -*-texinfo-*-\n"
963 "@setfilename emacsdoc.info\n"
964 "@settitle Command Summary for GNU Emacs\n"
965 "@finalout\n"
966 "\n@node Top\n"
967 "@unnumbered Command Summary for GNU Emacs\n\n"
968 "@table @asis\n\n"
969 "@iftex\n"
970 "@global@let@ITEM@item\n"
971 "@def@item{@filbreak@vskip5pt@ITEM}\n"
972 "@font@tensy cmsy10 scaled @magstephalf\n"
973 "@font@teni cmmi10 scaled @magstephalf\n"
974 "@def\\{{@tensy@char110}}\n" ; this backslash goes with cmr10
975 "@def|{{@tensy@char106}}\n"
976 "@def@{{{@tensy@char102}}\n"
977 "@def@}{{@tensy@char103}}\n"
978 "@def<{{@teni@char62}}\n"
979 "@def>{{@teni@char60}}\n"
980 "@chardef@@64\n"
981 "@catcode43=12\n"
982 "@tableindent-0.2in\n"
983 "@end iftex\n")
984 ;; Sort the array by name; within each name, by type (functions first).
985 (setq alist (sort alist (lambda (e1 e2)
986 (if (string-equal (car e1) (car e2))
987 (<= (cadr e1) (cadr e2))
988 (string-lessp (car e1) (car e2))))))
989 ;; Print each function.
990 (dolist (e alist)
991 (insert "\n@item "
992 (if (char-equal (cadr e) ?\F) "Function" "Variable")
993 " @code{" (car e) "}\n@display\n"
994 (nth 2 e)
995 "\n@end display\n")
996 ;; Try to avoid a save size overflow in the TeX output routine.
997 (if (zerop (setq i (% (1+ i) 100)))
998 (insert "\n@end table\n@table @asis\n")))
999 (insert "@end table\n"
1000 "@bye\n")
1001 (setq buffer-undo-list nil)
1002 (texinfo-mode)))
1003
1113ff44
MR
1004(provide 'help-fns)
1005
1113ff44 1006;;; help-fns.el ends here