1 ;;; help-fns.el --- Complex help functions
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002,
4 ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 ;; Free Software Foundation, Inc.
8 ;; Keywords: help, internal
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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
39 (defun describe-function (function)
40 "Display the full documentation of FUNCTION (a symbol)."
42 (let ((fn (function-called-at-point))
43 (enable-recursive-minibuffers t
)
45 (setq val
(completing-read (if fn
46 (format "Describe function (default %s): " fn
)
47 "Describe function: ")
48 obarray
'fboundp t nil nil
49 (and fn
(symbol-name fn
))))
50 (list (if (equal val
"")
53 (message "You didn't specify a function")
54 (help-setup-xref (list #'describe-function function
)
55 (called-interactively-p 'interactive
))
57 (with-help-window (help-buffer)
59 ;; Use " is " instead of a colon so that
60 ;; it is easier to get out the function name using forward-sexp.
62 (describe-function-1 function
)
63 (with-current-buffer standard-output
64 ;; Return the text we displayed.
67 (defun help-split-fundoc (docstring def
)
68 "Split a function DOCSTRING into the actual doc and the usage info.
69 Return (USAGE . DOC) or nil if there's no usage info.
70 DEF is the function whose usage we're looking for in DOCSTRING."
71 ;; Functions can get the calling sequence at the end of the doc string.
72 ;; In cases where `function' has been fset to a subr we can't search for
73 ;; function's name in the doc string so we use `fn' as the anonymous
74 ;; function name instead.
75 (when (and docstring
(string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring
))
77 ;; Replace `fn' with the actual function name.
78 (if (consp def
) "anonymous" def
)
79 (match-string 1 docstring
))
80 (substring docstring
0 (match-beginning 0)))))
82 (defun help-add-fundoc-usage (docstring arglist
)
83 "Add the usage info to DOCSTRING.
84 If DOCSTRING already has a usage info, then just return it unchanged.
85 The usage info is built from ARGLIST. DOCSTRING can be nil.
86 ARGLIST can also be t or a string of the form \"(FUN ARG1 ARG2 ...)\"."
87 (unless (stringp docstring
) (setq docstring
"Not documented"))
88 (if (or (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring
) (eq arglist t
))
91 (if (string-match "\n?\n\\'" docstring
)
92 (if (< (- (match-end 0) (match-beginning 0)) 2) "\n" "")
94 (if (and (stringp arglist
)
95 (string-match "\\`([^ ]+\\(.*\\))\\'" arglist
))
96 (concat "(fn" (match-string 1 arglist
) ")")
97 (format "%S" (help-make-usage 'fn arglist
))))))
99 (defun help-function-arglist (def)
100 ;; Handle symbols aliased to other symbols.
101 (if (and (symbolp def
) (fboundp def
)) (setq def
(indirect-function def
)))
102 ;; If definition is a macro, find the function inside it.
103 (if (eq (car-safe def
) 'macro
) (setq def
(cdr def
)))
105 ((byte-code-function-p def
) (aref def
0))
106 ((eq (car-safe def
) 'lambda
) (nth 1 def
))
107 ((and (eq (car-safe def
) 'autoload
) (not (eq (nth 4 def
) 'keymap
)))
108 "[Arg list not available until function definition is loaded.]")
111 (defun help-make-usage (function arglist
)
112 (cons (if (symbolp function
) function
'anonymous
)
113 (mapcar (lambda (arg)
114 (if (not (symbolp arg
))
115 (if (and (consp arg
) (symbolp (car arg
)))
116 ;; CL style default values for optional args.
117 (cons (intern (upcase (symbol-name (car arg
))))
120 (let ((name (symbol-name arg
)))
121 (if (string-match "\\`&" name
) arg
122 (intern (upcase name
))))))
125 ;; Could be this, if we make symbol-file do the work below.
126 ;; (defun help-C-file-name (subr-or-var kind)
127 ;; "Return the name of the C file where SUBR-OR-VAR is defined.
128 ;; KIND should be `var' for a variable or `subr' for a subroutine."
129 ;; (symbol-file (if (symbolp subr-or-var) subr-or-var
130 ;; (subr-name subr-or-var))
131 ;; (if (eq kind 'var) 'defvar 'defun)))
133 (defun help-C-file-name (subr-or-var kind
)
134 "Return the name of the C file where SUBR-OR-VAR is defined.
135 KIND should be `var' for a variable or `subr' for a subroutine."
136 (let ((docbuf (get-buffer-create " *DOC*"))
137 (name (if (eq 'var kind
)
138 (concat "V" (symbol-name subr-or-var
))
139 (concat "F" (subr-name subr-or-var
)))))
140 (with-current-buffer docbuf
141 (goto-char (point-min))
143 (insert-file-contents-literally
144 (expand-file-name internal-doc-file-name doc-directory
)))
145 (let ((file (catch 'loop
147 (let ((pnt (search-forward (concat "\x1f" name
"\n"))))
148 (re-search-backward "\x1fS\\(.*\\)")
149 (let ((file (match-string 1)))
150 (if (member file build-files
)
152 (goto-char pnt
))))))))
153 (if (string-match "^ns.*\\(\\.o\\|obj\\)\\'" file
)
154 (setq file
(replace-match ".m" t t file
1))
155 (if (string-match "\\.\\(o\\|obj\\)\\'" file
)
156 (setq file
(replace-match ".c" t t file
))))
157 (if (string-match "\\.\\(c\\|m\\)\\'" file
)
161 (defcustom help-downcase-arguments nil
162 "If non-nil, argument names in *Help* buffers are downcased."
167 (defun help-highlight-arg (arg)
168 "Highlight ARG as an argument name for a *Help* buffer.
169 Return ARG in face `help-argument-name'; ARG is also downcased
170 if the variable `help-downcase-arguments' is non-nil."
171 (propertize (if help-downcase-arguments
(downcase arg
) arg
)
172 'face
'help-argument-name
))
174 (defun help-do-arg-highlight (doc args
)
175 (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table
)
176 (modify-syntax-entry ?\-
"w")
177 (dolist (arg args doc
)
178 (setq doc
(replace-regexp-in-string
179 ;; This is heuristic, but covers all common cases
181 (concat "\\<" ; beginning of word
182 "\\(?:[a-z-]*-\\)?" ; for xxx-ARG
186 "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs
187 "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n
188 "\\(?:-[{([<`\"].*?\\)?"; for ARG-{x}, (x), <x>, [x], `x'
190 (help-highlight-arg arg
)
193 (defun help-highlight-arguments (usage doc
&rest args
)
197 (goto-char (point-min))
198 (let ((case-fold-search nil
)
199 (next (not (or args
(looking-at "\\["))))
201 ;; Make a list of all arguments
202 (skip-chars-forward "^ ")
204 (or opt
(not (looking-at " &")) (setq opt t
))
205 (if (not (re-search-forward " \\([\\[(]*\\)\\([^] &)\.]+\\)" nil t
))
207 (setq args
(cons (match-string 2) args
))
208 (when (and opt
(string= (match-string 1) "("))
209 ;; A pesky CL-style optional argument with default value,
210 ;; so let's skip over it
211 (search-backward "(")
212 (goto-char (scan-sexps (point) 1)))))
213 ;; Highlight aguments in the USAGE string
214 (setq usage
(help-do-arg-highlight (buffer-string) args
))
215 ;; Highlight arguments in the DOC string
216 (setq doc
(and doc
(help-do-arg-highlight doc args
))))))
217 ;; Return value is like the one from help-split-fundoc, but highlighted
220 ;; The following function was compiled from the former functions
221 ;; `describe-simplify-lib-file-name' and `find-source-lisp-file' with
222 ;; some excerpts from `describe-function-1' and `describe-variable'.
223 ;; The only additional twists provided are (1) locate the defining file
224 ;; for autoloaded functions, and (2) give preference to files in the
225 ;; "install directory" (directories found via `load-path') rather than
226 ;; to files in the "compile directory" (directories found by searching
227 ;; the loaddefs.el file). We autoload it because it's also used by
228 ;; `describe-face' (instead of `describe-simplify-lib-file-name').
231 (defun find-lisp-object-file-name (object type
)
232 "Guess the file that defined the Lisp object OBJECT, of type TYPE.
233 OBJECT should be a symbol associated with a function, variable, or face;
234 alternatively, it can be a function definition.
235 If TYPE is `defvar', search for a variable definition.
236 If TYPE is `defface', search for a face definition.
237 If TYPE is the value returned by `symbol-function' for a function symbol,
238 search for a function definition.
240 The return value is the absolute name of a readable file where OBJECT is
241 defined. If several such files exist, preference is given to a file
242 found via `load-path'. The return value can also be `C-source', which
243 means that OBJECT is a function or variable defined in C. If no
244 suitable file is found, return nil."
245 (let* ((autoloaded (eq (car-safe type
) 'autoload
))
246 (file-name (or (and autoloaded
(nth 1 type
))
248 object
(if (memq type
(list 'defvar
'defface
))
253 ;; An autoloaded function: Locate the file since `symbol-function'
254 ;; has only returned a bare string here.
256 (locate-file file-name load-path
'(".el" ".elc") 'readable
)))
257 ((and (stringp file-name
)
258 (string-match "[.]*loaddefs.el\\'" file-name
))
259 ;; An autoloaded variable or face. Visit loaddefs.el in a buffer
260 ;; and try to extract the defining file. The following form is
261 ;; from `describe-function-1' and `describe-variable'.
264 (find-function-search-for-symbol object nil file-name
)
267 (with-current-buffer (car location
)
268 (goto-char (cdr location
))
269 (when (re-search-backward
270 "^;;; Generated autoloads from \\(.*\\)" nil t
)
273 (file-name-sans-extension
274 (match-string-no-properties 1))
275 load-path
'(".el" ".elc") 'readable
))))))))
278 ((and (not file-name
) (subrp type
))
279 ;; A built-in function. The form is from `describe-function-1'.
280 (if (get-buffer " *DOC*")
281 (help-C-file-name type
'subr
)
283 ((and (not file-name
) (symbolp object
)
284 (integerp (get object
'variable-documentation
)))
285 ;; A variable defined in C. The form is from `describe-variable'.
286 (if (get-buffer " *DOC*")
287 (help-C-file-name object
'var
)
289 ((not (stringp file-name
))
290 ;; If we don't have a file-name string by now, we lost.
292 ;; Now, `file-name' should have become an absolute file name.
293 ;; For files loaded from ~/.emacs.elc, try ~/.emacs.
295 (and (string-equal file-name
296 (expand-file-name ".emacs.elc" "~"))
297 (file-readable-p (setq fn
(expand-file-name ".emacs" "~")))
299 ;; When the Elisp source file can be found in the install
300 ;; directory, return the name of that file.
302 (if (string-match "[.]elc\\'" file-name
)
303 (substring-no-properties file-name
0 -
1)
305 (or (and (file-readable-p lib-name
) lib-name
)
306 ;; The library might be compressed.
307 (and (file-readable-p (concat lib-name
".gz")) lib-name
))))
308 ((let* ((lib-name (file-name-nondirectory file-name
))
309 ;; The next form is from `describe-simplify-lib-file-name'.
311 ;; Try converting the absolute file name to a library
312 ;; name, convert that back to a file name and see if we
313 ;; get the original one. If so, they are equivalent.
314 (if (equal file-name
(locate-file lib-name load-path
'("")))
315 (if (string-match "[.]elc\\'" lib-name
)
316 (substring-no-properties lib-name
0 -
1)
319 ;; The next three forms are from `find-source-lisp-file'.
320 (elc-file (locate-file
322 (if (string-match "\\.el\\'" file-name
)
325 load-path nil
'readable
))
328 (insert-file-contents-literally elc-file nil
0 256)
331 (string-match ";;; from file \\(.*\\.el\\)" str
)
332 (match-string 1 str
))))
333 (and src-file
(file-readable-p src-file
) src-file
))))))
335 (declare-function ad-get-advice-info
"advice" (function))
338 (defun describe-function-1 (function)
339 (let* ((advised (and (symbolp function
) (featurep 'advice
)
340 (ad-get-advice-info function
)))
341 ;; If the function is advised, use the symbol that has the
342 ;; real definition, if that symbol is already set up.
345 (let ((origname (cdr (assq 'origname advised
))))
346 (and (fboundp origname
) origname
)))
348 ;; Get the real definition.
349 (def (if (symbolp real-function
)
350 (symbol-function real-function
)
353 (beg (if (commandp def
) "an interactive " "a "))
354 (pt1 (with-current-buffer (help-buffer) (point)))
357 (cond ((or (stringp def
)
361 (if (eq 'unevalled
(cdr (subr-arity def
)))
362 (concat beg
"special form")
363 (concat beg
"built-in function")))
364 ((byte-code-function-p def
)
365 (concat beg
"compiled Lisp function"))
367 (while (and (fboundp def
)
368 (symbolp (symbol-function def
)))
369 (setq def
(symbol-function def
)))
370 ;; Handle (defalias 'foo 'bar), where bar is undefined.
371 (or (fboundp def
) (setq errtype
'alias
))
372 (format "an alias for `%s'" def
))
373 ((eq (car-safe def
) 'lambda
)
374 (concat beg
"Lisp function"))
375 ((eq (car-safe def
) 'macro
)
377 ((eq (car-safe def
) 'autoload
)
378 (format "%s autoloaded %s"
379 (if (commandp def
) "an interactive" "an")
380 (if (eq (nth 4 def
) 'keymap
) "keymap"
381 (if (nth 4 def
) "Lisp macro" "Lisp function"))))
384 (elts (cdr-safe def
)))
386 (if (char-table-p (car-safe elts
))
389 (setq elts
(cdr-safe elts
)))
395 (if (eq errtype
'alias
)
396 (princ ",\nwhich is not defined. Please make a bug report.")
397 (with-current-buffer standard-output
400 (when (re-search-backward "alias for `\\([^`']+\\)'" nil t
)
401 (help-xref-button 1 'help-function def
)))))
403 (setq file-name
(find-lisp-object-file-name function def
))
406 ;; We used to add .el to the file name,
407 ;; but that's completely wrong when the user used load-file.
408 (princ (if (eq file-name
'C-source
)
410 (file-name-nondirectory file-name
)))
412 ;; Make a hyperlink to the library.
413 (with-current-buffer standard-output
415 (re-search-backward "`\\([^`']+\\)'" nil t
)
416 (help-xref-button 1 'help-function-def function file-name
))))
418 (with-current-buffer (help-buffer)
419 (fill-region-as-paragraph (save-excursion (goto-char pt1
) (forward-line 0) (point))
422 (when (commandp function
)
423 (let ((pt2 (with-current-buffer (help-buffer) (point)))
424 (remapped (command-remapping function
)))
425 (unless (memq remapped
'(ignore undefined
))
426 (let ((keys (where-is-internal
427 (or remapped function
) overriding-local-map nil nil
))
429 (if (and (eq function
'self-insert-command
)
430 (vectorp (car-safe keys
))
431 (consp (aref (car keys
) 0)))
432 (princ "It is bound to many ordinary text characters.\n")
433 ;; Which non-control non-meta keys run this command?
435 (if (member (event-modifiers (aref key
0)) '(nil (shift)))
436 (push key non-modified-keys
)))
438 (princ "It is remapped to `")
439 (princ (symbol-name remapped
))
443 (princ (if remapped
", which is bound to " "It is bound to "))
444 ;; If lots of ordinary text characters run this command,
445 ;; don't mention them one by one.
446 (if (< (length non-modified-keys
) 10)
447 (princ (mapconcat 'key-description keys
", "))
448 (dolist (key non-modified-keys
)
449 (setq keys
(delq key keys
)))
452 (princ (mapconcat 'key-description keys
", "))
453 (princ ", and many ordinary text characters"))
454 (princ "many ordinary text characters"))))
455 (when (or remapped keys non-modified-keys
)
459 (with-current-buffer (help-buffer)
460 (fill-region-as-paragraph pt2
(point))
461 (unless (looking-back "\n\n")
463 ;; Note that list* etc do not get this property until
464 ;; cl-hack-byte-compiler runs, after bytecomp is loaded.
465 (when (and (symbolp function
)
466 (eq (get function
'byte-compile
)
467 'cl-byte-compile-compiler-macro
))
468 (princ "This function has a compiler macro")
469 (let ((lib (get function
'compiler-macro-file
)))
471 (princ (format " in `%s'" lib
))
472 (with-current-buffer standard-output
474 (re-search-backward "`\\([^`']+\\)'" nil t
)
475 (help-xref-button 1 'help-function-cmacro function lib
)))))
477 (let* ((advertised (gethash def advertised-signature-table t
))
478 (arglist (if (listp advertised
)
479 advertised
(help-function-arglist def
)))
480 (doc (documentation function
))
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
)
485 (if usage
(setq doc
(cdr usage
)))
487 ((and usage
(not (listp advertised
))) (car usage
))
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
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.
513 (get function
'byte-obsolete-info
)))
514 (use (car 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
))
524 (or doc
"Not documented."))))))))
530 (defun variable-at-point (&optional any-symbol
)
531 "Return the bound variable symbol found at or before point.
532 Return 0 if there is no such symbol.
533 If 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 ()
537 (or (not (zerop (skip-syntax-backward "_w")))
538 (eq (char-syntax (following-char)) ?w
)
539 (eq (char-syntax (following-char)) ?_
)
541 (skip-chars-forward "'")
542 (let ((obj (read (current-buffer))))
543 (and (symbolp obj
) (boundp obj
) obj
)))
545 (let* ((str (find-tag-default))
546 (sym (if str
(intern-soft str
))))
547 (if (and sym
(or any-symbol
(boundp sym
)))
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
)))))
555 (defun describe-variable-custom-version-info (variable)
556 (let ((custom-version (get variable
'custom-version
))
557 (cpv (get variable
'custom-package-version
))
561 (format "This variable was introduced, or its default value was changed, in\nversion %s of Emacs.\n"
564 (let* ((package (car-safe cpv
))
565 (version (if (listp (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
)
572 (format (concat "This variable was introduced, or its default value was changed, in\nversion %s of the %s package"
574 (format " that is part of Emacs %s" emacsv
))
576 version package
))))))
580 (defun describe-variable (variable &optional buffer frame
)
581 "Display the full documentation of VARIABLE (a symbol).
582 Returns the documentation as a string, also.
583 If VARIABLE has a buffer-local value in BUFFER or FRAME
584 \(default to the current buffer and current frame),
585 it is displayed along with the global value."
587 (let ((v (variable-at-point))
588 (enable-recursive-minibuffers t
)
590 (setq val
(completing-read (if (symbolp v
)
592 "Describe variable (default %s): " v
)
593 "Describe variable: ")
597 (get vv
'variable-documentation
)))
599 (if (symbolp v
) (symbol-name v
))))
600 (list (if (equal val
"")
603 (unless (buffer-live-p buffer
) (setq buffer
(current-buffer)))
604 (unless (frame-live-p frame
) (setq frame
(selected-frame)))
605 (if (not (symbolp variable
))
606 (message "You did not specify a variable")
608 (let ((valvoid (not (with-current-buffer buffer
(boundp variable
))))
609 val val-start-pos locus
)
610 ;; Extract the value before setting up the output buffer,
611 ;; in case `buffer' *is* the output buffer.
613 (with-selected-frame frame
614 (with-current-buffer buffer
615 (setq val
(symbol-value variable
)
616 locus
(variable-binding-locus variable
)))))
617 (help-setup-xref (list #'describe-variable variable buffer
)
618 (called-interactively-p 'interactive
))
619 (with-help-window (help-buffer)
620 (with-current-buffer buffer
622 (setq file-name
(find-lisp-object-file-name variable
'defvar
))
626 (princ " is a variable defined in `")
627 (princ (if (eq file-name
'C-source
)
629 (file-name-nondirectory file-name
)))
631 (with-current-buffer standard-output
633 (re-search-backward "`\\([^`']+\\)'" nil t
)
634 (help-xref-button 1 'help-variable-def
635 variable file-name
)))
637 (princ "It is void as a variable.")
640 (princ " is void as a variable.")
643 (with-current-buffer standard-output
644 (setq val-start-pos
(point))
646 (let ((from (point)))
649 (if (< (point) (+ 68 (line-beginning-position 0)))
650 (delete-region from
(1+ from
))
651 (delete-region (1- from
) from
))
652 (let* ((sv (get variable
'standard-value
))
653 (origval (and (consp sv
)
656 (error :help-eval-error
)))))
657 (when (and (consp sv
)
658 (not (equal origval val
))
659 (not (equal origval
:help-eval-error
)))
660 (princ "\nOriginal value was \n")
663 (if (< (point) (+ from
20))
664 (delete-region (1- from
) from
)))))))
668 (princ (format "%socal in buffer %s; "
669 (if (get variable
'permanent-local
)
672 (princ (format "It is a frame-local variable; ")))
673 (if (not (default-boundp variable
))
674 (princ "globally void")
675 (let ((val (default-value variable
)))
676 (with-current-buffer standard-output
677 (princ "global value is ")
679 ;; Fixme: pp can take an age if you happen to
680 ;; ask for a very large expression. We should
681 ;; probably print it raw once and check it's a
682 ;; sensible size before prettyprinting. -- fx
683 (let ((from (point)))
685 ;; See previous comment for this function.
686 ;; (help-xref-on-pp from (point))
687 (if (< (point) (+ from
20))
688 (delete-region (1- from
) from
))))))
691 ;; If the value is large, move it to the end.
692 (with-current-buffer standard-output
693 (when (> (count-lines (point-min) (point-max)) 10)
694 ;; Note that setting the syntax table like below
695 ;; makes forward-sexp move over a `'s' at the end
697 (set-syntax-table emacs-lisp-mode-syntax-table
)
698 (goto-char val-start-pos
)
699 ;; The line below previously read as
700 ;; (delete-region (point) (progn (end-of-line) (point)))
701 ;; which suppressed display of the buffer local value for
703 (when (looking-at "value is") (replace-match ""))
705 (insert "\n\nValue:")
706 (set (make-local-variable 'help-button-cache
)
708 (insert "value is shown ")
709 (insert-button "below"
710 'action help-button-cache
712 'help-echo
"mouse-2, RET: show value")
716 (let* ((alias (condition-case nil
717 (indirect-variable variable
)
719 (obsolete (get variable
'byte-obsolete-variable
))
721 (safe-var (get variable
'safe-local-variable
))
722 (doc (or (documentation-property variable
'variable-documentation
)
723 (documentation-property alias
'variable-documentation
)))
725 ;; Add a note for variables that have been make-var-buffer-local.
726 (when (and (local-variable-if-set-p variable
)
727 (or (not (local-variable-p variable
))
729 (local-variable-if-set-p variable
))))
731 (princ " Automatically becomes buffer-local when set in any fashion.\n"))
733 ;; Mention if it's an alias
734 (unless (eq alias variable
)
736 (princ (format " This variable is an alias for `%s'.\n" alias
)))
740 (princ " This variable is obsolete")
741 (if (cdr obsolete
) (princ (format " since %s" (cdr obsolete
))))
742 (princ (cond ((stringp use
) (concat ";\n " use
))
743 (use (format ";\n use `%s' instead." (car obsolete
)))
747 (when (member (cons variable val
) file-local-variables-alist
)
749 (if (member (cons variable val
) dir-local-variables-alist
)
750 (let ((file (and (buffer-file-name)
751 (not (file-remote-p (buffer-file-name)))
752 (dir-locals-find-file (buffer-file-name)))))
753 (princ " This variable is a directory local variable")
755 (princ (concat "\n from the file \""
761 (princ " This variable is a file local variable.\n")))
763 (when (memq variable ignored-local-variables
)
765 (princ " This variable is ignored when used as a file local \
768 ;; Can be both risky and safe, eg auto-fill-function.
769 (when (risky-local-variable-p variable
)
771 (princ " This variable is potentially risky when used as a \
772 file local variable.\n")
773 (when (assq variable safe-local-variable-values
)
774 (princ " However, you have added it to \
775 `safe-local-variable-values'.\n")))
779 (princ " This variable is safe as a file local variable ")
780 (princ "if its value\n satisfies the predicate ")
781 (princ (if (byte-code-function-p safe-var
)
782 "which is byte-compiled expression.\n"
783 (format "`%s'.\n" safe-var
))))
785 (if extra-line
(terpri))
786 (princ "Documentation:\n")
787 (with-current-buffer standard-output
788 (insert (or doc
"Not documented as a variable."))))
790 ;; Make a link to customize if this variable can be customized.
791 (when (custom-variable-p variable
)
792 (let ((customize-label "customize"))
795 (princ (concat "You can " customize-label
" this variable."))
796 (with-current-buffer standard-output
799 (concat "\\(" customize-label
"\\)") nil t
)
800 (help-xref-button 1 'help-customize-variable variable
))))
801 ;; Note variable's version or package version
802 (let ((output (describe-variable-custom-version-info variable
)))
808 (with-current-buffer standard-output
809 ;; Return the text we displayed.
810 (buffer-string))))))))
814 (defun describe-syntax (&optional buffer
)
815 "Describe the syntax specifications in the syntax table of BUFFER.
816 The descriptions are inserted in a help buffer, which is then displayed.
817 BUFFER defaults to the current buffer."
819 (setq buffer
(or buffer
(current-buffer)))
820 (help-setup-xref (list #'describe-syntax buffer
)
821 (called-interactively-p 'interactive
))
822 (with-help-window (help-buffer)
823 (let ((table (with-current-buffer buffer
(syntax-table))))
824 (with-current-buffer standard-output
825 (describe-vector table
'internal-describe-syntax-value
)
826 (while (setq table
(char-table-parent table
))
827 (insert "\nThe parent syntax table is:")
828 (describe-vector table
'internal-describe-syntax-value
))))))
830 (defun help-describe-category-set (value)
832 ((null value
) "default")
833 ((char-table-p value
) "deeper char-table ...")
834 (t (condition-case err
835 (category-set-mnemonics value
)
836 (error "invalid"))))))
839 (defun describe-categories (&optional buffer
)
840 "Describe the category specifications in the current category table.
841 The descriptions are inserted in a buffer, which is then displayed.
842 If BUFFER is non-nil, then describe BUFFER's category table instead.
843 BUFFER should be a buffer or a buffer name."
845 (setq buffer
(or buffer
(current-buffer)))
846 (help-setup-xref (list #'describe-categories buffer
)
847 (called-interactively-p 'interactive
))
848 (with-help-window (help-buffer)
849 (let* ((table (with-current-buffer buffer
(category-table)))
850 (docs (char-table-extra-slot table
0)))
851 (if (or (not (vectorp docs
)) (/= (length docs
) 95))
852 (error "Invalid first extra slot in this category table\n"))
853 (with-current-buffer standard-output
854 (insert "Legend of category mnemonics (see the tail for the longer description)\n")
855 (let ((pos (point)) (items 0) lines n
)
857 (if (aref docs i
) (setq items
(1+ items
))))
858 (setq lines
(1+ (/ (1- items
) 4)))
861 (let ((elt (aref docs i
)))
863 (string-match ".*" elt
)
864 (setq elt
(match-string 0 elt
))
865 (if (>= (length elt
) 17)
866 (setq elt
(concat (substring elt
0 14) "...")))
867 (if (< (point) (point-max))
868 (move-to-column (* 20 (/ n lines
)) t
))
869 (insert (+ i ?\s
) ?
: elt
)
870 (if (< (point) (point-max))
874 (if (= (% n lines
) 0)
876 (goto-char (point-max))
878 "character(s)\tcategory mnemonics\n"
879 "------------\t------------------")
880 (describe-vector table
'help-describe-category-set
)
881 (insert "Legend of category mnemonics:\n")
883 (let ((elt (aref docs i
)))
885 (if (string-match "\n" elt
)
886 (setq elt
(substring elt
(match-end 0))))
887 (insert (+ i ?\s
) ": " elt
"\n"))))
888 (while (setq table
(char-table-parent table
))
889 (insert "\nThe parent category table is:")
890 (describe-vector table
'help-describe-category-set
))))))
893 ;;; Replacements for old lib-src/ programs. Don't seem especially useful.
895 ;; Replaces lib-src/digest-doc.c.
897 (defun doc-file-to-man (file)
898 "Produce an nroff buffer containing the doc-strings from the DOC file."
899 (interactive (list (read-file-name "Name of DOC file: " doc-directory
900 internal-doc-file-name t
)))
901 (or (file-readable-p file
)
902 (error "Cannot read file `%s'" file
))
903 (pop-to-buffer (generate-new-buffer "*man-doc*"))
904 (setq buffer-undo-list t
)
905 (insert ".TH \"Command Summary for GNU Emacs\"\n"
906 ".AU Richard M. Stallman\n")
907 (insert-file-contents file
)
909 (while (search-forward "\x1f" nil
'move
)
911 (delete-region (1- (point)) (line-end-position))
917 (insert (if (looking-at "F") "Function " "Variable "))
920 (insert ".DS L\n"))))
922 (setq buffer-undo-list nil
)
925 ;; Replaces lib-src/sorted-doc.c.
927 (defun doc-file-to-info (file)
928 "Produce a texinfo buffer with sorted doc-strings from the DOC file."
929 (interactive (list (read-file-name "Name of DOC file: " doc-directory
930 internal-doc-file-name t
)))
931 (or (file-readable-p file
)
932 (error "Cannot read file `%s'" file
))
933 (let ((i 0) type name doc alist
)
935 (insert-file-contents file
)
936 ;; The characters "@{}" need special treatment.
937 (while (re-search-forward "[@{}]" nil t
)
941 (goto-char (point-min))
942 (while (search-forward "\x1f" nil t
)
943 (unless (looking-at "S")
944 (setq type
(char-after)
945 name
(buffer-substring (1+ (point)) (line-end-position))
946 doc
(buffer-substring (line-beginning-position 2)
947 (if (search-forward "\x1f" nil
'move
)
950 alist
(cons (list name type doc
) alist
))
952 (pop-to-buffer (generate-new-buffer "*info-doc*"))
953 (setq buffer-undo-list t
)
954 ;; Write the output header.
955 (insert "\\input texinfo @c -*-texinfo-*-\n"
956 "@setfilename emacsdoc.info\n"
957 "@settitle Command Summary for GNU Emacs\n"
960 "@unnumbered Command Summary for GNU Emacs\n\n"
963 "@global@let@ITEM@item\n"
964 "@def@item{@filbreak@vskip5pt@ITEM}\n"
965 "@font@tensy cmsy10 scaled @magstephalf\n"
966 "@font@teni cmmi10 scaled @magstephalf\n"
967 "@def\\{{@tensy@char110}}\n" ; this backslash goes with cmr10
968 "@def|{{@tensy@char106}}\n"
969 "@def@{{{@tensy@char102}}\n"
970 "@def@}{{@tensy@char103}}\n"
971 "@def<{{@teni@char62}}\n"
972 "@def>{{@teni@char60}}\n"
975 "@tableindent-0.2in\n"
977 ;; Sort the array by name; within each name, by type (functions first).
978 (setq alist
(sort alist
(lambda (e1 e2
)
979 (if (string-equal (car e1
) (car e2
))
980 (<= (cadr e1
) (cadr e2
))
981 (string-lessp (car e1
) (car e2
))))))
982 ;; Print each function.
985 (if (char-equal (cadr e
) ?\F
) "Function" "Variable")
986 " @code{" (car e
) "}\n@display\n"
989 ;; Try to avoid a save size overflow in the TeX output routine.
990 (if (zerop (setq i
(%
(1+ i
) 100)))
991 (insert "\n@end table\n@table @asis\n")))
992 (insert "@end table\n"
994 (setq buffer-undo-list nil
)
999 ;;; help-fns.el ends here