1 ;;; help-fns.el --- Complex help functions
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001,
4 ;; 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 3 of the License, or
14 ;; (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>.
26 ;; This file contains those help commands which are complicated, and
27 ;; which may not be used in every session. For example
28 ;; `describe-function' will probably be heavily used when doing elisp
29 ;; 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
) (interactive-p))
56 (with-help-window (help-buffer)
58 ;; Use " is " instead of a colon so that
59 ;; it is easier to get out the function name using forward-sexp.
61 (describe-function-1 function
)
62 (with-current-buffer standard-output
63 ;; Return the text we displayed.
66 (defun help-split-fundoc (docstring def
)
67 "Split a function DOCSTRING into the actual doc and the usage info.
68 Return (USAGE . DOC) or nil if there's no usage info.
69 DEF 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
))
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)))))
81 (defun help-add-fundoc-usage (docstring arglist
)
82 "Add the usage info to DOCSTRING.
83 If DOCSTRING already has a usage info, then just return it unchanged.
84 The usage info is built from ARGLIST. DOCSTRING can be nil.
85 ARGLIST 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
))
90 (if (string-match "\n?\n\\'" docstring
)
91 (if (< (- (match-end 0) (match-beginning 0)) 2) "\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
))))))
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.
102 (if (eq (car-safe def
) 'macro
) (setq def
(cdr def
)))
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.]")
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
))))
119 (let ((name (symbol-name arg
)))
120 (if (string-match "\\`&" name
) arg
121 (intern (upcase name
))))))
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)))
132 (defun help-C-file-name (subr-or-var kind
)
133 "Return the name of the C file where SUBR-OR-VAR is defined.
134 KIND 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))
142 (insert-file-contents-literally
143 (expand-file-name internal-doc-file-name doc-directory
)))
144 (let ((file (catch 'loop
146 (let ((pnt (search-forward (concat "\x1f" name
"\n"))))
147 (re-search-backward "\x1fS\\(.*\\)")
148 (let ((file (match-string 1)))
149 (if (member file build-files
)
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
)
160 (defface help-argument-name
'((((supports :slant italic
)) :inherit italic
))
161 "Face to highlight argument names in *Help* buffers."
164 (defun help-default-arg-highlight (arg)
165 "Default function to highlight arguments in *Help* buffers.
166 It returns ARG in face `help-argument-name'; ARG is also
167 downcased if it displays differently than the default
168 face (according to `face-differs-from-default-p')."
169 (propertize (if (face-differs-from-default-p 'help-argument-name
)
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-default-arg-highlight 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 `variable', search for a variable definition.
236 If TYPE is `face', 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 (match-string-no-properties 1)
274 load-path nil
'readable
))))))))
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
)
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
)
288 ((not (stringp file-name
))
289 ;; If we don't have a file-name string by now, we lost.
292 (if (string-match "[.]elc\\'" file-name
)
293 (substring-no-properties file-name
0 -
1)
295 ;; When the Elisp source file can be found in the install
296 ;; directory return the name of that file - `file-name' should
297 ;; have become an absolute file name ny now.
298 (or (and (file-readable-p lib-name
) lib-name
)
299 ;; The library might be compressed.
300 (and (file-readable-p (concat lib-name
".gz")) lib-name
))))
301 ((let* ((lib-name (file-name-nondirectory file-name
))
302 ;; The next form is from `describe-simplify-lib-file-name'.
304 ;; Try converting the absolute file name to a library
305 ;; name, convert that back to a file name and see if we
306 ;; get the original one. If so, they are equivalent.
307 (if (equal file-name
(locate-file lib-name load-path
'("")))
308 (if (string-match "[.]elc\\'" lib-name
)
309 (substring-no-properties lib-name
0 -
1)
312 ;; The next three forms are from `find-source-lisp-file'.
313 (elc-file (locate-file
315 (if (string-match "\\.el\\'" file-name
)
318 load-path nil
'readable
))
321 (insert-file-contents-literally elc-file nil
0 256)
324 (string-match ";;; from file \\(.*\\.el\\)" str
)
325 (match-string 1 str
))))
326 (and src-file
(file-readable-p src-file
) src-file
))))))
328 (declare-function ad-get-advice-info
"advice" (function))
331 (defun describe-function-1 (function)
332 (let* ((advised (and (symbolp function
) (featurep 'advice
)
333 (ad-get-advice-info function
)))
334 ;; If the function is advised, use the symbol that has the
335 ;; real definition, if that symbol is already set up.
338 (let ((origname (cdr (assq 'origname advised
))))
339 (and (fboundp origname
) origname
)))
341 ;; Get the real definition.
342 (def (if (symbolp real-function
)
343 (symbol-function real-function
)
346 (beg (if (commandp def
) "an interactive " "a "))
347 (pt1 (with-current-buffer (help-buffer) (point)))
350 (cond ((or (stringp def
)
354 (if (eq 'unevalled
(cdr (subr-arity def
)))
355 (concat beg
"special form")
356 (concat beg
"built-in function")))
357 ((byte-code-function-p def
)
358 (concat beg
"compiled Lisp function"))
360 (while (and (fboundp def
)
361 (symbolp (symbol-function def
)))
362 (setq def
(symbol-function def
)))
363 ;; Handle (defalias 'foo 'bar), where bar is undefined.
364 (or (fboundp def
) (setq errtype
'alias
))
365 (format "an alias for `%s'" def
))
366 ((eq (car-safe def
) 'lambda
)
367 (concat beg
"Lisp function"))
368 ((eq (car-safe def
) 'macro
)
370 ((eq (car-safe def
) 'autoload
)
371 (format "%s autoloaded %s"
372 (if (commandp def
) "an interactive" "an")
373 (if (eq (nth 4 def
) 'keymap
) "keymap"
374 (if (nth 4 def
) "Lisp macro" "Lisp function"))))
377 (elts (cdr-safe def
)))
379 (if (char-table-p (car-safe elts
))
382 (setq elts
(cdr-safe elts
)))
388 (if (eq errtype
'alias
)
389 (princ ",\nwhich is not defined. Please make a bug report.")
390 (with-current-buffer standard-output
393 (when (re-search-backward "alias for `\\([^`']+\\)'" nil t
)
394 (help-xref-button 1 'help-function def
)))))
396 (setq file-name
(find-lisp-object-file-name function def
))
399 ;; We used to add .el to the file name,
400 ;; but that's completely wrong when the user used load-file.
401 (princ (if (eq file-name
'C-source
)
403 (file-name-nondirectory file-name
)))
405 ;; Make a hyperlink to the library.
406 (with-current-buffer standard-output
408 (re-search-backward "`\\([^`']+\\)'" nil t
)
409 (help-xref-button 1 'help-function-def real-function file-name
))))
411 (with-current-buffer (help-buffer)
412 (fill-region-as-paragraph (save-excursion (goto-char pt1
) (forward-line 0) (point))
415 (when (commandp function
)
416 (let ((pt2 (with-current-buffer (help-buffer) (point)))
417 (remapped (command-remapping function
)))
418 (unless (memq remapped
'(ignore undefined
))
419 (let ((keys (where-is-internal
420 (or remapped function
) overriding-local-map nil nil
))
422 (if (and (eq function
'self-insert-command
)
423 (vectorp (car-safe keys
))
424 (consp (aref (car keys
) 0)))
425 (princ "It is bound to many ordinary text characters.\n")
426 ;; Which non-control non-meta keys run this command?
428 (if (member (event-modifiers (aref key
0)) '(nil (shift)))
429 (push key non-modified-keys
)))
431 (princ "It is remapped to `")
432 (princ (symbol-name remapped
))
436 (princ (if remapped
", which is bound to " "It is bound to "))
437 ;; If lots of ordinary text characters run this command,
438 ;; don't mention them one by one.
439 (if (< (length non-modified-keys
) 10)
440 (princ (mapconcat 'key-description keys
", "))
441 (dolist (key non-modified-keys
)
442 (setq keys
(delq key keys
)))
445 (princ (mapconcat 'key-description keys
", "))
446 (princ ", and many ordinary text characters"))
447 (princ "many ordinary text characters"))))
448 (when (or remapped keys non-modified-keys
)
452 (with-current-buffer (help-buffer)
453 (fill-region-as-paragraph pt2
(point))
454 (unless (looking-back "\n\n")
456 (let* ((arglist (help-function-arglist def
))
457 (doc (documentation function
))
458 (usage (help-split-fundoc doc function
)))
459 (with-current-buffer standard-output
460 ;; If definition is a keymap, skip arglist note.
461 (unless (keymapp function
)
463 (usage (setq doc
(cdr usage
)) (car usage
))
465 (format "%S" (help-make-usage function arglist
)))
466 ((stringp arglist
) arglist
)
467 ;; Maybe the arglist is in the docstring of a symbol
468 ;; this one is aliased to.
469 ((let ((fun real-function
))
470 (while (and (symbolp fun
)
471 (setq fun
(symbol-function fun
))
472 (not (setq usage
(help-split-fundoc
479 (format "\nMacro: %s" (format-kbd-macro def
)))
480 (t "[Missing arglist. Please make a bug report.]")))
481 (high (help-highlight-arguments use doc
)))
482 (let ((fill-begin (point)))
483 (insert (car high
) "\n")
484 (fill-region fill-begin
(point)))
485 (setq doc
(cdr high
))))
486 (let* ((obsolete (and
487 ;; function might be a lambda construct.
489 (get function
'byte-obsolete-info
)))
490 (use (car obsolete
)))
492 (princ "\nThis function is obsolete")
493 (when (nth 2 obsolete
)
494 (insert (format " since %s" (nth 2 obsolete
))))
495 (insert (cond ((stringp use
) (concat ";\n" use
))
496 (use (format ";\nuse `%s' instead." use
))
500 (or doc
"Not documented."))))))))
506 (defun variable-at-point (&optional any-symbol
)
507 "Return the bound variable symbol found at or before point.
508 Return 0 if there is no such symbol.
509 If ANY-SYMBOL is non-nil, don't insist the symbol be bound."
510 (with-syntax-table emacs-lisp-mode-syntax-table
511 (or (condition-case ()
513 (or (not (zerop (skip-syntax-backward "_w")))
514 (eq (char-syntax (following-char)) ?w
)
515 (eq (char-syntax (following-char)) ?_
)
517 (skip-chars-forward "'")
518 (let ((obj (read (current-buffer))))
519 (and (symbolp obj
) (boundp obj
) obj
)))
521 (let* ((str (find-tag-default))
522 (sym (if str
(intern-soft str
))))
523 (if (and sym
(or any-symbol
(boundp sym
)))
526 (when (and str
(string-match "\\`\\W*\\(.*?\\)\\W*\\'" str
))
527 (setq sym
(intern-soft (match-string 1 str
)))
528 (and (or any-symbol
(boundp sym
)) sym
)))))
531 (defun describe-variable-custom-version-info (variable)
532 (let ((custom-version (get variable
'custom-version
))
533 (cpv (get variable
'custom-package-version
))
537 (format "This variable was introduced, or its default value was changed, in\nversion %s of Emacs.\n"
540 (let* ((package (car-safe cpv
))
541 (version (if (listp (cdr-safe cpv
))
544 (pkg-versions (assq package customize-package-emacs-version-alist
))
545 (emacsv (cdr (assoc version pkg-versions
))))
546 (if (and package version
)
548 (format (concat "This variable was introduced, or its default value was changed, in\nversion %s of the %s package"
550 (format " that is part of Emacs %s" emacsv
))
552 version package
))))))
556 (defun describe-variable (variable &optional buffer frame
)
557 "Display the full documentation of VARIABLE (a symbol).
558 Returns the documentation as a string, also.
559 If VARIABLE has a buffer-local value in BUFFER or FRAME
560 \(default to the current buffer and current frame),
561 it is displayed along with the global value."
563 (let ((v (variable-at-point))
564 (enable-recursive-minibuffers t
)
566 (setq val
(completing-read (if (symbolp v
)
568 "Describe variable (default %s): " v
)
569 "Describe variable: ")
573 (get vv
'variable-documentation
)))
575 (if (symbolp v
) (symbol-name v
))))
576 (list (if (equal val
"")
579 (unless (buffer-live-p buffer
) (setq buffer
(current-buffer)))
580 (unless (frame-live-p frame
) (setq frame
(selected-frame)))
581 (if (not (symbolp variable
))
582 (message "You did not specify a variable")
584 (let ((valvoid (not (with-current-buffer buffer
(boundp variable
))))
585 val val-start-pos locus
)
586 ;; Extract the value before setting up the output buffer,
587 ;; in case `buffer' *is* the output buffer.
589 (with-selected-frame frame
590 (with-current-buffer buffer
591 (setq val
(symbol-value variable
)
592 locus
(variable-binding-locus variable
)))))
593 (help-setup-xref (list #'describe-variable variable buffer
)
595 (with-help-window (help-buffer)
596 (with-current-buffer buffer
598 (setq file-name
(find-lisp-object-file-name variable
'defvar
))
602 (princ " is a variable defined in `")
603 (princ (if (eq file-name
'C-source
)
605 (file-name-nondirectory file-name
)))
607 (with-current-buffer standard-output
609 (re-search-backward "`\\([^`']+\\)'" nil t
)
610 (help-xref-button 1 'help-variable-def
611 variable file-name
)))
613 (princ "It is void as a variable.")
616 (princ " is void as a variable.")
620 (with-current-buffer standard-output
621 (setq val-start-pos
(point))
624 (let ((from (point)))
626 ;; Hyperlinks in variable's value are quite frequently
627 ;; inappropriate e.g C-h v <RET> features <RET>
628 ;; (help-xref-on-pp from (point))
629 (if (< (point) (+ from
20))
630 (delete-region (1- from
) from
)))))
635 (princ (format "%socal in buffer %s; "
636 (if (get variable
'permanent-local
)
639 (princ (format "It is a frame-local variable; ")))
640 (if (not (default-boundp variable
))
641 (princ "globally void")
642 (let ((val (default-value variable
)))
643 (with-current-buffer standard-output
644 (princ "global value is ")
646 ;; Fixme: pp can take an age if you happen to
647 ;; ask for a very large expression. We should
648 ;; probably print it raw once and check it's a
649 ;; sensible size before prettyprinting. -- fx
650 (let ((from (point)))
652 ;; See previous comment for this function.
653 ;; (help-xref-on-pp from (point))
654 (if (< (point) (+ from
20))
655 (delete-region (1- from
) from
))))))
658 ;; If the value is large, move it to the end.
659 (with-current-buffer standard-output
660 (when (> (count-lines (point-min) (point-max)) 10)
661 ;; Note that setting the syntax table like below
662 ;; makes forward-sexp move over a `'s' at the end
664 (set-syntax-table emacs-lisp-mode-syntax-table
)
665 (goto-char val-start-pos
)
666 ;; The line below previously read as
667 ;; (delete-region (point) (progn (end-of-line) (point)))
668 ;; which suppressed display of the buffer local value for
670 (when (looking-at "value is") (replace-match ""))
672 (insert "\n\nValue:")
673 (set (make-local-variable 'help-button-cache
)
675 (insert "value is shown ")
676 (insert-button "below"
677 'action help-button-cache
679 'help-echo
"mouse-2, RET: show value")
683 (let* ((alias (condition-case nil
684 (indirect-variable variable
)
686 (obsolete (get variable
'byte-obsolete-variable
))
688 (safe-var (get variable
'safe-local-variable
))
689 (doc (or (documentation-property variable
'variable-documentation
)
690 (documentation-property alias
'variable-documentation
)))
692 ;; Add a note for variables that have been make-var-buffer-local.
693 (when (and (local-variable-if-set-p variable
)
694 (or (not (local-variable-p variable
))
696 (local-variable-if-set-p variable
))))
698 (princ " Automatically becomes buffer-local when set in any fashion.\n"))
700 ;; Mention if it's an alias
701 (unless (eq alias variable
)
703 (princ (format " This variable is an alias for `%s'.\n" alias
)))
707 (princ " This variable is obsolete")
708 (if (cdr obsolete
) (princ (format " since %s" (cdr obsolete
))))
709 (princ (cond ((stringp use
) (concat ";\n " use
))
710 (use (format ";\n use `%s' instead." (car obsolete
)))
715 (princ " This variable is safe as a file local variable ")
716 (princ "if its value\n satisfies the predicate ")
717 (princ (if (byte-code-function-p safe-var
)
718 "which is byte-compiled expression.\n"
719 (format "`%s'.\n" safe-var
))))
721 (if extra-line
(terpri))
722 (princ "Documentation:\n")
723 (with-current-buffer standard-output
724 (insert (or doc
"Not documented as a variable."))))
726 ;; Make a link to customize if this variable can be customized.
727 (when (custom-variable-p variable
)
728 (let ((customize-label "customize"))
731 (princ (concat "You can " customize-label
" this variable."))
732 (with-current-buffer standard-output
735 (concat "\\(" customize-label
"\\)") nil t
)
736 (help-xref-button 1 'help-customize-variable variable
))))
737 ;; Note variable's version or package version
738 (let ((output (describe-variable-custom-version-info variable
)))
745 (set-buffer standard-output
)
746 ;; Return the text we displayed.
747 (buffer-string))))))))
751 (defun describe-syntax (&optional buffer
)
752 "Describe the syntax specifications in the syntax table of BUFFER.
753 The descriptions are inserted in a help buffer, which is then displayed.
754 BUFFER defaults to the current buffer."
756 (setq buffer
(or buffer
(current-buffer)))
757 (help-setup-xref (list #'describe-syntax buffer
) (interactive-p))
758 (with-help-window (help-buffer)
759 (let ((table (with-current-buffer buffer
(syntax-table))))
760 (with-current-buffer standard-output
761 (describe-vector table
'internal-describe-syntax-value
)
762 (while (setq table
(char-table-parent table
))
763 (insert "\nThe parent syntax table is:")
764 (describe-vector table
'internal-describe-syntax-value
))))))
766 (defun help-describe-category-set (value)
768 ((null value
) "default")
769 ((char-table-p value
) "deeper char-table ...")
770 (t (condition-case err
771 (category-set-mnemonics value
)
772 (error "invalid"))))))
775 (defun describe-categories (&optional buffer
)
776 "Describe the category specifications in the current category table.
777 The descriptions are inserted in a buffer, which is then displayed.
778 If BUFFER is non-nil, then describe BUFFER's category table instead.
779 BUFFER should be a buffer or a buffer name."
781 (setq buffer
(or buffer
(current-buffer)))
782 (help-setup-xref (list #'describe-categories buffer
) (interactive-p))
783 (with-help-window (help-buffer)
784 (let* ((table (with-current-buffer buffer
(category-table)))
785 (docs (char-table-extra-slot table
0)))
786 (if (or (not (vectorp docs
)) (/= (length docs
) 95))
787 (error "Invalid first extra slot in this category table\n"))
788 (with-current-buffer standard-output
789 (insert "Legend of category mnemonics (see the tail for the longer description)\n")
790 (let ((pos (point)) (items 0) lines n
)
792 (if (aref docs i
) (setq items
(1+ items
))))
793 (setq lines
(1+ (/ (1- items
) 4)))
796 (let ((elt (aref docs i
)))
798 (string-match ".*" elt
)
799 (setq elt
(match-string 0 elt
))
800 (if (>= (length elt
) 17)
801 (setq elt
(concat (substring elt
0 14) "...")))
802 (if (< (point) (point-max))
803 (move-to-column (* 20 (/ n lines
)) t
))
804 (insert (+ i ?\s
) ?
: elt
)
805 (if (< (point) (point-max))
809 (if (= (% n lines
) 0)
811 (goto-char (point-max))
813 "character(s)\tcategory mnemonics\n"
814 "------------\t------------------")
815 (describe-vector table
'help-describe-category-set
)
816 (insert "Legend of category mnemonics:\n")
818 (let ((elt (aref docs i
)))
820 (if (string-match "\n" elt
)
821 (setq elt
(substring elt
(match-end 0))))
822 (insert (+ i ?\s
) ": " elt
"\n"))))
823 (while (setq table
(char-table-parent table
))
824 (insert "\nThe parent category table is:")
825 (describe-vector table
'help-describe-category-set
))))))
829 ;; arch-tag: 9e10331c-ae81-4d13-965d-c4819aaab0b3
830 ;;; help-fns.el ends here