1 ;;; apropos.el --- apropos commands for users and programmers
3 ;; Copyright (C) 1989,94,1995,2001,02,03,04,2005 Free Software Foundation, Inc.
5 ;; Author: Joe Wells <jbw@bigbird.bu.edu>
6 ;; Rewritten: Daniel Pfeiffer <occitan@esperanto.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; The ideas for this package were derived from the C code in
29 ;; src/keymap.c and elsewhere. The functions in this file should
30 ;; always be byte-compiled for speed. Someone should rewrite this in
31 ;; C (as part of src/keymap.c) for speed.
33 ;; The idea for super-apropos is based on the original implementation
34 ;; by Lynn Slater <lrs@esl.com>.
37 ;; Fixed bug, current-local-map can return nil.
38 ;; Change, doesn't calculate key-bindings unless needed.
39 ;; Added super-apropos capability, changed print functions.
40 ;;; Made fast-apropos and super-apropos share code.
41 ;;; Sped up fast-apropos again.
42 ;; Added apropos-do-all option.
43 ;;; Added fast-command-apropos.
44 ;; Changed doc strings to comments for helping functions.
45 ;;; Made doc file buffer read-only, buried it.
46 ;; Only call substitute-command-keys if do-all set.
48 ;; Optionally use configurable faces to make the output more legible.
49 ;; Differentiate between command, function and macro.
50 ;; Apropos-command (ex command-apropos) does cmd and optionally user var.
51 ;; Apropos shows all 3 aspects of symbols (fn, var and plist)
52 ;; Apropos-documentation (ex super-apropos) now finds all it should.
53 ;; New apropos-value snoops through all values and optionally plists.
54 ;; Reading DOC file doesn't load nroff.
55 ;; Added hypertext following of documentation, mouse-2 on variable gives value
56 ;; from buffer in active window.
61 (eval-when-compile (require 'cl
))
64 "Apropos commands for users and programmers"
68 ;; I see a degradation of maybe 10-20% only.
69 (defcustom apropos-do-all nil
70 "*Whether the apropos commands should do more.
72 Slows them down more or less. Set this non-nil if you have a fast machine."
77 (defcustom apropos-symbol-face
'bold
78 "*Face for symbol name in Apropos output, or nil for none."
82 (defcustom apropos-keybinding-face
'underline
83 "*Face for lists of keybinding in Apropos output, or nil for none."
87 (defcustom apropos-label-face
'italic
88 "*Face for label (`Command', `Variable' ...) in Apropos output.
89 A value of nil means don't use any special font for them, and also
90 turns off mouse highlighting."
94 (defcustom apropos-property-face
'bold-italic
95 "*Face for property name in apropos output, or nil for none."
99 (defcustom apropos-match-face
'match
100 "*Face for matching text in Apropos documentation/value, or nil for none.
101 This applies when you look for matches in the documentation or variable value
102 for the regexp; the part that matches gets displayed in this font."
106 (defcustom apropos-sort-by-scores nil
107 "*Non-nil means sort matches by scores; best match is shown first.
108 The computed score is shown for each match."
112 (defvar apropos-mode-map
113 (let ((map (make-sparse-keymap)))
114 (set-keymap-parent map button-buffer-map
)
115 ;; Use `apropos-follow' instead of just using the button
116 ;; definition of RET, so that users can use it anywhere in an
117 ;; apropos item, not just on top of a button.
118 (define-key map
"\C-m" 'apropos-follow
)
119 (define-key map
" " 'scroll-up
)
120 (define-key map
"\177" 'scroll-down
)
121 (define-key map
"q" 'quit-window
)
123 "Keymap used in Apropos mode.")
125 (defvar apropos-mode-hook nil
126 "*Hook run when mode is turned on.")
128 (defvar apropos-regexp nil
129 "Regexp used in current apropos run.")
131 (defvar apropos-orig-regexp nil
132 "Regexp as entered by user.")
134 (defvar apropos-all-regexp nil
135 "Regexp matching apropos-all-words.")
137 (defvar apropos-files-scanned
()
138 "List of elc files already scanned in current run of `apropos-documentation'.")
140 (defvar apropos-accumulator
()
141 "Alist of symbols already found in current apropos run.")
143 (defvar apropos-item
()
144 "Current item in or for `apropos-accumulator'.")
146 (defvar apropos-synonyms
'(
147 ("find" "open" "edit")
150 "List of synonyms known by apropos.
151 Each element is a list of words where the first word is the standard emacs
152 term, and the rest of the words are alternative terms.")
154 (defvar apropos-words
()
155 "Current list of words.")
157 (defvar apropos-all-words
()
158 "Current list of words and synonyms.")
161 ;;; Button types used by apropos
163 (define-button-type 'apropos-symbol
164 'face apropos-symbol-face
165 'help-echo
"mouse-2, RET: Display more help on this symbol"
167 'action
#'apropos-symbol-button-display-help
170 (defun apropos-symbol-button-display-help (button)
171 "Display further help for the `apropos-symbol' button BUTTON."
173 (or (apropos-next-label-button (button-start button
))
174 (error "There is nothing to follow for `%s'" (button-label button
)))))
176 (define-button-type 'apropos-function
177 'apropos-label
"Function"
178 'help-echo
"mouse-2, RET: Display more help on this function"
180 'action
(lambda (button)
181 (describe-function (button-get button
'apropos-symbol
))))
183 (define-button-type 'apropos-macro
184 'apropos-label
"Macro"
185 'help-echo
"mouse-2, RET: Display more help on this macro"
187 'action
(lambda (button)
188 (describe-function (button-get button
'apropos-symbol
))))
190 (define-button-type 'apropos-command
191 'apropos-label
"Command"
192 'help-echo
"mouse-2, RET: Display more help on this command"
194 'action
(lambda (button)
195 (describe-function (button-get button
'apropos-symbol
))))
197 ;; We used to use `customize-variable-other-window' instead for a
198 ;; customizable variable, but that is slow. It is better to show an
199 ;; ordinary help buffer and let the user click on the customization
200 ;; button in that buffer, if he wants to.
201 ;; Likewise for `customize-face-other-window'.
202 (define-button-type 'apropos-variable
203 'apropos-label
"Variable"
204 'help-echo
"mouse-2, RET: Display more help on this variable"
206 'action
(lambda (button)
207 (describe-variable (button-get button
'apropos-symbol
))))
209 (define-button-type 'apropos-face
210 'apropos-label
"Face"
211 'help-echo
"mouse-2, RET: Display more help on this face"
213 'action
(lambda (button)
214 (describe-face (button-get button
'apropos-symbol
))))
216 (define-button-type 'apropos-group
217 'apropos-label
"Group"
218 'help-echo
"mouse-2, RET: Display more help on this group"
220 'action
(lambda (button)
221 (customize-group-other-window
222 (button-get button
'apropos-symbol
))))
224 (define-button-type 'apropos-widget
225 'apropos-label
"Widget"
226 'help-echo
"mouse-2, RET: Display more help on this widget"
228 'action
(lambda (button)
229 (widget-browse-other-window (button-get button
'apropos-symbol
))))
231 (define-button-type 'apropos-plist
232 'apropos-label
"Plist"
233 'help-echo
"mouse-2, RET: Display more help on this plist"
235 'action
(lambda (button)
236 (apropos-describe-plist (button-get button
'apropos-symbol
))))
238 (defun apropos-next-label-button (pos)
239 "Return the next apropos label button after POS, or nil if there's none.
240 Will also return nil if more than one `apropos-symbol' button is encountered
241 before finding a label."
242 (let* ((button (next-button pos t
))
243 (already-hit-symbol nil
)
244 (label (and button
(button-get button
'apropos-label
)))
245 (type (and button
(button-get button
'type
))))
248 (or (not (eq type
'apropos-symbol
))
249 (not already-hit-symbol
)))
250 (when (eq type
'apropos-symbol
)
251 (setq already-hit-symbol t
))
252 (setq button
(next-button (button-start button
)))
254 (setq label
(button-get button
'apropos-label
))
255 (setq type
(button-get button
'type
))))
259 (defun apropos-words-to-regexp (words wild
)
260 "Make regexp matching any two of the words in WORDS."
262 (mapconcat 'identity words
"\\|")
267 (mapconcat 'identity words
"\\|")
271 (defun apropos-rewrite-regexp (regexp)
272 "Rewrite a list of words to a regexp matching all permutations.
273 If REGEXP is already a regexp, don't modify it."
274 (setq apropos-orig-regexp regexp
)
275 (setq apropos-words
() apropos-all-words
())
276 (if (string-equal (regexp-quote regexp
) regexp
)
277 ;; We don't actually make a regexp matching all permutations.
278 ;; Instead, for e.g. "a b c", we make a regexp matching
279 ;; any combination of two or more words like this:
280 ;; (a|b|c).*(a|b|c) which may give some false matches,
281 ;; but as long as it also gives the right ones, that's ok.
282 (let ((words (split-string regexp
"[ \t]+")))
284 (let ((syn apropos-synonyms
) (s word
) (a word
))
286 (if (member word
(car syn
))
288 (setq a
(mapconcat 'identity
(car syn
) "\\|"))
289 (if (member word
(cdr (car syn
)))
292 (setq syn
(cdr syn
))))
293 (setq apropos-words
(cons s apropos-words
)
294 apropos-all-words
(cons a apropos-all-words
))))
295 (setq apropos-all-regexp
(apropos-words-to-regexp apropos-all-words
".+"))
296 (apropos-words-to-regexp apropos-words
".*?"))
297 (setq apropos-all-regexp regexp
)))
299 (defun apropos-calc-scores (str words
)
300 "Return apropos scores for string STR matching WORDS.
301 Value is a list of offsets of the words into the string."
305 (dolist (word words scores
)
306 (if (setq i
(string-match word str
))
307 (setq scores
(cons i scores
))))
308 ;; Return list of start and end position of regexp
309 (string-match apropos-regexp str
)
310 (list (match-beginning 0) (match-end 0)))))
312 (defun apropos-score-str (str)
313 "Return apropos score for string STR."
319 (dolist (s (apropos-calc-scores str apropos-all-words
) score
)
320 (setq score
(+ score
1000 (/ (* (- l s
) 1000) l
)))))
323 (defun apropos-score-doc (doc)
324 "Return apropos score for documentation string DOC."
325 (let ((l (length doc
)))
329 (dolist (s (apropos-calc-scores doc apropos-all-words
) score
)
330 (setq score
(+ score
50 (/ (* (- l s
) 50) l
)))))
333 (defun apropos-score-symbol (symbol &optional weight
)
334 "Return apropos score for SYMBOL."
335 (setq symbol
(symbol-name symbol
))
339 (dolist (s (apropos-calc-scores symbol apropos-words
) (* score
(or weight
3)))
340 (setq score
(+ score
(- 60 l
) (/ (* (- l s
) 60) l
))))))
342 (defun apropos-true-hit (str words
)
343 "Return t if STR is a genuine hit.
344 This may fail if only one of the keywords is matched more than once.
345 This requires that at least 2 keywords (unless only one was given)."
349 (> (length (apropos-calc-scores str words
)) 1)))
351 (defun apropos-false-hit-symbol (symbol)
352 "Return t if SYMBOL is not really matched by the current keywords."
353 (not (apropos-true-hit (symbol-name symbol
) apropos-words
)))
355 (defun apropos-false-hit-str (str)
356 "Return t if STR is not really matched by the current keywords."
357 (not (apropos-true-hit str apropos-words
)))
359 (defun apropos-true-hit-doc (doc)
360 "Return t if DOC is really matched by the current keywords."
361 (apropos-true-hit doc apropos-all-words
))
363 (define-derived-mode apropos-mode fundamental-mode
"Apropos"
364 "Major mode for following hyperlinks in output of apropos commands.
366 \\{apropos-mode-map}")
369 (defun apropos-variable (regexp &optional do-all
)
370 "Show user variables that match REGEXP.
371 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also show
373 (interactive (list (read-string
375 (if (or current-prefix-arg apropos-do-all
)
378 " (regexp or words): "))
380 (apropos-command regexp nil
381 (if (or do-all apropos-do-all
)
384 (get symbol
'variable-documentation
)))
387 ;; For auld lang syne:
389 (defalias 'command-apropos
'apropos-command
)
391 (defun apropos-command (apropos-regexp &optional do-all var-predicate
)
392 "Show commands (interactively callable functions) that match APROPOS-REGEXP.
393 With optional prefix DO-ALL, or if `apropos-do-all' is non-nil, also show
394 noninteractive functions.
396 If VAR-PREDICATE is non-nil, show only variables, and only those that
397 satisfy the predicate VAR-PREDICATE."
398 (interactive (list (read-string (concat
400 (if (or current-prefix-arg
403 "(regexp or words): "))
405 (setq apropos-regexp
(apropos-rewrite-regexp apropos-regexp
))
407 (let ((standard-output (get-buffer-create "*Apropos*")))
408 (print-help-return-message 'identity
))))
409 (or do-all
(setq do-all apropos-do-all
))
410 (setq apropos-accumulator
411 (apropos-internal apropos-regexp
413 (if do-all
'functionp
'commandp
))))
414 (let ((tem apropos-accumulator
))
416 (if (or (get (car tem
) 'apropos-inhibit
)
417 (apropos-false-hit-symbol (car tem
)))
418 (setq apropos-accumulator
(delq (car tem
) apropos-accumulator
)))
419 (setq tem
(cdr tem
))))
420 (let ((p apropos-accumulator
)
424 (setq symbol
(car p
))
425 (setq score
(apropos-score-symbol symbol
))
426 (unless var-predicate
427 (if (functionp symbol
)
428 (if (setq doc
(documentation symbol t
))
430 (setq score
(+ score
(apropos-score-doc doc
)))
431 (substring doc
0 (string-match "\n" doc
)))
432 "(not documented)")))
434 (funcall var-predicate symbol
)
435 (if (setq doc
(documentation-property
436 symbol
'variable-documentation t
))
438 (setq score
(+ score
(apropos-score-doc doc
)))
440 (string-match "\n" doc
)))))))
441 (setcar (cdr (car p
)) score
)
443 (and (apropos-print t nil
)
449 (defun apropos-documentation-property (symbol property raw
)
450 "Like (documentation-property SYMBOL PROPERTY RAW) but handle errors."
452 (let ((doc (documentation-property symbol property raw
)))
453 (if doc
(substring doc
0 (string-match "\n" doc
))
455 (error "(error retrieving documentation)")))
459 (defun apropos (apropos-regexp &optional do-all
)
460 "Show all bound symbols whose names match APROPOS-REGEXP.
461 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also
462 show unbound symbols and key bindings, which is a little more
463 time-consuming. Returns list of symbols and documentation found."
464 (interactive "sApropos symbol (regexp or words): \nP")
465 (setq apropos-regexp
(apropos-rewrite-regexp apropos-regexp
))
466 (apropos-symbols-internal
467 (apropos-internal apropos-regexp
474 (symbol-plist symbol
)))))
475 (or do-all apropos-do-all
)))
477 (defun apropos-symbols-internal (symbols keys
&optional text
)
478 ;; Filter out entries that are marked as apropos-inhibit.
480 (dolist (symbol symbols
)
481 (unless (get symbol
'apropos-inhibit
)
484 (let ((apropos-accumulator
487 (let (doc properties
)
490 (apropos-score-symbol symbol
)
491 (when (fboundp symbol
)
492 (if (setq doc
(condition-case nil
493 (documentation symbol t
)
495 "(alias for undefined function)")
497 "(can't retrieve function documentation)")))
498 (substring doc
0 (string-match "\n" doc
))
500 (when (boundp symbol
)
501 (apropos-documentation-property
502 symbol
'variable-documentation t
))
503 (when (setq properties
(symbol-plist symbol
))
504 (setq doc
(list (car properties
)))
505 (while (setq properties
(cdr (cdr properties
)))
506 (setq doc
(cons (car properties
) doc
)))
507 (mapconcat #'symbol-name
(nreverse doc
) " "))
508 (when (get symbol
'widget-type
)
509 (apropos-documentation-property
510 symbol
'widget-documentation t
))
512 (apropos-documentation-property
513 symbol
'face-documentation t
))
514 (when (get symbol
'custom-group
)
515 (apropos-documentation-property
516 symbol
'group-documentation t
)))))
518 (apropos-print keys nil text
)))
522 (defun apropos-value (apropos-regexp &optional do-all
)
523 "Show all symbols whose value's printed image matches APROPOS-REGEXP.
524 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also looks
525 at the function and at the names and values of properties.
526 Returns list of symbols and values found."
527 (interactive "sApropos value (regexp or words): \nP")
528 (setq apropos-regexp
(apropos-rewrite-regexp apropos-regexp
))
529 (or do-all
(setq do-all apropos-do-all
))
530 (setq apropos-accumulator
())
534 (setq f nil v nil p nil
)
535 (or (memq symbol
'(apropos-regexp
536 apropos-orig-regexp apropos-all-regexp
537 apropos-words apropos-all-words
538 do-all apropos-accumulator
540 (setq v
(apropos-value-internal 'boundp symbol
'symbol-value
)))
542 (setq f
(apropos-value-internal 'fboundp symbol
'symbol-function
)
543 p
(apropos-format-plist symbol
"\n " t
)))
544 (if (apropos-false-hit-str v
)
546 (if (apropos-false-hit-str f
)
548 (if (apropos-false-hit-str p
)
551 (setq apropos-accumulator
(cons (list symbol
552 (+ (apropos-score-str f
)
553 (apropos-score-str v
)
554 (apropos-score-str p
))
556 apropos-accumulator
))))))
557 (apropos-print nil
"\n----------------\n"))
561 (defun apropos-documentation (apropos-regexp &optional do-all
)
562 "Show symbols whose documentation contain matches for APROPOS-REGEXP.
563 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also use
564 documentation that is not stored in the documentation file and show key
566 Returns list of symbols and documentation found."
567 (interactive "sApropos documentation (regexp or words): \nP")
568 (setq apropos-regexp
(apropos-rewrite-regexp apropos-regexp
))
569 (or do-all
(setq do-all apropos-do-all
))
570 (setq apropos-accumulator
() apropos-files-scanned
())
571 (let ((standard-input (get-buffer-create " apropos-temp"))
575 (set-buffer standard-input
)
576 (apropos-documentation-check-doc-file)
580 (setq f
(apropos-safe-documentation symbol
)
581 v
(get symbol
'variable-documentation
))
582 (if (integerp v
) (setq v
))
583 (setq f
(apropos-documentation-internal f
)
584 v
(apropos-documentation-internal v
))
585 (setq sf
(apropos-score-doc f
)
586 sv
(apropos-score-doc v
))
588 (if (setq apropos-item
589 (cdr (assq symbol apropos-accumulator
)))
593 (setcar (nthcdr 1 apropos-item
) f
)
594 (setcar apropos-item
(+ (car apropos-item
) sf
))))
597 (setcar (nthcdr 2 apropos-item
) v
)
598 (setcar apropos-item
(+ (car apropos-item
) sv
)))))
599 (setq apropos-accumulator
601 (+ (apropos-score-symbol symbol
2) sf sv
)
603 apropos-accumulator
)))))))
604 (apropos-print nil
"\n----------------\n"))
605 (kill-buffer standard-input
))))
608 (defun apropos-value-internal (predicate symbol function
)
609 (if (funcall predicate symbol
)
611 (setq symbol
(prin1-to-string (funcall function symbol
)))
612 (if (string-match apropos-regexp symbol
)
614 (if apropos-match-face
615 (put-text-property (match-beginning 0) (match-end 0)
616 'face apropos-match-face
620 (defun apropos-documentation-internal (doc)
622 (apropos-documentation-check-elc-file (car doc
))
624 (string-match apropos-all-regexp doc
)
625 (save-match-data (apropos-true-hit-doc doc
))
627 (if apropos-match-face
628 (put-text-property (match-beginning 0)
630 'face apropos-match-face
631 (setq doc
(copy-sequence doc
))))
634 (defun apropos-format-plist (pl sep
&optional compare
)
635 (setq pl
(symbol-plist pl
))
638 (setq p
(format "%s %S" (car pl
) (nth 1 pl
)))
639 (if (or (not compare
) (string-match apropos-regexp p
))
640 (if apropos-property-face
641 (put-text-property 0 (length (symbol-name (car pl
)))
642 'face apropos-property-face p
))
646 (and compare apropos-match-face
647 (put-text-property (match-beginning 0) (match-end 0)
648 'face apropos-match-face
650 (setq p-out
(concat p-out
(if p-out sep
) p
))))
651 (setq pl
(nthcdr 2 pl
)))
655 ;; Finds all documentation related to APROPOS-REGEXP in internal-doc-file-name.
657 (defun apropos-documentation-check-doc-file ()
658 (let (type symbol
(sepa 2) sepb beg end
)
661 (insert-file-contents (concat doc-directory internal-doc-file-name
))
663 (while (save-excursion
664 (setq sepb
(search-forward "\^_"))
666 (beginning-of-line 2)
667 (if (save-restriction
668 (narrow-to-region (point) (1- sepb
))
669 (re-search-forward apropos-all-regexp nil t
))
671 (setq beg
(match-beginning 0)
673 (goto-char (1+ sepa
))
674 (setq type
(if (eq ?F
(preceding-char))
675 2 ; function documentation
676 3) ; variable documentation
678 beg
(- beg
(point) 1)
679 end
(- end
(point) 1)
680 doc
(buffer-substring (1+ (point)) (1- sepb
)))
681 (when (apropos-true-hit-doc doc
)
682 (or (and (setq apropos-item
(assq symbol apropos-accumulator
))
683 (setcar (cdr apropos-item
)
684 (+ (cadr apropos-item
) (apropos-score-doc doc
))))
685 (setq apropos-item
(list symbol
686 (+ (apropos-score-symbol symbol
2)
687 (apropos-score-doc doc
))
689 apropos-accumulator
(cons apropos-item
690 apropos-accumulator
)))
691 (if apropos-match-face
692 (put-text-property beg end
'face apropos-match-face doc
))
693 (setcar (nthcdr type apropos-item
) doc
))))
694 (setq sepa
(goto-char sepb
)))))
696 (defun apropos-documentation-check-elc-file (file)
697 (if (member file apropos-files-scanned
)
699 (let (symbol doc beg end this-is-a-variable
)
700 (setq apropos-files-scanned
(cons file apropos-files-scanned
))
702 (insert-file-contents file
)
703 (while (search-forward "\n#@" nil t
)
704 ;; Read the comment length, and advance over it.
707 end
(+ (point) end -
1))
709 (if (save-restriction
710 ;; match ^ and $ relative to doc string
711 (narrow-to-region beg end
)
712 (re-search-forward apropos-all-regexp nil t
))
714 (goto-char (+ end
2))
715 (setq doc
(buffer-substring beg end
)
716 end
(- (match-end 0) beg
)
717 beg
(- (match-beginning 0) beg
))
718 (when (apropos-true-hit-doc doc
)
719 (setq this-is-a-variable
(looking-at "(def\\(var\\|const\\) ")
721 (skip-chars-forward "(a-z")
724 symbol
(if (consp symbol
)
727 (if (if this-is-a-variable
728 (get symbol
'variable-documentation
)
729 (and (fboundp symbol
) (apropos-safe-documentation symbol
)))
731 (or (and (setq apropos-item
(assq symbol apropos-accumulator
))
732 (setcar (cdr apropos-item
)
733 (+ (cadr apropos-item
) (apropos-score-doc doc
))))
734 (setq apropos-item
(list symbol
735 (+ (apropos-score-symbol symbol
2)
736 (apropos-score-doc doc
))
738 apropos-accumulator
(cons apropos-item
739 apropos-accumulator
)))
740 (if apropos-match-face
741 (put-text-property beg end
'face apropos-match-face
743 (setcar (nthcdr (if this-is-a-variable
3 2)
749 (defun apropos-safe-documentation (function)
750 "Like `documentation', except it avoids calling `get_doc_string'.
751 Will return nil instead."
752 (while (and function
(symbolp function
))
753 (setq function
(if (fboundp function
)
754 (symbol-function function
))))
755 (if (eq (car-safe function
) 'macro
)
756 (setq function
(cdr function
)))
757 (setq function
(if (byte-code-function-p function
)
758 (if (> (length function
) 4)
760 (if (eq (car-safe function
) 'autoload
)
762 (if (eq (car-safe function
) 'lambda
)
763 (if (stringp (nth 2 function
))
765 (if (stringp (nth 3 function
))
766 (nth 3 function
)))))))
767 (if (integerp function
)
772 (defun apropos-print (do-keys spacing
&optional text
)
773 "Output result of apropos searching into buffer `*Apropos*'.
774 The value of `apropos-accumulator' is the list of items to output.
775 Each element should have the format
776 (SYMBOL SCORE FN-DOC VAR-DOC [PLIST-DOC WIDGET-DOC FACE-DOC GROUP-DOC]).
777 The return value is the list that was in `apropos-accumulator', sorted
778 alphabetically by symbol name; but this function also sets
779 `apropos-accumulator' to nil before returning.
781 If SPACING is non-nil, it should be a string; separate items with that string.
782 If non-nil TEXT is a string that will be printed as a heading."
783 (if (null apropos-accumulator
)
784 (message "No apropos matches for `%s'" apropos-orig-regexp
)
785 (setq apropos-accumulator
786 (sort apropos-accumulator
788 ;; Don't sort by score if user can't see the score.
789 ;; It would be confusing. -- rms.
790 (if apropos-sort-by-scores
791 (or (> (cadr a
) (cadr b
))
792 (and (= (cadr a
) (cadr b
))
793 (string-lessp (car a
) (car b
))))
794 (string-lessp (car a
) (car b
))))))
795 (with-output-to-temp-buffer "*Apropos*"
796 (let ((p apropos-accumulator
)
797 (old-buffer (current-buffer))
799 (set-buffer standard-output
)
801 (if (display-mouse-p)
803 "If moving the mouse over text changes the text's color, "
805 "mouse-2 (second button from right) on that text to "
806 "get more information.\n"))
807 (insert "In this buffer, go to the name of the command, or function,"
809 (substitute-command-keys
810 "and type \\[apropos-follow] to get full documentation.\n\n"))
811 (if text
(insert text
"\n\n"))
813 (when (and spacing
(not (bobp)))
815 (setq apropos-item
(car p
)
816 symbol
(car apropos-item
)
818 (insert-text-button (symbol-name symbol
)
819 'type
'apropos-symbol
820 ;; Can't use default, since user may have
821 ;; changed the variable!
822 ;; Just say `no' to variables containing faces!
823 'face apropos-symbol-face
)
824 (if apropos-sort-by-scores
825 (insert " (" (number-to-string (cadr apropos-item
)) ") "))
826 ;; Calculate key-bindings if we want them.
832 (set-buffer old-buffer
)
833 (where-is-internal symbol
)))
835 ;; Copy over the list of key sequences,
836 ;; omitting any that contain a buffer or a frame.
838 (let ((key (car keys
))
841 (while (< i
(length key
))
842 (if (or (framep (aref key i
))
843 (bufferp (aref key i
)))
847 (setq filtered
(cons key filtered
))))
848 (setq keys
(cdr keys
)))
849 (setq item filtered
))
850 ;; Convert the remaining keys to a string and insert.
854 (setq key
(condition-case ()
855 (key-description key
)
857 (if apropos-keybinding-face
858 (put-text-property 0 (length key
)
859 'face apropos-keybinding-face
863 (insert "M-x ... RET")
864 (when apropos-keybinding-face
865 (put-text-property (- (point) 11) (- (point) 8)
866 'face apropos-keybinding-face
)
867 (put-text-property (- (point) 3) (point)
868 'face apropos-keybinding-face
))))
871 (if (commandp symbol
)
873 (if (apropos-macrop symbol
)
877 (apropos-print-doc 3 'apropos-variable t
)
878 (apropos-print-doc 7 'apropos-group t
)
879 (apropos-print-doc 6 'apropos-face t
)
880 (apropos-print-doc 5 'apropos-widget t
)
881 (apropos-print-doc 4 'apropos-plist nil
))
882 (setq buffer-read-only t
))))
883 (prog1 apropos-accumulator
884 (setq apropos-accumulator
()))) ; permit gc
887 (defun apropos-macrop (symbol)
888 "Return t if SYMBOL is a Lisp macro."
889 (and (fboundp symbol
)
891 (symbol-function symbol
)))
892 (or (eq (car symbol
) 'macro
)
893 (if (eq (car symbol
) 'autoload
)
898 (defun apropos-print-doc (i type do-keys
)
899 (if (stringp (setq i
(nth i apropos-item
)))
902 (insert-text-button (button-type-get type
'apropos-label
)
904 ;; Can't use the default button face, since
905 ;; user may have changed the variable!
906 ;; Just say `no' to variables containing faces!
907 'face apropos-label-face
908 'apropos-symbol
(car apropos-item
))
910 (insert (if do-keys
(substitute-command-keys i
) i
))
911 (or (bolp) (terpri)))))
914 (defun apropos-follow ()
915 "Invokes any button at point, otherwise invokes the nearest label button."
918 (or (apropos-next-label-button (line-beginning-position))
919 (error "There is nothing to follow here"))))
922 (defun apropos-describe-plist (symbol)
923 "Display a pretty listing of SYMBOL's plist."
924 (help-setup-xref (list 'apropos-describe-plist symbol
) (interactive-p))
925 (with-output-to-temp-buffer (help-buffer)
926 (set-buffer standard-output
)
929 (princ "'s plist is\n (")
930 (if apropos-symbol-face
931 (put-text-property (+ (point-min) 7) (- (point) 14)
932 'face apropos-symbol-face
))
933 (insert (apropos-format-plist symbol
"\n "))
935 (print-help-return-message)))
940 ;;; arch-tag: d56fa2ac-e56b-4ce3-84ff-852f9c0dc66e
941 ;;; apropos.el ends here